/* =========================================================
   FASHIONÉ — COMPLETE HOME PAGE CSS
   Responsive: Desktop / Laptop / Tablet / Mobile
========================================================= */


/* =========================================================
   GOOGLE FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Allura&display=swap');


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #FFFFFF;
    color: #111;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    width: 100%;
    display: block;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   TOP BAR (HIDDEN)
========================================================= */

.top-bar {
    display: none;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    width: 100%;
    height: 85px;

    background: #FFFFFF;

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

    padding: 0 5%;

    position: relative;
    z-index: 10000;

    overflow: visible;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    font-family: "Playfair Display", serif;

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

    letter-spacing: 2px;

    white-space: nowrap;

    flex-shrink: 0;
}

.logo span {
    color: #E7A49A;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    gap: 38px;

    height: 100%;

    overflow: visible;
}

.nav-links > a,
.dropdown-link {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    color: #111;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1px;

    white-space: nowrap;
}


/* =========================================================
   NAV UNDERLINE
========================================================= */

.nav-links > a::after,
.dropdown-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 22px;

    width: 0;
    height: 1px;

    background: #E7A49A;

    transition: width 0.3s ease;
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-dropdown:hover .dropdown-link::after,
.nav-dropdown.open .dropdown-link::after {
    width: 100%;
}


/* =========================================================
   CATEGORY DROPDOWN CONTAINER
========================================================= */

.nav-dropdown {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    z-index: 10001;
}


/* =========================================================
   CATEGORY LINK
========================================================= */

.dropdown-link {
    gap: 7px;

    cursor: pointer;
}

.dropdown-link > i {
    font-size: 8px;

    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-link > i,
.nav-dropdown.open .dropdown-link > i {
    transform: rotate(180deg);
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.dropdown-menu {
    position: absolute;

    top: calc(100% + 1px);
    left: 50%;

    transform:
        translateX(-50%)
        translateY(10px);

    width: 230px;

    background: #111;

    padding: 12px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 99999;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.25);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* =========================================================
   DROPDOWN HOVER BRIDGE
========================================================= */

.dropdown-menu::before {
    content: "";

    position: absolute;

    top: -12px;
    left: 0;

    width: 100%;
    height: 12px;

    background: transparent;
}


/* GOLD LINE */

.dropdown-menu::after {
    content: "";

    position: absolute;

    top: 0;
    left: 20px;
    right: 20px;

    height: 2px;

    background: #E7A49A;
}


/* =========================================================
   SHOW DROPDOWN — DESKTOP
========================================================= */

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================================
   SUBCATEGORY LINKS
========================================================= */

.dropdown-menu a {
    position: relative !important;

    display: flex !important;
    align-items: center;

    gap: 13px;

    width: 100%;
    height: auto !important;

    padding: 14px 12px;

    color: #ddd !important;
    background: transparent;

    text-decoration: none;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1px;
    text-transform: uppercase;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}


/* REMOVE MAIN NAV UNDERLINE */

.dropdown-menu a::after {
    display: none !important;
    content: none !important;
}


/* SUBCATEGORY ICON */

.dropdown-menu a i {
    width: 20px;
    min-width: 20px;

    color: #E7A49A;

    font-size: 13px;

    text-align: center;

    transition: color 0.25s ease;
}


/* SUBCATEGORY HOVER */

.dropdown-menu a:hover {
    background: #1e1e1e;

    color: #B86F5A !important;

    padding-left: 18px;
}

.dropdown-menu a:hover i {
    color: #B86F5A;
}


/* =========================================================
   NAV ICONS
========================================================= */

.nav-icons {
    display: flex;
    align-items: center;

    gap: 18px;

    flex-shrink: 0;
}

.nav-icons button {
    border: none;
    background: transparent;

    color: #111;

    padding: 5px;

    font-size: 17px;

    transition: color 0.3s ease;
}

.nav-icons button:hover {
    color: #E7A49A;
}


/* =========================================================
   CART
========================================================= */

.cart-btn {
    position: relative;
}

.cart-btn span {
    position: absolute;

    top: -7px;
    right: -7px;

    width: 17px;
    height: 17px;

    background: #E7A49A;
    color: #fff;

    border-radius: 50%;

    font-size: 9px;

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


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-btn {
    display: none;
}


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

.hero {
    width: 100%;

    min-height: 650px;

    display: grid;

    grid-template-columns: 48% 52%;

    background: #e9e5df;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 10%;
}

.small-title {
    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 600;

    color: #E7A49A;

    margin-bottom: 22px;
}

.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 6vw, 95px);

    line-height: 0.95;

    font-weight: 500;
}

.hero h1 span {
    display: block;

    color: #E7A49A;
}

.hero-description {
    max-width: 450px;

    margin: 30px 0;

    color: #666;

    font-size: 14px;

    line-height: 1.8;
}


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

.primary-btn,
.light-btn {
    width: fit-content;

    min-height: 50px;

    padding: 16px 25px;

    background: #111;
    color: #fff;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;

    display: flex;
    align-items: center;

    gap: 15px;

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

.primary-btn:hover {
    background: #E7A49A;

    transform: translateY(-2px);
}

.light-btn {
    background: #fff;
    color: #111;
}

.light-btn:hover {
    background: #E7A49A;
    color: #fff;

    transform: translateY(-2px);
}


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

.hero-image {
    height: 650px;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}


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

.categories-section,
.products-section,
.blog-section {
    padding: 100px 5%;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 45px;
}

.section-label {
    font-size: 10px;

    letter-spacing: 3px;

    color: #E7A49A;

    margin-bottom: 10px;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 4vw, 55px);

    font-weight: 500;
}

.section-heading h2 span {
    color: #E7A49A;
}


/* =========================================================
   VIEW ALL
========================================================= */

.view-all {
    width: fit-content;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;

    display: flex;
    align-items: center;

    gap: 10px;

    border-bottom: 1px solid #111;

    padding-bottom: 7px;

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

.view-all:hover {
    color: #E7A49A;

    border-color: #E7A49A;
}


/* =========================================================
   CATEGORIES
========================================================= */

.category-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.category-card {
    height: 430px;

    position: relative;

    overflow: hidden;

    background: #ddd;
}

.category-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}


/* =========================================================
   CATEGORY OVERLAY
========================================================= */

.category-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;

    padding: 30px;

    color: #fff;

    background:
        linear-gradient(
            transparent 40%,
            rgba(0, 0, 0, 0.75)
        );
}

