/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #202020;
    background: #fff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {
    --dark: #171717;
    --dark-soft: #242424;
    --reddish: #da2a2a;


    --gold: #a4773d;
    --gold-dark: #815a2c;
    --gold-light: #eadbc4;

    --cream: #f7f3ec;
    --cream-dark: #eee6d8;

    --text: #202020;
    --muted: #6d6d6d;

    --white: #ffffff;

    --border: #e8e3db;

    --container: 1200px;

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

    --transition: 0.3s ease;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   ANNOUNCEMENT
===================================================== */

.announcement-bar {
    background: var(--dark);
    color: #fff;
    font-size: 18px;
}

.announcement-inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;
}

.announcement-inner a {
    color: var(--gold-light);
    font-weight: 700;
}

.announcement-inner a:hover {
    color: #fff;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand {
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand-logo-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 180px;
    height: auto;
    display: block;
}

.brand-phone {
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
    padding-left: 22px;
}

.brand-phone span {
    font-size: 20px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-phone a {
    color: var(--dark);
    font-size: 22px;
    font-weight: 700;
    margin-top: 2px;
    transition: var(--transition);
}

.brand-phone a:hover {
    color: var(--gold);
}



/* Desktop navigation */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav > a:not(.nav-shop) {
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

.desktop-nav > a:not(.nav-shop)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: var(--transition);
}

.desktop-nav > a:not(.nav-shop):hover::after {
    width: 100%;
}

.nav-shop {
    padding: 12px 20px;

    background: var(--reddish);
    color: #fff;

    border-radius: 7px;

    font-size: 20px;
    font-weight: 700;

    transition: var(--transition);
}

.nav-shop:hover {
    background: var(--gold);
}


/* Mobile menu */

.mobile-menu-button {
    display: none;

    border: 0;
    background: transparent;

    width: 42px;
    height: 42px;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 23px;
    height: 2px;

    background: var(--dark);

    margin: 5px auto;

    transition: var(--transition);
}

.mobile-nav {
    display: none;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    overflow: hidden;

    min-height: 600px;

    background:
        linear-gradient(
            115deg,
            #f7f3ec 0%,
            #f8f5ef 55%,
            #eee4d3 100%
        );

    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    border: 1px solid rgba(164, 119, 61, 0.15);

    right: -200px;
    top: -200px;
}

.hero-pattern::before,
.hero-pattern::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(164, 119, 61, 0.12);
}

.hero-pattern::before {
    inset: 70px;
}

.hero-pattern::after {
    inset: 150px;
}

.container-hero {
    width: min(1200px, calc(100% - 40px));
    margin: auto;
}


.hero-grid {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-label {
    display: inline-block;

    color: var(--reddish);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.eyebrow {
    margin-bottom: 10px;
}

.hero h1 {
    max-width: 720px;

    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.03;

    font-weight: 600;

    letter-spacing: -2px;

    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--reddish);
    font-style: italic;
}

.hero-description {
    max-width: 620px;

    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;

    color: var(--reddish);

    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px 25px;

    border-radius: 7px;

    font-size: 20px;
    font-weight: 700;

    transition: var(--transition);
}

.button-primary {
    background: var(--reddish);
    color: #fff;
}

.button-primary:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.button-secondary {
    border: 1px solid #cfc6b8;
    background: transparent;
}

.button-secondary:hover {
    border-color: var(--reddish);
    background: #fff;
}

.button-dark {
    background: var(--reddish);
    color: #fff;
}

.button-dark:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.button-light {
    background: #fff;
    color: var(--dark);
}

.button-light:hover {
    background: var(--reddish);
    color: #fff;
    transform: translateY(-2px);
}

/* =====================================================
   HERO TRUST ITEMS
===================================================== */

.hero-trust {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 30px;

    padding-top: 5px;

    border-top: 1px solid rgba(0, 0, 0, 0.1);
}


/* Individual trust item */

.trust-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 12px;

    border-radius: 10px;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Hover */

.trust-item:hover {
    background: rgba(255, 255, 255, 0.75);

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.06);
}


/* Icon */

