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

:root {
    --container: 1300px;
    --side-space: 24px;
    --section-space: 60px;
    --text: #222;
    --muted: #333;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.container,
.header-container,
.usp-container,
.category-row,
.promo-row,
.new-arrivals,
.blog-section,
.gallery-row,
.follow-section,
.footer-box,
.copy {
    width: min(100% - (var(--side-space) * 2), var(--container));
    margin-left: auto;
    margin-right: auto;
}

/* header */

.header {
    width: 100%;
    min-height: 72px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
    z-index: 5;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 77px;
}

.logo {
    width: 134px;
    height: 26px;
    display: block;
    flex: 0 0 auto;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.4vw, 37px);
    flex: 0 1 auto;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.sale {
    color: #ff4d4d !important;
}

.search-box {
    width: clamp(230px, 30vw, 443px);
    height: 40px;
    border: 1px solid #bdbdbd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    flex: 0 1 443px;
}

.search-box input {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    min-width: 0;
}

.search-box img {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.icons {
    display: flex;
    align-items: center;
    gap: 19px;
    flex: 0 0 auto;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link img {
    display: block;
}

.flag-link img {
    width: 24px;
    height: 18px;
}

.contact-link .contact-mobile-img {
    display: none;
}

.cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.header-left-mobile {
    display: none;
}

.mobile-menu-btn,
.mobile-search-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-btn:hover,
.mobile-search-btn:hover {
    opacity: 0.7;
    transform: scale(1.08);
}

.cart-mobile-wrapper {
    display: none;
    position: relative;
}

.cart-mobile-img {
    width: 24px;
    height: 24px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f44336;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* usp bar */

.usp-bar {
    width: 100%;
    min-height: 37px;
    background: #000;
    display: flex;
    align-items: center;
}

.usp-container {
    min-height: 37px;
    display: flex;
    align-items: center;
}

.usp-desktop-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.usp-mobile-marquee {
    display: none;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.usp-item img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: 0 0 auto;
}

.usp-item span {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    white-space: nowrap;
}

.divider {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    flex: 0 0 auto;
}

/* main banner */

.main-banner {
    width: 100%;
    height: 489px;
    position: relative;
    overflow: hidden;
}

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

.banner-container {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    pointer-events: none;
}

.banner-content {
    position: absolute;
    left: 72px;
    top: 244px;
    width: 376px;
    height: 168px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    pointer-events: auto;
}

.banner-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90px;
}

.banner-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.banner-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.banner-btn,
.promo-btn,
.sale-btn {
    height: 38px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    border: 1px solid #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-btn:hover,
.promo-btn:hover,
.sale-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.banner-btn:hover img,
.promo-btn:hover img,
.sale-btn:hover img {
    filter: invert(1);
}

.banner-btn:active,
.promo-btn:active,
.sale-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.banner-btn {
    width: 175px;
}

.banner-btn img,
.promo-btn img,
.sale-btn img {
    width: 16px;
    height: 16px;
    transition: filter 0.3s ease;
}

/* CATEGORY SECTION */

.category-section {
    width: 100%;
    padding: var(--section-space) 0;
}

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

.category-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 0;
}

.category-img {
    width: 309px;
    height: 309px;
    object-fit: cover;
    display: block;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #333;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #000;
}

.category-link img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.category-link:hover img {
    transform: translateX(4px);
}

/* promo section */

.promo-section {
    width: 100%;
}

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

.promo-card {
    width: 100%;
    height: 536px;
    position: relative;
    overflow: hidden;
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.promo-content {
    width: min(404px, calc(100% - 48px));
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.promo-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    color: #fff;
    text-align: center;
    height: 34px;
}

@media (min-width: 768px) {
    .promo-card:first-child .promo-title {
        width: 286px;
    }

    .promo-card:last-child .promo-title {
        width: 318px;
    }
}

.promo-buttons,
.sale-buttons {
    width: 100%;
    display: flex;
    gap: 20px;
}

.promo-btn,
.sale-btn {
    flex: 1 1 0;
    min-width: 0;
}

/* new new-arrivals */

.new-arrivals {
    margin-top: var(--section-space);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.new-arrivals-header,
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.section-title,
.blog-title,
.instagram-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    color: #222;
}

.view-all,
.blog-view-all,
.blog-read-more {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.view-all:hover,
.blog-view-all:hover,
.blog-read-more:hover {
    color: #000;
}

.mobile-view-all,
.mobile-blog-view-all {
    display: none;
}

.view-all img,
.blog-view-all img,
.blog-read-more img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.view-all:hover img,
.blog-view-all:hover img,
.blog-read-more:hover img {
    transform: translateX(4px);
}

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

.product-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 0;
}

.mobile-only-card {
    display: none;
}

.product-image {
    width: 243px;
    height: 321px;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.product-name {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #222;
}

.product-price,
.stock-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
}

.product-price {
    color: #222;
}

.stock-text {
    color: #ff4d6d;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* sale banner */

.sale-banner {
    width: min(100% - (var(--side-space) * 2), 1296px);
    height: 542px;
    margin-top: var(--section-space);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

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

.sale-strip {
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    min-height: 54px;
    background: #ff1717;
    padding: 10px 20px;
}

.sale-strip marquee {
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    color: #fff;
}

.sale-content {
    width: min(404px, calc(100% - 48px));
    position: absolute;
    left: 50%;
    bottom: 43px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sale-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    color: #fff;
    text-align: center;
}

/* BLOG SECTION */

.blog-section {
    margin-top: var(--section-space);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.blog-card {
    min-width: 0;
}

.blog-image {
    width: 100%;
    aspect-ratio: 310 / 352;
    object-fit: cover;
    display: block;
}

.blog-content {
    margin-top: 15px;
}

.blog-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    color: #222;
    margin-bottom: 15px;
}

.blog-read-more {
    gap: 10px;
    font-size: 14px;
}

/* instagram gallary */

.instagram-section {
    width: 100%;
    margin-top: var(--section-space);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.instagram-title {
    text-align: center;
}

.instagram-row {
    width: min(100% - (var(--side-space) * 2), 1018px);
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.instagram-image {
    width: 82px;
    height: 82px;
    border-radius: 70px;
    border: 2px solid #e63c7f;
    object-fit: cover;
    display: block;
    padding: 2px;
}

.gallery-section {
    width: 100%;
    margin-top: var(--section-space);
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
}

.gallery-image {
    width: 209px;
    height: 211px;
    object-fit: cover;
    display: block;
}

.follow-section {
    padding-top: 40px;
    display: flex;
    justify-content: center;
}

.follow-btn {
    width: 224px;
    height: 38px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.follow-btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* footer */

.footer {
    width: 100%;
    padding: 51px 0 40px;
    margin-top: 120px;
    border-top: 1px solid #ddd;
    background-color: #f5f5f6;
}

.footer-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 120px);
}

.footer-left {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 43px;
}

.footer-right {
    display: flex;
    justify-content: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 32px;
}

.accordion-arrow {
    display: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-col a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    line-height: 34px;
}

.footer-news {
    width: min(100%, 380px);
}

.footer-news p {
    font-size: 15px;
    color: #444;
    line-height: 26px;
    margin-bottom: 18px;
}

.footer-news form {
    width: 100%;
    max-width: 380px;
    height: 48px;
    display: flex;
}

.footer-news input {
    width: 100%;
    min-width: 0;
    border: 1px solid #222;
    border-right: none;
    padding: 0 16px;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.footer-news button {
    width: 140px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    flex: 0 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-news button:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    margin-top: 22px;
    width: fit-content;
}

.pay-icon {
    height: 25px;
    width: auto;
    display: block;
}

.copy {
    margin-top: 90px;
    font-size: 14px;
    color: #111;
}

/* leptop */

@media (max-width: 1200px) {
    :root {
        --side-space: 22px;
    }

    .header-container {
        gap: 16px;
    }

    .search-box {
        flex-basis: 280px;
    }

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

/* ---------- RESPONSIVE DESKTOP (993px - 1356px) ---------- */

@media (min-width: 993px) and (max-width: 1356px) {
    .category-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .shop-container {
        grid-template-columns: 194px 1fr;
        width: 100%;
        gap: 20px;
    }

    .shop-content-top-bar {
        width: 100%;
    }

    .shop-product-grid {
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
        gap: 20px 15px;
    }

    .shop-product-card {
        width: 100%;
    }

    .product-image-container {
        width: 100%;
        height: auto;
        aspect-ratio: 255 / 337;
    }

    .shop-product-image {
        width: 100%;
        height: auto;
        aspect-ratio: 255 / 337;
    }
}

/* tablet */

@media (max-width: 992px) {
    :root {
        --section-space: 48px;
        --side-space: 14.5px;
    }

    .header {
        min-height: 51px;
        padding: 0;
    }

    .header-container {
        width: 100%;
        padding: 0 var(--side-space);
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        justify-content: normal;
        gap: 8px;
    }

    .menu,
    .search-box,
    .flag-link,
    .cart-desktop-img {
        display: none;
    }

    .header-left-mobile {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-self: start;
    }

    .mobile-menu-btn,
    .mobile-search-btn,
    .contact-link,
    .cart,
    .cart-mobile-wrapper {
        width: 26px;
        height: 26px;
    }

    .mobile-menu-btn img,
    .mobile-menu-btn svg,
    .mobile-search-btn img,
    .contact-desktop-img,
    .contact-mobile-img,
    .cart-mobile-img {
        width: 26px;
        height: 26px;
        display: block;
        object-fit: contain;
    }

    .contact-link .contact-desktop-img {
        display: none;
    }

    .contact-link .contact-mobile-img {
        display: block;
    }

    .logo {
        width: 87px;
        height: 17px;
        justify-self: center;
    }

    .icons {
        gap: 20px;
        justify-self: end;
    }

    .cart-mobile-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart-mobile-wrapper .cart-badge {
        top: -4px;
        right: -4px;
        width: 17px;
        height: 17px;
        font-size: 8px;
        font-weight: 700;
        background-color: #dc2746;
    }

    .usp-bar,
    .usp-container {
        min-height: 37px;
    }

    .usp-container {
        width: 100%;
        padding: 0 var(--side-space);
        gap: 18px;
    }

    .usp-desktop-items {
        display: none;
    }

    .usp-mobile-marquee {
        display: block;
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
    }

    .marquee-track {
        display: flex;
        width: 500%;
        gap: 0;
        animation: marquee-scroll 12s ease-in-out infinite;
    }

    .marquee-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 20%;
        flex-shrink: 0;
    }

    .marquee-item img {
        width: 16px;
        height: 16px;
    }

    .marquee-item span {
        font-size: 12px;
        font-weight: 400;
        color: #fff;
        text-transform: uppercase;
    }

    @keyframes marquee-scroll {

        0%,
        15% {
            transform: translateX(0);
        }

        25%,
        40% {
            transform: translateX(-20%);
        }

        50%,
        65% {
            transform: translateX(-40%);
        }

        75%,
        90% {
            transform: translateX(-60%);
        }

        100% {
            transform: translateX(-80%);
        }
    }

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

    .category-img {
        width: 162px;
        height: 163px;
        object-fit: cover;
    }

    .promo-row {
        grid-template-columns: 1fr;
    }

    .promo-card {
        width: 100%;
        height: auto;
        min-height: 500px;
    }

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

    .mobile-only-card {
        display: flex;
    }

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

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

    .footer-col {
        border-bottom: none;
        padding: 12px 0;
    }

    .footer-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .footer-title h3,
    .footer-news h3 {
        font-size: 12px;
        margin-bottom: 0;
    }

    .footer-title .accordion-arrow {
        display: block;
        transition: transform 0.3s ease;
    }

    .footer-col.active .accordion-arrow {
        transform: rotate(180deg);
    }

    .footer-col.active .footer-links {
        max-height: 300px;
    }

    .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        display: flex;
        flex-direction: column;
    }

    .footer-links a:first-child {
        margin-top: 12px;
    }

    .footer-col a,
    .footer-news p,
    .copy {
        font-size: 11px;
        line-height: 22px;
    }

    .footer-news {
        width: 100%;
        padding-top: 0;
        border-bottom: none;
    }

    .footer-news h3 {
        margin-bottom: 8px;
    }

    .footer-news p {
        margin-bottom: 12px;
    }

    .footer-news form {
        max-width: none;
        height: 34px;
    }

    .footer-news input {
        font-size: 10px;
        padding: 0 10px;
    }

    .footer-news button {
        width: 88px;
        font-size: 10px;
    }

    .footer {
        margin-top: 40px;
        padding: 40px var(--side-space);
    }

    .footer-box {
        grid-template-columns: 1fr;
        width: 100% !important;
        padding: 0;
        gap: 25px;
    }

    .footer-right {
        justify-content: flex-start;
    }

    .payment-icons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 40px;
        margin-left: 0;
        width: 100%;
        max-width: 380px;
    }

    .pay-icon {
        width: 35px;
        height: 25px;
    }

    /* Mobile order: PayPal, iDeal, Bancontact, Visa, MasterCard, Payconiq */
    .pay-paypal {
        order: 1;
    }

    .pay-ideal {
        order: 2;
    }

    .pay-bancontact {
        order: 3;
    }

    .pay-visa {
        order: 4;
    }

    .pay-mastercard {
        order: 5;
    }

    .pay-payconiq {
        order: 6;
    }

    .copy {
        margin-top: 40px;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .main-banner {
        margin-top: 40px;
    }

    .sale-banner {
        width: calc(100% - (var(--side-space) * 2));
        margin-left: auto;
        margin-right: auto;
        height: clamp(380px, 41vw, 542px);
    }

    .category-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .product-image {
        width: 100%;
        height: auto;
        aspect-ratio: 243 / 321;
    }

    .gallery-image {
        width: 100%;
        height: auto;
        aspect-ratio: 208 / 211;
    }

    /* Responsive payment icons for tablet range (472px to 992px) */
    @media (min-width: 472px) and (max-width: 992px) {
        .payment-icons {
            max-width: none;
        }

        .pay-icon {
            width: 48px;
            height: 34px;
        }
    }
}

/* mobile */

@media (max-width: 767px) {
    :root {
        --side-space: 14.5px;
        --section-space: 38px;
    }



    .main-banner {
        height: 605px;
        position: relative;
    }

    .main-banner::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
        pointer-events: none;
        z-index: 1;
    }

    .banner-container {
        width: 100%;
        padding: 0 var(--side-space);
        z-index: 2;
    }

    .banner-image {
        object-position: center;
    }

    .banner-content {
        left: 50%;
        bottom: 40px;
        top: auto;
        height: auto;
        transform: translateX(-50%);
        width: min(100%, 345px);
        align-items: center;
        gap: 20px;
        z-index: 3;
    }

    .banner-text {
        height: auto;
        text-align: center;
    }

    .banner-subtitle {
        width: 345px;
        max-width: 100%;
        margin: 0 auto;
        font-size: 18px;
        font-weight: 400;
        line-height: 140%;
        text-transform: uppercase;
        text-align: center;
    }

    .banner-title {
        width: 345px;
        max-width: 100%;
        margin: 0 auto;
        font-size: 28.8px;
        font-weight: 700;
        line-height: 140%;
        text-transform: uppercase;
        text-align: center;
    }

    .banner-btn {
        width: 142px;
        height: 31px;
        font-size: 10px;
    }

    .category-section {
        padding: 60px 0 38px;
    }

    .category-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }

    .category-card {
        gap: 8px;
    }

    .category-link {
        font-size: 11px;
        gap: 6px;
    }

    .category-link img {
        width: 12px;
        height: 12px;
    }

    .promo-row {
        gap: 20px;
    }

    .promo-card {
        width: 100%;
        height: 444px;
        min-height: unset;
    }

    .promo-content,
    .sale-content {
        width: min(100% - 34px, 265px);
        bottom: 28px;
        gap: 13px;
    }

    .promo-title,
    .sale-title {
        font-size: 18px;
        width: auto;
        height: auto;
    }

    .promo-buttons,
    .sale-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .promo-btn,
    .sale-btn {
        width: 192px;
        flex: none;
        height: 38px;
        font-size: 12px;
    }

    .new-arrivals,
    .blog-section {
        gap: 20px;
    }

    .new-arrivals-header,
    .blog-header {
        align-items: flex-start;
    }

    .section-title,
    .blog-title,
    .instagram-title {
        font-size: 14px;
    }

    .view-all,
    .blog-view-all {
        font-size: 11px;
        gap: 8px;
        align-self: flex-end;
    }

    .desktop-view-all,
    .desktop-blog-view-all {
        display: none;
    }

    .mobile-view-all {
        display: flex;
        align-self: flex-start;
        margin-top: 20px;
        font-size: 13px;
        font-weight: 400;
        color: #111;
    }

    .mobile-blog-view-all {
        display: flex;
        align-self: flex-start;
        margin-top: 20px;
        font-size: 13px;
        font-weight: 400;
        color: #111;
    }

    .view-all img,
    .blog-view-all img {
        width: 12px;
        height: 12px;
    }

    .product-row,
    .blog-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 20px;
    }

    .product-card {
        gap: 8px;
    }

    .product-image {
        width: 100%;
        height: auto;
        aspect-ratio: 162 / 214;
        object-fit: cover;
    }

    .blog-image {
        width: 100%;
        height: auto;
        aspect-ratio: 163 / 214;
        object-fit: cover;
    }

    .mobile-only-card {
        display: flex;
    }

    .product-name,
    .product-price,
    .stock-text {
        font-size: 10px;
    }

    .product-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .sale-banner {
        width: calc(100% - 31px);
        margin-left: 15px;
        margin-right: 16px;
        height: 444px;
        position: relative;
    }

    .sale-banner::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
        pointer-events: none;
        z-index: 1;
    }

    .sale-content {
        z-index: 2;
    }

    .sale-strip {
        top: 20px;
        min-height: 37px;
        padding: 10px 20px;
        z-index: 2;
    }

    .sale-strip marquee {
        font-size: 16px;
        word-spacing: 11px;
    }

    .blog-card-title {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .blog-content {
        margin-top: 8px;
    }

    .blog-read-more {
        font-size: 10px;
        gap: 6px;
    }

    .blog-read-more img {
        width: 12px;
        height: 12px;
    }

    .instagram-section {
        gap: 18px;
    }

    .instagram-row {
        width: 100%;
        padding: 0 var(--side-space);
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 13px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .instagram-row::-webkit-scrollbar {
        display: none;
    }

    .instagram-image {
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
    }

    .gallery-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .follow-section {
        padding-top: 30px;
    }

    .follow-btn {
        width: 224px;
        height: 30px;
        font-size: 11px;
    }

    /* Footer Spacing for Mobile Layout */
    .footer {
        padding: 40px var(--side-space) !important;
    }

    .payment {
        margin-top: 40px !important;
    }

    .copy {
        margin-top: 40px !important;
    }
}

/* small mobile */

@media (max-width: 480px) {

    .main-banner {
        height: 605px;
    }



    .category-img,
    .product-image,
    .blog-image,
    .gallery-image {
        width: 100%;
    }

    .instagram-title {
        width: auto;
    }
}

/* EXTRA SMALL MOBILE */

@media (max-width: 380px) {
    :root {
        --side-space: 14.5px;
    }

    .header-left-mobile,
    .icons {
        gap: 20px;
    }

    .mobile-menu-btn,
    .mobile-search-btn,
    .contact-link,
    .cart,
    .cart-mobile-wrapper,
    .mobile-menu-btn svg,
    .mobile-search-btn img,
    .contact-link img,
    .cart-mobile-img {
        width: 26px;
        height: 26px;
    }

    .logo {
        width: 87px;
        height: auto;
    }

    .banner-title {
        font-size: 28.8px;
    }

    .promo-btn,
    .sale-btn {
        width: 192px;
    }

    .pay-icon {
        width: 28px;
        height: 20px;
    }
}

/* WIDE SCREEN */

@media (min-width: 1440px) {
    .main-banner {
        height: 489px;
    }

    .promo-card {
        min-height: 536px;
    }

    .sale-banner {
        height: 560px;
    }
}

/* MOBILE MENU DRAWER & ACCORDION */

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(80vw, 360px);
    height: 100%;
    background: #fff;
    z-index: 101;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.drawer-logo {
    width: 100px;
    height: auto;
    filter: invert(1);
}

.drawer-close-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.drawer-accordion {
    display: flex;
    flex-direction: column;
}

.drawer-accordion-item {
    border-bottom: 1px solid #f5f5f5;
}

.accordion-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: #fafafa;
}

.accordion-arrow {
    transition: transform 0.3s ease;
}

.drawer-accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fbfbfb;
}

.accordion-inner-links {
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-inner-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s ease;
}

.accordion-inner-links a:hover {
    color: #000;
}

.drawer-direct-link {
    border-bottom: 1px solid #f5f5f5;
}

.drawer-direct-link a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
}

.drawer-direct-link a:hover {
    background: #fafafa;
}

body.no-scroll {
    overflow: hidden;
}

/* Drawer Search Box */
.drawer-search {
    margin: 0 20px 20px;
    height: 44px;
    border: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: #fff;
}

.drawer-search input {
    width: 100%;
    border: none;
    outline: none;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #111;
    background: transparent;
}

.drawer-search input::placeholder {
    color: #888;
}

.drawer-search img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    object-fit: contain;
}

/* Men Banner Section */
.men-banner-section {
    width: 100%;
}

.men-banner-container {
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
}

.men-banner-img {
    width: 100%;
    height: auto;
    max-width: 1300px;
    display: block;
}

.men-banner-title {
    display: none;
}

/* Men Info Section */
.men-info-section {
    width: 100%;
    margin-top: 24px;
}

.men-info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0;
    margin-top: 20px;
    margin-bottom: 14px;
    color: #000;
    width: fit-content;
    height: fit-content;
}

