
/* =========================================================
   FASHIONÉ — WOMEN PAGE
   Fully Responsive CSS
   360px → 4K
========================================================= */

/* =========================================================
   RESET / PAGE
========================================================= */

.women-page {
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    color: #111;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

.women-page *,
.women-page *::before,
.women-page *::after {
    box-sizing: border-box;
}

.women-page img {
    display: block;
    max-width: 100%;
}

.women-page a {
    text-decoration: none;
}

.women-page button {
    font-family: inherit;
}


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

.women-page .top-bar {
    width: 100%;
    min-height: 35px;

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

    padding: 8px 5%;

    background: #111;
    color: #fff;

    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.women-page .top-bar p {
    margin: 0;
}


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

.women-page .navbar {
    width: 100%;
    min-height: 85px;

    background: #FFFFFF;

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

    padding: 0 5%;

    background: #f8f7f4;

    position: relative;
    z-index: 1000;
}

.women-page .logo {
    color: #111;

    font-family: "Playfair Display", serif;

    font-size: clamp(23px, 2.2vw, 30px);
    font-weight: 700;

    letter-spacing: 2px;

    white-space: nowrap;
}

.women-page .logo span {
    color: #E7A49A;
}


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

.women-page .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(18px, 2.5vw, 35px);
}

.women-page .nav-links > a,
.women-page .dropdown-link {
    color: #111;

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

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

    position: relative;
}

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

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #E7A49A;

    transition: width 0.3s ease;
}

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


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

.women-page .nav-dropdown {
    position: relative;

    display: flex;
    align-items: center;

    height: 85px;
}

.women-page .dropdown-link {
    display: flex;
    align-items: center;

    gap: 7px;
}

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

    transition: transform 0.3s ease;
}

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


/* =========================================================
   DROPDOWN MENU
========================================================= */

.women-page .dropdown-menu {
    position: absolute;

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

    width: 230px;

    padding: 12px;

    background: #111;

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

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

    z-index: 99999;

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

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

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

    position: absolute;

    top: -15px;
    left: 0;

    width: 100%;
    height: 15px;
}

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

    position: absolute;

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

    height: 2px;

    background: #E7A49A;
}

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

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

.women-page .dropdown-menu a {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 12px;

    color: #ddd !important;

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

    letter-spacing: 1px;

    text-transform: uppercase;

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

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

    color: #E7A49A;

    font-size: 13px;

    text-align: center;

    flex-shrink: 0;
}

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

    color: #B86F5A !important;

    padding-left: 18px;
}


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

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

    gap: 12px;

    flex-shrink: 0;
}

.women-page .nav-icons button {
    border: none;
    outline: none;

    background: transparent;

    color: #111;

    cursor: pointer;

    font-size: 17px;

    padding: 5px;

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

.women-page .nav-icons button:hover {
    color: #b88a44;
}

.women-page .cart-btn {
    position: relative;
}

.women-page .cart-btn span {
    position: absolute;

    top: -8px;
    right: -8px;

    width: 17px;
    height: 17px;

    background: #E7A49A;
    color: #fff;

    border-radius: 50%;

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

    font-size: 9px;
}

.women-page .menu-btn {
    display: none;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.women-page .breadcrumb {
    width: 100%;

    padding: 20px 5%;

    display: flex;
    align-items: center;

    gap: 10px;

    background: #FFFFFF;

    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #ddd;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

    overflow-x: auto;
    white-space: nowrap;
}

.women-page .breadcrumb a {
    color: #777;
}

.women-page .breadcrumb a:hover {
    color: #E7A49A;
}

.women-page .breadcrumb span {
    color: #E7A49A;
}

.women-page .breadcrumb strong {
    color: #111;
    font-weight: 600;
}


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

.women-page .women-hero {
    width: 100%;
    min-height: 540px;

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

    padding: 80px 5%;

    position: relative;

    overflow: hidden;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.38),
            rgba(0, 0, 0, 0.38)
        ),
        url("../images/home/women.avif")
        center / cover no-repeat;
}

.women-page .women-hero-content {
    width: 100%;
    max-width: 780px;

    color: #fff;
}

.women-page .women-label {
    margin: 0 0 20px;

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

    letter-spacing: 4px;
}