.trust-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--gold-light),
            #dfc7a4
        );

    color: var(--gold-dark);

    font-size: 15px;

    border: 1px solid rgba(164, 119, 61, 0.2);

    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}


/* Text */

.trust-content {
    display: flex;

    flex-direction: column;

    min-width: 0;
}

.trust-content strong {
    color: var(--dark);

    font-size: 14px;

    font-weight: 700;

    line-height: 1.3;
}

.trust-content span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.35;
}

/* Hero Visual */

.hero-visual {
    position: relative;

    min-height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-main {
    width: 430px;
    height: 520px;

    border-radius: 210px 210px 18px 18px;

    overflow: hidden;

    box-shadow: var(--shadow);
}

/* =====================================================
   HERO SLIDESHOW
===================================================== */

.hero-slideshow {
    position: relative;

    width: 430px;
    height: 520px;

    overflow: hidden;

    border-radius:
        210px 210px 18px 18px;

    background: #222;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.14);
}


/* Individual slides */

.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 1s ease,
        visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;

    visibility: visible;

    z-index: 1;
}


/* Images */

.hero-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.03);

    transition:
        transform 5s ease;
}

.hero-slide.active img {
    transform: scale(1);
}


/* =====================================================
   SLIDE OVERLAY
===================================================== */

.hero-slide-overlay {
    position: absolute;

    z-index: 3;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 35px 28px;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05) 35%,
            rgba(0, 0, 0, 0.72) 100%
        );
}

.hero-slide-overlay div {
    display: flex;

    flex-direction: column;

    color: #fff;
}

.hero-slide-overlay span {
    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;

    letter-spacing: 2px;
}

.hero-slide-overlay small {
    margin-top: 4px;

    font-size: 11px;

    opacity: 0.9;
}


/* =====================================================
   ARROWS
===================================================== */

.slide-arrow {
    position: absolute;

    z-index: 5;

    top: 50%;

    transform: translateY(-50%);

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255,255,255,0.4);

    border-radius: 50%;

    background: rgba(0,0,0,0.25);

    color: #fff;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.slide-arrow:hover {
    background: rgba(0,0,0,0.55);

    transform:
        translateY(-50%)
        scale(1.08);
}

.slide-prev {
    left: 18px;
}

.slide-next {
    right: 18px;
}


/* =====================================================
   DOTS
===================================================== */

.slide-dots {
    position: absolute;

    z-index: 5;

    bottom: 18px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 7px;
}

.slide-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,0.5);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.slide-dot.active {
    width: 22px;

    border-radius: 10px;

    background: #fff;
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.floating-card {
    position: absolute;
    z-index: 20;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 18px;

    background: rgba(255, 255, 255, 0.97);

    color: var(--dark);
    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: 12px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.10);

    cursor: pointer;

    /* Smooth animation */
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.3s ease;
    
    /* Helps browser render the animation smoothly */
    will-change: transform;
    
    /* Prevents text selection while hovering */
    user-select: none;
}


/* Hover */

.floating-card:hover {
    transform: translateY(-7px);

    background: #ffffff;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.16);
}


/* Keep the card stable when clicking */

.floating-card:active {
    transform: translateY(-3px);
}


/* =====================================================
   CARD ONE
===================================================== */

.floating-card-one {
    left: -15px;
    bottom: 75px;
}


/* =====================================================
   CARD TWO
===================================================== */

.floating-card-two {
    right: -10px;
    top: 100px;

    flex-direction: column;
    align-items: flex-start;

    gap: 4px;
}


/* =====================================================
   CARD ICON
===================================================== */

.floating-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold-light);

    color: var(--gold-dark);

    font-size: 16px;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.3s ease;
}


/* Icon hover */

.floating-card:hover .floating-icon {
    transform: rotate(8deg) scale(1.08);

    background: #e3ceb0;
}


/* =====================================================
   TEXT
===================================================== */

.floating-card strong {
    display: block;

    font-size: 13px;

    line-height: 1.3;
}

.floating-card small {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.4;
}

