/* =========================================================
   AL RAHEB
   PREMIUM NEUTRAL & EARTHY DESIGN SYSTEM
   ========================================================= */

:root {

    --cream: #F5F2EB;
    --cream-dark: #EDE8DD;

    --charcoal: #2B2625;
    --charcoal-light: #403936;

    --muted: #756D68;
    --muted-light: #968D86;

    --gold: #C5A059;
    --gold-dark: #A98745;
    --gold-light: #E9D9B5;

    --white: #FFFFFF;

    --border: #DED7CA;

    --shadow:
        0 20px 60px rgba(43, 38, 37, 0.10);

}


/* =========================================================
   GLOBAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
}

::selection {
    background: var(--gold);
    color: var(--charcoal);
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: #B9AEA0;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}


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

.site-header {
    background: rgba(245, 242, 235, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(43, 38, 37, 0.10);
}

.logo-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-dark)
        );

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 8px 25px rgba(197, 160, 89, 0.22);

    transition: transform 0.3s ease;
}

.group:hover .logo-box {
    transform: scale(1.05);
}

.logo-box span {
    color: var(--charcoal);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.08em;
}

.logo-title {
    display: block;
    color: var(--charcoal);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.logo-subtitle {
    display: block;
    margin-top: -2px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.20em;
}


.nav-link {
    color: #514A46;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-link:hover {
    color: var(--gold-dark);
    transform: translateY(-1px);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.whatsapp-button,
.hero-whatsapp,
.cta-whatsapp,
.contact-whatsapp {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #25D366;
    color: #182019;

    font-weight: 800;

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}
.hero-product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.whatsapp-button {
    padding: 11px 20px;
    font-size: 14px;

    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.15);
}

.hero-whatsapp {
    padding: 15px 25px;
    font-size: 15px;

    box-shadow:
        0 15px 35px rgba(37, 211, 102, 0.18);
}
.hero-product-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cta-whatsapp {
    margin-top: 30px;
    padding: 16px 30px;
    font-size: 16px;

    box-shadow:
        0 15px 40px rgba(37, 211, 102, 0.20);
}

.contact-whatsapp {
    margin-top: 30px;
    padding: 18px 32px;
    font-size: 16px;

    box-shadow:
        0 15px 40px rgba(37, 211, 102, 0.18);
}

.whatsapp-button:hover,
.hero-whatsapp:hover,
.cta-whatsapp:hover,
.contact-whatsapp:hover {
    transform: translateY(-3px);
    background: #20BA5A;

    box-shadow:
        0 18px 45px rgba(37, 211, 102, 0.25);
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.mobile-menu-button {
    color: var(--charcoal);
    font-size: 24px;
}

.mobile-menu {
    background: rgba(245, 242, 235, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px;
}

.mobile-link {
    display: block;
    padding: 10px 0;

    color: var(--charcoal-light);
    font-weight: 600;
}

.mobile-link:hover {
    color: var(--gold-dark);
}

.mobile-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;

    padding: 13px;

    margin-top: 10px;

    background: #25D366;
    color: #172018;

    border-radius: 10px;

    font-weight: 800;
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {

    position: relative;

    padding-top: 145px;
    padding-bottom: 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(197, 160, 89, 0.12),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #F5F2EB 0%,
            #F1EDE4 50%,
            #EBE4D7 100%
        );
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;

    filter: blur(100px);
}

.hero-glow-one {

    width: 450px;
    height: 450px;

    top: 10%;
    right: 0;

    background:
        rgba(197, 160, 89, 0.12);
}

.hero-glow-two {

    width: 300px;
    height: 300px;

    bottom: 0;
    left: 10%;

    background:
        rgba(117, 109, 104, 0.08);
}


.hero-badge {

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    border-radius: 999px;

    background: rgba(197, 160, 89, 0.10);

    border: 1px solid rgba(197, 160, 89, 0.30);

    color: var(--gold-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.10em;
}

.pulse-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 5px rgba(197, 160, 89, 0.10);

    animation:
        pulseGold 2s infinite;
}

@keyframes pulseGold {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.65;
    }
}


.hero-title {

    color: var(--charcoal);

    font-size: clamp(
        2.5rem,
        5vw,
        4.3rem
    );

    line-height: 1.10;

    font-weight: 800;

    letter-spacing: -0.04em;
}

.hero-title-accent {

    display: block;

    color: var(--gold-dark);

    margin-top: 5px;
}


.hero-description {

    max-width: 650px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.8;
}


.hero-products-button {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 15px 25px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.55);

    border: 1px solid var(--border);

    color: var(--charcoal);

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.hero-products-button:hover {

    transform: translateY(-3px);

    border-color: var(--gold);

    background: white;
}


.hero-trust {

    padding-top: 25px;

    border-top:
        1px solid rgba(43, 38, 37, 0.12);

    display: flex;
    flex-wrap: wrap;

    align-items: center;

    justify-content: center;

    gap: 7px;
}

.trust-label {

    margin-right: 5px;

    color: var(--muted-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.trust-pill { 

    padding: 6px 10px;

    border-radius: 6px;

    background: rgba(255, 255, 255, 0.55);

    border:
        1px solid rgba(43, 38, 37, 0.10);

    color: #665D57;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   HERO PRODUCT SLIDER
   ========================================================= */

