/*
Theme Name: Blockbase Child
Template: blockbase
Version: 1.0
*/
@import url("../blockbase/style.css");

/* Font Face Declaration */
@font-face {
    font-family: 'AntFont';
    src: url('fonts/AntFont.woff2') format('woff2'),
         url('fonts/AntFont.woff') format('woff'),
         url('fonts/AntFont.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
    font-display: swap;
    size-adjust: 180%;
}

/* Apply to entire site - with increased specificity */
body,
body p,
body div,
body span,
body a,
body li,
.site-content,
.entry-content,
.entry-content p {
    font-family: 'AntFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
}

/* Apply specifically to headings for stronger brand presence */
h1, h2, h3, h4, h5, h6,
.site-title,
.entry-title {
    font-family: 'AntFont', Arial, sans-serif !important;
}

/* Apply to landing page specific elements */
.landing-page-title,
.code-validation-section h2,
.product-section h3,
.cart-preview h3 {
    font-family: 'AntFont', Arial, sans-serif !important;
}

/* Apply to buttons for consistency */
button,
.button,
.wp-block-button__link,
input[type="submit"] {
    font-family: 'AntFont', Arial, sans-serif !important;
}

/* Apply to WooCommerce elements */
.woocommerce .product_title,
.woocommerce h2,
.woocommerce h3 {
    font-family: 'AntFont', Arial, sans-serif !important;
}

/* ============================================
   LANDING PAGE STYLES - BEST PRACTICE VERSION
   ============================================ */

/* Base Container */
.landing-page {
    font-family: Georgia, serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.landing-header {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    margin-bottom: 40px;
}

.gratitude {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.album-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.artist-name {
    font-size: 1.5rem;
    color: #777;
}

/* ============================================
   ALBUM CONTENT
   ============================================ */

.album-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.artwork {
    background: linear-gradient(45deg, #667eea, #764ba2);
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.tracklist {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.track {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.track:last-child {
    border-bottom: none;
}

.track-num {
    color: #667eea;
    font-weight: 600;
    margin-right: 15px;
}

/* ============================================
   STATUS BAR
   ============================================ */

.status-bar {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: block;
    position: relative;
}

.status-bar.qualified {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.status-bar.not-qualified {
    background: #f8f9fa;
    border: 2px solid #ddd;
}

.status-bar.loading {
    background: #e9ecef;
    color: #666;
}

.savings-badge {
    display: inline-block;
    background: rgba(255,255,255,0.3);
    padding: 5px 15px;
    border-radius: 20px;
    margin-left: 10px;
    font-weight: 600;
}

.qualification-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    z-index: 1000;
    display: none;
}

.qualification-indicator.show {
    display: block;
}

.qualification-indicator.qualified {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

/* ============================================
   PACKAGE SELECTOR
   ============================================ */

.package-selector {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
}

.package-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.package-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.package-box h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-icon {
    font-size: 1.5rem;
}

.option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.option:hover {
    background: #e9ecef;
}

.option.selected {
    border-color: #667eea;
    background: #e7f1ff;
}

.package-includes {
    font-size: 1rem;
    color: #666;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.package-includes strong {
    color: #333;
}

.add-on {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.add-on:hover {
    border-color: #667eea;
}

.add-on.selected {
    border-color: #667eea;
    background: #e7f1ff;
}

/* ============================================
   CART
   ============================================ */

.cart {
    background: linear-gradient(135deg, #495057, #6c757d);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.cart-items {
    text-align: left;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.cart-item-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.total {
    font-size: 2rem;
    font-weight: 600;
    margin: 20px 0;
}

.checkout-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
    min-width: 280px;
}

.checkout-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.checkout-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   POP-UP
   ============================================ */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup.hidden {
    display: none;
}

.popup.visible {
    opacity: 1;
}

.popup-box {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.popup.visible .popup-box {
    transform: translateY(0);
}

.popup-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-family: 'AntFont', Arial, sans-serif !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.close-popup:hover {
    background: rgba(255,255,255,0.3);
}

.popup-content {
    padding: 30px;
}

.form-section {
    margin-bottom: 25px;
}

.form-section h3 {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.checkbox-group input {
    transform: scale(1.2);
    margin-top: 2px;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    font-size: 0.95rem;
}

.cookie-notice {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
}

.message {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
    align-items: center;
    gap: 10px;
}

.message.success {
    background: #d4edda;
    color: #155724;
    display: flex;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    display: flex;
}

.message .spinner {
    border-color: rgba(21, 87, 36, 0.3);
    border-top-color: #155724;
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5a6fd8;
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .landing-page {
        padding: 20px 10px;
    }

    .landing-header {
        padding: 30px 20px;
    }

    .album-title {
        font-size: 2rem;
    }

    .artist-name {
        font-size: 1.2rem;
    }

    .album-content {
        grid-template-columns: 1fr;
    }

    .packages {
        grid-template-columns: 1fr;
    }

    .qualification-indicator {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .popup-box {
        width: 95%;
        max-height: 90vh;
    }

    .popup-header {
        padding: 20px;
    }

    .popup-content {
        padding: 20px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .checkout-btn {
        min-width: auto;
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .album-title {
        font-size: 1.5rem;
    }

    .package-title {
        font-size: 1.5rem;
    }

    .total {
        font-size: 1.5rem;
    }
}
.landing-page-container {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    margin: 0;
    padding: 40px 20px;
}

.landing-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.2);
    border-radius: 12px;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.landing-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px 12px 0 0;
    margin-bottom: 40px;
}

.landing-gratitude-text {
    font-size: 18px;
    color: #495057;
    font-style: italic;
    margin-bottom: 20px;
}

.landing-album-title {
    font-size: 3rem;
    color: #212529;
    margin-bottom: 10px;
    font-weight: 300;
}

.landing-artist-name {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 30px;
}

/* ============================================
   ALBUM SHOWCASE
   ============================================ */

.landing-album-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 40px;
}

.landing-album-artwork {
    text-align: center;
}

.landing-artwork-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.landing-artwork-placeholder {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    aspect-ratio: 1;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 350px;
    margin: 0 auto;
}

/* ============================================
   TRACKLIST
   ============================================ */

.landing-tracklist {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.landing-tracklist h3 {
    color: #495057;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.landing-track-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-track-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.landing-track-item:last-child {
    border-bottom: none;
}

.landing-track-number {
    color: #667eea;
    font-weight: 600;
    margin-right: 15px;
}

.landing-track-title {
    flex-grow: 1;
    color: #333;
}

.landing-track-duration {
    color: #888;
    font-size: 14px;
}

/* ============================================
   STATUS BAR
   ============================================ */

.landing-status-bar {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin: 0 40px 30px;
}

.landing-status-bar.qualified {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.landing-status-bar.not-qualified {
    background: #f8f9fa;
    border: 2px solid #ddd;
    color: #495057;
}

/* ============================================
   PACKAGE SELECTOR
   ============================================ */

.landing-package-selector {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    margin: 0 40px 40px;
}

.landing-package-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.landing-package-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.landing-package-option {
    background: #f8f9fa;
    border: 3px solid transparent;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.landing-package-option:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
}

.landing-package-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.landing-package-badge {
    background: #667eea;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.landing-package-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.landing-package-format {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.landing-package-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.landing-package-features li {
    padding: 5px 0;
    color: #555;
    font-size: 14px;
}

.landing-package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-top: 15px;
}

.landing-package-price.free {
    color: #28a745;
}

/* ============================================
   PHYSICAL ADD-ONS
   ============================================ */

.landing-physical-addons {
    border-top: 2px solid #e9ecef;
    padding-top: 25px;
    margin-top: 25px;
}

.landing-physical-addons h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.landing-addon-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.landing-addon-option {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.landing-addon-option:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.landing-addon-option.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.landing-addon-checkbox {
    transform: scale(1.3);
}

.landing-addon-details {
    flex-grow: 1;
}

.landing-addon-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.landing-addon-description {
    color: #666;
    font-size: 14px;
}

.landing-addon-price {
    font-weight: 700;
    color: #667eea;
    font-size: 18px;
}

/* ============================================
   CART SUMMARY
   ============================================ */

.landing-cart-summary {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
}

.landing-cart-summary h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.landing-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #555;
    font-size: 16px;
}

.landing-summary-total {
    border-top: 2px solid #dee2e6;
    margin-top: 15px;
    padding-top: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.landing-checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.landing-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.landing-checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   POP-UP OVERLAY
   ============================================ */

.landing-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.landing-popup-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.landing-popup-container {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.landing-popup-overlay.hidden .landing-popup-container {
    transform: translateY(-50px);
}

.landing-popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.landing-popup-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 300;
}

.landing-popup-content {
    padding: 30px;
}

.landing-form-section {
    margin-bottom: 25px;
}

.landing-form-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
}

.landing-form-group {
    margin-bottom: 20px;
}

.landing-popup-content label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.landing-popup-content input[type="text"], 
.landing-popup-content input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.landing-popup-content input[type="text"]:focus, 
.landing-popup-content input[type="email"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.landing-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.landing-checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.2);
}

.landing-checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.landing-status-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.landing-status-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.landing-status-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.landing-status-message.show {
    display: block;
}

.landing-qualification-success {
    display: none;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.landing-qualification-success.show {
    display: block;
}

.landing-popup-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.landing-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-sizing: border-box;
}

.landing-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.landing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.landing-btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #dee2e6;
}

.landing-btn-secondary:hover {
    background: #e9ecef;
}

.landing-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    /* Container adjustments */
    .landing-page-container {
        padding: 20px 10px;
    }
    
    .landing-content {
        border-radius: 8px;
    }
    
    /* Header */
    .landing-header {
        padding: 30px 15px;
    }
    
    .landing-album-title {
        font-size: 2rem;
    }
    
    .landing-artist-name {
        font-size: 1.2rem;
    }
    
    .landing-gratitude-text {
        font-size: 16px;
    }
    
    /* Album showcase - stack vertically */
    .landing-album-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .landing-artwork-placeholder,
    .landing-artwork-image {
        max-width: 100%;
    }
    
    /* Package selector */
    .landing-package-selector {
        padding: 20px 15px;
        margin: 0 20px 30px;
    }
    
    .landing-package-title {
        font-size: 1.5rem;
    }
    
    /* Package options - stack vertically on mobile */
    .landing-package-options {
        grid-template-columns: 100%;
        grid-gap: 15px; /* Fallback for older browsers */
        gap: 15px;
    }
    
    /* Physical add-ons - stack vertically */
    .landing-addon-options {
        grid-template-columns: 1fr;
    }
    
    /* Status bar */
    .landing-status-bar {
        margin: 0 20px 25px;
        padding: 15px;
    }
    
    /* Cart summary */
    .landing-cart-summary {
        padding: 20px 15px;
    }
    
    /* Checkout button - prevent overflow */
    .landing-checkout-btn {
        padding: 15px 10px;
        font-size: 16px;
        white-space: normal;
        line-height: 1.3;
    }
    
    /* Pop-up adjustments */
    .landing-popup-overlay {
        padding: 15px;
    }
    
    .landing-popup-container {
        max-height: 85vh;
    }
    
    .landing-popup-header {
        padding: 20px 15px;
    }
    
    .landing-popup-header h2 {
        font-size: 20px;
    }
    
    .landing-popup-content {
        padding: 20px 15px;
    }
    
    /* Pop-up buttons - stack on very small screens */
    .landing-popup-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .landing-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .landing-album-title {
        font-size: 1.5rem;
    }
    
    .landing-package-name {
        font-size: 1.2rem;
    }
    
    .landing-package-price {
        font-size: 1.5rem;
    }
    
    .landing-checkout-btn {
        font-size: 14px;
        padding: 12px 8px;
    }
}