:root {
    /* Color Palette */
    --color-primary: #0a192f;
    /* Deep Navy */
    --color-secondary: #c5a059;
    /* Gold/Bronze */
    --color-text-dark: #1a1a1a;
    --color-text-light: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-border: #e0e0e0;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Header */
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-bg-light);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: default;
    /* Placeholder only */
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: #152d4d;
}

.btn-hero {
    background-color: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
}

.btn-hero:hover {
    background-color: var(--color-text-light);
    color: var(--color-primary);
}

/* --- Header --- */
.header {
    height: var(--header-height);
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-text {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.brand-accent {
    color: #c9a96e;
    margin-left: 6px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary);
}

.header-cta {
    display: block;
}

/* Mobile-only quote button — hidden on desktop */
.mobile-header-cta {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2000;
    /* Ensure it's above the overlay */
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-dark);
    transition: all 0.3s ease;
}

/* Hamburger Active State (X shape) */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-secondary);
}

.no-scroll {
    overflow: hidden;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    overflow: hidden;
    background-color: #000;
    /* Fallback */
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    color: var(--color-text-light);
    max-width: 800px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s ease-out 0.5s;
    /* Delay text appearance slightly */
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--color-text-light);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--color-text-light);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 0;
    }

    /* Hamburger: left */
    .mobile-menu-toggle {
        display: flex;
        grid-column: 1;
        justify-self: start;
    }

    /* Logo: center */
    .logo {
        grid-column: 2;
        justify-self: center;
    }

    .brand-text {
        font-size: 20px;
    }

    /* Mobile quote: right */
    .mobile-header-cta {
        display: inline-block;
        grid-column: 3;
        justify-self: end;
        padding: 8px 16px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        border-radius: 6px;
        white-space: nowrap;
    }

    /* Hide desktop-only nav and CTA */
    .nav {
        display: none;
    }

    .header-cta-wrapper {
        display: none;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    /* --- Mobile Categories: Stacked Full-Width (<768px) --- */
    .categories .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .category-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }

    .category-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 120px;
        margin-bottom: 20px;
        border-radius: 12px;
        padding: 1.5rem;
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 1rem;
        text-align: left;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--color-border);
        overflow: hidden;
    }

    .card-image-wrapper,
    .card-desc {
        display: none !important;
    }

    .mobile-cat-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 50%;
        background-color: #f4f6f9;
        color: var(--color-secondary);
    }

    .cat-icon-svg {
        width: 28px;
        height: 28px;
    }

    .card-content {
        padding: 0;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .card-title {
        font-size: 1.05rem;
        line-height: 1.3;
        margin: 0;
        font-weight: 600;
        font-family: var(--font-body);
    }
}

/* --- Trusted By Brands Section --- */
.trusted-brands {
    padding: 70px 0;
    background: #f8f9fb;
    text-align: center;
}

.trusted-brands .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.trusted-brands .section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #777;
    margin-bottom: 40px;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.brand-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.4s ease, transform 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .trusted-brands {
        padding: 50px 20px;
    }

    .brands-grid {
        gap: 30px 35px;
    }

    .brand-logo {
        width: 90px;
        height: 45px;
    }
}

/* --- Shop By Category Section --- */
.categories {
    padding: var(--spacing-lg) 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hidden by default on desktop */
.mobile-cat-icon {
    display: none;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensure equal height in grid */
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    /* Prevent image shrinking */
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    /* Text Clamping for 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns on Desktop */
    gap: 1.5rem;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    height: 180px;
    /* Slightly shorter for compact grid */
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 1rem;
    /* Compact padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-desc {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* --- Employee & Client Gifts Slider --- */
.employee-gifts {
    padding: var(--spacing-lg) 0;
    background-color: #ffffff;
}

.slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    /* Space for arrows */
}

.slider-track-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slider-item {
    flex: 0 0 25%;
    /* 4 items visible on desktop */
    min-width: 25%;
    padding: 0 0.75rem;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid var(--color-border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.slider-arrow:hover {
    background-color: var(--color-primary);
    color: white;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* --- Responsive Slider --- */
@media (max-width: 1024px) {
    .slider-item {
        flex: 0 0 50%;
        /* 2 items on tablet */
        min-width: 50%;
    }
}

@media (max-width: 480px) {
    .slider-track-container {
        overflow-x: auto;
        /* Enable horizontal scroll */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        /* Space for scrollbar if visible, or cleaner look */
    }

    .slider-track {
        display: flex;
        width: max-content;
        /* Ensure track is wide enough */
        /* Disable transform on mobile to rely on native scroll logic */
        transition: none;
        transform: none !important;
    }

    .slider-item {
        flex: 0 0 85vw;
        /* Show partial next card for cue */
        min-width: 85vw;
        padding: 0 0.5rem;
        scroll-snap-align: center;
    }

    .slider-wrapper {
        padding: 0;
    }

    .slider-arrow {
        display: none;
    }
}

/* --- Responsive for Product Grid --- */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on Tablet */
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Enforce 2x2 on Mobile */
        gap: 0.75rem;
        /* Smaller gap on mobile */
    }

    .product-image-wrapper {
        height: 140px;
        /* Smaller images on mobile */
    }

    .product-title {
        font-size: 0.95rem;
        /* Readable but smaller */
    }

    .product-desc {
        font-size: 0.8rem;
    }
}

/* --- Corporate Promotional Gifts (Static Grid) --- */
.promo-gifts {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-light);
}

/* --- Why Choose Us Section --- */
.why-choose {
    padding: var(--spacing-lg) 0;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 8px;
    background-color: #fff;
    /* Optional: if section bg is different, else transparent */
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background-color: #f4f6f9;
    /* Light Navy Tint */
    color: var(--color-secondary);
}

.icon-svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* Stacked layout for mobile */
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1.5rem 0.5rem;
        /* Tighter padding on mobile */
    }
}

