:root {
    --primary-red: #A40000;
    --primary-gold: #C5A059;
    --primary-gold-light: #E6C885;
    --bg-cream: #FDFBF7;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-gold);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(253, 251, 247, 0.85);
    /* trans bg */
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    /* Adjust height as needed */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-text {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.btn-text:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.hamburger {
    display: none;
    color: var(--primary-red);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    /* Allow growth if content is tall */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-elements .circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.c1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
}

.c2 {
    width: 300px;
    height: 300px;
    bottom: 50px;
    left: -50px;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-text h2 {
    font-family: var(--font-body);
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
}

.hero-text p {
    color: var(--text-light);
    max-width: 450px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(164, 0, 0, 0.3);
}

.btn-primary:hover {
    background: #800000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(164, 0, 0, 0.4);
}



.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    height: 100%;
    align-items: center;
}

.floating-product {
    max-width: 120%;
    width: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.product-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 200, 133, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-35px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s forwards 0.5s;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold-light);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--bg-cream);
    color: var(--primary-red);
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover .icon-wrapper {
    background: var(--primary-red);
    color: var(--white);
}

.feature-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    /* Ensure background is white behind transparent video */
}

.about-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.20;
    /* Subtle background */
    z-index: 0;
    pointer-events: none;
}

.about-container {
    position: relative;
    z-index: 2;
    /* Content above video */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}