.men-info-container {
    margin-bottom: 40px;
}

.breadcrumbs {
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    color: #bdbdbd;
    margin-bottom: 20px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #bdbdbd;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #222;
}

.breadcrumbs span {
    color: #222;
}

.men-description {
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    color: #333;
    max-width: 639px;
    width: 100%;
}

.shop-section {
    width: 100%;
}

.shop-container {
    display: grid;
    grid-template-columns: 194px 1080px;
    gap: 26px;
    margin-bottom: 0;
}

.shop-sidebar {
    width: 194px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.filter-group {
    padding-bottom: 18px;
    margin-bottom: 0;
}

.price-filter-group {
    padding-bottom: 18px !important;
}

.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.filter-header h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    color: #111;
}

.filter-arrow {
    transition: transform 0.3s ease;
}

.filter-content {
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
    padding-bottom: 6px;
}

.filter-group.collapsed .filter-content {
    padding-bottom: 0 !important;
}

.filter-group.collapsed .filter-arrow {
    transform: rotate(180deg);
}

/* List Items */
.filter-list,
.filter-checkbox-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-list li,
.filter-checkbox-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    color: #333;
}

.filter-list a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}

.filter-list a:hover {
    color: #000;
}

.count {
    color: #bdbdbd;
    font-weight: 400;
}