.women-page .women-hero h1 {
    margin: 0 0 25px;

    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 8vw, 95px);

    line-height: 1;

    font-weight: 600;
}

.women-page .women-hero h1 span {
    color: #B86F5A;
    font-style: italic;
}

.women-page .women-hero p:not(.women-label) {
    max-width: 620px;

    margin: 0 auto 30px;

    color: #f5f5f5;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   BUTTON
========================================================= */

.women-page .women-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 48px;

    padding: 15px 25px;

    background: #111;
    color: #fff;

    border: none;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;

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

.women-page .women-btn:hover {
    background: #E7A49A;

    transform: translateY(-2px);
}


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

.women-page .section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.women-page .section-label {
    margin: 0 0 12px;
    text-align: center;
  

    color: #E7A49A;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;
}

.women-page .section-heading h2 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.1;
}

.women-page .section-heading h2 span {
    color: #E7A49A;
    font-style: italic;
}


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

.women-page .women-categories {
    width: 100%;

    padding: clamp(60px, 8vw, 100px) 5%;

    background: #FFFFFF;
}

.women-page .women-category-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    margin-top: 45px;
}

.women-page .women-category-card {
    position: relative;

    height: clamp(280px, 28vw, 390px);

    overflow: hidden;

    display: block;

    color: #fff;

    background: #222;
}

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

    object-fit: cover;

    transition: transform 0.6s ease;
}

.women-page .women-category-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.05) 70%
        );

    z-index: 1;
}

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

.women-page .women-category-content {
    position: absolute;

    left: 25px;
    right: 20px;
    bottom: 25px;

    z-index: 2;
}

.women-page .women-category-content p {
    margin: 0 0 7px;

    color: #B86F5A;

    font-size: 10px;

    letter-spacing: 2px;
}

.women-page .women-category-content h3 {
    margin: 0;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: clamp(22px, 2.2vw, 30px);

    font-weight: 600;
}


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

.women-page .women-products {
    width: 100%;

    padding: clamp(60px, 8vw, 100px) 5%;

    background: #fff;
}

.women-page .women-product-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}

.women-page .women-product-header h2 {
    margin: 0;

    font-family: "Playfair Display", serif;

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

    line-height: 1.1;
}

.women-page .women-product-header h2 span {
    color: #E7A49A;
    font-style: italic;
}

.women-page .women-filter {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.women-page .filter-btn {
    border: 1px solid #ccc;

    background: transparent;

    color: #111;

    padding: 10px 18px;

    cursor: pointer;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.women-page .filter-btn:hover,
.women-page .filter-btn.active {
    background: #111;

    color: #fff;

    border-color: #111;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.women-page .women-product-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 25px;
}

.women-page .women-product {
    min-width: 0;

    position: relative;
}

.women-page .women-product-image {
    width: 100%;

    height: clamp(360px, 35vw, 500px);

    position: relative;

    overflow: hidden;

    background: #eee;
}

.women-page .women-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.women-page .women-product:hover .women-product-image img {
    transform: scale(1.05);
}

.women-page .women-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    padding: 7px 12px;

    background: #111;

    color: #fff;

    font-size: 9px;

    letter-spacing: 1px;
}

.women-page .women-wishlist {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 3;

    width: 38px;
    height: 38px;

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

    border: none;

    border-radius: 50%;

    background: #fff;

    color: #111;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;
}

.women-page .women-wishlist:hover {
    background: #111;
    color: #fff;
}

.women-page .women-wishlist.active {
    background: #b88a44;
    color: #fff;
}

.women-page .women-product-info {
    padding-top: 18px;
}

.women-page .women-product-info p {
    margin: 0 0 7px;

    color: #999;

    font-size: 9px;

    letter-spacing: 1.5px;
}

.women-page .women-product-info h3 {
    margin: 0 0 8px;

    color: #111;

    font-family: "Playfair Display", serif;

    font-size: 19px;

    font-weight: 600;

    line-height: 1.3;
}

.women-page .women-product-info strong {
    color: #111;

    font-size: 13px;

    font-weight: 600;
}


/* =========================================================
   STYLE STORY
========================================================= */

.women-page .women-story {
    width: 100%;

    padding: clamp(65px, 9vw, 110px) 5%;

    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: clamp(40px, 6vw, 80px);

    align-items: center;

    background: #FFFFFF;
}

.women-page .women-story-image {
    width: 100%;

    height: clamp(420px, 48vw, 650px);

    overflow: hidden;
}

.women-page .women-story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.women-page .women-story-image:hover img {
    transform: scale(1.03);
}

.women-page .women-story-content {
    width: 100%;

    max-width: 550px;
}

.women-page .women-story-label {
    margin: 0 0 18px;

    color: #E7A49A;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;
}

.women-page .women-story-content h2 {
    margin: 0 0 25px;

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.05;
}

.women-page .women-story-content h2 span {
    color: #E7A49A;

    font-style: italic;
}

.women-page .women-story-content p:not(.women-story-label) {
    margin: 0 0 30px;

    color: #666;

    font-size: 14px;

    line-height: 1.9;
}

/* =========================================================
   PRODUCT FILTER ANIMATION
========================================================= */

.women-page .women-product {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}



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

.women-page .footer {
    width: 100%;

    background: #0b0b0b;

    color: #fff;
}

.women-page .footer-main {
    width: 100%;

    padding: clamp(55px, 7vw, 85px) 5%;

    display: grid;

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

    gap: 50px;
}

.women-page .footer-brand .logo {
    color: #fff;
}

.women-page .footer-brand p {
    max-width: 330px;

    margin: 20px 0;

    color: #999;

    font-size: 13px;

    line-height: 1.8;
}

.women-page .socials {
    display: flex;

    gap: 10px;
}

.women-page .socials a {
    width: 35px;
    height: 35px;

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

    border: 1px solid #333;

    color: #fff;

    border-radius: 50%;

    font-size: 13px;

    transition: all 0.3s ease;
}

.women-page .socials a:hover {
    background: #E7A49A;

    border-color: #E7A49A;
}

.women-page .footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.women-page .footer-column h3 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 11px;

    letter-spacing: 2px;
}

