/* =========================================================
   MEN PAGE
========================================================= */

.men-page {
    background: #FFFFFF;
    color: #111;
    font-family: "Montserrat", sans-serif;
}


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

.men-breadcrumb {
    width: 100%;
    padding: 20px 5%;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    background: #FFFFFF;

    border-bottom: 1px solid #ddd;

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

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.men-breadcrumb a {
    color: #777;
    text-decoration: none;

    transition: color 0.3s ease;
}

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

.men-breadcrumb span {
    color: #E7A49A;
}

.men-breadcrumb strong {
    color: #111;
}


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

.men-hero {
    min-height: 560px;

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

    position: relative;

    padding: 90px 5%;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.42),
            rgba(0, 0, 0, 0.42)
        ),
        url("../images//men//herobg.avif")
        center center / cover no-repeat;
}

.men-hero-content {
    width: 100%;
    max-width: 850px;
    color: #fff;
}

.men-label {
    margin: 0 0 22px;

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

    letter-spacing: 5px;

    color: #fff;
}

.men-hero h1 {
    margin: 0 0 28px;

    font-family: "Playfair Display", serif;

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

    line-height: 0.98;

    font-weight: 600;
}

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

.men-hero-description {
    max-width: 620px;

    margin: 0 auto 35px;

    color: #f3f3f3;

    font-size: 15px;
    line-height: 1.9;
}


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

.men-btn {
    display: inline-flex;

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

    gap: 12px;

    min-height: 50px;

    padding: 15px 25px;

    background: #111;
    color: #fff;

    text-decoration: none;

    border: 1px solid #111;

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

    letter-spacing: 1.8px;

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

.men-btn:hover {
    background: #E7A49A;
    border-color: #E7A49A;

    transform: translateY(-2px);
}

.men-btn i {
    font-size: 11px;
}


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

.men-section-heading {
    text-align: center;

    max-width: 700px;

    margin: 0 auto;
}

.men-section-label {
    margin: 0 0 12px;

    color: #E7A49A;

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

    letter-spacing: 3px;

    text-transform: uppercase;
}

.men-section-heading h2 {
    margin: 0;

    font-family: "Playfair Display", serif;

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

    line-height: 1.1;

    font-weight: 600;
}

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


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

.men-categories {
    padding: 100px 5%;
}

.men-category-grid {
    width: 100%;

    display: grid;

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

    gap: 20px;

    margin-top: 50px;
}


/* =========================================================
   CATEGORY CARD
========================================================= */

.men-category-card {
    position: relative;

    height: 390px;

    display: block;

    overflow: hidden;

    color: #fff;

    text-decoration: none;

    background: #222;
}

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

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

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


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

.men-category-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

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


/* =========================================================
   CATEGORY CONTENT
========================================================= */

.men-category-content {
    position: absolute;

    left: 28px;
    right: 20px;
    bottom: 28px;

    z-index: 2;
}

.men-category-content p {
    margin: 0 0 8px;

    color: #B86F5A;

    font-size: 10px;

    letter-spacing: 2px;
}

.men-category-content h3 {
    margin: 0 0 12px;

    font-family: "Playfair Display", serif;

    font-size: 31px;

    line-height: 1;

    font-weight: 600;
}

.men-category-content span {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #fff;

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

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: gap 0.3s ease;
}

.men-category-card:hover
.men-category-content span {
    gap: 14px;
}

.men-category-content span i {
    font-size: 9px;
}


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

.men-products {
    padding: 100px 5%;

    background: #fff;
}


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

.men-product-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 35px;

    margin-bottom: 50px;
}

.men-product-header > div:first-child {
    flex: 1;
}

.men-product-header h2 {
    margin: 0;

    font-family: "Playfair Display", serif;

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

    line-height: 1;

    font-weight: 600;
}

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


/* =========================================================
   FILTER
========================================================= */

.men-filter {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;

    flex-wrap: wrap;
}

.men-filter-btn {
    min-height: 40px;

    padding: 10px 17px;

    border: 1px solid #d5d5d5;

    background: transparent;

    color: #222;

    cursor: pointer;

    font-family: "Montserrat", sans-serif;

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

    letter-spacing: 1px;

    text-transform: uppercase;

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

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

    border-color: #111;

    color: #fff;
}


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

.men-product-grid {
    display: grid;

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

    gap: 35px 22px;
}


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

.men-product {
    min-width: 0;
}

.men-product-image {
    position: relative;

    width: 100%;

    height: 450px;

    overflow: hidden;

    background: #eee;
}

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

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

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


/* =========================================================
   BADGE
========================================================= */

.men-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 3;

    padding: 7px 12px;

    background: #111;

    color: #fff;

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

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* =========================================================
   WISHLIST
========================================================= */

.men-wishlist {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 4;

    width: 40px;
    height: 40px;

    display: flex;

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

    border: none;

    border-radius: 50%;

    background: #fff;

    color: #111;

    cursor: pointer;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.08);

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

.men-wishlist:hover {
    background: #111;

    color: #fff;

    transform: scale(1.05);
}

.men-wishlist i {
    font-size: 14px;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

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

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

    color: #999;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.5px;
}

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

    color: #111;

    font-family: "Playfair Display", serif;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 600;
}