/* Custom Checkbox Containers */
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #bdbdbd;
    transition: border-color 0.2s ease;
}

.checkbox-container:hover input~.checkmark {
    border-color: #111;
}

.checkbox-container input:checked~.checkmark {
    background-color: #111;
    border-color: #111;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.label-text {
    font-family: "Montserrat", sans-serif;
    color: #333;
}

.shop-content {
    width: 100%;
}

/* EU Size Filter Styles */
.eu-size-header {
    width: 100%;
    height: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eu-size-search-box {
    display: flex;
    align-items: center;
    width: 194px;
    height: 29px;
    border: 1px solid #bdbdbd;
    padding: 6px 10px;
    gap: 10px;
    margin-bottom: 15px;
}

.eu-size-search-box input {
    width: 100%;
    border: none;
    outline: none;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #222;
    background: transparent;
}

.eu-size-search-box input::placeholder {
    color: #bdbdbd;
}

.scrollable-size-list {
    max-height: 160px;
    overflow-y: auto;
    padding-right: 8px;
}

.scrollable-size-list::-webkit-scrollbar {
    width: 2px;
}

.scrollable-size-list::-webkit-scrollbar-track {
    background: transparent;
}

.scrollable-size-list::-webkit-scrollbar-thumb {
    background: #000;
}



/* Price Filter Styles */
.price-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    width: 100%;
}