.hero-product-wrapper {

    position: relative;

    width: 100%;

    max-width: 540px;

    margin: 0 auto;

    padding: 18px;

    animation:
        heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {

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

    50% {
        transform: translateY(-12px);
    }
}


.hero-product-slider {

    position: relative;

    width: 100%;

    height: 590px;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #E8E0D2,
            #F8F6F1
        );

    border:
        1px solid rgba(197, 160, 89, 0.30);

    box-shadow:
        0 35px 80px rgba(43, 38, 37, 0.16);
}


/* Individual slide */

.hero-slide {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    transform:
        translateX(45px)
        scale(0.97);

    transition:
        opacity 0.75s ease,
        transform 0.85s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

    pointer-events: none;
}

.hero-slide.active {

    opacity: 1;

    transform:
        translateX(0)
        scale(1);

    z-index: 2;
}


.hero-slide img {

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    display: block;
}


/* Image overlay */

.hero-slide::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(43, 38, 37, 0.55),
            transparent 45%
        );

    pointer-events: none;
}


/* Product label */

.hero-product-label {

    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 5;

    padding: 10px 15px;

    border-radius: 10px;

    background:
        rgba(245, 242, 235, 0.90);

    backdrop-filter: blur(12px);

    border:
        1px solid rgba(255, 255, 255, 0.50);

    color: var(--charcoal);

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);
}


/* Slider controls */

.hero-slider-controls {

    position: absolute;

    right: 22px;
    bottom: 22px;

    z-index: 10;

    display: flex;

    gap: 7px;
}

.slider-control {

    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: 1px solid rgba(43, 38, 37, 0.15);

    background:
        rgba(245, 242, 235, 0.90);

    color: var(--charcoal);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.slider-control:hover {

    background: var(--gold);

    color: white;

    transform: scale(1.08);
}


/* Dots */

.hero-slider-dots {

    position: absolute;

    left: 50%;

    bottom: 18px;

    z-index: 10;

    transform: translateX(-50%);

    display: flex;

    gap: 7px;
}

.slider-dot {

    width: 7px;
    height: 7px;

    border-radius: 999px;

    border: 0;

    background:
        rgba(245, 242, 235, 0.60);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.slider-dot.active {

    width: 25px;

    background: var(--gold);
}


/* Floating cards */

.floating-card {

    position: absolute;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 14px;

    background:
        rgba(245, 242, 235, 0.92);

    backdrop-filter: blur(14px);

    border:
        1px solid rgba(43, 38, 37, 0.10);

    border-radius: 12px;

    color: var(--charcoal);

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 15px 35px rgba(43, 38, 37, 0.13);
}

.floating-card i {
    color: var(--gold-dark);
}

.floating-card-one {

    top: 55px;
    right: -10px;

    animation:
        floatingOne 4s ease-in-out infinite;
}

.floating-card-two {

    left: -10px;
    bottom: 65px;

    animation:
        floatingTwo 4.5s ease-in-out infinite;
}

@keyframes floatingOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatingTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }
}


/* =========================================================
   TRUST SECTION
   ========================================================= */

.trust-section {

    padding: 32px 0;

    background: #EDE8DD;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section-light {

    padding: 100px 0;

    background: var(--cream);
}