.category-overlay p {
    font-size: 11px;

    color: #B86F5A;
}

.category-overlay h3 {
    font-family: "Playfair Display", serif;

    font-size: 32px;

    font-weight: 500;

    margin: 5px 0;
}

.category-overlay span {
    font-size: 10px;

    letter-spacing: 1px;
}


/* =========================================================
   EXPLORE CATEGORY BUTTON
========================================================= */

.explore-category {
    margin-top: 18px;

    width: fit-content;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 11px 16px;

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

    color: #fff;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

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

.explore-category i {
    transition: transform 0.3s ease;
}

.category-card:hover .explore-category {
    background: #E7A49A;

    border-color: #E7A49A;
}

.category-card:hover .explore-category i {
    transform: translateX(5px);
}




/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    background: #F6D6D0;

    padding: 70px 5%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}

.newsletter-content {
    flex: 1;
}

.newsletter p {
    color: #E7A49A;

    font-size: 10px;

    letter-spacing: 3px;
}

.newsletter h2 {
    font-family: "Playfair Display", serif;

    font-size: 42px;

    font-weight: 500;

    margin-top: 10px;
}

.newsletter h2 span {
    color: #E7A49A;
}

.newsletter form {
    display: flex;

    width: 50%;

    max-width: 600px;
}

.newsletter input {
    flex: 1;

    min-width: 0;

    height: 55px;

    border: none;

    padding: 0 20px;

    outline: none;

    font-size: 12px;

    background: #fff;
}

.newsletter button {
    height: 55px;

    border: none;

    background: #111;

    color: #fff;

    padding: 0 25px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;

    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #E7A49A;
}


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