.price-field {
    width: 86px;
    height: 32px;
    border: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-field input {
    width: 100%;
    border: none;
    outline: none;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #bdbdbd;
    background: transparent;
}

.price-separator {
    color: #111;
    font-size: 16px;
    font-weight: 500;
}

.price-slider-wrapper {
    position: relative;
    height: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    width: 194px;
}

.slider-track {
    width: 100%;
    height: 2px;
    background: #e5e5e5;
}

.slider-handle {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #111;
    background: #fff;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.left-handle {
    left: 0;
}

.right-handle {
    right: 32px;
}

.price-slider-labels {
    display: flex;
    justify-content: space-between;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #111;
    width: 194px;
    line-height: 1.4;
    padding-bottom: 2px;
}

/* Color Filter Styles */
.color-grid {
    display: grid;
    grid-template-columns: repeat(6, 24px);
    gap: 10px;
    width: 194px;
    justify-content: flex-start;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.color-dot:hover,
.color-dot.active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #bdbdbd;
}

/* Content Top Bar Styles */
.shop-content-top-bar {
    width: 1080px;
    height: 60px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.product-count {
    width: 79px;
    height: 17px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #222;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 117px;
    height: 20px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #222;
    box-sizing: border-box;
}

.sort-dropdown svg {
    flex-shrink: 0;
}

.sort-dropdown {
    position: relative;
}

.sort-options-list {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    min-width: 160px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    border-radius: 4px;
}

.sort-dropdown.open .sort-options-list {
    display: block;
}

.sort-options-list li {
    margin: 0;
    padding: 0;
}

.sort-options-list li a {
    display: block;
    padding: 8px 20px;
    color: #222;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 140%;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.sort-options-list li a:hover,
.sort-options-list li a.active {
    background: #f5f5f5;
    color: #000;
    font-weight: 500;
}

.sort-dropdown .dropdown-arrow {
    transition: transform 0.3s ease;
}

.sort-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Product Grid and Card Styles */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 255px);
    gap: 30px 20px;
    width: 1080px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.shop-product-card {
    width: 255px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-image-container {
    position: relative;
    width: 255px;
    height: 337px;
    overflow: hidden;
}

.shop-product-image {
    width: 255px;
    height: 337px;
    object-fit: contain;
    display: block;
    background: #f5f5f5;
}

.shop-product-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.shop-product-name {
    width: 243px;
    height: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.shop-product-price-container {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 20px;
}

.price-regular {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #222;
}

.price-regular-sale {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ff4d4d;
}

.price-strikethrough {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #bdbdbd;
    text-decoration: line-through;
}


/* Load More Widget Styles */
.load-more-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    width: 224px;
    height: 66px;
    margin: 40px auto 60px;
    box-sizing: border-box;
}

.products-seen-text {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #222;
    line-height: 140%;
    text-align: center;
    height: 17px;
}

.load-more-btn {
    width: 224px;
    height: 38px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.load-more-btn:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}

/* Size Overlay styles for Card 4 */
.size-overlay {
    position: absolute;
    top: 287px;
    left: 15px;
    width: 225px;
    height: 35px;
    display: flex;
    gap: 5px;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.product-image-container:hover .size-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.size-overlay span {
    width: 41px;
    height: 35px;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #222;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.size-overlay span:hover {
    border-color: #111;
    background: #f9f9f9;
}

/* Size Overlay styles for Footwear Page (Card 4) */
.footwear-size-overlay {
    position: absolute;
    top: 257px;
    left: 7px;
    width: 240.75px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 9px;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.product-image-container:hover .footwear-size-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.footwear-size-overlay .size-arrow {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    transition: opacity 0.2s ease;
}

.footwear-size-overlay .size-arrow:hover {
    opacity: 0.6;
}

.footwear-size-overlay .size-arrow img {
    width: 4.38px;
    height: 8.75px;
    display: block;
}

.footwear-size-overlay .size-grid {
    display: grid;
    grid-template-columns: repeat(6, 35px);
    grid-template-rows: repeat(2, 35px);
    width: 210px;
    height: 70px;
}

.footwear-size-overlay .size-grid span {
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #222;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    margin: 0;
}

/* Collapse grid borders */
.footwear-size-overlay .size-grid span:not(:nth-child(6n)) {
    border-right: none;
}

.footwear-size-overlay .size-grid span:nth-child(n+7) {
    border-top: none;
}

.footwear-size-overlay .size-grid span:hover {
    border: 1px solid #111;
    background: #f9f9f9;
    position: relative;
    z-index: 1;
}

.footwear-size-overlay .size-grid span.disabled {
    color: #b0b0b0;
    cursor: default;
    pointer-events: none;
}

/* Popular Categories Section */
.popular-categories-section {
    width: 100%;
    margin-bottom: 60px;
}

.popular-categories-container {
    height: 410px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.popular-categories-title {
    width: 226px;
    height: 34px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #111;
    margin: 0;
}

.popular-categories-container .category-row {
    display: grid;
    grid-template-columns: repeat(4, 309px);
    gap: 20px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.popular-categories-container .category-card {
    width: 309px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-categories-container .category-img {
    width: 309px;
    height: 309px;
    object-fit: cover;
    display: block;
}

.popular-categories-container .category-link {
    display: flex;
    align-items: center;
    gap: 15px;
    width: max-content;
    height: 22px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #333;
    box-sizing: border-box;
}

.popular-categories-container .category-link img {
    width: 16px;
    height: 16px;
}

/* Mobile or Tablet Banner Spacing (max-width: 992px) */
@media (max-width: 992px) {
    .men-banner-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .men-banner-title {
        display: block !important;
        position: absolute;
        color: #fff;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 140%;
        text-transform: uppercase;
        left: 50%;
        bottom: 24px;
        transform: translateX(-50%);
        margin: 0;
        z-index: 10;
    }
}

/* Mobile Banner Overrides (max-width: 767px) */
@media (max-width: 767px) {
    .men-banner-img {
        width: 100%;
        height: 223px;
        object-fit: cover;
        display: block;
    }

    .men-banner-title {
        position: absolute;
        width: 96px;
        height: 34px;
        top: 167px;
        left: calc(50% - 48px);
        transform: none;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 140%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        z-index: 10;
    }
}

/* Mobile or Tablet Info Section Alignment (max-width: 992px) */
@media (max-width: 992px) {
    .breadcrumbs {
        text-align: left;
    }

    .men-description {
        text-align: left;
        margin-left: 0;
        margin-right: auto;
    }
}

/* MOBILE SHOP SECTION STYLES */
.mobile-shop-buttons {
    display: none;
}

.mobile-sort-panel {
    display: none;
}

@media (max-width: 992px) {
    .mobile-shop-buttons {
        display: flex;
        gap: 15px;
        margin: 20px 0 10px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-filter-btn {
        height: 40px;
        background-color: #000;
        color: #fff;
        border: none;
        border-radius: 50px;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex: 1;
        transition: background-color 0.3s ease;
    }

    .mobile-filter-btn:hover {
        background-color: #333;
    }

    .mobile-sort-btn {
        height: 40px;
        background-color: #fff;
        color: #000;
        border: 1.5px solid #000;
        border-radius: 50px;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex: 1;
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .mobile-sort-btn:hover {
        background-color: #000;
        color: #fff;
    }

    .mobile-filter-btn .btn-arrow,
    .mobile-sort-btn .btn-arrow {
        transition: transform 0.3s ease;
    }

    .mobile-filter-btn.open .btn-arrow,
    .mobile-sort-btn.open .btn-arrow {
        transform: rotate(180deg);
    }

    .mobile-sort-panel {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
        box-sizing: border-box;
    }

    .mobile-sort-list {
        list-style: none;
        padding: 10px 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-sort-list li a {
        text-decoration: none;
        color: #333;
        font-family: "Montserrat", sans-serif;
        font-size: 13px;
        font-weight: 500;
        display: block;
        padding: 10px 15px;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    .mobile-sort-list li a:hover,
    .mobile-sort-list li a.active {
        background-color: #f5f5f5;
        color: #000;
        font-weight: 700;
    }

    body.mobile-filter-sort-open .popular-categories-section {
        display: none !important;
    }

    .shop-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100% !important;
        padding: 0 var(--side-space) !important;
        margin-left: auto;
        margin-right: auto;
    }

    .shop-sidebar {
        width: 100% !important;
        height: auto !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
        box-sizing: border-box;
    }

    .shop-sidebar.open {
        margin-bottom: 20px;
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 15px;
    }

    .shop-sidebar .price-slider-wrapper {
        width: 100% !important;
    }

    .shop-sidebar .price-slider-labels {
        width: 100% !important;
    }

    .shop-sidebar .price-field {
        flex: 1 !important;
        max-width: 150px !important;
        width: auto !important;
    }

    .shop-sidebar .color-grid {
        width: 100% !important;
        grid-template-columns: repeat(auto-fill, minmax(24px, 1fr)) !important;
    }

    .shop-sidebar .eu-size-search-box {
        width: 100% !important;
    }

    .filter-category {
        display: none !important;
    }

    .shop-content {
        width: 100% !important;
        display: none;
    }

    .shop-content-top-bar {
        width: 100% !important;
        height: auto !important;
        border: none !important;
        padding: 10px 0 !important;
        margin-bottom: 10px !important;
        justify-content: center !important;
    }

    .shop-content-top-bar .sort-dropdown {
        display: none !important;
    }

    .shop-product-grid {
        width: 100% !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 15px !important;
        margin-top: 15px !important;
        margin-bottom: 30px !important;
    }

    .shop-product-card {
        width: 100% !important;
    }

    .product-image-container {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 255 / 337 !important;
    }

    .shop-product-image {
        width: 100% !important;
        height: 100% !important;
    }

    .shop-product-name {
        width: 100% !important;
        height: auto !important;
        min-height: 40px;
    }
}

/* Popular Categories Section Responsive Styles for 0px to 992px devices */
@media (max-width: 992px) {
    .popular-categories-container {
        width: calc(100% - (var(--side-space) * 2)) !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 !important;
    }

    .popular-categories-container .category-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 21px !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .popular-categories-container .category-card {
        width: 100% !important;
        gap: 10px !important;
    }

    .popular-categories-container .category-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 162 / 163 !important;
        object-fit: cover !important;
    }

    .popular-categories-container .category-link {
        font-size: 14px !important;
        gap: 8px !important;
        height: 22px !important;
        display: flex !important;
        align-items: center !important;
        text-decoration: none !important;
    }

    .popular-categories-title {
        width: 100% !important;
        height: auto !important;
        text-align: left !important;
        font-size: 24px !important;
        line-height: 140% !important;
        margin: 0 !important;
    }
}

/* --- Cart Page Third Section --- */
.cart-actions-bar {
    width: 100%;
    height: 66px;
    border-top: 1px solid #e5e5e5;
    background: #fff;
    display: flex;
    align-items: center;
}

.cart-actions-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total {
    font-size: 16px;
    color: #000;
}

.cart-total .total-label {
    font-weight: 700;
}

.cart-total .total-price {
    font-weight: 400;
    margin-left: 8px;
}

.checkout-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 49.23%;
    max-width: 640px;
    height: 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.checkout-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.full-space-hr {
    width: 100%;
    border: none;
    border-top: 1px solid #000;
    margin: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .cart-actions-bar {
        height: auto;
        padding: 15px 0;
    }

    .cart-actions-container {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .checkout-btn {
        width: 100%;
    }

    .cart-total {
        text-align: center;
    }
}

/* --- Cart Page Main Layout --- */
.cart-main-section {
    width: 100%;
    padding: 20px 0 0px;
    background-color: #fff;
}

.cart-main-section+.men-footer {
    margin-top: 120px;
}

.cart-main-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.cart-left-col {
    width: 42%;
    max-width: 546px;
    min-height: 668px;
    height: auto;
    flex-shrink: 0;
}

.cart-vertical-divider {
    width: 1px;
    align-self: stretch;
    background-color: #e5e5e5;
    margin: 0;
}

.cart-right-col {
    width: 49.23%;
    max-width: 640px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 668px;
    height: auto;
}

.cart-section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

/* Cart Items list and cards */
.cart-items-list {
    display: flex;
    flex-direction: column;
}

/* Horizontal image row — 4 cards side by side */
.cart-images-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
}

.cart-image-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.cart-image-card .cart-item-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f5f5f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.cart-image-card .cart-item-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-image-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-image-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.cart-image-card-bottom .cart-item-price {
    font-size: 12px;
    font-weight: 400;
    color: #111;
    text-align: right;
    width: auto;
}


.cart-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 153px;
    height: auto;
    border-bottom: 1.5px solid #f5f5f6;
    padding-bottom: 20px;
    margin-bottom: 0px;
    box-sizing: border-box;
}

.cart-item + .cart-item {
    margin-top: 20px;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-image-wrapper a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.cart-item-image-wrapper {
    width: 133px;
    height: 133px;
    background-color: #f5f5f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 133px;
}

.cart-item-name {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #111;
    margin: 0;
    max-width: 249px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-item-meta {
    display: flex;
    align-items: center;
}

.custom-select-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #111;
}

.custom-select-wrapper span {
    font-weight: 400;
}

.cart-item-remove-btn {
    background: none;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-decoration: underline;
    color: #767676;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.cart-item-remove-btn:hover {
    color: #000;
}

.cart-item-price {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #111;
    text-align: right;
    width: 80px;
}

/* Recommendation card styling */
.cart-recommend-section {
    display: flex;
    flex-direction: column;
}

.cart-recommend-section .cart-section-title {
    margin-bottom: 24px;
}

.recommend-card {
    display: flex;
    align-items: flex-start;
    padding: 0 0 0 7px;
    height: 181px;
    box-sizing: border-box;
}

.recommend-image-wrapper {
    width: 133px;
    height: 181px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recommend-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.recommend-info {
    flex: 1;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 181px;
}

.recommend-name {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #111;
    margin: 0;
}

.recommend-price {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #111;
}

.quick-add-btn {
    width: 120px;
    height: 32px;
    background-color: #000;
    color: #fff;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.quick-add-btn:hover {
    background-color: #333;
}

.recommend-arrow {
    margin-left: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    align-self: center;
}

/* Summary Card styling */
.cart-summary-card {
    width: 100%;
    max-width: 640px;
    height: 416px;
    padding: 31px 20px 47px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-color: #F8F8F8;
}

.summary-benefits-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: 26px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: none;
    color: #111;
}

.benefit-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.summary-details {
    display: flex;
    flex-direction: column;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 13px;
}

.summary-label {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #111;
}

.summary-value {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #111;
}

.add-promo-link {
    font-weight: 400;
    color: #111;
    text-decoration: underline;
}

.summary-divider {
    border: none;
    border-top: 1.5px solid #e5e5e5;
    margin: 0;
    margin-bottom: 13px;
}

.total-row-summary {
    font-weight: 700;
    margin-bottom: 20px;
}

.total-row-summary .summary-label {
    font-size: 16px;
    font-weight: 700;
}

.total-row-summary .summary-value {
    font-size: 16px;
    font-weight: 700;
}

.free-shipping-alert {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #111;
    margin: 0;
    margin-bottom: 20px;
}

.free-shipping-alert strong {
    font-weight: 700;
}

.summary-checkout-btn {
    width: 100%;
    height: 40px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    margin-bottom: 20px;
}

.summary-checkout-btn:hover {
    background-color: #333;
}

.summary-payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.summary-payment-icons .pay-icon {
    height: 25px;
    width: auto;
    object-fit: contain;
}

/* --- Cart Title Header & Close Button (Desktop styling) --- */
.cart-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cart-section-header .cart-section-title {
    margin-bottom: 0;
}

.cart-close-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #000;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Responsive Cart Styling */
@media (max-width: 992px) {

    /* Hide top bar features not shown in mobile/tablet screenshot */
    .cart-page .usp-bar,
    .cart-actions-bar,
    .full-space-hr,
    .cart-vertical-divider {
        display: none !important;
    }

    .cart-main-container {
        flex-direction: column;
        width: 100% !important;
        padding: 0 var(--side-space);
        gap: 40px;
    }

    .cart-left-col {
        width: 100% !important;
        max-width: 640px !important;
        margin: 0 auto;
        height: auto;
    }

    .cart-right-col {
        width: 100% !important;
        max-width: 640px !important;
        margin: 0 auto;
        gap: 40px;
        height: auto;
    }

    .checkout-btn {
        width: 100% !important;
        max-width: none !important;
    }

    /* Close Button on Mobile Header */
    .cart-close-btn {
        display: flex;
    }

    /* Grid-based list items for horizontal inline size and price */
    .cart-item {
        display: grid;
        grid-template-columns: 100px 1fr auto;
        grid-template-rows: auto auto auto;
        gap: 6px 15px;
        height: auto;
        padding: 16px 0;
        margin-top: 0 !important;
        border-bottom: 1.5px solid #f5f5f6;
        box-sizing: border-box;
    }

    .cart-item-image-wrapper {
        grid-column: 1;
        grid-row: 1 / span 3;
        width: 100px;
        height: 100px;
    }

    .cart-item-info {
        display: contents;
    }

    .cart-item-name {
        grid-column: 2 / span 2;
        grid-row: 1;
        font-size: 13px;
        line-height: 140%;
        max-width: none;
        margin: 0;
    }

    .cart-item-meta {
        grid-column: 2;
        grid-row: 2;
        display: flex;
        align-items: center;
        margin-top: 0;
    }

    .cart-item-price {
        grid-column: 3;
        grid-row: 2;
        text-align: right;
        width: auto;
        font-size: 13px;
        font-weight: 500;
        align-self: center;
        margin-top: 0;
    }

    .cart-item-remove-btn {
        grid-column: 2 / span 2;
        grid-row: 3;
        align-self: end;
        margin-top: 4px;
    }

    /* "We also recommend" layout - horizontal flex matching desktop layout */
    .recommend-card {
        display: flex;
        align-items: center;
        padding: 0;
        height: auto;
        gap: 15px;
        position: relative;
    }

    .recommend-image-wrapper {
        width: 100px;
        height: 136px;
        background-color: #f5f5f6;
        flex-shrink: 0;
    }

    .recommend-info {
        height: auto;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 8px;
    }

    .recommend-name {
        order: 1;
        font-size: 13px;
        line-height: 140%;
        margin: 0;
    }

    .recommend-meta {
        order: 2;
        margin-top: 0;
    }

    .recommend-price {
        order: 3;
        font-size: 13px;
        font-weight: 500;
        margin-top: 0;
    }

    .quick-add-btn {
        order: 4;
        width: 120px;
        height: 32px;
        font-size: 12px;
        margin-top: 2px;
    }

    .recommend-arrow {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }

    .cart-summary-card {
        width: 100% !important;
        height: auto !important;
        padding: 24px 20px !important;
        background-color: #F8F8F8 !important;
        border: none !important;
    }

    /* Summary benefits horizontal layout */
    .summary-benefits-bar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 20px;
        height: auto;
    }

    .benefit-item {
        font-size: 8.5px;
        display: flex;
        align-items: center;
        gap: 4px;
        text-transform: none;
        font-weight: 700;
    }

    .benefit-icon {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 576px) {
    /* Recommendation Card Mobile Responsiveness */
    .recommend-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
        padding: 20px 15px;
        gap: 15px;
    }

    .recommend-image-wrapper {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .recommend-info {
        margin-left: 0;
        align-items: center;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .recommend-name {
        text-align: center;
    }

    .recommend-info .custom-select-wrapper {
        justify-content: center;
    }

    .quick-add-btn {
        margin: 4px auto 0;
        width: 100%;
        max-width: 200px;
    }

    .recommend-arrow {
        display: none;
    }

    /* Summary Card Benefits Mobile Layout */
    .summary-benefits-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        height: auto;
        margin-bottom: 25px;
    }

    .benefit-item {
        font-size: 11px;
        gap: 8px;
    }

    .benefit-icon {
        width: 16px;
        height: 16px;
    }
}

/* --- FAQ Section Styles --- */
.faq-section {
    width: 100%;
    background: #fff;
    padding: 40px 0 126px;
}

.faq-section+.footer {
    margin-top: 0;
}

.faq-container {
    padding: 0;
}

.faq-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #000;
    text-align: left;
    margin-top: 5px;
    margin-left: 77px;

}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 454px);
    column-gap: 236px;
    row-gap: 60px;
    justify-content: center;
}

.faq-column {
    display: flex;
    flex-direction: column;
}

.faq-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000;
    max-width: 454px;
    width: 100%;
    margin-bottom: 20px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #222;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #222;
    padding-right: 20px;
    pointer-events: none;
}

.faq-icon {
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    padding: 0 0 16px 0;
}

/* Open state for accordion */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Responsive styles */
@media (max-width: 1199px) {
    .faq-main-title {
        margin-left: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
        justify-content: stretch;
    }

    .faq-container {
        padding: 0;
    }

    .faq-heading {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0 60px;
    }

    .faq-main-title {
        margin-bottom: 30px;
    }
}

/* Contact Page Styles */
.contact-section {
    width: 100%;
    padding: 40px 0 80px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 128px;
}

.contact-left {
    width: 642px;
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    color: #000;
    margin-bottom: 16px;
}

.contact-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    margin-bottom: 40px;
}

.desktop-br {
    display: inline;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
    column-gap: 40px;
    margin-bottom: 40px;
}

.contact-info-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    margin-bottom: 8px;
}

.contact-info-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
}

.contact-info-item a {
    text-decoration: underline;
    color: inherit;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-info-item a:hover {
    color: #000;
}

.contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border: 1px solid #bdbdbd;
    background-color: #fff;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bdbdbd;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.btn-submit {
    width: 339px;
    max-width: 100%;
    height: 38px;
    padding: 9px 45px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-submit:hover {
    background-color: #222;
}

.btn-submit:active {
    transform: scale(0.98);
}

/* Right Column (Image and Logo) */
.contact-right {
    width: 530px;
    flex-shrink: 0;
}

.contact-right-img-container {
    width: 530px;
    height: 808px;
    background-image: url('image/Rectangle 174.svg');
    background-size: cover;
    background-position: center 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-right-logo {
    width: 243.1962px;
    height: 56px;
    object-fit: contain;
}

/* Responsive styles for Contact Page */
@media (max-width: 1200px) {
    .contact-container {
        gap: 40px;
    }

    .contact-left {
        width: 100%;
    }

    .contact-right {
        width: 100%;
        max-width: 530px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .desktop-br {
        display: none;
    }

    .contact-section {
        padding: 0 0 80px 0;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        width: 100%;
        padding: 0;
    }

    .contact-right {
        width: 100%;
        max-width: 100%;
        order: 1;
        /* Image at the top on mobile */
    }

    .contact-right-img-container {
        width: 100%;
        height: 400px;
    }

    .contact-left {
        width: 100%;
        order: 2;
        padding: 0 16px;
        box-sizing: border-box;
        /* Content below image on mobile */
    }

    .contact-title {
        text-align: left;
    }

    .contact-desc {
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 0 0 120px 0;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
        padding: 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .contact-right {
        order: 1;
        width: 100%;
        margin: 0 auto;
    }

    .contact-right-img-container {
        width: 100%;
        height: 320px;
    }

    .contact-right-logo {
        width: 210px;
        height: 32px;
        position: absolute;
        top: 144px;
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-left {
        order: 2;
        width: auto;
        align-self: stretch;
        margin-left: 33px;
        margin-right: 34px;
        padding: 0;
        box-sizing: border-box;
    }
}


/* --- Nike Blazer Product Details Page Styles --- */

.product-details-section {
    width: 100%;
    background-color: #fff;
    margin-bottom: 60px;
    /* Space after complete section */
    box-sizing: border-box;
}

.product-details-container {
    padding: 0;
    margin: 0 auto;
}

/* Breadcrumbs Styling */
.product-breadcrumbs {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    color: #828282;
    margin-top: 30px;
    margin-bottom: 24px;
}

.product-breadcrumbs a {
    color: #828282;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-breadcrumbs a:hover {
    color: #000;
}

.product-breadcrumbs .current-product {
    color: #111;
}

/* Main Grid Layout */
.product-content-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
}

/* Left Column: Gallery */
.product-gallery {
    width: 858px;
    display: flex;
    flex-direction: column;
}

.main-image-wrapper {
    position: relative;
    width: 858px;
    height: 858px;
    background-color: #f5f5f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Gallery Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.gallery-arrow:hover {
    background-color: #f0f0f0;
}

.gallery-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Thumbnail Grid */
.thumbnail-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 18.66px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
}

.thumbnail-row::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.thumb-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    background-color: #f5f5f6;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.thumb-img:hover {
    opacity: 0.85;
}

.thumb-img.active {
    border-color: #000;
}

/* Right Column: Info Panel */
.product-info-panel {
    width: 387px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.product-actions-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.product-header-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-name-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    color: #111;
    max-width: 386px;
    margin: 0 0 20px 0;
}

.product-price-stock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 381px;
    width: 100%;
}

.product-price-display {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #111;
}

.stock-badge {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #eb5757;
    padding: 0;
}

/* Size Selector Styles */
.size-selector-container {
    max-width: 387px;
}

.size-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.size-system-tabs {
    display: flex;
    gap: 15px;
}

.size-tab {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #828282;
    background: none;
    border: none;
    padding: 0 0 4px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.size-tab.active {
    color: #000;
    font-weight: 700;
    border-bottom: 2px solid #000;
}

.size-chart-link {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #111;
    text-decoration: underline;
}

.sizes-btn-grid {
    display: grid;
    grid-template-columns: repeat(8, 42px);
    gap: 8px;
}

.size-btn-item {
    width: 42px;
    height: 42px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.size-btn-item:hover {
    border-color: #000;
}

.size-btn-item.selected {
    border-color: #000;
    background-color: #000;
    color: #fff;
    font-weight: 700;
}

/* Shipping notice banner styles */
.shipping-promo-box {
    width: 381px;
    height: 66px;
    background-color: #f5f5f6;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
}

.shipping-plane-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.shipping-promo-box span {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 140%;
    color: #111;
}

.shipping-promo-box strong {
    font-weight: 700;
}

/* Add to Cart button styles */
.add-to-cart-action-btn {
    width: 381px;
    height: 38px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-action-btn:hover {
    background-color: #222;
}

.add-to-cart-action-btn:active {
    transform: scale(0.98);
}

/* Bullet list details */
.product-small-usps {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    max-width: 387px;
}

.product-small-usps li {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 180%;
    color: #333;
    margin-bottom: 6px;
}

.product-small-usps strong {
    font-weight: 700;
}

.trustpilot-link {
    color: #333;
    text-decoration: underline;
}

/* Product Accordions */
.product-detail-accordions {
    max-width: 387px;
    display: flex;
    flex-direction: column;
}

.product-accordion-card {
    border-bottom: 1px solid #111;
    margin-bottom: 30px;
    /* Gap between accordions */
}

.prod-accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
}

.prod-accordion-title {
    font-size: 16px;
    font-weight: 400;
    color: #111;
}

.prod-accordion-indicator {
    font-size: 18px;
    font-weight: 400;
    color: #111;
}

.prod-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prod-accordion-body {
    padding: 0 0 20px 0;
}

.accordion-paragraph {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    color: #333;
    margin: 0 0 12px 0;
}

.accordion-bullet-list {
    list-style-type: disc;
    padding-left: 20px;
}

.accordion-bullet-list li {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 160%;
    color: #555;
    margin-bottom: 4px;
}

/* Responsive adjustments for product page */
@media (max-width: 1440px) {
    .product-gallery {
        width: 60%;
    }

    .main-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }

    .thumbnail-row {
        gap: 10px;
        justify-content: flex-start;
    }

    .product-info-panel {
        width: 35%;
    }
}

@media (max-width: 1200px) {
    .product-details-container {
        padding: 0 16px;
    }

    .product-content-grid {
        gap: 30px;
    }

    .product-actions-group,
    .product-name-title,
    .size-selector-container,
    .shipping-promo-box,
    .add-to-cart-action-btn,
    .product-small-usps,
    .product-detail-accordions {
        max-width: 100%;
        width: 100%;
    }

    .sizes-btn-grid {
        grid-template-columns: repeat(auto-fill, minmax(42px, 1fr));
    }
}

@media (max-width: 992px) {
    .product-content-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .product-gallery {
        width: 100%;
        max-width: 700px;
    }

    .product-info-panel {
        width: 100%;
        max-width: 700px;
    }

    .product-breadcrumbs {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .thumb-img {
        width: 111px;
        height: 111px;
    }

    .gallery-arrow {
        width: 32px;
        height: 32px;
    }

    .gallery-arrow svg {
        width: 16px;
        height: 16px;
    }

    .prev-arrow {
        left: 0;
    }

    .next-arrow {
        right: 0;
    }
}

@media (max-width: 992px) {
    .product-details-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .product-breadcrumbs {
        padding: 0 14.5px !important;
    }

    .product-gallery {
        width: 100% !important;
        max-width: 100% !important;
    }

    .main-image-wrapper {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
    }

    .thumbnail-row {
        padding: 0 14.5px !important;
    }

    .product-info-panel {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 14.5px !important;
        box-sizing: border-box !important;
    }

    .sizes-btn-grid {
        grid-template-columns: repeat(5, 61px) !important;
        gap: 8px !important;
    }

    .size-btn-item {
        width: 61px !important;
        height: 61px !important;
    }
}

/* --- Wear it with Section Styles --- */

.wear-it-with-section {
    width: 100%;
    background-color: #fff;
    margin-bottom: 60px;
    /* Gap after complete section */
    box-sizing: border-box;
}

.wear-it-with-container {
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Gap between title and row */
}

.wear-it-with-title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    /* Header 2/Mobile size on all screen views */
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    color: #111;
    margin: 0;
}

.wear-it-with-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.wear-card {
    display: flex;
    flex-direction: column;
    width: 309px;
}

.wear-image-wrapper {
    width: 309px;
    height: 338px;
    background-color: #f5f5f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
    /* Small gap before text info */
}

.wear-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wear-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wear-name {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: 0%;
    color: #111;
    width: 217px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wear-price {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 140%;
    color: #111;
}

/* Responsiveness for Wear it with Section */
@media (max-width: 1320px) {
    

    .wear-it-with-row {
        gap: 15px;
        overflow-x: auto;
        padding-bottom: 10px;
        /* padding for scrollbar */
        scrollbar-width: none;
        /* Hide for Firefox */
    }

    .wear-it-with-row::-webkit-scrollbar {
        display: none;
        /* Hide for Chrome/Safari */
    }

    .wear-card {
        flex-shrink: 0;
    }
}

@media (max-width: 992px) {
    .wear-it-with-container {
        padding: 0 14.5px !important;
    }

    .wear-it-with-row {
        overflow-x: visible;
        display: grid;
        grid-template-columns: repeat(auto-fill, 162px);
        justify-content: space-between;
        column-gap: 22px;
        row-gap: 40px;
        padding-bottom: 0;
        max-width: 100% !important;
        width: 100%;
        margin: 0;
    }

    .wear-card {
        width: 162px;
        flex-shrink: 0;
    }

    .wear-image-wrapper {
        width: 162px;
        height: 214px;
        margin-bottom: 12px;
    }

    .wear-name {
        width: 100%;
        font-size: 14px;
        white-space: normal;
    }

    .shipping-promo-box {
        max-width: 346px;
        width: 100%;
        height: 50px;
        justify-content: center;
        margin: 0 auto;
    }

    .shipping-promo-box span {
        font-size: 12px;
    }
}

@media (max-width: 399px) {
    .wear-it-with-container {
        padding: 0 8px;
    }

    .wear-it-with-row {
        grid-template-columns: repeat(2, 162px);
        column-gap: 10px;
        justify-content: center;
    }
}

/* Responsive alignment fix for screen size 994px to desktop view */
@media (min-width: 993px) and (max-width: 1356px) {
    .shop-container {
        width: min(100% - (var(--side-space) * 2), var(--container)) !important;
        grid-template-columns: 194px 1fr !important;
        gap: 20px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .shop-content {
        width: 100% !important;
    }

    .shop-content-top-bar {
        width: 100% !important;
    }

    .shop-product-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        width: 100% !important;
        gap: 20px 15px !important;
    }

    .shop-product-card {
        width: 100% !important;
    }

    .product-image-container {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 255 / 337 !important;
    }

    .shop-product-image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 255 / 337 !important;
    }

    .shop-product-name {
        width: 100% !important;
    }

    .size-overlay {
        width: calc(100% - 30px) !important;
        left: 15px !important;
        bottom: 15px !important;
        top: auto !important;
    }

    .size-overlay span {
        flex: 1 !important;
        width: auto !important;
        height: 100% !important;
    }

    .popular-categories-container .category-row {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
    }

    .popular-categories-container .category-card {
        width: 100% !important;
    }

    .popular-categories-container .category-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }

    .product-image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 243 / 321 !important;
    }
}

/* Color grid classes replacing inline styles */
.color-dot.color-olive {
    background-color: #88ab2d;
}

.color-dot.color-green {
    background-color: #1ad600;
}

.color-dot.color-teal {
    background-color: #4fc79f;
}

.color-dot.color-lime {
    background-color: #3bf800;
}

.color-dot.color-peach {
    background-color: #f4c3ab;
}

.color-dot.color-darkgreen {
    background-color: #00a811;
}

.color-dot.color-magenta {
    background-color: #ff26ff;
}

.color-dot.color-blue {
    background-color: #5fa7e9;
}

.color-dot.color-forest {
    background-color: #365f1c;
}

.color-dot.color-orange {
    background-color: #ff7d00;
}

.color-dot.color-beige {
    background-color: #e0cbb2;
}

.color-dot.color-pink {
    background-color: #ff4d94;
}

/* Scroll lock */
body.no-scroll {
    overflow: hidden;
}

/* Size Chart Modal Styles */
.size-chart-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.size-chart-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.size-chart-modal .modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.size-chart-modal .modal-container {
    position: relative;
    width: min(500px, 90vw);
    max-height: 80vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.size-chart-modal.open .modal-container {
    transform: scale(1);
}

.size-chart-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.size-chart-modal .modal-title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.size-chart-modal .modal-close-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease;
}

.size-chart-modal .modal-close-btn:hover {
    transform: scale(1.1);
}

.size-chart-modal .modal-body {
    padding: 24px;
    overflow-y: auto;
}

.size-chart-modal .table-wrapper {
    overflow-x: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.size-chart-modal .size-chart-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    text-align: center;
}

.size-chart-modal .size-chart-table th,
.size-chart-modal .size-chart-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.size-chart-modal .size-chart-table th {
    background: #f5f5f6;
    font-weight: 600;
    color: #000;
}

.size-chart-modal .size-chart-table tr:last-child td {
    border-bottom: none;
}

.size-chart-modal .size-chart-table tr:hover td {
    background-color: #f9f9f9;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: none;
    align-items: center;
    padding: 0 16.5px;
    z-index: 10;
    box-sizing: border-box;
}

.mobile-search-overlay.active {
    display: flex;
}

.mobile-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    border: 1px solid #bdbdbd;
    background-color: #ffffff;
    padding: 0 12px;
    box-sizing: border-box;
}

.mobile-search-form .search-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}

.mobile-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333;
    background: transparent;
    width: 100%;
}