.subheading {
    color: var(--primary-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.btn-text-gold {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--primary-gold);
}

/* Parallax Section */
.parallax-section {
    height: 400px;
    background-color: var(--primary-red);
    background-image: url('https://images.unsplash.com/photo-1542316409-e883262bb835?q=80&w=2670&auto=format&fit=crop');
    /* Placeholder Texture */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.parallax-content {
    z-index: 2;
}

.parallax-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Collection Section */
.collection-section {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-dark);
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card.highlight {
    border: 2px solid var(--primary-gold);
    transform: scale(1.05);
}

.product-card.highlight:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-image {
    height: 250px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.temp-box {
    width: 150px;
    height: 150px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #999;
}

.card-details {
    padding: 1.5rem;
    text-align: center;
}

.card-details h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.price {
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.btn-shop-now {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
}

.product-card:hover .btn-shop-now {
    opacity: 1;
    transform: translateY(0);
}

.btn-shop-now:hover {
    background: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
    display: block;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-gold);
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.socials a:hover {
    background: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* Scroll Animations CSS Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-actions {
        display: none;
        /* Hide 'Shop Now' button on mobile nav for simplicity, or move into menu */
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 3rem;
        /* Extra space for scroll */
    }

    .hero-text {
        margin-top: 2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-image {
        height: 400px;
        width: 100%;
        margin-top: 2rem;
    }

    .floating-product {
        width: 70%;
        max-width: 350px;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-col {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .socials {
        justify-content: center;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
        /* Hide custom cursor on touch devices */
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }

    .parallax-content h2 {
        font-size: 1.5rem;
    }

    .parallax-section {
        height: 200px;
    }

    .btn-secondary {
        margin-top: 1rem;
        display: inline-flex;
        /* Ensure it respects margin if wrapping */
    }
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slide Wrapper (handles opacity/visibility cycle) */
.slide-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Inner Images Base Styles */
.slide-back,
.slide-front {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-90%, -50%);
    max-width: 100%;
    height: auto;
}

/* Background Image Specifics */
.slide-back {
    /* height: 500%; */
    /* Slightly larger */
    z-index: 1;
    /* opacity: 0.6; */
}

/* Foreground Image Specifics */
.slide-front {
    width: 100%;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Wrapper Animation Cycles */
.slide-1 {
    animation: wrapperFade1 12s infinite;
}

.slide-2 {
    animation: wrapperFade2 12s infinite;
}

/* Inner Element Animations (Parallax/Float) */
.slide-1 .slide-front {
    animation: floatFront 12s ease-in-out infinite;
}

.slide-1 .slide-back {
    animation: floatBack 12s ease-in-out infinite;
}

.slide-2 .slide-front {
    animation: floatFront 12s ease-in-out infinite;
}

.slide-2 .slide-back {
    animation: floatBack 12s ease-in-out infinite;
}

/* Keyframes for Wrapper Visibility */
@keyframes wrapperFade1 {
    0% {
        opacity: 1;
        z-index: 2;
    }

    45% {
        opacity: 1;
        z-index: 2;
    }

    55% {
        opacity: 0;
        z-index: 1;
    }

    95% {
        opacity: 0;
        z-index: 1;
    }

    100% {
        opacity: 1;
        z-index: 2;
    }
}

@keyframes wrapperFade2 {
    0% {
        opacity: 0;
        z-index: 1;
    }

    45% {
        opacity: 0;
        z-index: 1;
    }

    55% {
        opacity: 1;
        z-index: 2;
    }

    95% {
        opacity: 1;
        z-index: 2;
    }

    100% {
        opacity: 0;
        z-index: 1;
    }
}

/* Keyframes for Inner Elements Movement */
@keyframes floatFront {
    0% {
        transform: translate(-50%, -50%) translateX(0px) rotate(10deg);
    }

    50% {
        transform: translate(-50%, -50%) translateX(-20px) rotate(2deg);
    }

    100% {
        transform: translate(-50%, -50%) translateX(0px) rotate(10deg);
    }
}

@keyframes floatBack {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(-5deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 900px) {
    .slideshow-container {
        width: 100%;
        height: 400px;
    }

    .slide-front {
        width: 80%;
    }

    .slide-back {
        width: 90%;
    }

    /* Force Shop Now button to be visible on mobile */
    .btn-shop-now {
        opacity: 1 !important;
        transform: translateY(0) !important;
        margin-top: 5px;
    }

    /* Disable side animations on mobile, make them come from bottom */
    .reveal-left,
    .reveal-right {
        transform: translateY(30px);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: 3vh auto;
    /* Compact spacing */
    padding: 2rem;
    border: 1px solid var(--primary-gold);
    width: 90%;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-red);
    text-decoration: none;
}

.modal-content h2 {
    font-family: var(--font-heading);
    color: var(--primary-red);
    margin-bottom: 1rem;
    /* Reduced */
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
    /* Reduced */
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-gold);
}

.modal-products {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 1rem;
    /* Reduced */
    padding-right: 5px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.modal-content::-webkit-scrollbar,
.modal-products::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.modal-content,
.modal-products {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.modal-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    background: #fafafa;
}

.modal-product-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.mp-info {
    flex: 1;
}

.mp-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.price-tag {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
}

.mp-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.item-subtotal {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary-gold);
}

.mp-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    width: 100px;
}

.total-section {
    text-align: right;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.total-section h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.total-section span {
    color: var(--primary-red);
    font-weight: 700;
}

.qty-btn {
    background: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.8rem;
    transition: background 0.3s;
}

.qty-btn:hover {
    background: #e0e0e0;
}

.mp-qty input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 0.9rem;
    background: #fff;
    padding: 0;
    height: 30px;
    color: var(--text-dark);
    font-weight: 600;
    outline: none;
    pointer-events: none;
    /* User uses buttons */
}

/* Hide spinner for number input */
.mp-qty input::-webkit-inner-spin-button,
.mp-qty input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.customer-details h3 {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Distributors Section */
.distributors-section {
    padding: 6rem 0;
    background-color: var(--white);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    position: relative;
    overflow: hidden;
}

.distributors-section::before {
    /* Subtle watermark/pattern */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent 40%);
    pointer-events: none;
}

.distributor-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.dist-text {
    flex: 1;
}

.dist-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.dist-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .distributor-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .dist-action {
        justify-content: center;
    }
}