:root {
    --bg: #f7f2ea;
    --bg-deep: #101712;
    --ink: #1b1b1b;
    --muted: #5f5b52;
    --gold: #c8a76b;
    --gold-soft: #e5cfa0;
    --sage: #b6c1b3;
    --brand-green: #78b042;
    --brand-green-dark: #5a8a32;
    --card: #ffffff;
    --border: rgba(27, 27, 27, 0.08);
    --shadow: 0 20px 45px rgba(16, 23, 18, 0.15);
    --serif: "Cormorant Garamond", serif;
    --sans: "Manrope", sans-serif;
}

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

body {
    font-family: var(--sans);
    color: var(--ink);
    background: radial-gradient(circle at 10% 20%, rgba(200, 167, 107, 0.25), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(182, 193, 179, 0.3), transparent 50%),
        linear-gradient(130deg, #fefcf8, #f2ece2 55%, #f7f2ea 100%);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: 0;
}

body::before {
    background: #d8c5a6;
    top: -160px;
    left: -120px;
}

body::after {
    background: #b1c2b2;
    bottom: -180px;
    right: -150px;
}


.page {
    position: relative;
    z-index: 1;
    padding: 32px 6vw 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(200, 167, 107, 0.15);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(16, 23, 18, 0.08);
    backdrop-filter: blur(12px);
}

.logo {
    width: 140px;
    height: auto;
    display: block;
}

.site-nav {
    display: flex;
    gap: 28px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: var(--serif);
}

.site-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    position: relative;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: center;
    padding: 80px 0 40px;
}

.hero-content {
    animation: fadeUp 1s ease both;
}

.eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(200, 167, 107, 0.15);
    color: #7c5b24;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero p {
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-green), #9fd26c);
    color: #10210c;
    box-shadow: 0 15px 25px rgba(120, 176, 66, 0.3);
}

.btn-ghost {
    background: rgba(120, 176, 66, 0.12);
    color: var(--brand-green-dark);
    border-color: rgba(120, 176, 66, 0.35);
}

.btn-outline {
    background: #ffffff;
    color: var(--brand-green-dark);
    border-color: rgba(120, 176, 66, 0.45);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 23, 18, 0.15);
}

.hero-meta {
    display: grid;
    gap: 16px;
}

.meta-card {
    padding: 16px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(200, 167, 107, 0.2);
    box-shadow: 0 12px 25px rgba(16, 23, 18, 0.08);
}

.meta-title {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7c5b24;
    margin-bottom: 6px;
}

.meta-value {
    font-weight: 600;
}

.hero-media {
    position: relative;
    min-height: 520px;
    display: grid;
    gap: 18px;
    align-content: center;
}

.hero-slider {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 360px;
    border: 1px solid rgba(200, 167, 107, 0.25);
    box-shadow: 0 22px 45px rgba(16, 23, 18, 0.18);
}

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

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(17, 21, 17, 0.55);
    padding: 8px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    z-index: 2;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.hero-card {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(243, 236, 223, 0.95));
    border-radius: 32px;
    padding: 32px;
    width: min(420px, 90%);
    box-shadow: var(--shadow);
    border: 1px solid rgba(200, 167, 107, 0.25);
    position: relative;
    overflow: hidden;
    animation: floatSlow 5s ease-in-out infinite;
}

.hero-card,
.floating-chips {
    display: none;
}

.hero-card::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(200, 167, 107, 0.4), transparent 70%);
    opacity: 0.8;
}

.hero-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    color: #7c5b24;
}

.hero-card h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.hero-card__list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-card__list span {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(200, 167, 107, 0.15);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-chips {
    position: relative;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    transform: none;
    z-index: 2;
}

.floating-chips span {
    background: rgba(17, 21, 17, 0.86);
    color: #f7f2ea;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.hero-orb {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 167, 107, 0.4), transparent 65%);
    top: -40px;
    right: 10px;
    filter: blur(10px);
    opacity: 0.6;
    animation: pulse 6s ease-in-out infinite;
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 36px;
}

.section-title h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--muted);
}

.products,
.gallery,
.about,
.featured,
.story,
.faq {
    padding: 80px 0 40px;
}

.gallery-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 4px;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    border-radius: 22px;
    overflow: hidden;
    background: #efe7da;
    border: 1px solid rgba(200, 167, 107, 0.2);
    box-shadow: 0 14px 28px rgba(16, 23, 18, 0.1);
    height: 360px;
}

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

.gallery-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(200, 167, 107, 0.35);
    background: #ffffff;
    color: #5a4b36;
    font-size: 1.6rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 12px 20px rgba(16, 23, 18, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #5a8a32;
    position: relative;
    padding-bottom: 4px;
    letter-spacing: 0.3px;
}

.product-cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c8a76b, #e5cfa0);
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.product-cta:hover::after {
    transform: scaleX(1);
}

.gallery-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(16, 23, 18, 0.18);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    border: 1px solid rgba(200, 167, 107, 0.2);
    box-shadow: 0 14px 28px rgba(16, 23, 18, 0.1);
    overflow: hidden;
    display: grid;
}

.product-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #efe7da;
}

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

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(200, 167, 107, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 20px 22px 24px;
}

.product-info h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.product-info p {
    color: var(--muted);
}

.product-actions {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.about-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 16px 0;
}