.floating-card-two span {
    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 600;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.floating-card-two:hover span {
    color: var(--gold);

    transform: translateX(3px);
}

/* =====================================================
   SECTIONS
===================================================== */

.section {
    padding: 110px 0;
}

.section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.section-heading h2,
.about-content h2,
.contact-section h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.1;

    font-weight: 600;

    margin-top: 12px;
}

.section-heading > p {
    max-width: 420px;

    color: var(--muted);

    font-size: 16px;
}

.section-heading.centered {
    display: block;

    max-width: 680px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading.centered p {
    margin: 20px auto 0;
}


/* =====================================================
   CATEGORIES
===================================================== */

.categories-section {
    background: #fff;
}

.category-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.category-card {
    overflow: hidden;

    border: 1px solid var(--border);

    background: #fff;

    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.category-image {
    position: relative;

    height: 300px;

    overflow: hidden;

    background: #ddd;

    display: flex;

    align-items: flex-end;

    padding: 25px;

    color: #fff;
}

.category-large .category-image {
    height: 380px;
}

.category-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


/* Dark gradient over image */

.category-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.05) 65%
        );

    pointer-events: none;
}


/* Category label */

.category-image-label {
    position: relative;

    z-index: 2;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* Image zoom on card hover */

.category-card:hover .category-image img {
    transform: scale(1.06);
}


.category-content {
    min-height: 105px;

    padding: 20px;

    display: grid;

    grid-template-columns: 35px 1fr 25px;

    gap: 15px;

    align-items: center;
}

.category-number {
    color: var(--gold);

    font-size: 11px;

    font-weight: 700;
}

.category-content h3 {
    font-family: "Playfair Display", serif;

    font-size: 24px;

    margin-bottom: 3px;
}

.category-content p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.5;
}

.category-arrow {
    font-size: 20px;

    transition: var(--transition);
}

.category-card:hover .category-arrow {
    color: var(--gold);

    transform: translateX(5px);
}

.center-button {
    text-align: center;

    margin-top: 45px;
}


/* =====================================================
   CTA
===================================================== */

.shop-cta {
    position: relative;

    overflow: hidden;

    padding: 50px 0;

    background: var(--gold);

    color: #fff;

    text-align: center;
}

.cta-pattern {
    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;

    left: -150px;
    top: -250px;
}

.cta-content {
    position: relative;
}

.section-label.light {
    color: var(--gold-light);
    font-size: 16px;
}

.shop-cta h2 {
    max-width: 750px;

    margin: 15px auto 20px;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.05;
}

.shop-cta h2 span {
    color: var(--reddish);

    font-style: italic;
}

.shop-cta p {
    color: #bbb;

    max-width: 520px;

    margin: 0 auto 30px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.about-visual {
    position: relative;

    padding: 20px;
}

.about-frame {
    padding: 20px;

    border: 1px solid rgba(164, 119, 61, 0.3);
}

.about-image {
    height: 520px;

    background:
        linear-gradient(
            145deg,
            #b6a188,
            #655646
        );

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 30px;

    letter-spacing: 3px;
}

.about-badge {
    position: absolute;

    right: -10px;
    bottom: 30px;

    background: var(--dark);
    color: #fff;

    padding: 20px 25px;

    display: flex;
    flex-direction: column;

    box-shadow: var(--shadow);
}

.about-badge strong {
    font-family: "Playfair Display", serif;

    font-size: 18px;
}

.about-badge span {
    color: #bbb;

    font-size: 11px;

    margin-top: 5px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content h2 em {
    display: block;

    color: var(--gold);

    font-style: italic;
}

.about-content > p {
    color: var(--muted);

    margin-bottom: 18px;

    font-size: 16px;
}

.about-points {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin: 30px 0;
}

.about-points div {
    display: flex;

    align-items: center;

    gap: 10px;
}

.about-points span {
    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: var(--gold-light);

    color: var(--gold-dark);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 12px;
}

.about-points p {
    font-size: 13px;
}

.text-link {
    display: inline-block;

    font-weight: 700;

    color: var(--gold-dark);

    padding-bottom: 5px;

    border-bottom: 1px solid var(--gold);
}


/* =====================================================
   WHY US
===================================================== */

.why-section {
    background: #fff;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.why-card {
    padding: 45px 30px;

    border-right: 1px solid var(--border);

    transition: var(--transition);
}

.why-card:last-child {
    border-right: 0;
}

.why-card:hover {
    background: var(--cream);
}

.why-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold-light);

    color: var(--gold-dark);

    font-size: 20px;

    margin-bottom: 25px;
}