/* --- Our Services Section --- */
.our-services {
    padding: var(--spacing-lg) 0;
    background-color: #f8f9fa;
    /* Slightly different bg to distinguish from white section above */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.service-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    /* Flex to stretch if needed, but mainly for centering content vertically if we added height */
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.1);
    /* Gold tint */
    color: var(--color-secondary);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive for Our Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* Stacked on mobile */
    }

    .service-card {
        padding: 2rem 1.5rem;
        /* Smaller padding on mobile */
    }
}


/* --- Customization Process Section --- */
.customization-process {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    /* Content above line */
    flex: 1;
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.9rem;
    color: #666;
    max-width: 150px;
}

/* Connector Line (Desktop) */
.step-connector {
    flex-grow: 1;
    height: 2px;
    background-color: var(--color-border);
    margin-top: 32px;
    /* Half of icon height */
    position: relative;
    z-index: 1;
}

/* Responsive Process */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .step-connector {
        display: none;
        /* Hide horizontal lines */
    }

    .step-item {
        /* Add minimal vertical connector manually if desired, or keep clean stack */
        position: relative;
    }

    .step-item::after {
        /* Vertical line snippet for flow feel */
        content: '';
        position: absolute;
        bottom: -2rem;
        width: 2px;
        height: 2rem;
        background-color: var(--color-border);
        left: 50%;
        transform: translateX(-50%);
    }

    .step-item:last-child::after {
        display: none;
    }
}


/* --- FAQ Section --- */
.faq {
    padding: var(--spacing-lg) 0;
    background-color: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-secondary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    /* Turn + into x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding-bottom: 1.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Footer Section --- */
.footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    /* First column slightly wider */
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--color-secondary);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--color-secondary);
}

.footer-contact li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-text-light);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }
}

/* --- Master Product Page Template --- */