.footer {
    background: #111;

    color: #fff;

    padding: 70px 5% 25px;
}

.footer-main {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand p {
    color: #aaa;

    font-size: 12px;

    line-height: 1.8;

    max-width: 350px;

    margin: 20px 0;
}


/* SOCIALS */

.socials {
    display: flex;

    gap: 12px;
}

.socials a {
    width: 35px;
    height: 35px;

    border: 1px solid #444;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

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

.socials a:hover {
    background: #E7A49A;

    border-color: #E7A49A;
}


/* FOOTER COLUMNS */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.footer-column h3 {
    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.footer-column a {
    color: #aaa;

    font-size: 11px;

    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #E7A49A;
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid #333;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #777;

    font-size: 10px;
}


/* =========================================================
   TABLET / SMALL LAPTOP
   769px - 1100px
========================================================= */

@media (max-width: 1100px) {

    .navbar {
        padding: 0 4%;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links > a,
    .dropdown-link {
        font-size: 11px;
    }

    .nav-icons {
        gap: 12px;
    }

    .hero-content {
        padding: 70px 8%;
    }

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

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

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

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


/* =========================================================
   TABLET
   769px - 900px
========================================================= */

@media (max-width: 900px) and (min-width: 769px) {

    .navbar {
        padding: 0 3%;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links > a,
    .dropdown-link {
        font-size: 10px;
    }

    .nav-icons {
        gap: 7px;
    }

    .nav-icons button {
        font-size: 15px;
    }

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

    .hero-content {
        padding: 60px 7%;
    }

    .hero h1 {
        font-size: clamp(48px, 6vw, 68px);
    }

    .hero-image {
        height: 600px;
    }
}


/* =========================================================
   MOBILE — 768px
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       TOP BAR
    ===================================================== */

    .top-bar {
        min-height: 34px;

        justify-content: center;

        padding: 0 4%;

        font-size: 9px;

        text-align: center;
    }

    .top-bar p:last-child {
        display: none;
    }


    /* =====================================================
       NAVBAR
    ===================================================== */

    .navbar {
        height: 75px;

        padding: 0 5%;

        z-index: 10000;
    }


    /* LOGO */

    .logo {
        font-size: 25px;
    }


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

    .nav-links {
        position: absolute;

        top: 75px;

        left: 0;

        width: 100%;

        height: auto;

        max-height: calc(100vh - 75px);

        overflow-x: hidden;

        overflow-y: auto;

        background: #FFFFFF;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px 5% 25px;

        box-sizing: border-box;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform: translateY(-10px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;

        z-index: 99999;

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.10);
    }


    /* OPEN MOBILE NAV */

    .nav-links.show {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }


    /* =====================================================
       MOBILE MAIN LINKS
    ===================================================== */

    .nav-links > a {
        width: 100%;

        height: auto;

        min-height: 50px;

        padding: 15px 0;

        display: flex;

        align-items: center;

        box-sizing: border-box;

        font-size: 11px;
    }

    .nav-links > a::after {
        bottom: 5px;
    }


    /* =====================================================
       MOBILE CATEGORY
    ===================================================== */

    .nav-dropdown {
        position: relative;

        width: 100%;

        height: auto;

        display: block;

        z-index: 100000;
    }

    .dropdown-link {
        width: 100%;

        height: auto;

        min-height: 50px;

        padding: 15px 0;

        display: flex;

        align-items: center;

        justify-content: space-between;

        box-sizing: border-box;

        font-size: 11px;
    }

    .dropdown-link::after {
        bottom: 5px;
    }


    /* =====================================================
       MOBILE SUBCATEGORY MENU
    ===================================================== */

    .nav-dropdown .dropdown-menu {
        position: static !important;

        width: 100% !important;

        height: auto !important;

        margin: 0 !important;

        padding: 6px 0 8px 15px !important;

        display: none !important;

        background: #eeece7 !important;

        box-shadow: none !important;

        opacity: 1 !important;

        visibility: visible !important;

        pointer-events: auto !important;

        transform: none !important;

        box-sizing: border-box;
    }


    /* OPEN SUBMENU */

    .nav-dropdown.open .dropdown-menu {
        display: block !important;
    }


    /* REMOVE DECORATIVE DESKTOP LINES */

    .dropdown-menu::before,
    .dropdown-menu::after {
        display: none !important;
    }


    /* =====================================================
       SUBCATEGORY LINKS
    ===================================================== */

    .nav-dropdown .dropdown-menu a {
        width: 100% !important;

        height: auto !important;

        min-height: 44px;

        padding: 11px 10px !important;

        display: flex !important;

        align-items: center;

        gap: 10px;

        box-sizing: border-box;

        color: #222 !important;

        background: transparent !important;

        font-size: 10px;

        font-weight: 600;

        letter-spacing: 1px;
    }

    .nav-dropdown .dropdown-menu a::after {
        display: none !important;
    }


    /* SUBCATEGORY ICON */

    .nav-dropdown .dropdown-menu a i {
        display: inline-flex !important;

        width: 20px;

        min-width: 20px;

        color: #E7A49A !important;

        font-size: 13px;
    }


    /* SUBCATEGORY HOVER */

    .nav-dropdown .dropdown-menu a:hover {
        background: #e0ddd7 !important;

        color: #E7A49A !important;

        padding-left: 16px !important;
    }


    /* =====================================================
       NAV ICONS
    ===================================================== */

    .nav-icons {
        gap: 9px;
    }

    .nav-icons button {
        padding: 5px;

        font-size: 16px;
    }


    /* =====================================================
       MOBILE MENU BUTTON
    ===================================================== */

    .menu-btn {
        display: flex;

        align-items: center;

        justify-content: center;
    }


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

    .hero {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .hero-content {
        min-height: 500px;

        padding: 60px 8%;
    }

    .hero h1 {
        font-size: clamp(48px, 13vw, 72px);
    }

    .hero-description {
        max-width: 100%;

        font-size: 13px;

        line-height: 1.7;
    }

    .hero-image {
        height: 500px;
    }


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

    .categories-section,
    .products-section,
    .blog-section {
        padding: 70px 5%;
    }


    /* =====================================================
       SECTION HEADING
    ===================================================== */

    .section-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: clamp(36px, 10vw, 50px);
    }


    /* =====================================================
       CATEGORIES
    ===================================================== */

    .category-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .category-card {
        height: 420px;
    }


    /* =====================================================
       PRODUCTS
    ===================================================== */

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

        gap: 15px;
    }

    .product-image {
        height: 330px;
    }

    .product-info h3 {
        font-size: 13px;
    }


    /* =====================================================
       PROMO
    ===================================================== */

    .promo {
        min-height: 450px;

        padding: 60px 7%;

        background-attachment: scroll;
    }

    .promo h2 {
        font-size: clamp(42px, 12vw, 65px);
    }


    /* =====================================================
       BLOG
    ===================================================== */

    .blog-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .blog-image {
        height: 300px;
    }


    /* =====================================================
       NEWSLETTER
    ===================================================== */

    .newsletter {
        padding: 60px 5%;

        flex-direction: column;

        align-items: stretch;

        gap: 30px;
    }

    .newsletter h2 {
        font-size: 36px;
    }

    .newsletter form {
        width: 100%;

        max-width: none;
    }


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

    .footer {
        padding: 60px 5% 25px;
    }

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

        gap: 40px 25px;

        padding-bottom: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }
}


/* =========================================================
   SMALL MOBILE — 600px
========================================================= */

@media (max-width: 600px) {

    .hero-content {
        min-height: 460px;

        padding: 50px 7%;
    }

    .hero-image {
        height: 450px;
    }

    .category-card {
        height: 390px;
    }

    .product-image {
        height: 300px;
    }

    .blog-image {
        height: 280px;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter input {
        width: 100%;

        height: 52px;
    }

    .newsletter button {
        width: 100%;

        height: 52px;
    }
}


/* =========================================================
   MOBILE — 480px
========================================================= */

@media (max-width: 480px) {

    /* TOP BAR */

    .top-bar {
        min-height: 32px;

        font-size: 8px;

        letter-spacing: 1px;
    }


    /* NAVBAR */

    .navbar {
        height: 70px;

        padding: 0 4%;
    }

    .logo {
        font-size: 22px;

        letter-spacing: 1px;
    }


    /* MOBILE NAV */

    .nav-links {
        top: 70px;

        max-height: calc(100vh - 70px);

        padding-left: 6%;
        padding-right: 6%;
    }


    /* ICONS */

    .nav-icons {
        gap: 4px;
    }

    .nav-icons button {
        padding: 4px;

        font-size: 15px;
    }


    /* CART */

    .cart-btn span {
        width: 15px;
        height: 15px;

        top: -5px;
        right: -5px;

        font-size: 8px;
    }


    /* HERO */

    .hero-content {
        min-height: 430px;

        padding: 45px 7%;
    }

    .small-title {
        font-size: 9px;

        letter-spacing: 2px;

        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: clamp(43px, 14vw, 60px);
    }

    .hero-description {
        font-size: 12px;

        margin: 24px 0;
    }

    .primary-btn {
        width: 100%;

        justify-content: center;

        padding: 15px 20px;
    }

    .hero-image {
        height: 420px;
    }


    /* SECTIONS */

    .categories-section,
    .products-section,
    .blog-section {
        padding: 60px 5%;
    }


    /* CATEGORIES */

    .category-card {
        height: 370px;
    }

    .category-overlay {
        padding: 22px;
    }

    .category-overlay h3 {
        font-size: 28px;
    }

    .explore-category {
        padding: 10px 13px;

        font-size: 8px;
    }


    /* PRODUCTS */

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

        gap: 25px;
    }

    .product-image {
        height: 430px;
    }


    /* PROMO */

    .promo {
        min-height: 420px;

        padding: 50px 7%;
    }

    .promo h2 {
        font-size: 45px;
    }

    .promo-content > p:nth-of-type(2) {
        font-size: 11px;

        line-height: 1.6;
    }


    /* BLOG */

    .blog-image {
        height: 250px;
    }

    .blog-content h3 {
        font-size: 22px;
    }


    /* NEWSLETTER */

    .newsletter {
        padding: 55px 6%;
    }

    .newsletter h2 {
        font-size: 34px;
    }


    /* FOOTER */

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

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        font-size: 9px;
    }
}


/* =========================================================
   EXTRA SMALL — 360px
========================================================= */

@media (max-width: 360px) {

    .navbar {
        padding: 0 3%;
    }

    .logo {
        font-size: 20px;
    }

    .nav-icons {
        gap: 1px;
    }

    .nav-icons button {
        font-size: 14px;

        padding: 3px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-content {
        min-height: 400px;

        padding: 40px 6%;
    }

    .hero-image {
        height: 380px;
    }

    .category-card {
        height: 340px;
    }

    .category-overlay h3 {
        font-size: 25px;
    }

    .product-image {
        height: 380px;
    }

    .newsletter h2 {
        font-size: 30px;
    }
}


/* =========================================================
   TOUCH DEVICES
   Disable hover-only quick add behavior
========================================================= */

@media (hover: none) and (pointer: coarse) {

    .quick-add {
        bottom: 15px;
    }

    .category-card:hover img,
    .product-card:hover .product-image img,
    .blog-card:hover .blog-image img {
        transform: none;
    }
}


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

:focus-visible {
    outline: 2px solid #E7A49A;

    outline-offset: 3px;
}


/* =========================================================
   REDUCE MOTION
========================================================= */

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   NAVBAR SEARCH ACTIVE STYLING
========================================================= */
.search-container {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-search-form {
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease, margin 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-search-form.active {
    width: 150px;
    margin-left: 8px;
}

.nav-search-input {
    border: none;
    border-bottom: 1.5px solid #111111;
    background: transparent;
    padding: 3px 5px;
    font-size: 13px;
    outline: none;
    width: 100%;
    color: #111111;
    font-family: "Montserrat", sans-serif;
}