.women-page .footer-column a {
    color: #888;

    font-size: 12px;

    transition: color 0.3s ease;
}

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

.women-page .footer-bottom {
    min-height: 65px;

    padding: 20px 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #222;

    color: #666;

    font-size: 10px;

    letter-spacing: 0.5px;
}

.women-page .footer-bottom p {
    margin: 0;
}


/* =========================================================
   LARGE DESKTOP — 1400px+
========================================================= */

@media (min-width: 1400px) {

    .women-page .navbar,
    .women-page .breadcrumb,
    .women-page .women-categories,
    .women-page .women-products,
    .women-page .women-story,
    .women-page .footer-main,
    .women-page .footer-bottom {
        padding-left: 7%;
        padding-right: 7%;
    }

    .women-page .women-category-grid,
    .women-page .women-product-grid {
        gap: 30px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP — 1100px
========================================================= */

@media (max-width: 1100px) {

    .women-page .nav-links {
        gap: 18px;
    }

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

    .women-page .nav-icons {
        gap: 8px;
    }

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

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

    .women-page .women-product-image {
        height: 460px;
    }

    .women-page .women-story {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

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


/* =========================================================
   TABLET — 900px
========================================================= */

@media (max-width: 900px) {

    .women-page .navbar {
        padding: 0 25px;
    }

    .women-page .nav-links {
        gap: 14px;
    }

    .women-page .women-hero {
        min-height: 500px;
    }

    .women-page .women-product-image {
        height: 400px;
    }

    .women-page .women-story {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .women-page .women-story-content {
        max-width: 700px;
    }

    .women-page .women-story-image {
        height: 500px;
    }
}


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

@media (max-width: 768px) {

    /* TOP BAR */

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

        padding: 8px 15px;

        justify-content: center;

        text-align: center;

        font-size: 8px;
    }

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


    /* NAVBAR */

    .women-page .navbar {
        min-height: 72px;

        padding: 0 20px;
    }

    .women-page .logo {
        font-size: 25px;
    }


    /* MOBILE NAV */

    .women-page .nav-links {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

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

        overflow-y: auto;

        padding: 10px 20px 25px;

        background: #FFFFFF;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        border-top: 1px solid #ddd;

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

    .women-page .nav-links.show,
    .women-page .nav-links.active {
        display: flex;
    }

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

        padding: 16px 5px;

        border-bottom: 1px solid #e4e4e4;
    }

    .women-page .nav-links > a::after {
        display: none;
    }


    /* DROPDOWN */

    .women-page .nav-dropdown {
        width: 100%;

        height: auto;

        display: block;

        border-bottom: 1px solid #e4e4e4;
    }

    .women-page .dropdown-link {
        width: 100%;

        min-height: 52px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 15px 5px;
    }

    .women-page .dropdown-link::after {
        display: none;
    }

    .women-page .dropdown-link i {
        font-size: 10px;
    }


    /* MOBILE DROPDOWN */

    .women-page .dropdown-menu {
        position: static;

        width: 100%;

        margin: 0;

        padding: 5px 0 8px 15px;

        transform: none !important;

        background: #111;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        display: none;
    }

    .women-page .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .women-page .dropdown-menu::before,
    .women-page .dropdown-menu::after {
        display: none;
    }

    .women-page .dropdown-menu a {
        min-height: 45px;

        padding: 12px 10px;

        border-bottom: 1px solid #222;
    }

    .women-page .dropdown-menu a:last-child {
        border-bottom: none;
    }


    /* NAV ICONS */

    .women-page .nav-icons {
        gap: 7px;
    }

    .women-page .nav-icons button {
        width: 34px;
        height: 34px;

        padding: 4px;

        font-size: 16px;
    }

    .women-page .menu-btn {
        display: flex;
    }


    /* BREADCRUMB */

    .women-page .breadcrumb {
        padding: 14px 20px;

        gap: 8px;

        font-size: 9px;
    }


    /* HERO */

    .women-page .women-hero {
        min-height: 480px;

        padding: 70px 20px;

        background-position: center;
    }

    .women-page .women-label {
        margin-bottom: 16px;

        font-size: 9px;

        letter-spacing: 3px;
    }

    .women-page .women-hero h1 {
        font-size: clamp(45px, 12vw, 70px);

        margin-bottom: 22px;
    }

    .women-page .women-hero p:not(.women-label) {
        max-width: 580px;

        font-size: 13px;

        line-height: 1.7;
    }


    /* CATEGORIES */

    .women-page .women-categories {
        padding: 65px 20px;
    }

    .women-page .section-label {
        font-size: 9px;

        letter-spacing: 2.5px;
    }

    .women-page .section-heading h2 {
        font-size: clamp(34px, 7vw, 48px);
    }

    .women-page .women-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;

        margin-top: 30px;
    }

    .women-page .women-category-card {
        height: 280px;
    }

    .women-page .women-category-content {
        left: 17px;

        bottom: 17px;
    }

    .women-page .women-category-content h3 {
        font-size: 23px;
    }


    /* PRODUCTS */

    .women-page .women-products {
        padding: 65px 20px;
    }

    .women-page .women-product-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

        margin-bottom: 35px;
    }

    .women-page .women-product-header h2 {
        font-size: clamp(38px, 8vw, 50px);
    }

    .women-page .women-filter {
        width: 100%;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .women-page .women-filter::-webkit-scrollbar {
        display: none;
    }

    .women-page .filter-btn {
        flex: 0 0 auto;

        padding: 9px 14px;

        font-size: 9px;
    }

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

        gap: 30px 12px;
    }

    .women-page .women-product-image {
        height: 360px;
    }

    .women-page .women-product-info {
        padding-top: 14px;
    }

    .women-page .women-product-info h3 {
        font-size: 17px;
    }


    /* STORY */

    .women-page .women-story {
        padding: 70px 20px;

        gap: 40px;
    }

    .women-page .women-story-image {
        height: 480px;
    }

    .women-page .women-story-content h2 {
        font-size: clamp(40px, 10vw, 58px);
    }

    .women-page .women-story-content p:not(.women-story-label) {
        font-size: 13px;

        line-height: 1.8;
    }


    /* FOOTER */

    .women-page .footer-main {
        padding: 60px 20px;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 40px 25px;
    }

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

    .women-page .footer-bottom {
        padding: 20px;

        flex-direction: column;

        justify-content: center;

        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE — 500px
========================================================= */

@media (max-width: 500px) {

    /* NAVBAR */

    .women-page .navbar {
        padding: 0 15px;
    }

    .women-page .logo {
        font-size: 22px;

        letter-spacing: 1.5px;
    }

    .women-page .nav-icons {
        gap: 3px;
    }

    .women-page .nav-icons button {
        width: 31px;
        height: 31px;

        font-size: 15px;
    }


    /* HERO */

    .women-page .women-hero {
        min-height: 440px;

        padding: 60px 18px;
    }

    .women-page .women-label {
        font-size: 8px;

        letter-spacing: 2.5px;
    }

    .women-page .women-hero h1 {
        font-size: 46px;

        line-height: 1.05;
    }

    .women-page .women-hero p:not(.women-label) {
        font-size: 12px;

        line-height: 1.7;
    }

    .women-page .women-btn {
        min-height: 45px;

        padding: 13px 20px;

        font-size: 9px;
    }


    /* CATEGORIES */

    .women-page .women-categories {
        padding: 55px 15px;
    }

    .women-page .section-heading h2 {
        font-size: 38px;
    }

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

        gap: 12px;
    }

    .women-page .women-category-card {
        height: 300px;
    }


    /* PRODUCTS */

    .women-page .women-products {
        padding: 55px 15px;
    }

    .women-page .women-product-header {
        gap: 20px;
    }

    .women-page .women-product-header h2 {
        font-size: 38px;
    }

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

        gap: 35px;
    }

    .women-page .women-product-image {
        height: min(125vw, 500px);
    }

    .women-page .women-product-info h3 {
        font-size: 19px;
    }


    /* STORY */

    .women-page .women-story {
        padding: 60px 15px;

        gap: 35px;
    }

    .women-page .women-story-image {
        height: 420px;
    }

    .women-page .women-story-content h2 {
        font-size: 42px;
    }


    /* FOOTER */

    .women-page .footer-main {
        padding: 55px 15px;

        grid-template-columns: 1fr 1fr;

        gap: 35px 20px;
    }

    .women-page .footer-brand p {
        font-size: 12px;
    }

    .women-page .footer-bottom {
        padding: 18px 15px;

        font-size: 9px;
    }
}


/* =========================================================
   VERY SMALL DEVICES — 380px
========================================================= */

@media (max-width: 380px) {

    .women-page .logo {
        font-size: 20px;

        letter-spacing: 1px;
    }

    .women-page .nav-icons button {
        width: 29px;
        height: 29px;

        font-size: 14px;
    }


    /* HERO */

    .women-page .women-hero {
        min-height: 420px;

        padding: 50px 15px;
    }

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

    .women-page .women-hero p:not(.women-label) {
        font-size: 11px;
    }


    /* CATEGORY */

    .women-page .women-category-card {
        height: 270px;
    }

    .women-page .women-category-content h3 {
        font-size: 21px;
    }


    /* PRODUCT */

    .women-page .women-product-image {
        height: 430px;
    }


    /* STORY */

    .women-page .women-story-image {
        height: 380px;
    }

    .women-page .women-story-content h2 {
        font-size: 38px;
    }


    /* FOOTER */

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

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


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

@media (max-width: 360px) {

    .women-page .top-bar {
        font-size: 7px;

        letter-spacing: 1px;
    }

    .women-page .navbar {
        min-height: 68px;
    }

    .women-page .logo {
        font-size: 19px;
    }

    .women-page .nav-icons button:nth-child(1),
    .women-page .nav-icons button:nth-child(2) {
        display: none;
    }

    .women-page .menu-btn {
        display: flex;
    }

    .women-page .women-hero {
        min-height: 400px;
    }

    .women-page .women-hero h1 {
        font-size: 37px;
    }

    .women-page .women-category-card {
        height: 250px;
    }

    .women-page .women-product-image {
        height: 390px;
    }

    .women-page .women-story-image {
        height: 350px;
    }
}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (max-width: 768px) and (orientation: landscape) {

    .women-page .women-hero {
        min-height: 520px;
    }

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

    .women-page .women-category-card {
        height: 280px;
    }

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

    .women-page .women-product-image {
        height: 380px;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

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

    .women-page .women-category-card:hover img,
    .women-page .women-product:hover .women-product-image img,
    .women-page .women-story-image:hover img {
        transform: none;
    }

    .women-page .women-btn:hover {
        transform: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

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

        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