.men-product-info strong {
    color: #111;

    font-size: 13px;
    font-weight: 600;
}


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

.men-story {
    display: grid;

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

    align-items: center;

    gap: 80px;

    padding: 110px 5%;

    background: #FFFFFF;
}

.men-story-image {
    width: 100%;
    height: 600px;

    overflow: hidden;

    background: #ddd;
}

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

    display: block;

    object-fit: cover;
}

.men-story-content {
    width: 100%;
    max-width: 570px;
}

.men-story-label {
    margin: 0 0 18px;

    color: #E7A49A;

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

    letter-spacing: 3px;
}

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

    font-family: "Playfair Display", serif;

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

    line-height: 1.02;

    font-weight: 600;
}

.men-story-content h2 span {
    display: block;

    color: #E7A49A;

    font-style: italic;
}

.men-story-content > p:not(.men-story-label) {
    max-width: 520px;

    margin: 0 0 30px;

    color: #666;

    font-size: 14px;

    line-height: 1.9;
}


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

.men-page .newsletter {
    width: 100%;
}
/* =========================================================
   MEN PRODUCT FILTER ANIMATION
========================================================= */

.men-product {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.men-product.filter-hidden {
    display: none;
}

.men-product.filter-show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


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

.men-page .footer {
    width: 100%;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

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

    .men-category-card {
        height: 360px;
    }

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

    .men-product-image {
        height: 420px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

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

        padding:
            80px 30px;
    }

    .men-categories,
    .men-products {
        padding:
            80px 5%;
    }

    .men-product-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .men-filter {
        width: 100%;

        justify-content: flex-start;
    }

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

        gap: 30px 16px;
    }

    .men-product-image {
        height: 390px;
    }

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

        gap: 50px;

        padding:
            80px 5%;
    }

    .men-story-image {
        height: 520px;
    }

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

}


/* =========================================================
   MOBILE NAVIGATION SUPPORT
========================================================= */

@media (max-width: 768px) {

    .men-breadcrumb {
        padding:
            16px 20px;

        font-size: 9px;
    }

    .men-hero {
        min-height: 470px;

        padding:
            70px 20px;
    }

    .men-label {
        font-size: 9px;

        letter-spacing: 3px;
    }

    .men-hero h1 {
        font-size:
            clamp(
                45px,
                13vw,
                70px
            );
    }

    .men-hero-description {
        font-size: 13px;

        line-height: 1.7;
    }

    .men-categories,
    .men-products {
        padding:
            65px 20px;
    }

    .men-section-heading h2,
    .men-product-header h2 {
        font-size: 40px;
    }

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

        gap: 12px;

        margin-top: 35px;
    }

    .men-category-card {
        height: 280px;
    }

    .men-category-content {
        left: 18px;
        right: 12px;
        bottom: 18px;
    }

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

    .men-category-content span {
        font-size: 8px;
    }

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

        gap: 28px 12px;
    }

    .men-product-image {
        height: 300px;
    }

    .men-product-info {
        padding-top: 13px;
    }

    .men-product-info p {
        font-size: 8px;
    }

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

    .men-product-info strong {
        font-size: 12px;
    }

    .men-badge {
        top: 10px;
        left: 10px;

        padding:
            6px 9px;

        font-size: 7px;
    }

    .men-wishlist {
        top: 10px;
        right: 10px;

        width: 34px;
        height: 34px;
    }

    .men-wishlist i {
        font-size: 12px;
    }

    .men-story {
        padding:
            70px 20px;
    }

    .men-story-image {
        height: 430px;
    }

    .men-story-content h2 {
        font-size: 45px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .men-breadcrumb {
        gap: 7px;

        font-size: 8px;
    }

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

        padding:
            60px 18px;
    }

    .men-label {
        margin-bottom: 16px;

        letter-spacing: 2.5px;
    }

    .men-hero h1 {
        font-size: 47px;

        line-height: 1.02;

        margin-bottom: 20px;
    }

    .men-hero-description {
        max-width: 330px;

        font-size: 12px;
    }

    .men-btn {
        min-height: 46px;

        padding:
            13px 19px;

        font-size: 9px;
    }

    .men-categories,
    .men-products {
        padding:
            55px 16px;
    }

    .men-section-heading h2,
    .men-product-header h2 {
        font-size: 36px;
    }

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

        gap: 12px;
    }

    .men-category-card {
        height: 330px;
    }

    .men-category-content {
        left: 22px;
        bottom: 22px;
    }

    .men-category-content h3 {
        font-size: 29px;
    }

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

        gap: 35px;
    }

    .men-product-image {
        height: 430px;
    }

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

    .men-story {
        padding:
            60px 16px;

        gap: 35px;
    }

    .men-story-image {
        height: 420px;
    }

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

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

        line-height: 1.8;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .men-hero h1 {
        font-size: 42px;
    }

    .men-category-card {
        height: 290px;
    }

    .men-product-image {
        height: 390px;
    }

    .men-story-image {
        height: 370px;
    }

    .men-story-content h2 {
        font-size: 37px;
    }

}