/* Product Hero */
.product-hero {
    padding: 4rem 0;
    background-color: #f8f9fa;
    /* Light background to separate from header */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-category-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.product-hero-placeholder {
    width: 100%;
    height: 500px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.1rem;
    border-radius: 8px;
    border: 1px dashed #aaa;
}

/* Product Overview */
.product-overview {
    padding: 4rem 0;
    background-color: #fff;
    text-align: center;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-title-small {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-title-center {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Key Features */
.key-features {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.features-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon-small {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
}

.feature-text {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
}

/* Branding Options */
.branding-options {
    padding: 4rem 0;
    background-color: #fff;
}

.branding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.branding-list {
    list-style: none;
    margin-top: 1.5rem;
}

.branding-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.branding-list li::before {
    content: '•';
    color: var(--color-secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.branding-visual {
    height: 300px;
}

.branding-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border: 1px dashed #aaa;
}

/* Use Cases */
.use-cases {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.use-case-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    text-align: center;
}

.use-case-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.use-case-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Product Specifications */
.product-specs {
    padding: 4rem 0;
    background-color: #fff;
}

.specs-table-container {
    max-width: 800px;
    margin: 0 auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.specs-table tr {
    border-bottom: 1px solid var(--color-border);
}

.specs-table th {
    text-align: left;
    padding: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    width: 40%;
}

.specs-table td {
    padding: 1rem;
    color: #555;
}

/* Related Products - reusing .product-grid from existing CSS if possible, but duplicated structure might need this */
/* .related-products uses .product-grid, .product-card which are already defined in style.css. */
/* Just adding section spacing if needed */
.related-products {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background-color: #fff;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive Master Product Template */
@media (max-width: 1024px) {

    .features-list-grid,
    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .hero-grid,
    .branding-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-text {
        order: 1;
        /* Image first? No, User said Hero then Title then Image. Wait */
        /* Design Req: Product Hero Section: Product title, Short desc, Clean product image area, CTA button */
        /* My HTML: Text (Title, Desc, Button), Img */
        /* Standard mobile: Title first, then Image, then details. */
        /* Let's keep Text first (Title is inside text div) */
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .branding-list {
        text-align: left;
        /* Keep list left aligned even if container centered? */
        display: inline-block;
        /* To center the block itself */
    }

    .branding-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-hero-placeholder {
        height: 350px;
    }
}

@media (max-width: 480px) {

    .features-list-grid,
    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .product-hero-placeholder {
        height: 250px;
    }
}


/* --- Padel Cover Special Styles --- */

/* Theme Variables for Padel Page */
.padel-page {
    --padel-black: #121212;
    --padel-dark: #1e1e1e;
    --padel-grey: #2C2C2C;
    --padel-light-grey: #f4f4f4;
    --padel-accent: #ccff00;
    /* Neon Padel Green/Yellow */
    --padel-text: #ffffff;
    --padel-text-muted: #a0a0a0;

    background-color: var(--padel-black);
    color: var(--padel-text);
    font-family: 'Inter', sans-serif;
}

.padel-page h1,
.padel-page h2,
.padel-page h3,
.padel-page h4 {
    font-family: 'Oswald', sans-serif;
    /* Strong, sporty font */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--padel-text);
}

/* Padel Hero */
.padel-hero {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    overflow: hidden;
}

.padel-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.padel-hero-content {
    flex: 1;
    z-index: 2;
}

.padel-hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-img-main {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.hero-img-main:hover {
    transform: rotate(0deg) scale(1.02);
}

.padel-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--padel-accent);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.padel-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.padel-subtitle {
    font-size: 1.25rem;
    color: var(--padel-text-muted);
    margin-bottom: 2.5rem;
    max-width: 450px;
    font-weight: 300;
}

.padel-cta-group {
    display: flex;
    gap: 1rem;
}

/* Padel Buttons */
.btn-padel-primary {
    background-color: var(--padel-accent);
    color: #000;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-padel-primary:hover {
    background-color: #b3e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 255, 0, 0.3);
}

.btn-padel-outline {
    background-color: transparent;
    color: var(--padel-text);
    border: 1px solid var(--padel-text);
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-padel-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--padel-accent);
    color: var(--padel-accent);
}

/* Sections */
.padel-section {
    padding: 5rem 0;
}

.padel-bg-dark {
    background-color: var(--padel-dark);
}

.padel-bg-grey {
    background-color: var(--padel-grey);
}

.padel-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.padel-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.padel-section-header p {
    color: var(--padel-text-muted);
    font-size: 1.1rem;
}

/* Grids */
.padel-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.padel-feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    text-align: left;
}

.padel-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--padel-accent);
}

.padel-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.padel-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.padel-feature-card p {
    color: var(--padel-text-muted);
    line-height: 1.6;
}

/* Split Layout */
.padel-split-layout {
    background-color: #000;
}

.split-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.padel-detail-list {
    list-style: none;
    margin-top: 2rem;
}

.padel-detail-list li {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--padel-accent);
}

.padel-detail-list strong {
    display: block;
    color: var(--padel-text);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.padel-detail-list span {
    color: var(--padel-text-muted);
    font-size: 1rem;
}

.detail-img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(20%);
}

/* Info Box */
.padel-info-box {
    text-align: center;
    padding: 2rem;
}

.padel-info-box h4 {
    color: var(--padel-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Lifestyle */
.padel-lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.lifestyle-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.lifestyle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lifestyle-item:hover img {
    transform: scale(1.05);
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

/* Trust Banner */
.padel-trust-banner {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}

.trust-icon {
    color: var(--padel-accent);
}

/* FAQ Accordion */
.padel-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.padel-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.padel-accordion summary {
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.padel-accordion summary::-webkit-details-marker {
    display: none;
}

.padel-accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--padel-accent);
}

.padel-accordion[open] summary::after {
    content: '-';
}

.padel-accordion p {
    color: var(--padel-text-muted);
    margin-top: 1rem;
    line-height: 1.6;
}

/* Final CTA */
.padel-final-cta {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.padel-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: var(--padel-accent);
    filter: blur(200px);
    opacity: 0.1;
    z-index: 1;
}

.padel-final-cta .container {
    position: relative;
    z-index: 2;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.2rem;
    margin-top: 2rem;
}

/* Responsive Padel */
@media (max-width: 960px) {
    .padel-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .padel-hero-content {
        order: 1;
        /* Text first */
    }

    .padel-hero-image {
        order: 2;
    }

    .padel-cta-group {
        justify-content: center;
    }

    .split-content-wrapper {
        grid-template-columns: 1fr;
    }

    .split-image {
        order: -1;
        /* Image top */
    }

    .padel-grid-3 {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .padel-title {
        font-size: 2.5rem;
    }

    .padel-lifestyle-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   SHOP PAGE V2 — Modern & Minimal
   ═══════════════════════════════════════════════════════ */

/* --- Page Wrapper --- */
.shop-v2 {
    max-width: 1320px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

/* --- Header --- */
.shop-v2-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.shop-v2-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.shop-v2-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #86868b;
    letter-spacing: -0.01em;
}

/* --- Filter Pills --- */
.shop-v2-filters {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-pill {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    border: 1.5px solid #d2d2d7;
    background: transparent;
    color: #1d1d1f;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.filter-pill:hover {
    background: #f5f5f7;
    border-color: #b0b0b5;
}

.filter-pill.active {
    background: #1d1d1f;
    color: #ffffff;
    border-color: #1d1d1f;
}

/* --- Product Grid --- */
.shop-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* --- Product Card --- */
.shop-v2-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    opacity: 1;
}

.shop-v2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Hidden state for filtering */
.shop-v2-card.hidden {
    display: none;
    opacity: 0;
}

.shop-v2-card.visible {
    display: flex;
    opacity: 1;
}

/* --- Card Image --- */
.shop-v2-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f5f5f7;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-v2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop-v2-card:hover .shop-v2-img img {
    transform: scale(1.04);
}

/* --- Card Info --- */
.shop-v2-info {
    padding: 1rem 1.1rem 1.25rem;
}

.shop-v2-tag {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #86868b;
    margin-bottom: 0.35rem;
}

.shop-v2-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .shop-v2-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-v2-title {
        font-size: 2rem;
    }

    .shop-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .shop-v2-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .shop-v2-filters::-webkit-scrollbar {
        display: none;
    }

    .shop-v2-info {
        padding: 0.75rem 0.9rem 1rem;
    }

    .shop-v2-info h3 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .shop-v2 {
        padding: 2rem 1rem 4rem;
    }

    .shop-v2-title {
        font-size: 1.75rem;
    }

    .shop-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .filter-pill {
        font-size: 0.8rem;
        padding: 0.45rem 1.1rem;
    }
}


/* ═══════════════════════════════════════════════════
   Quote Modal
   ═══════════════════════════════════════════════════ */

/* Backdrop */
.quote-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.quote-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Container */
.quote-modal {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem 2.5rem 2.5rem;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease;
}

.quote-modal-backdrop.active .quote-modal {
    transform: scale(1) translateY(0);
}

/* Close Button */
.quote-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.quote-modal-close:hover {
    background: #f0f0f0;
}

.quote-modal-close::before,
.quote-modal-close::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: #555;
    border-radius: 2px;
}

.quote-modal-close::before {
    transform: rotate(45deg);
}

.quote-modal-close::after {
    transform: rotate(-45deg);
}

/* Heading */
.quote-modal-heading {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.quote-modal-subheading {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Form Layout */
.quote-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.quote-modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Field Group */
.quote-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.quote-field-group label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6b6b6b;
}

.quote-field-group input,
.quote-field-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fafafa;
    transition: border-color 0.25s ease, background-color 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.quote-field-group input::placeholder,
.quote-field-group textarea::placeholder {
    color: #b0b0b0;
    font-weight: 400;
}

.quote-field-group input:focus,
.quote-field-group textarea:focus {
    border-color: #1a1a1a;
    background: #ffffff;
}

.quote-field-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.quote-modal-submit {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.2s ease;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.quote-modal-submit:hover {
    opacity: 0.85;
}

.quote-modal-submit:active {
    transform: scale(0.98);
}

/* Success State */
.quote-modal-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.quote-modal-success.show {
    display: block;
}

.quote-modal-success .success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-modal-success .success-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quote-modal-success h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.quote-modal-success p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 600px) {
    .quote-modal {
        padding: 2.5rem 1.5rem 2rem;
    }

    .quote-modal-row {
        grid-template-columns: 1fr;
    }

    .quote-modal-heading {
        font-size: 1.35rem;
    }
}