.section-dark {

    padding: 100px 0;

    background:
        #302B29;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}

.section-dark .section-title {
    color: #F7F3EB;
}

.section-dark .section-subtitle {
    color: #C8C0B8;
}


.section-heading {

    text-align: center;

    max-width: 800px;

    margin: 0 auto 60px;
}

.section-badge {

    display: inline-block;

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.15em;

    background:
        rgba(197, 160, 89, 0.10);

    border:
        1px solid rgba(197, 160, 89, 0.25);

    padding: 6px 12px;

    border-radius: 999px;
}

.section-title {

    margin-top: 15px;

    color: var(--charcoal);

    font-size: clamp(
        2rem,
        4vw,
        2.8rem
    );

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -0.03em;
}

.section-subtitle {

    margin-top: 12px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   PRODUCT CARDS
   ========================================================= */

.product-card {

    background:
        rgba(255, 255, 255, 0.55);

    border:
        1px solid var(--border);

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(43, 38, 37, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.product-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(197, 160, 89, 0.55);

    box-shadow:
        0 25px 55px rgba(43, 38, 37, 0.12);
}

/* =========================================================
   PRODUCT IMAGE FRAME
   Every product image automatically fits the same frame
   ========================================================= */

.product-image-container {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #E8E1D5;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

/* Smooth hover animation */
.product-card:hover .product-image {
    transform: scale(1.04);
}


/* Product carousel */

.product-carousel {

    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.product-carousel-slide {

    position: absolute;

    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform:
        translateX(25px)
        scale(0.98);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

/* Active slide */
.product-carousel-slide.active {

    opacity: 1;

    transform:
        translateX(0)
        scale(1);

    z-index: 2;
}

/* Enhanced slide animation — zoom + subtle scale */
.product-carousel-slide.active .product-image {
    animation: productZoomIn 0.7s ease forwards;
}

@keyframes productZoomIn {
    0% {
        transform: scale(0.92);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Product carousel arrows */

.product-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.50);

    background:
        rgba(245, 242, 235, 0.90);

    color: var(--charcoal);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    opacity: 0;

    transition:
        opacity 0.25s ease,
        background 0.25s ease;
}

.product-image-container:hover .product-arrow {
    opacity: 1;
}

.product-arrow:hover {
    background: var(--gold);
    color: white;
}

.product-arrow-left {
    left: 12px;
}

.product-arrow-right {
    right: 12px;
}


/* Product dots */

.product-dots {

    position: absolute;

    bottom: 14px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;

    gap: 5px;
}

.product-dot {

    width: 6px;
    height: 6px;

    border: 0;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.65);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.product-dot.active {

    width: 20px;

    background: var(--gold);
}


/* Product badge */

.product-badge {

    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 12;

    padding: 7px 11px;

    border-radius: 999px;

    background:
        rgba(245, 242, 235, 0.92);

    backdrop-filter: blur(10px);

    color: var(--gold-dark);

    border:
        1px solid rgba(197, 160, 89, 0.25);

    font-size: 10px;

    font-weight: 800;
}


/* Product content */

.product-content {

    padding: 24px;
}

.product-content h3 {

    color: var(--charcoal);

    font-size: 19px;

    font-weight: 800;

    line-height: 1.35;
}

.product-content p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

    margin-top: 8px;
}

.product-specs {

    margin-top: 18px;

    padding: 14px 0;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}

.product-spec-row {

    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 5px 0;

    font-size: 11px;
}

.product-spec-label {
    color: var(--muted);
}

.product-spec-value {

    color: var(--charcoal);

    font-weight: 700;

    text-align: right;
}

.product-moq {
    color: var(--gold-dark);
}


/* Product WhatsApp */

.product-whatsapp {

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 18px;

    padding: 12px;

    border-radius: 10px;

    background: var(--charcoal);

    color: white;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.product-whatsapp:hover {

    background: #25D366;

    color: #172018;

    transform: translateY(-2px);
}


/* =========================================================
   CUSTOM CTA
   ========================================================= */

.custom-cta {

    margin-top: 50px;

    padding: 32px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #EAE2D4,
            #F5F2EB
        );

    border:
        1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}

.custom-cta h3 {

    color: var(--charcoal);

    font-size: 20px;

    font-weight: 800;
}

.custom-cta p {

    margin-top: 5px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;
}

.custom-cta-button {

    white-space: nowrap;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 13px 20px;

    border-radius: 10px;

    background: #25D366;

    color: #172018;

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.benefit-card {

    padding: 30px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid rgba(255, 255, 255, 0.09);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.benefit-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(197, 160, 89, 0.45);
}

.benefit-icon {

    width: 48px;
    height: 48px;

    border-radius: 12px;

    background:
        rgba(197, 160, 89, 0.12);

    border:
        1px solid rgba(197, 160, 89, 0.20);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 18px;

    margin-bottom: 20px;
}

.benefit-card h3 {

    color: white;

    font-size: 19px;

    font-weight: 800;

    margin-bottom: 8px;
}

.benefit-card p {

    color: #BDB5AE;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   BUYING STEPS
   ========================================================= */

.step-card {

    padding: 25px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.55);

    border:
        1px solid var(--border);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.step-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(197, 160, 89, 0.50);
}

.step-number {

    color:
        rgba(197, 160, 89, 0.55);

    font-size: 32px;

    font-weight: 900;

    margin-bottom: 18px;
}

.step-card h3 {

    color: var(--charcoal);

    font-size: 17px;

    font-weight: 800;

    margin-bottom: 8px;
}

.step-card p {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   CTA SECTION
   ========================================================= */

.cta-section {

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #302B29,
            #403936
        );
}

.cta-section h2 {

    color: white;

    font-size: clamp(
        2rem,
        5vw,
        3rem
    );

    font-weight: 800;
}

.cta-section p {

    color: #C9C1B9;

    margin-top: 12px;

    font-size: 17px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-item {

    background:
        rgba(255, 255, 255, 0.55);

    border:
        1px solid var(--border);

    border-radius: 13px;

    overflow: hidden;
}

.faq-button {

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px;

    text-align: left;

    color: var(--charcoal);

    font-weight: 800;

    cursor: pointer;
}

.faq-button:hover {

    color: var(--gold-dark);
}

.faq-content {

    padding: 0 20px 20px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    border-top:
        1px solid var(--border);

    padding-top: 15px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {

    padding: 100px 0;

    background:
        linear-gradient(
            to bottom,
            #EAE4D9,
            #F5F2EB
        );

    border-top:
        1px solid var(--border);
}

.contact-section h2 {

    margin-top: 15px;

    color: var(--charcoal);

    font-size: clamp(
        2.5rem,
        6vw,
        4rem
    );

    font-weight: 800;
}

.contact-section>div>p {

    margin-top: 12px;

    color: var(--muted);

    font-size: 18px;
}

.contact-small {

    margin-top: 15px !important;

    font-size: 11px !important;

    color: var(--muted-light) !important;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {

    padding: 45px 0;

    background: var(--charcoal);

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {

    width: 34px;
    height: 34px;

    border-radius: 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-dark)
        );

    color: var(--charcoal);

    font-size: 12px;

    font-weight: 900;
}

.footer-name {

    color: white;

    font-weight: 800;

    letter-spacing: 0.14em;
}

.footer-copy {

    color: #968D86;

    font-size: 11px;
}

.footer-link {

    color: #BDB5AE;

    transition:
        color 0.25s ease;
}

.footer-link:hover {
    color: var(--gold-light);
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp {

    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 100;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #25D366;

    color: #172018;

    font-size: 27px;

    box-shadow:
        0 15px 40px rgba(37, 211, 102, 0.25);

    transition:
        transform 0.3s ease;
}

.floating-whatsapp:hover {

    transform:
        scale(1.12)
        translateY(-3px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {

    .hero-product-slider {
        height: 520px;
    }

    .floating-card-one {
        right: 0;
    }

    .floating-card-two {
        left: 0;
    }

}


@media (max-width: 640px) {

    .hero-section {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-product-wrapper {
        padding: 8px;
    }

    .hero-product-slider {
        height: 460px;
        border-radius: 22px;
    }

    .floating-card {
        display: none;
    }

    .product-image-container {
        height: 330px;
    }

    .section-light,
    .section-dark,
    .contact-section {
        padding: 75px 0;
    }

    .custom-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-cta-button {
        width: 100%;
        justify-content: center;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;

        right: 18px;
        bottom: 18px;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }
}