.about-content p {
    color: var(--muted);
    max-width: 560px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.about-stats .stat {
    display: block;
    font-family: var(--serif);
    font-size: 1.4rem;
}

.about-stats .label {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    border: 1px solid rgba(200, 167, 107, 0.2);
    box-shadow: 0 18px 32px rgba(16, 23, 18, 0.12);
    overflow: hidden;
}

.about-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: #efe7da;
}

.about-card__content {
    padding: 24px;
}

.about-card__content h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.about-card__content p {
    color: var(--muted);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.faq-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(200, 167, 107, 0.2);
    box-shadow: 0 12px 25px rgba(16, 23, 18, 0.08);
}

.faq-card h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.faq-card p {
    color: var(--muted);
}

.collection-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(200, 167, 107, 0.2);
    box-shadow: 0 12px 25px rgba(16, 23, 18, 0.08);
    transition: transform 0.2s ease;
}

.collection-card:hover {
    transform: translateY(-6px);
}

.collection-image {
    position: relative;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #efe7da;
}

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

.collection-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(200, 167, 107, 0.35);
    font-family: var(--serif);
    font-size: 1.2rem;
    position: absolute;
    top: 12px;
    left: 12px;
    box-shadow: 0 8px 16px rgba(16, 23, 18, 0.1);
}

.collection-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.collection-card p {
    color: var(--muted);
}

.featured-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-card {
    padding: 30px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(200, 167, 107, 0.2);
    box-shadow: 0 15px 30px rgba(16, 23, 18, 0.08);
    position: relative;
    overflow: hidden;
}

.featured-card::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(200, 167, 107, 0.18);
}

.featured-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(200, 167, 107, 0.2);
    margin-bottom: 16px;
}

.featured-card h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.featured-card p {
    color: var(--muted);
}

.story {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.story-content h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 16px;
}

.story-content p {
    color: var(--muted);
    margin-bottom: 20px;
}

.story-list {
    list-style: none;
    display: grid;
    gap: 12px;
    color: var(--muted);
}

.story-list li {
    padding-left: 20px;
    position: relative;
}

.story-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.story-panel {
    position: relative;
    border-radius: 30px;
    padding: 32px;
    background: linear-gradient(160deg, rgba(17, 21, 17, 0.95), rgba(45, 55, 47, 0.95));
    color: #f5efe6;
    min-height: 260px;
    display: grid;
    align-content: space-between;
    overflow: hidden;
}

.panel-card span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    opacity: 0.75;
}

.panel-card strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.8rem;
    margin: 16px 0 22px;
}

.panel-accent {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 167, 107, 0.7), transparent 70%);
    bottom: -40px;
    right: -40px;
    opacity: 0.8;
}

.cta {
    margin-top: 80px;
    padding: 40px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 236, 223, 0.9));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(200, 167, 107, 0.2);
}

.cta-content h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-content p {
    color: var(--muted);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer {
    margin-top: 70px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.footer-card {
    padding: 40px;
    border-radius: 32px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(243, 236, 223, 0.92));
    border: 1px solid rgba(200, 167, 107, 0.2);
    box-shadow: 0 20px 45px rgba(16, 23, 18, 0.12);
    display: grid;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-line {
    height: 2px;
    background: rgba(27, 27, 27, 0.12);
    flex: 1;
    margin-left: auto;
}

.footer-brand p {
    color: var(--muted);
    max-width: 320px;
}

.footer-description {
    color: var(--muted);
    max-width: 520px;
    margin-left: auto;
    text-align: right;
    line-height: 1.6;
}

.footer-logo {
    width: 140px;
    margin-bottom: 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.footer-column h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-column a,
.footer-column span {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: var(--ink);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    border-top: 1px solid rgba(27, 27, 27, 0.08);
    padding-top: 16px;
    font-size: 0.9rem;
}

.footer-bottom span a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(27, 27, 27, 0.25);
}

.footer-bottom span a:hover {
    color: var(--ink);
}

.footer-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-chips span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(200, 167, 107, 0.18);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}



@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes floatSlow {

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

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

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@media (max-width: 1024px) {
    .site-header {
        flex-wrap: wrap;
        border-radius: 24px;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }

    .hero-media {
        order: -1;
        min-height: 420px;
    }

    .hero-slider--primary {
        height: 380px;
    }

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

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

    .gallery-carousel {
        grid-template-columns: 1fr;
    }

    .gallery-arrow {
        display: none;
    }

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

    .about-inner {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .page {
        padding: 24px 6vw 60px;
    }

    .site-header {
        padding: 18px;
        flex-direction: column;
    }

    .site-nav {
        gap: 16px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
    }

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

    .hero-slider {
        height: 320px;
    }

    .hero-slider--primary {
        height: 320px;
    }

    .floating-chips {
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .site-header {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .cta-actions {
        width: 100%;
    }

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

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

    .gallery-card {
        height: 280px;
    }

    .footer-card {
        padding: 28px;
    }
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(200, 167, 107, 0.35);
    box-shadow: 0 16px 30px rgba(16, 23, 18, 0.18);
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #5a4b36;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 90;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    pointer-events: none;
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(16, 23, 18, 0.25);
}


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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.whatsapp-chat {
    position: fixed;
    right: 24px;
    bottom: 90px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 30px rgba(16, 23, 18, 0.18);
    z-index: 95;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(16, 23, 18, 0.25);
}

.whatsapp-chat::after {
    content: "Chat With Us";
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #ffffff;
    color: #1b1b1b;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(16, 23, 18, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-right: 16px;
    font-family: var(--sans);
    visibility: hidden;
}

.whatsapp-chat:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}