.why-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 23px;

    margin-bottom: 12px;
}

.why-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.contact-section h2 {
    margin-bottom: 20px;
}

.contact-section > .container > div:first-child p {
    max-width: 520px;

    color: var(--muted);

    font-size: 16px;
}

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.contact-details > a,
.contact-location {
    padding: 20px;

    background: #fff;

    display: flex;

    align-items: center;

    gap: 18px;

    border: 1px solid var(--border);

    transition: var(--transition);
}

.contact-details > a:hover {
    transform: translateX(5px);

    border-color: var(--gold);
}

.contact-icon {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--gold-light);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold-dark);
}

.contact-details small {
    display: block;

    color: var(--muted);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.contact-details strong {
    display: block;

    font-size: 14px;

    margin-top: 3px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #111;

    color: #fff;

    padding-top: 70px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr repeat(3, 1fr);

    gap: 60px;

    padding-bottom: 60px;
}

.footer-brand-link {
    margin-bottom: 20px;
}

.footer-brand .brand-text span {
    color: #777;
}

.footer-brand p {
    max-width: 270px;

    color: #888;

    font-size: 13px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-column h4 {
    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: var(--gold-light);

    margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
    color: #888;

    font-size: 13px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-shop-link {
    color: var(--gold-light) !important;

    font-weight: 700;
}

.footer-bottom {
    min-height: 70px;

    border-top: 1px solid #292929;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: #666;

    font-size: 12px;
}


/* =====================================================
   ANIMATIONS
===================================================== */

.hero-content,
.hero-visual {
    animation: fadeUp 0.8s ease both;
}

.hero-visual {
    animation-delay: 0.15s;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Scroll reveal */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        padding: 80px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .about-grid {
        gap: 50px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card:nth-child(2) {
        border-right: 0;
    }

    .why-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 760px) {

    .container {
        width: min(100% - 30px, 600px);
    }

    .announcement-inner {
        font-size: 11px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-nav {
        position: absolute;

        top: 100%;

        left: 0;
        right: 0;

        background: #fff;

        border-bottom: 1px solid var(--border);

        padding: 20px;

        display: flex;

        flex-direction: column;

        gap: 5px;

        transform: translateY(-120%);

        opacity: 0;

        pointer-events: none;

        transition: var(--transition);

        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    .mobile-nav.active {
        transform: translateY(0);

        opacity: 1;

        pointer-events: auto;
    }

    .mobile-nav > a {
        padding: 13px 10px;

        font-size: 14px;
    }

    .mobile-shop-button {
        background: var(--dark);

        color: #fff;

        text-align: center;

        margin-top: 8px;

        border-radius: 6px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 65px 0 75px;

        gap: 45px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-trust {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-image-main {
        width: min(100%, 370px);

        height: 450px;
    }

    .floating-card-one {
        left: 0;
        bottom: 30px;
    }

    .floating-card-two {
        right: 0;
        top: 50px;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        display: block;

        margin-bottom: 35px;
    }

    .section-heading > p {
        margin-top: 20px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-large {
        grid-row: auto;
    }

    .category-large .category-image,
    .category-image {
        height: 260px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        height: 430px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        border-right: 0;

        border-bottom: 1px solid var(--border);
    }

    .why-card:last-child {
        border-bottom: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }

}


@media (max-width: 480px) {

    .brand-text span {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-image-main {
        height: 390px;
    }

    .floating-card {
        padding: 12px;
    }

    .floating-card-one {
        left: -5px;
    }

    .floating-card-two {
        right: -5px;
    }

    .hero-trust {
        justify-content: space-between;

        gap: 10px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;
    }

}