.mobile-search-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    flex-shrink: 0;
}

.mobile-search-close svg {
    width: 20px;
    height: 20px;
    stroke: #000;
}

@media (min-width: 993px) {
    .mobile-search-overlay {
        display: none !important;
    }
}

@media (max-width: 992px) {
    /* Reset hover state color changes and transforms on mobile view */
    .banner-btn:hover,
    .promo-btn:hover,
    .sale-btn:hover {
        background-color: #000 !important;
        color: #fff !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .mobile-filter-btn:hover {
        background-color: #000 !important;
        color: #fff !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .mobile-sort-btn:hover {
        background-color: #fff !important;
        color: #000 !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .view-all:hover,
    .blog-view-all:hover,
    .blog-read-more:hover {
        color: #222 !important;
    }
    
    .follow-btn:hover {
        background-color: #000 !important;
        color: #fff !important;
        border-color: #000 !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .load-more-btn:hover {
        background-color: #000 !important;
        color: #fff !important;
        border-color: #000 !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .checkout-btn:hover,
    .summary-checkout-btn:hover {
        background-color: #000 !important;
        color: #fff !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .quick-add-btn:hover {
        background-color: #000 !important;
        color: #fff !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .btn-submit:hover {
        background-color: #000 !important;
        color: #fff !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .add-to-cart-action-btn:hover {
        background-color: #000 !important;
        color: #fff !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .size-btn-item:hover {
        border-color: #e0e0e0 !important;
    }

    .size-btn-item.selected:hover {
        border-color: #000 !important;
        background-color: #000 !important;
        color: #fff !important;
    }
}