    /* Reset and Base Styles */
    .heirloom-commission-page * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .heirloom-commission-page {
        font-family: 'Lato', sans-serif;
        color: #2c2c2c;
        line-height: 1.6;
        background: #fff;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* About This Service (plain factual descriptor, low visual weight) */
    .about-service {
        padding: 60px 20px;
        background: #fff;
        border-bottom: 1px solid #eee;
    }

    .about-service-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .about-service-heading {
        font-family: 'Fjalla One', sans-serif;
        text-transform: uppercase;
        font-size: 22px;
        letter-spacing: 1.5px;
        color: #333;
        margin-bottom: 18px;
    }

    .about-service-body {
        font-size: 16px;
        line-height: 1.75;
        color: #555;
    }

    @media (max-width: 768px) {
        .about-service {
            padding: 40px 18px;
        }

        .about-service-heading {
            font-size: 19px;
        }

        .about-service-body {
            font-size: 15px;
        }
    }

    /* Sound Familiar / Problem Section */
    .problem-section {
        padding: 100px 20px;
        background: #f8f9fa;
    }

    .problem-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .problem-title {
        font-family: 'Fjalla One', sans-serif;
        font-size: 48px;
        text-align: center;
        color: #333;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .problem-subtitle {
        font-size: 18px;
        text-align: center;
        color: #666;
        margin-bottom: 60px;
    }

    .problem-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .problem-card {
        background: white;
        padding: 0;
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        display: flex;
        align-items: stretch;
        gap: 0;
    }

    .problem-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .problem-card-image {
        flex: 0 0 50%;
        width: 50%;
        background: #f5f5f5;
    }

    .problem-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .problem-card-content {
        flex: 1;
        padding: 25px;
    }

    .problem-card-title {
        font-family: 'Fjalla One', sans-serif;
        font-size: 20px;
        color: #333;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .problem-card-text {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .problem-section {
            padding: 70px 20px;
        }

        .problem-title {
            font-size: 32px;
        }

        .problem-subtitle {
            margin-bottom: 40px;
        }

        .problem-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .problem-card {
            padding: 0;
            gap: 0;
        }

        .problem-card-image {
            flex: 0 0 50%;
            width: 50%;
        }

        .problem-card-content {
            padding: 20px;
        }

        .problem-card-title {
            font-size: 18px;
        }

        .problem-card-text {
            font-size: 14px;
        }
    }

    /* Luxury Hero */
    .luxury-hero {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .hero-slider {
        position: absolute;
        inset: 0;
        z-index: 1;
        display: flex;
        transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-slide {
        position: relative;
        min-width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
        z-index: 2;
    }

    .hero-container {
        position: relative;
        height: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0;
        z-index: 3;
        display: flex;
        align-items: center;
    }

    .hero-content-box {
        padding: 60px 50px;
        width: 50%;
        margin-left: 60px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-content-box.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-badge {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(255, 255, 255, 0.95);
        color: #1a1a1a;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 30px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
    }

    .hero-content-box.animate-in .hero-badge {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-title {
        font-family: 'Fjalla One', sans-serif;
        font-size: 64px;
        font-weight: 400;
        line-height: 1.1;
        margin-bottom: 30px;
        text-transform: uppercase;
        color: white;
        letter-spacing: -1px;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    }

    .hero-content-box.animate-in .hero-title {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-subtitle {
        font-size: 20px;
        color: white;
        font-weight: 400;
        margin-bottom: 50px;
        line-height: 1.7;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        max-width: 90%;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    }

    .hero-content-box.animate-in .hero-subtitle {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-cta {
        background: #E7457D;
        color: white;
        padding: 16px 40px;
        border: none;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
        cursor: pointer;
        font-family: 'Lato', sans-serif;
    }

    .hero-content-box.animate-in .hero-cta {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .hero-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s;
    }

    .hero-cta:hover::before {
        left: 100%;
    }

    .hero-cta:hover {
        background: #d63c70;
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(231, 69, 125, 0.3);
    }

    .hero-trust-badge {
        margin-top: 25px;
    }

    .hero-trust-badge .trust-stars {
        color: #2D9B4E;
        font-size: 22px;
        letter-spacing: 2px;
    }

    .hero-trust-badge .trust-title {
        font-family: 'Fjalla One', sans-serif;
        font-size: 16px;
        color: #fff;
        margin-top: 6px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .hero-trust-badge .trust-subtitle {
        font-family: 'Lato', sans-serif;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.8);
        margin-top: 3px;
    }

    .hero-nav {
        position: absolute;
        inset: 0;
        z-index: 4;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
    }

    .hero-nav-btn {
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        width: 50px;
        height: 50px;
        font-size: 32px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .hero-nav-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .hero-dots {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 4;
        display: flex;
        gap: 12px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hero-dot:hover {
        background: rgba(255, 255, 255, 0.6);
    }

    .hero-dot.active {
        background: white;
        width: 30px;
    }


    /* How It Works Process */
    .process-section {
        padding: 120px 40px;
        background: white;
    }

    .process-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .section-title {
        font-size: 48px;
        font-weight: 400;
        text-align: center;
        margin-bottom: 80px;
        letter-spacing: -0.02em;
        font-family: 'Fjalla One', sans-serif;
        text-transform: uppercase;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .process-step {
        background: #fafafa;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .process-step:hover {
        background: white;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        transform: translateY(-8px);
    }

    .step-image {
        width: 100%;
        padding-top: 75%;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .step-number {
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        color: white;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-content {
        text-align: center;
        padding: 40px 25px 30px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .step-title {
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 12px;
        white-space: nowrap;
        font-family: 'Fjalla One', sans-serif;
        text-transform: uppercase;
    }

    .step-description {
        font-size: 14px;
        color: #86868b;
        line-height: 1.6;
    }

    .process-summary {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 60px;
        font-size: 16px;
        color: #666;
        line-height: 1.7;
    }

    /* Comparison Section */
    .comparison {
        position: relative;
        margin: 0;
        padding: 0;
    }

    .comparison-split {
        display: flex;
        height: 100vh;
    }

    .comparison-side {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        position: relative;
    }

    .before-side {
        background: #f0f0f0;
    }

    .after-side {
        background: white;
    }

    .comparison-content {
        text-align: center;
        max-width: 500px;
    }

    .comparison-content h2 {
        font-family: 'Lato', sans-serif;
        font-size: 32px;
        font-weight: 400;
        color: #333;
        margin-bottom: 40px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .comparison-image {
        width: 450px;
        height: 450px;
        margin: 30px 0;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

    .comparison-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .comparison-features {
        list-style: none;
        text-align: left;
        margin: 30px auto;
        max-width: 320px;
        padding-left: 10px;
    }

    .comparison-features li {
        padding: 10px 0;
        display: flex;
        align-items: center;
        font-family: 'Lato', sans-serif;
        font-size: 16px;
        color: #666;
    }

    .comparison-features li:before {
        content: "?";
        color: #ff4444;
        margin-right: 10px;
        font-weight: bold;
    }

    .after-side .comparison-features li:before {
        content: "?";
        color: #44ff44;
    }

    .vs-badge {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: white;
        border: 4px solid #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 24px;
        z-index: 5;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    .comparison-cta {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .comparison-btn {
        padding: 20px 60px;
        background: #2c2c2c;
        color: white;
        border: none;
        font-size: 18px;
        font-weight: normal;
        cursor: pointer;
        transition: transform 0.3s;
        letter-spacing: 0.5px;
    }

    .comparison-btn:hover {
        transform: scale(1.05);
    }

    /* Curated Gallery */
    .curated-gallery {
        padding: 120px 40px;
        background: white;
    }

    .gallery-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .gallery-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .gallery-title {
        font-size: 48px;
        font-weight: 400;
        margin-bottom: 20px;
        color: #1a1a1a;
        font-family: 'Fjalla One', sans-serif;
        text-transform: uppercase;
    }

    .gallery-subtitle {
        font-size: 16px;
        color: #666;
        font-weight: 300;
    }

    .gallery-masonry {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        grid-auto-rows: 200px;
    }

    .masonry-item {
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .masonry-item:hover {
        transform: scale(1.02);
    }

    .masonry-item:nth-child(1) { grid-row: span 2; }
    .masonry-item:nth-child(4) { grid-row: span 2; }
    .masonry-item:nth-child(7) { grid-row: span 2; }
    .masonry-item:nth-child(10) { grid-row: span 2; }
    .masonry-item:nth-child(13) { grid-row: span 2; }

    .masonry-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .masonry-item:hover .masonry-overlay {
        opacity: 1;
    }

    .masonry-text {
        color: white;
        text-align: center;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Seen On Section Styles */
    .seen-on-section {
        background: white;
        padding: 60px 20px;
        overflow: hidden;
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
    }

    .seen-on-title {
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #999;
        margin-bottom: 2rem;
    }

    .logo-carousel-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .logo-carousel {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .logo-track {
        display: flex;
        animation: scroll 45s linear infinite;
        width: max-content;
    }

    .logo-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 40px;
        height: 60px;
        flex-shrink: 0;
    }

        .logo-item img {
            max-height: 40px;
            width: auto;
            filter: grayscale(100%) contrast(1.2);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .logo-item:hover img {
            filter: grayscale(100%) contrast(1.2);
            opacity: 1;
        }

    /* Text-based logos styling */
    .logo-text {
        font-weight: 700;
        text-align: center;
        line-height: 1.2;
        color: #999;
        transition: all 0.3s ease;
        display: inline-block;
        white-space: nowrap;
    }

    .logo-item:hover .logo-text {
        color: #333;
        transform: scale(1.05);
    }

    .logo-netflix {
        font-size: 1.5rem;
        color: #666;
        font-weight: 800;
        letter-spacing: -0.05em;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Pause on hover */
    .logo-carousel:hover .logo-track {
        animation-play-state: paused;
    }

    /* Minimal Quote */
    .quote-section {
        padding: 100px 40px;
        background: #f8f8f8;
        text-align: center;
    }

    .quote-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .quote-text {
        font-size: 24px;
        font-weight: 300;
        line-height: 1.5;
        color: #1a1a1a;
        margin-bottom: 30px;
        font-style: italic;
    }

    .quote-author {
        font-size: 14px;
        color: #666;
        font-weight: 400;
    }

    /* Charity Section */
    .charity-section {
        padding: 100px 0;
        background: #333;
        color: white;
    }

    .charity-section .section-title {
        color: white;
    }

    .charity-section .section-title::after {
        background: #E7457D;
    }

    .charity-section .section-subtitle {
        color: rgba(255,255,255,0.8);
    }

    .charity-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 48px;
        font-family: 'Lato', sans-serif;
        color: #F3CC2E;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.8;
    }

    .charity-message {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .charity-message p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .charity-partners {
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .partners-label {
        font-family: 'Lato', sans-serif;
        text-transform: uppercase;
        color: #E7457D;
        margin-bottom: 10px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 100px 0;
        background: white;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .testimonial-item {
        background: #f8f8f8;
        padding: 30px;
        text-align: center;
    }

    .stars {
        color: #F3CC2E;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.8;
        color: #666;
        margin-bottom: 25px;
        font-style: italic;
    }

    .testimonial-author strong {
        display: block;
        font-size: 16px;
        color: #333;
        margin-bottom: 5px;
    }

    .testimonial-author span {
        font-size: 14px;
        color: #999;
    }

    /* Featured Section */
    .featured-section {
        padding: 80px 0;
        background: #f8f8f8;
    }

    .featured-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
    }

    .logo-item {
        font-family: 'Lato', sans-serif;
        font-size: 20px;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 100px 0;
        background: white;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

    .price-card {
        background: #f8f8f8;
        padding: 40px 30px;
        text-align: center;
        position: relative;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .price-card:hover,
    .price-card.selected {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .price-card.featured {
        background: #333;
        color: white;
    }

    .popular-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: #E7457D;
        color: white;
        padding: 5px 20px;
        font-size: 12px;
        text-transform: uppercase;
        font-family: 'Lato', sans-serif;
    }

    .size-label {
        font-size: 24px;
        font-family: 'Lato', sans-serif;
        margin-bottom: 20px;
    }

    .price-original {
        font-size: 18px;
        text-decoration: line-through;
        opacity: 0.6;
        margin-bottom: 5px;
    }

    .price-final {
        font-size: 36px;
        font-family: 'Lato', sans-serif;
        color: #E7457D;
        margin-bottom: 10px;
    }

    .price-card.featured .price-final {
        color: #F3CC2E;
    }

    .price-note {
        font-size: 14px;
        opacity: 0.8;
        margin-bottom: 20px;
    }

    .select-size {
        background: #E7457D;
        color: white;
        border: none;
        padding: 12px 30px;
        font-family: 'Lato', sans-serif;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .price-card.featured .select-size {
        background: #F3CC2E;
        color: #333;
    }

    .select-size:hover {
        opacity: 0.9;
    }

    .pricing-summary {
        max-width: 600px;
        margin: 0 auto;
    }

    .summary-content {
        background: #f8f8f8;
        padding: 40px;
    }

    .summary-content h3 {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }

    .summary-line {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ddd;
    }

    .summary-line.total {
        border-bottom: none;
        border-top: 2px solid #333;
        padding-top: 15px;
        margin-top: 20px;
        font-size: 20px;
        font-weight: bold;
    }

    .summary-line .price {
        font-family: 'Lato', sans-serif;
        font-size: 18px;
        color: #E7457D;
    }

    .summary-line.total .price {
        font-size: 24px;
    }

    /* Commission Form Section */
    .commission-form-section {
        padding: 100px 0;
        background: #ffffff;
    }

    .form-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .delivery-options h3 {
        text-align: center;
        font-size: 24px;
        margin-bottom: 40px;
    }

    .option-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .option-card {
        background: white;
        padding: 40px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        display: block;
    }

    .option-card input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

    .option-card:hover,
    .option-card:has(input:checked) {
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

    .option-card:has(input:checked) {
        border: 3px solid #E7457D;
    }

    .option-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .option-content h4 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .option-content p {
        color: #666;
        font-size: 15px;
    }

    .form-cta {
        text-align: center;
    }

    .form-note {
        margin-top: 20px;
        color: #666;
        font-size: 14px;
    }

    /* Magazine Style Carousel */
    .stories-section {
        max-width: 1400px;
        margin: 0 auto;
        padding: 80px 20px;
        text-align: center;
    }

    .story-container {
        display: flex;
        background: white;
        min-height: 500px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
        transition: all 0.6s ease;
    }

    .story-image {
        flex: 1.2;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .story-content {
        flex: 1;
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }

    .story-name {
        font-size: 42px;
        font-weight: 300;
        color: #1d1d1f;
        margin-bottom: 12px;
        letter-spacing: -1px;
        font-family: 'Lato', sans-serif;
        text-transform: uppercase;
    }

    .story-age {
        font-size: 14px;
        color: #E7457D;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 30px;
        font-family: 'Lato', sans-serif;
    }

    .story-quote {
        font-size: 24px;
        line-height: 1.6;
        color: #374151;
        font-style: italic;
        margin-bottom: 30px;
        quotes: """ """;
    }

    .story-quote:before {
        content: open-quote;
        font-size: 60px;
        color: #E7457D;
        line-height: 0;
        vertical-align: -20px;
    }

    .story-description {
        font-size: 16px;
        line-height: 1.7;
        color: #6b7280;
    }

    .story-navigation {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 50px;
    }

    .nav-button {
        padding: 12px 30px;
        background: transparent;
        border: 2px solid #e5e7eb;
        color: #6b7280;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Lato', sans-serif;
    }

    .nav-button.active {
        background: #E7457D;
        border-color: #E7457D;
        color: white;
    }

    .nav-button:hover {
        border-color: #E7457D;
        color: #E7457D;
    }

    .nav-button.active:hover {
        color: white;
    }

    /* Mobile Responsiveness */
    @media (max-width: 1024px) {
        .process-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .pricing-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .seen-on-section {
            padding: 40px 20px;
        }

        .logo-item {
            padding: 0 25px;
            height: 50px;
        }

            .logo-item img {
                max-height: 30px;
            }

        .logo-track {
            animation-duration: 35s;
        }

        .logo-text {
            font-size: 0.85rem !important;
        }
    }

    @media (min-width: 769px) {
        .seen-on-section {
            padding: 80px 40px;
        }

        .seen-on-title {
            font-size: 1.125rem;
            margin-bottom: 2.5rem;
        }

        .logo-item {
            padding: 0 50px;
            height: 80px;
        }

            .logo-item img {
                max-height: 50px;
            }
    }

    @media (max-width: 768px) {
        html, body {
            overflow-x: hidden;
            width: 100%;
        }

        .heirloom-commission-page {
            overflow-x: hidden;
            width: 100%;
        }

        /* Hero Section - Mobile Optimized */
        .luxury-hero {
            height: auto;
            display: flex;
            flex-direction: column;
        }

        .hero-slider,
        .hero-slide {
            position: relative;
            height: 60vh;
            width: 100%;
        }

        .hero-overlay {
            display: none;
        }

        .hero-container {
            position: relative;
            height: auto;
            padding: 0;
            margin: 0;
            display: block;
        }

        .hero-content-box {
            width: 100%;
            margin: 0;
            padding: 40px 20px;
            background: white;
            text-align: center;
            box-shadow: none;
        }

        .hero-title {
            font-size: 36px;
            color: #1a1a1a;
            text-shadow: none;
        }

        .hero-subtitle {
            font-size: 16px;
            color: #666;
            text-shadow: none;
        }

        .hero-nav {
            top: 0;
            height: 60vh;
            padding: 0 20px;
        }

        .hero-nav-btn {
            width: 40px;
            height: 40px;
            font-size: 24px;
        }

        .hero-dots {
            bottom: auto;
            top: calc(60vh - 30px);
        }


        .hero-cta {
            width: 100%;
            text-align: center;
        }

        .hero-trust-badge {
            margin-top: 20px;
        }

        .hero-trust-badge .trust-title {
            color: #333;
        }

        .hero-trust-badge .trust-subtitle {
            color: #666;
        }

        /* Process Section - Mobile */
        .process-section {
            padding: 50px 20px;
        }

        .process-container {
            padding: 0 20px;
        }

        .section-title {
            font-size: 32px;
            margin-bottom: 50px;
        }

        .process-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .step-image {
            padding-top: 75%;
        }

        .step-number {
            width: 40px;
            height: 40px;
            font-size: 16px;
            bottom: -20px;
        }

        .step-content {
            padding: 35px 20px 25px;
        }

        .step-title {
            font-size: 1rem;
            white-space: normal;
        }

        .step-description {
            font-size: 14px;
        }

        /* Comparison Section - Mobile */
        .comparison-split {
            flex-direction: column;
        }

        .vs-badge {
            top: 50%;
        }

        .comparison-side {
            padding: 40px 20px;
        }

        .comparison-image {
            width: 320px;
            height: 320px;
        }

        .comparison-btn {
            padding: 15px 40px;
            font-size: 16px;
        }

        /* Gallery Section - Mobile */
        .curated-gallery {
            padding: 50px 20px;
        }

        .gallery-header {
            margin-bottom: 35px;
        }

        .gallery-title {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .gallery-subtitle {
            font-size: 14px;
        }

        .gallery-masonry {
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            grid-auto-rows: 140px;
        }

        .masonry-item {
            grid-row: span 1 !important;
        }

        .masonry-text {
            font-size: 10px;
        }

        /* Quote Section - Mobile */
        .quote-section {
            padding: 45px 20px;
        }

        .quote-text {
            font-size: 18px;
            line-height: 1.4;
            margin-bottom: 18px;
        }

        .quote-author {
            font-size: 12px;
        }

        /* CTA Section - Mobile */
        .clean-cta {
            padding: 50px 20px;
        }

        .cta-title {
            font-size: 22px;
            margin-bottom: 18px;
        }

        .cta-text {
            font-size: 14px;
            margin-bottom: 25px;
        }

        .cta-button {
            width: 100%;
            padding: 14px 25px;
            font-size: 14px;
        }

        /* Other Sections - Mobile */
        .section-title {
            font-size: 26px !important;
        }

        .section-subtitle {
            font-size: 15px !important;
        }

        .story-container {
            flex-direction: column;
            min-height: auto;
        }

        .story-image {
            height: 220px;
        }

        .story-content {
            padding: 25px 18px;
        }

        .story-name {
            font-size: 22px;
        }

        .story-quote {
            font-size: 15px;
        }

        .charity-stats {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .stat-number {
            font-size: 32px;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .testimonial-item {
            padding: 20px 18px;
        }

        .featured-logos {
            flex-direction: column;
            gap: 18px;
        }

        .pricing-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .option-cards {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .option-card {
            padding: 25px 18px;
        }

        .btn-primary {
            width: 100%;
            text-align: center;
        }

        .comparison-container {
            grid-template-columns: 1fr;
        }

        .before-image,
        .after-image {
            height: 180px;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .gallery-item {
            height: 250px;
        }
    }

    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .masonry-item:hover {
            transform: none !important;
            filter: none !important;
        }
    }

    /* Only enable hover on devices that support it */
    @media (hover: hover) and (pointer: fine) {
        .masonry-item:hover {
            transform: scale(1.02);
        }
    }

    /* Testimonials Section */
    .testimonials-modern {
        padding: 80px 40px;
        background: #f8f9fa;
    }

    .testimonials-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .testimonials-title {
        font-size: 48px;
        font-weight: 400;
        color: #2c2c2c;
        margin-bottom: 15px;
        letter-spacing: -0.02em;
        font-family: 'Fjalla One', sans-serif;
        text-transform: uppercase;
        font-family: 'Cormorant Garamond', serif;
    }

    .testimonials-subtitle {
        font-size: 16px;
        color: #666;
        font-weight: 300;
    }

    .testimonials-wrapper {
        position: relative;
    }

    .testimonials-carousel {
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .testimonials-track {
        display: flex;
        gap: 30px;
        width: max-content;
        will-change: transform;
        animation: scroll-testimonials 45s linear infinite;
    }

    .testimonials-track:hover,
    .testimonials-track.paused {
        animation-play-state: paused;
    }

    @keyframes scroll-testimonials {
        0%, 5% {
            transform: translateX(0);
        }
        95%, 100% {
            transform: translateX(calc(-100% + 100vw));
        }
    }

    .testimonial-nav {
        display: none;
    }

    .testimonial-dots {
        display: none;
    }

    .testimonial-prev {
        left: -25px;
    }

    .testimonial-next {
        right: -25px;
    }

    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 40px;
    }

    .dot {
        width: 10px;
        height: 10px;
        background: #d0d0d0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot:hover {
        background: #E7457D;
        opacity: 0.7;
    }

    .dot.active {
        background: #E7457D;
        width: 30px;
    }

    .testimonial-card {
        background: white;
        padding: 30px 25px;
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        position: relative;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        flex: 0 0 350px;
        min-width: 350px;
        cursor: pointer;
    }

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: #E7457D;
        transition: width 0.4s ease;
    }

    .testimonial-card:hover {
        background: white;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        transform: translateY(-5px);
    }

    .testimonial-card:hover::before {
        width: 100%;
    }

    .testimonial-stars {
        color: #E7457D;
        font-size: 16px;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        margin-bottom: 25px;
        flex: 1;
        font-style: italic;
        font-weight: 300;
    }

    .testimonial-author {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid #e8e8e8;
    }

    .author-name {
        font-size: 14px;
        font-weight: 500;
        color: #2c2c2c;
        margin-bottom: 5px;
    }

    .author-detail {
        font-size: 13px;
        color: #999;
        font-weight: 300;
    }

    @media (max-width: 1024px) {
        .testimonials-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .testimonial-nav {
            width: 40px;
            height: 40px;
            font-size: 24px;
        }

        .testimonial-prev {
            left: -15px;
        }

        .testimonial-next {
            right: -15px;
        }
    }

    @media (max-width: 1024px) and (min-width: 769px) {
        .testimonial-card {
            flex: 0 0 calc(50% - 15px);
            min-width: calc(50% - 15px);
        }
    }

    @media (max-width: 768px) {
        .testimonials-modern {
            padding: 50px 0;
        }

        .testimonials-header {
            margin-bottom: 40px;
            text-align: center;
            padding: 0 20px;
        }

        .testimonials-title {
            font-size: 36px;
        }

        .testimonials-subtitle {
            font-size: 15px;
            padding: 0 10px;
        }

        .testimonials-wrapper {
            padding: 0;
        }

        .testimonials-carousel {
            overflow: hidden;
        }

        .testimonial-card {
            padding: 25px 20px;
            flex: 0 0 280px;
            min-width: 280px;
            box-sizing: border-box;
        }

        .testimonials-track {
            gap: 20px;
            animation-duration: 25s;
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.5;
        }

        .testimonial-stars {
            font-size: 14px;
            margin-bottom: 15px;
        }

        .testimonial-author {
            padding-top: 15px;
        }

        .author-name {
            font-size: 13px;
        }

        .author-detail {
            font-size: 12px;
        }

        .testimonial-dots {
            margin-top: 30px;
        }
    }

    /* Commission Form Section - V1.2 Split Layout */
    .commission-form-section {
        padding: 0;
        background: #ffffff;
    }

    .commission-split-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
        max-width: 1400px;
        margin: 0 auto;
        padding: 120px 40px;
    }

    .commission-image-side {
        position: sticky;
        top: 100px;
    }

    .commission-sample-img {
        width: 100%;
        height: auto;
        display: block;
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
    }

    .commission-form-side {
        max-width: 500px;
    }

    .commission-title {
        font-family: 'Lato', sans-serif;
        text-transform: uppercase;
        font-size: 32px;
        font-weight: 400;
        margin-bottom: 12px;
        letter-spacing: 1px;
        color: #333;
    }

    .commission-subtitle {
        font-size: 15px;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .method-tabs {
        display: flex;
        gap: 12px;
        margin-bottom: 30px;
    }

    .method-tab {
        flex: 1;
        padding: 12px 20px;
        background: white;
        border: 2px solid #e8e8e8;
        cursor: pointer;
        transition: all 0.2s ease;
        text-align: center;
        font-family: 'Lato', sans-serif;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.5px;
        color: #666;
    }

    .method-tab:hover,
    .method-tab.active {
        border-color: #E7457D;
        color: #333;
    }

    .upload-section {
        animation: fadeIn 0.4s ease;
    }

    .upload-drop-zone {
        border: 2px dashed #d0d0d0;
        background: #fafafa;
        padding: 30px 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.2s ease;
        margin-bottom: 25px;
    }

    .upload-drop-zone:hover {
        border-color: #E7457D;
        background: white;
    }

    .upload-drop-zone .upload-icon {
        font-size: 32px;
        color: #E7457D;
        margin-bottom: 12px;
    }

    .upload-drop-zone .upload-text {
        font-size: 14px;
        color: #666;
    }

    .upload-drop-zone .upload-note {
        font-size: 12px;
        color: #999;
        margin-top: 8px;
    }

    /* File List Section */
    .file-list-section {
        margin-top: 25px;
    }

    .section-label {
        font-size: 12px;
        font-weight: 600;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .file-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .file-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        background: #fafafa;
        border: 1px solid #e8e8e8;
        transition: all 0.2s ease;
    }

    .file-item:hover {
        background: white;
    }

    .file-preview {
        width: 50px;
        height: 50px;
        background: #e8e8e8;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .file-info {
        flex: 1;
    }

    .file-name {
        font-size: 13px;
        font-weight: 600;
        color: #333;
        margin-bottom: 3px;
    }

    .file-size {
        font-size: 11px;
        color: #999;
    }

    .file-remove {
        width: 24px;
        height: 24px;
        background: transparent;
        border: 1px solid #e8e8e8;
        color: #666;
        cursor: pointer;
        font-size: 16px;
        transition: all 0.2s ease;
    }

    .file-remove:hover {
        background: #E7457D;
        border-color: #E7457D;
        color: white;
    }

    .complete-order-btn {
        width: 100%;
        padding: 18px 40px;
        background: #333;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease;
        font-family: 'Lato', sans-serif;
        text-transform: none;
        margin-top: 25px;
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
    }

    .complete-order-btn:hover {
        background: #1a1a1a;
    }

    .upload-thumbs {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .thumb-item {
        position: relative;
        aspect-ratio: 1;
        background: white;
        border: 2px dashed #d0d0d0;
        padding: 3px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .thumb-item:hover {
        border-color: #1d1d1f;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

    .thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .thumb-remove {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        line-height: 1;
        opacity: 0;
        transition: opacity 0.2s, background 0.2s;
        backdrop-filter: blur(4px);
    }

    .thumb-item:hover .thumb-remove {
        opacity: 1;
    }

    .thumb-remove:hover {
        background: #E7457D;
    }

    /* ====== UPLOAD THUMBNAILS ====== */
    .upload-thumbs {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 40px;
    }

    .upload-thumbs .jbs-thumb {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        transition: all 0.3s ease;
        position: relative;
        height: 80px;
    }

    .upload-thumbs .jbs-thumb:nth-child(odd) {
        background: #f9f9f9;
    }

    .upload-thumbs .jbs-thumb:nth-child(even) {
        background: white;
    }

    .upload-thumbs .jbs-thumb:hover {
        background: #f0f0f0;
        transform: translateX(4px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .upload-thumbs .jbs-thumb.uploading {
        opacity: 0.7;
    }

    .upload-thumbs .jbs-thumb-img {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        background: white;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
        padding: 6px;
    }

    .upload-thumbs .jbs-thumb-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .upload-thumbs .jbs-thumb-name {
        flex: 1;
        margin-left: 18px;
        font-size: 14px;
        color: #333;
        word-break: break-word;
        font-family: 'Lato', sans-serif;
    }

    .upload-thumbs .jbs-x {
        width: 36px;
        height: 36px;
        background: #333;
        color: white;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        line-height: 1;
        transition: all 0.3s ease;
        margin-left: 20px;
        flex-shrink: 0;
    }

    .upload-thumbs .jbs-x:hover {
        background: #e7457d;
    }

    /* Progress Bar */
    .jbs-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        background: #f3cc2e;
        transition: width 0.3s ease;
        width: 0%;
    }

    /* FAQ Section */
    .faq-section {
        padding: 100px 40px;
        background: #f8f9fa;
    }

    .faq-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .faq-title {
        font-family: 'Fjalla One', sans-serif;
        font-size: 48px;
        text-align: center;
        color: #333;
        margin-bottom: 16px;
        font-weight: 400;
        text-transform: uppercase;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .faq-subtitle {
        font-family: 'Lato', sans-serif;
        font-size: 18px;
        text-align: center;
        color: #666;
        margin-bottom: 60px;
        font-weight: 300;
    }

    .faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .faq-item {
        background: #fff;
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item:hover {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        padding: 28px 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-family: 'Fjalla One', sans-serif;
        font-size: 20px;
        font-weight: 400;
        color: #333;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-question:hover {
        background: #f5f5f5;
    }

    .faq-question:focus {
        outline: 2px solid #E7457D;
        outline-offset: -2px;
    }

    .faq-item.active .faq-question {
        background: #E7457D;
        color: #fff;
    }

    .faq-icon {
        font-size: 28px;
        font-weight: 300;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
        margin-left: 20px;
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 32px 32px 32px;
    }

    .faq-answer p {
        font-family: 'Lato', sans-serif;
        font-size: 16px;
        line-height: 1.8;
        color: #333;
        margin: 0;
        margin-top:22px;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    }

    .faq-item.active .faq-answer p {
        opacity: 1;
        transform: translateY(0);
    }

    /* ====== RESPONSIVE STYLES ====== */
    @media (max-width: 768px) {
        .upload-thumbs .jbs-thumb {
            height: 70px;
            padding: 8px 15px;
        }

        .upload-thumbs .jbs-thumb-img {
            width: 54px;
            height: 54px;
            padding: 5px;
        }

        .upload-thumbs .jbs-thumb-name {
            margin-left: 15px;
            font-size: 13px;
        }

        .upload-thumbs .jbs-x {
            width: 32px;
            height: 32px;
            font-size: 20px;
        }

        /* FAQ - Tablet */
        .faq-section {
            padding: 70px 30px;
        }

        .faq-title {
            font-size: 48px;
        }

        .faq-subtitle {
            font-size: 16px;
            margin-bottom: 50px;
        }

        .faq-question {
            font-size: 18px;
            padding: 24px 28px;
        }

        .faq-icon {
            font-size: 24px;
        }

        .faq-item.active .faq-answer {
            padding: 0 28px 28px 28px;
        }

        .faq-answer p {
            font-size: 15px;
        }
    }

    @media (max-width: 480px) {
        .upload-thumbs .jbs-thumb {
            height: 65px;
            padding: 8px 12px;
        }

        .upload-thumbs .jbs-thumb-img {
            width: 49px;
            height: 49px;
            padding: 4px;
        }

        .upload-thumbs .jbs-thumb-name {
            margin-left: 12px;
            font-size: 12px;
        }

        .upload-thumbs .jbs-x {
            width: 28px;
            height: 28px;
            font-size: 18px;
            margin-left: 10px;
        }

        /* FAQ - Mobile */
        .faq-section {
            padding: 50px 20px;
        }

        .faq-title {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .faq-subtitle {
            font-size: 15px;
            margin-bottom: 40px;
        }

        .faq-accordion {
            gap: 12px;
        }

        .faq-question {
            font-size: 16px;
            padding: 20px 20px;
        }

        .faq-icon {
            font-size: 22px;
            margin-left: 12px;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 24px 20px;
        }

        .faq-answer p {
            font-size: 14px;
            line-height: 1.7;
        }
    }

    .mail-section {
        animation: fadeIn 0.4s ease;
    }

    .mail-card {
        background: #fafafa;
        padding: 50px 40px;
        text-align: center;
    }

    .mail-title {
        font-size: 24px;
        font-weight: 500;
        color: #2c2c2c;
        margin-bottom: 30px;
    }

    .mail-steps {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 40px;
        padding-left: 20px;
    }

    .mail-steps li {
        font-size: 16px;
        color: #666;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .mail-note {
        margin-top: 30px;
        padding: 20px;
        background: white;
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    .mail-note strong {
        color: #2c2c2c;
    }

    @media (max-width: 768px) {
        .commission-split-container {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 80px 20px;
        }

        .commission-image-side {
            position: relative;
            top: 0;
        }

        .commission-form-side {
            max-width: 100%;
        }

        .commission-title {
            font-size: 28px;
        }

        .commission-subtitle {
            font-size: 14px;
            margin-bottom: 25px;
        }

        .method-tabs {
            gap: 10px;
        }

        .method-tab {
            padding: 10px 16px;
            font-size: 12px;
        }

        .upload-drop-zone {
            padding: 25px 15px;
        }

        .file-item {
            padding: 10px;
        }

        .file-preview {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .file-name {
            font-size: 12px;
        }

        .file-size {
            font-size: 10px;
        }

        .mail-card {
            padding: 35px 25px;
        }

        .upload-thumbs {
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 10px;
        }
    }

    /* Your Child's Story Parallax Section */
    .parallax-section {
        height: 100vh;
        background-image: url('https://jbmediaau.blob.core.windows.net/static-images/keepsakes/mockup-2.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .parallax-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
    }

    .parallax-content {
        text-align: center;
        color: white;
        z-index: 2;
        position: relative;
        max-width: 1000px;
        padding: 0 40px;
    }

    .parallax-subtitle-small {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        margin-bottom: 40px;
        opacity: 0.8;
    }

    .parallax-title {
        font-size: 84px;
        font-weight: 200;
        margin-bottom: 40px;
        letter-spacing: -0.04em;
        line-height: 1.0;
        font-family: 'Cormorant Garamond', serif;
    }

    .parallax-subtitle {
        font-size: 24px;
        font-weight: 300;
        margin-bottom: 60px;
        line-height: 1.5;
        opacity: 0.9;
    }

    .parallax-cta-container {
        display: flex;
        gap: 32px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .parallax-btn {
        display: inline-block;
        padding: 20px 56px;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.4s ease;
        border: none;
        cursor: pointer;
        font-family: 'Lato', sans-serif;
    }

    .parallax-btn-primary {
        background: rgba(255, 255, 255, 0.95);
        color: #1d1d1f;
    }

    .parallax-btn-primary:hover {
        background: white;
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

    .parallax-btn-secondary {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.6);
        color: white;
    }

    .parallax-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
        transform: translateY(-4px);
    }

    @media (max-width: 768px) {
        .parallax-section {
            background-attachment: scroll;
            height: auto;
            padding: 80px 20px;
        }

        .parallax-title {
            font-size: 56px;
        }

        .parallax-subtitle {
            font-size: 18px;
        }

        .parallax-cta-container {
            flex-direction: column;
            align-items: center;
        }

        .parallax-btn {
            width: 100%;
            max-width: 300px;
            text-align: center;
        }
    }

    /* Investment Section */
    .investment-section {
        padding: 120px 40px;
        background: white;
    }

    .investment-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .investment-title {
        font-size: 48px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
        color: #333;
    }

    .investment-subtitle {
        text-align: center;
        font-size: 18px;
        color: #666;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .investment-callout {
        background: #f5f5f5;
        color: #333;
        padding: 30px;
        margin: 0 auto 60px;
        max-width: 600px;
        text-align: center;
        box-shadow: 0 0 14px rgba(0,0,0,0.06);
        border-left: 4px solid #333;
    }

    .callout-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .callout-text {
        font-size: 16px;
        margin: 0;
        line-height: 1.5;
    }

    .canvas-list {
        background: #fafafa;
        padding: 40px;
        margin-bottom: 60px;
    }

    .canvas-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
        font-size: 16px;
    }

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

    .canvas-size {
        font-family: 'Lato', sans-serif;
        font-weight: 600;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .canvas-pricing {
        font-weight: 600;
        color: #333;
    }

    .credit-note {
        font-weight: 400;
        color: #666;
        font-size: 14px;
    }

    /* Canvas Calculator Styles */
    .canvas-item.clickable {
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .canvas-item.clickable:hover {
        background-color: #f0f0f0;
        transform: translateX(5px);
    }

    .canvas-item.clickable.selected {
        background-color: #E7457D;
        color: white;
        transform: translateX(10px);
    }

    .canvas-item.clickable.selected .canvas-size,
    .canvas-item.clickable.selected .canvas-pricing,
    .canvas-item.clickable.selected .credit-note {
        color: white;
    }

    .pricing-calculator {
        margin-top: 30px;
        padding: 20px;
        background: #f8f8f8;
        text-align: center;
    }

    .calculator-prompt {
        font-size: 16px;
        color: #666;
        margin-bottom: 15px;
    }

    .calculator-result {
        background: white;
        padding: 20px;
        margin-top: 15px;
    }

    .calculation-breakdown {
        font-size: 18px;
        color: #333;
        margin-bottom: 10px;
    }

    .calculator-disclaimer {
        font-size: 14px;
        color: #666;
        font-style: italic;
        margin: 0;
    }

    /* Timeline Section */
    .timeline-section {
        padding: 100px 40px;
        background: #fafafa;
    }

    .timeline-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .timeline-title {
        font-size: 48px;
        font-weight: 400;
        text-align: center;
        margin-bottom: 60px;
        letter-spacing: -0.02em;
        font-family: 'Fjalla One', sans-serif;
        text-transform: uppercase;
        color: #333;
    }

    .timeline-subtitle {
        font-size: 17px;
        color: #666;
        margin: 12px 0 60px;
        font-weight: 400;
        text-align: center;
    }

    .timeline-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .timeline-step {
        background: white;
        padding: 30px;
        display: flex;
        align-items: center;
        gap: 25px;
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
        position: relative;
    }

    .timeline-section .step-number {
        font-family: 'Lato', sans-serif;
        font-size: 56px;
        font-weight: 400;
        color: #333;
        line-height: 1;
        min-width: 70px;
        letter-spacing: -2px;
        margin: 0;
        position: static;
        transform: none;
        width: auto;
        height: auto;
        bottom: auto;
        left: auto;
        background: transparent;
        border: none;
        display: block;
        flex-shrink: 0;
    }

    .timeline-section .step-content {
        flex: 1;
        text-align: left;
    }

    .timeline-section .step-title {
        font-family: 'Lato', sans-serif;
        text-transform: uppercase;
        font-size: 19px;
        font-weight: 400;
        margin: 0 0 8px 0;
        color: #333;
        line-height: 1.2;
        letter-spacing: 0.5px;
        text-align: left;
    }

    .timeline-section .step-description {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin: 0;
        font-weight: 400;
        text-align: left;
    }


    /* Preview Section */
    .preview-section {
        padding: 120px 40px;
        background: white;
        display: none; /* Hidden by default */
    }

    .preview-section.visible {
        display: block;
    }

    .preview-container {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }

    .preview-title {
        font-size: 48px;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
        color: #333;
    }

    .preview-mockup {
        background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/images/living-room-wall.jpg') center/cover;
        height: 400px;
        position: relative;
        margin: 40px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 40px;
    }

    .preview-frame {
        width: 200px;
        height: 150px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .preview-description {
        font-size: 18px;
        color: #666;
        margin-top: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Preferences Section */
    .preferences-section {
        padding: 120px 40px;
        background: #f5f5f5;
        display: none; /* Hidden by default, shown after preview */
    }

    .preferences-section.visible {
        display: block;
    }

    .preferences-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .preferences-title {
        font-size: 48px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 60px;
        letter-spacing: -0.02em;
        color: #333;
    }

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

    .form-label {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
        display: block;
    }

    .form-input {
        width: 100%;
        height: 50px;
        padding: 0 20px;
        border: none;
        background: white;
        font-size: 16px;
        color: #333;
    }

    .style-preferences {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .style-card {
        background: white;
        padding: 30px 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
        position: relative;
    }

    .style-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .style-card.selected {
        border: 3px solid #E7457D;
        transform: translateY(-5px);
    }

    .style-card input[type="radio"] {
        display: none;
    }

    .style-icon {
        width: 60px;
        height: 60px;
        background: #f0f0f0;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .style-name {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    /* Submit Section */
    .submit-section {
        padding: 120px 40px;
        background: white;
        text-align: center;
        display: none; /* Hidden by default, shown after preferences */
    }

    .submit-section.visible {
        display: block;
    }

    .submit-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .investment-summary {
        background: #f8f8f8;
        padding: 40px;
        margin-bottom: 40px;
        font-size: 18px;
    }

    .summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .summary-row:last-child {
        border-bottom: none;
        font-weight: 600;
        font-size: 20px;
        color: #333;
    }

    .submit-cta {
        background: #E7457D;
        color: white;
        padding: 20px 50px;
        border: none;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 2px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        margin-bottom: 20px;
    }

    .submit-cta:hover {
        background: #d63c70;
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(231, 69, 125, 0.3);
    }

    .submit-note {
        font-size: 14px;
        color: #666;
        font-style: italic;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .canvas-list {
            padding: 20px;
        }

        .canvas-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            padding: 15px 0;
        }

        .canvas-pricing {
            align-self: flex-end;
        }

        .canvas-item.clickable:hover {
            transform: none;
        }

        .canvas-item.clickable.selected {
            transform: none;
        }

        .pricing-calculator {
            padding: 15px;
            margin-top: 20px;
        }

        .calculator-prompt {
            font-size: 14px;
        }

        .calculation-breakdown {
            font-size: 16px;
        }

        .timeline-steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .style-preferences {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .investment-section, .timeline-section, .preview-section,
        .preferences-section, .submit-section {
            padding: 80px 20px;
        }

        .investment-title, .timeline-title, .preview-title, .preferences-title {
            font-size: 48px;
        }

        .timeline-subtitle {
            font-size: 16px;
            margin: 8px 0 40px;
        }

        .timeline-steps {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .timeline-section .step-number {
            font-size: 44px;
            min-width: 60px;
        }

        .timeline-section .step-title {
            font-size: 1rem;
        }

        .timeline-section .step-description {
            font-size: 14px;
        }

        .preview-mockup {
            height: 300px;
            flex-direction: column;
            gap: 15px;
        }

        .preview-frame {
            width: 150px;
            height: 100px;
            font-size: 12px;
        }

    }

    /* ===== INVESTMENT SECTION STYLES START - DO NOT MODIFY ===== */

    /* Investment Split Section */
    .investment-split-section {
        padding: 0;
        background: #ffffff;
    }

    .investment-split-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 120px 40px;
    }

    .investment-image-side {
        display: flex;
        align-items: center;
    }

    .investment-artwork-img {
        width: 100%;
        height: auto;
        display: block;
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
    }

    .investment-content-side {
        max-width: 600px;
    }

    .investment-eyebrow {
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #757575;
        margin-bottom: 20px;
        font-family: 'Lato', sans-serif;
    }

    .investment-main-title {
        font-size: 48px;
        font-weight: 400;
        line-height: 1.1;
        color: #1a1a1a;
        margin-bottom: 30px;
        font-family: 'Fjalla One', sans-serif;
        text-transform: uppercase;
        font-family: 'Cormorant Garamond', serif;
    }

    .investment-description {
        font-size: 16px;
        line-height: 1.7;
        color: #757575;
        margin-bottom: 40px;
        font-family: 'Lato', sans-serif;
    }

    .investment-pricing-table {
        background: #f7f7f7;
        padding: 30px;
        margin-bottom: 40px;
    }

    .investment-price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #e8e8e8;
        font-family: 'Lato', sans-serif;
    }

    .investment-price-row:last-child {
        border-bottom: none;
    }

    .investment-total-row {
        border-top: 2px solid #1a1a1a;
        margin-top: 15px;
        padding-top: 20px;
        font-weight: 600;
        font-size: 20px;
    }

    .investment-price-label {
        color: #757575;
        font-size: 16px;
    }

    .investment-price-value {
        color: #1a1a1a;
        font-size: 16px;
        font-weight: 500;
    }

    .investment-total-row .investment-price-label,
    .investment-total-row .investment-price-value {
        color: #1a1a1a;
        font-weight: 600;
        font-size: 20px;
    }

    .investment-highlight-row {
        background: #f9f9f9;
        margin: -30px -30px 12px -30px;
        padding: 15px 30px;
    }

    .pay-today-label {
        font-weight: 700;
        font-size: 20px;
        color: #333;
        text-transform: uppercase;
    }

    .investment-price-highlight {
        color: #E7457D;
        font-size: 24px;
        font-weight: 700;
    }

    .investment-canvas-select {
        max-width: 280px;
        min-width: 200px;
        height: 40px;
        border: 1px solid #e0e0e0;
        padding: 0 35px 0 15px;
        font-size: 16px;
        color: #1a1a1a;
        font-family: 'Lato', sans-serif;
        background: #fafafa url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%227%22 viewBox=%220 0 12 7%22%3E%3Cpath fill=%22%23757575%22 d=%22M6 7L0 0h12z%22/%3E%3C/svg%3E') no-repeat right 15px center;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .investment-canvas-select:hover {
        border-color: #d0d0d0;
        background-color: #f5f5f5;
    }

    .investment-canvas-select:focus {
        outline: none;
        border-color: #1a1a1a;
        background-color: #fff;
    }

    .investment-cta-button {
        width: 100%;
        padding: 18px 40px;
        background: #333;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease;
        font-family: 'Lato', sans-serif;
        text-transform: none;
    }

    .investment-cta-button:hover {
        background: #1a1a1a;
    }

    @media (max-width: 968px) {
        .investment-split-container {
            grid-template-columns: 1fr;
            min-height: auto;
            padding: 60px 30px;
        }

        .investment-image-side {
            min-height: auto;
        }

        .investment-content-side {
            padding: 40px 0;
        }

        .investment-main-title {
            font-size: 42px;
        }
    }

    @media (max-width: 640px) {
        .investment-split-container {
            padding: 40px 20px;
            gap: 30px;
        }

        .investment-content-side {
            padding: 20px 0;
        }

        .investment-main-title {
            font-size: 36px;
        }

        .investment-canvas-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .investment-canvas-row .investment-canvas-select {
            width: 100%;
            max-width: 100%;
        }

        .investment-pricing-table {
            padding: 20px;
        }

        .investment-highlight-row {
            margin: -20px -20px 12px -20px;
            padding: 15px 20px;
        }
    }

    /* ===== INVESTMENT SECTION STYLES END ===== */

    /* ===== VARIATION 2: NUMBERED STEPS PROGRESS BAR ===== */
    .commission-progress-bar {
        position: sticky;
        top: 0;
        z-index: 100;
        background: #fff;
        border-bottom: 1px solid #f5f5f5;
        padding: 40px 0;
    }

    .progress-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .progress-steps {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .heirloom-commission-page .commission-progress-bar .progress-steps .progress-step {
        background: transparent !important;
        border-radius: 0 !important;
        border: none !important;
        opacity: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px;
        position: relative;
        z-index: 2;
        min-width: 56px;
        width: auto;
        min-height: 85px;
    }

    .heirloom-commission-page .commission-progress-bar .progress-steps .progress-step.active {
        background: transparent !important;
    }

    .heirloom-commission-page .commission-progress-bar .progress-steps .progress-step.completed {
        background: transparent !important;
    }

    .heirloom-commission-page .commission-progress-bar .progress-steps .progress-step .progress-number {
        width: 56px !important;
        height: 56px !important;
        min-height: 56px !important;
        max-height: 56px !important;
        border: 2px solid #e0e0e0 !important;
        background: #fff !important;
        color: #ccc !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-family: 'Lato', sans-serif !important;
        font-size: 24px !important;
        transition: all 0.4s ease !important;
        position: relative !important;
        line-height: 1 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .heirloom-commission-page .commission-progress-bar .progress-steps .progress-step.active .progress-number {
        border-color: #333 !important;
        color: #333 !important;
        animation: pulse 2s ease-in-out infinite;
    }

    .heirloom-commission-page .commission-progress-bar .progress-steps .progress-step.completed .progress-number {
        background: #333 !important;
        border-color: #333 !important;
        color: #fff !important;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    .progress-label {
        font-family: 'Lato', sans-serif;
        font-size: 13px;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        transition: all 0.3s ease;
    }

    .progress-step.active .progress-label {
        color: #333;
        font-weight: 600;
    }

    .progress-connector {
        position: absolute;
        top: 28px;
        left: 0;
        right: 0;
        height: 2px;
        background: #f0f0f0;
        z-index: 1;
    }

    .progress-connector-fill {
        height: 100%;
        background: #000;
        width: 0%;
        transition: width 0.6s ease;
    }

    /* ===== VARIATION 2: FORM WIZARD ===== */
    .commission-form-section {
        padding: 120px 40px;
        background: #fff;
        min-height: 80vh;
    }

    .form-wizard-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .wizard-step {
        display: none;
    }

    .wizard-step.active {
        display: block;
        animation: slideIn 0.5s ease;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .wizard-step-header {
        margin-bottom: 80px;
    }

    .wizard-step-number {
        font-family: 'Lato', sans-serif;
        font-size: 48px;
        color: #333;
        margin-bottom: 16px;
        letter-spacing: 2px;
    }

    .wizard-step-title {
        font-family: 'Lato', sans-serif;
        font-size: 32px;
        color: #333;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .wizard-step-subtitle {
        font-family: 'Lato', sans-serif;
        font-size: 18px;
        color: #666;
        line-height: 1.8;
        max-width: 650px;
    }

    .wizard-step-content {
        margin-bottom: 60px;
    }

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

    .form-label {
        display: block;
        font-family: 'Lato', sans-serif;
        font-size: 13px;
        color: #666;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .form-input,
    .form-textarea {
        width: 100%;
        padding: 18px 20px;
        border: 1px solid #e0e0e0;
        background: #fafafa;
        font-family: 'Lato', sans-serif;
        font-size: 16px;
        color: #333;
        transition: all 0.3s ease;
    }

    .form-input:focus,
    .form-textarea:focus {
        outline: none;
        border-color: #E7457D;
        background: #fff;
    }

    .form-textarea {
        resize: vertical;
        min-height: 140px;
    }

    /* Age Selector - Modern Design */
    .age-input-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .age-main-input {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .age-number-field {
        flex: 1;
        height: 50px;
        padding: 0 24px;
        border: 2px solid #e0e0e0;
        background: #fafafa;
        font-family: 'Lato', sans-serif;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        transition: all 0.3s ease;
        text-align: center;
    }

    .age-number-field:focus {
        outline: none;
        border-color: #E7457D;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(231, 69, 125, 0.1);
    }

    .age-number-field::placeholder {
        color: #bbb;
        font-weight: 400;
        font-size: 18px;
    }

    /* Remove number input spinners */
    .age-number-field::-webkit-outer-spin-button,
    .age-number-field::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .age-number-field[type=number] {
        -moz-appearance: textfield;
    }

    /* Segmented Control for Months/Years */
    .age-unit-toggle {
        display: flex;
        background: #f0f0f0;
        padding: 4px;
        gap: 4px;
        flex-shrink: 0;
        height: 50px;
    }

    .age-unit-btn {
        padding: 0 28px;
        height: 42px;
        background: transparent;
        border: none;
        color: #666;
        font-size: 14px;
        font-weight: 600;
        font-family: 'Lato', sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .age-unit-btn:hover {
        color: #333;
    }

    .age-unit-btn.active {
        background: white;
        color: #E7457D;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    /* Quick Select Buttons */
    .age-quick-select {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        padding-top: 8px;
    }

    .age-quick-btn {
        padding: 10px 18px;
        background: white;
        border: 1px solid #e0e0e0;
        color: #666;
        font-size: 13px;
        font-weight: 500;
        font-family: 'Lato', sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .age-quick-btn:hover {
        background: #fafafa;
        border-color: #d0d0d0;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .age-quick-btn:active {
        transform: translateY(0);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .age-main-input {
            gap: 8px;
        }

        .age-number-field {
            flex: 1;
            height: 50px;
            padding: 0 12px;
            font-size: 16px;
            min-width: 0;
        }

        .age-unit-toggle {
            width: auto;
            height: 50px;
            flex-shrink: 0;
        }

        .age-unit-btn {
            height: 42px;
            padding: 0 16px;
            font-size: 13px;
        }

        .age-quick-select {
            gap: 6px;
        }

        .age-quick-btn {
            padding: 9px 16px;
            font-size: 12px;
        }
    }

    @media (max-width: 480px) {
        .age-main-input {
            gap: 6px;
        }

        .age-number-field {
            flex: 1;
            height: 50px;
            padding: 0 10px;
            font-size: 15px;
            min-width: 0;
        }

        .age-number-field::placeholder {
            font-size: 13px;
        }

        .age-unit-toggle {
            width: auto;
            height: 50px;
            flex-shrink: 0;
        }

        .age-unit-btn {
            height: 42px;
            padding: 0 12px;
            font-size: 12px;
        }

        .age-quick-btn {
            padding: 8px 14px;
            font-size: 11px;
        }
    }

    /* Summary Grid */
    .summary-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 60px;
    }

    .summary-card {
        background: #fafafa;
        padding: 32px;
        border: 1px solid #f0f0f0;
    }

    .summary-card-title {
        font-family: 'Lato', sans-serif;
        font-size: 11px;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .summary-card-value {
        font-family: 'Lato', sans-serif;
        font-size: 16px;
        color: #333;
        line-height: 1.6;
    }

    .summary-card-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 16px;
        color: #999;
    }

    .summary-card-icon svg {
        width: 100%;
        height: 100%;
    }

    /* Buttons */
    .wizard-step-actions {
        display: flex;
        gap: 16px;
        justify-content: flex-start;
    }

    .btn-step {
        padding: 18px 40px;
        border: none;
        font-family: 'Lato', sans-serif;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-continue {
        background: #E7457D;
        color: #fff;
    }

    .btn-continue:hover {
        background: #d13668;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(231, 69, 125, 0.3);
    }

    .btn-back {
        background: transparent;
        color: #666;
        border: 1px solid #e0e0e0;
    }

    .btn-back:hover {
        border-color: #999;
        color: #333;
    }

    .btn-add-to-cart {
        width: 100%;
        padding: 28px 40px;
        background: #E7457D;
        color: #fff;
        border: none;
        font-family: 'Lato', sans-serif;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 24px;
    }

    .btn-add-to-cart:hover {
        background: #d13668;
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(231, 69, 125, 0.4);
    }

    .info-note {
        text-align: center;
        font-size: 14px;
        color: #999;
        line-height: 1.6;
    }

    /* Method Tabs */
    .method-tabs {
        display: flex;
        gap: 12px;
        margin-bottom: 30px;
    }

    .method-tab {
        flex: 1;
        padding: 16px 20px;
        background: white;
        border: 2px solid #e0e0e0;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        font-family: 'Lato', sans-serif;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
        color: #666;
    }

    .method-tab:hover,
    .method-tab.active {
        border-color: #E7457D;
        color: #E7457D;
    }

    .upload-section,
    .mail-section {
        animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .upload-drop-zone {
        padding: 60px 40px;
        background: #fafafa;
        border: 2px dashed #e0e0e0;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .upload-drop-zone:hover {
        border-color: #E7457D;
        background: #fff;
    }

    /* Mail Section */
    .mail-card {
        background: #fafafa;
        padding: 60px 40px;
        text-align: center;
    }

    .mail-title {
        font-family: 'Lato', sans-serif;
        font-size: 24px;
        color: #333;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .mail-steps {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 40px;
        padding-left: 20px;
    }

    .mail-steps li {
        font-size: 16px;
        color: #666;
        margin-bottom: 14px;
        line-height: 1.7;
    }

    .mail-note {
        margin-top: 30px;
        padding: 20px;
        background: white;
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .mail-note strong {
        color: #333;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .commission-progress-bar {
            padding: 24px 0;
        }

        .progress-container {
            padding: 0 20px;
        }

        .progress-number {
            width: 44px;
            height: 44px;
            font-size: 20px;
        }

        .progress-label {
            font-size: 10px;
            letter-spacing: 0.5px;
        }

        .progress-connector {
            top: 22px;
        }

        .commission-form-section {
            padding: 60px 20px;
        }

        .wizard-step-header {
            margin-bottom: 48px;
        }

        .wizard-step-number {
            font-size: 36px;
        }

        .wizard-step-title {
            font-size: 24px;
        }

        .wizard-step-subtitle {
            font-size: 16px;
        }

        .summary-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .wizard-step-actions {
            flex-direction: column;
        }

        .btn-step {
            width: 100%;
        }

        .method-tabs {
            gap: 10px;
        }

        .method-tab {
            padding: 14px 16px;
            font-size: 12px;
        }

        .upload-drop-zone {
            padding: 40px 20px;
        }

        .mail-card {
            padding: 40px 24px;
        }

        .mail-title {
            font-size: 20px;
        }

        .mail-steps {
            padding-left: 16px;
        }

        .mail-steps li {
            font-size: 14px;
        }
    }

    /* ===== WIZARD STYLES END ===== */

/* ===== Global Add to Cart Modal ===== */
    @media (max-width: 768px) {
        #global-add-to-cart-modal > div {
            width: 95%;
            margin: 20px;
        }
        #global-add-to-cart-modal .buttons-container {
            flex-direction: column;
        }
        #global-add-to-cart-modal .buttons-container button,
        #global-add-to-cart-modal .buttons-container a {
            width: 100%;
        }
    }

/* ===== Notification Toast ===== */
    #notification-toast {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(-100px);
        z-index: 999999;
        opacity: 0;
        transition: all 0.3s ease;
        max-width: 90%;
        width: 500px;
    }

    #notification-toast.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        display: block !important;
    }

    #notification-content {
        background: #fff;
        padding: 20px 25px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border-left: 4px solid #e7457d;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    #notification-message {
        font-family: 'Lato', sans-serif;
        font-size: 15px;
        color: #333;
        line-height: 1.5;
        flex: 1;
    }

    #notification-close {
        background: none;
        border: none;
        font-size: 28px;
        color: #999;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.2s ease;
        flex-shrink: 0;
        line-height: 1;
    }

    #notification-close:hover {
        color: #333;
    }

    @media (max-width: 768px) {
        #notification-toast {
            width: calc(100% - 40px);
            top: 10px;
        }

        #notification-content {
            padding: 15px 20px;
        }

        #notification-message {
            font-size: 14px;
        }
    }

/* ===== Tier Selector (Artwork Pieces) ===== */
.tier-selector-block {
    margin-bottom: 28px;
}

.tier-selector-label {
    font-family: 'Fjalla One', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    margin-bottom: 12px;
}

.tier-selector {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .tier-selector {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tier-card {
    border: 2px solid #e0e0e0;
    background: #fff;
    padding: 20px 18px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    outline: none;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tier-card:hover {
    border-color: #E7457D;
    background: #fff;
}

.tier-card:focus-visible {
    border-color: #E7457D;
    box-shadow: 0 0 0 3px rgba(231, 69, 125, 0.25);
}

.tier-card.is-selected {
    border-color: #E7457D;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
}

.tier-card-name {
    font-family: 'Fjalla One', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #666;
    margin-bottom: 8px;
}

.tier-card-price {
    font-family: 'Fjalla One', sans-serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 6px;
    line-height: 1;
}

.tier-card.is-selected .tier-card-price {
    color: #E7457D;
}

.tier-card-delta {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.5px;
}

/* ===== Upload drop zone disabled state ===== */
.upload-drop-zone.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.upload-drop-zone.is-disabled:hover {
    border-color: #d0d0d0;
    background: #f5f5f5;
}

/* ===== Upload limit notice ===== */
.upload-limit-notice {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid #E7457D;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upload-limit-notice[hidden] {
    display: none;
}

@media (min-width: 640px) {
    .upload-limit-notice {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.upload-limit-text {
    font-size: 14px;
    color: #333;
    line-height: 1.45;
}

.upload-limit-upgrade-btn {
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    background: #E7457D;
    color: #fff;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.15s ease;
    min-height: 44px;
    white-space: nowrap;
}

.upload-limit-upgrade-btn:hover {
    background: #c93a6c;
}

/* ===== Downgrade modal ===== */
.tier-downgrade-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tier-downgrade-modal[hidden] {
    display: none;
}

.tier-downgrade-dialog {
    background: #fff;
    max-width: 480px;
    width: 100%;
    padding: 28px 26px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.18);
}

.tier-downgrade-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: #333;
    margin: 0 0 12px;
}

.tier-downgrade-body {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 22px;
}

.tier-downgrade-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 520px) {
    .tier-downgrade-actions {
        flex-direction: row;
        justify-content: flex-end;
    }
}

.tier-downgrade-btn {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    padding: 12px 18px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    min-height: 44px;
}

.tier-downgrade-keep {
    background: #E7457D;
    color: #fff;
    border-color: #E7457D;
}

.tier-downgrade-keep:hover {
    background: #c93a6c;
    border-color: #c93a6c;
}

.tier-downgrade-switch {
    background: #fff;
    color: #666;
    border-color: #d0d0d0;
}

.tier-downgrade-switch:hover {
    color: #E7457D;
    border-color: #E7457D;
}

/* ===== Method Options (Upload photos / Mail originals) ===== */
.method-options-label {
    font-family: 'Fjalla One', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    margin-bottom: 12px;
}

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

@media (min-width: 640px) {
    .method-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.method-option-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 22px 18px 20px;
    border: 2px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    min-height: 140px;
}

.method-option-card:hover {
    border-color: #E7457D;
}

.method-option-card:has(input:checked),
.method-option-card.is-selected {
    border-color: #E7457D;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
}

.method-option-card:focus-within {
    box-shadow: 0 0 0 3px rgba(231, 69, 125, 0.25);
}

.method-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}

.method-option-radio {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 18px;
    height: 18px;
    border: 2px solid #bbb;
    border-radius: 50%;
    background: #fff;
    transition: border-color 0.15s ease;
}

.method-option-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E7457D;
    transition: transform 0.15s ease;
}

.method-option-card:has(input:checked) .method-option-radio,
.method-option-card.is-selected .method-option-radio {
    border-color: #E7457D;
}

.method-option-card:has(input:checked) .method-option-radio::after,
.method-option-card.is-selected .method-option-radio::after {
    transform: translate(-50%, -50%) scale(1);
}

.method-option-icon {
    color: #999;
    margin-top: 4px;
    line-height: 0;
    transition: color 0.15s ease;
}

.method-option-card:has(input:checked) .method-option-icon,
.method-option-card.is-selected .method-option-icon,
.method-option-card:hover .method-option-icon {
    color: #E7457D;
}

.method-option-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #333;
}

.method-option-desc {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}
