/* ==========================================================================
   BOSMEN - ERKEK GİYİM MASTER STYLESHEET
   ========================================================================== */

:root {
    --bosmen-dark: #071530;
    --bosmen-navy: #0b1e42;
    --bosmen-blue: #00509d;
    --bosmen-red: #e30613;
    --bosmen-yellow: #ffd166;
    --bosmen-gold: #c5a880;
    --bosmen-gray: #f8fafc;
    --bosmen-border: #e2e8f0;
    --bosmen-text: #0f172a;
    --font-heading: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

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

html {
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
}

body {
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
    font-family: var(--font-body);
    color: var(--bosmen-text);
    background-color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.bosmen-container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==========================================================================
   1. BOSMEN MINIMAL TOP CARGO / DELIVERY BAR
   ========================================================================== */
.bosmen-minimal-topbar {
    background-color: var(--bosmen-dark);
    color: #ffffff;
    padding: 7px 15px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-delivery-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f1f5f9;
    font-family: var(--font-body);
}

.topbar-delivery-text i {
    font-size: 12px;
    color: var(--bosmen-yellow);
}

/* ==========================================================================
   2. BOSMEN MAIN NAVIGATION HEADER (3-COLUMN CLEAN DESKTOP & MOBILE)
   ========================================================================== */
.ac-main-header {
    background: #ffffff;
    border-bottom: 1px solid var(--bosmen-border);
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: 0 2px 12px rgba(7, 21, 48, 0.04);
    transition: all 0.25s ease;
}

.ac-main-header.is-sticky {
    box-shadow: 0 4px 22px rgba(7, 21, 48, 0.12);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ac-header-container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 30px;
    height: 76px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
    transition: height 0.25s ease;
}

.ac-main-header.is-sticky .ac-header-container {
    height: 68px;
}

@media (max-width: 991px) {
    .ac-main-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1100 !important;
    }

    .ac-header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 16px !important;
        height: 60px !important;
    }

    .ac-main-header.is-sticky .ac-header-container {
        height: 60px !important;
    }
}

/* Left Navigation */
.ac-nav-left {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.ac-nav-item {
    height: 76px;
    display: flex;
    align-items: center;
    position: static;
}

.ac-nav-link {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--bosmen-dark);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
    padding: 10px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.ac-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bosmen-dark);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.ac-nav-item:hover > .ac-nav-link {
    color: var(--bosmen-blue);
}

.ac-nav-item:hover > .ac-nav-link::after {
    transform: scaleX(1);
}

.ac-nav-link.highlight {
    color: var(--bosmen-red) !important;
}

.ac-nav-link.highlight::after {
    background: var(--bosmen-red) !important;
}

/* Center Brand Logo */
.ac-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
}

.ac-brand-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ac-brand-logo-img {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.ac-brand-logo-text {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 900;
    color: var(--bosmen-dark);
    letter-spacing: -1.5px;
    text-transform: lowercase;
    line-height: 1;
    display: block;
}

/* Right Actions */
.ac-actions-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.search-bar-inline {
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid var(--bosmen-dark);
    padding-bottom: 3px;
    gap: 8px;
}

.search-bar-inline input {
    border: none;
    outline: none;
    font-size: 12.5px;
    width: 160px;
    background: transparent;
    color: var(--bosmen-dark);
    font-family: var(--font-body);
}

.search-bar-inline input::placeholder {
    color: #94a3b8;
}

.search-bar-inline button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--bosmen-dark);
}

.ac-action-btn {
    font-size: 19px;
    color: var(--bosmen-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    position: relative;
}

.ac-action-btn:hover {
    color: var(--bosmen-blue);
}

/* Account Dropdown */
.ac-account-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.ac-account-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 250px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 12px 36px rgba(7, 21, 48, 0.15);
    border: 1px solid var(--bosmen-border);
    padding: 16px 18px;
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.ac-account-dropdown:hover .ac-account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.ac-account-menu-title {
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--bosmen-dark);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f1f5f9;
}

.ac-account-menu-btn-login {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--bosmen-dark);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 9px 0;
    border-radius: 4px;
    transition: background 0.2s ease;
    margin-bottom: 10px;
}

.ac-account-menu-btn-login:hover {
    background: var(--bosmen-blue);
}

.ac-account-menu-register-text {
    font-size: 11.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.ac-account-menu-register-text a {
    color: var(--bosmen-blue);
    font-weight: 700;
    text-decoration: underline !important;
}

.ac-account-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ac-account-links li a {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    padding: 8px 10px;
    border-radius: 4px;
    transition: background 0.15s ease, color 0.15s ease;
}

.ac-account-links li a:hover {
    background: #f1f5f9;
    color: var(--bosmen-blue);
}

.ac-badge-count {
    position: absolute;
    top: -2px;
    right: -4px;
    background: var(--bosmen-red);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    line-height: 1;
}

.ac-mobile-hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--bosmen-dark);
    cursor: pointer;
    padding: 8px 6px;
    line-height: 1;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .ac-mobile-hamburger-btn {
        display: inline-flex !important;
    }
}

/* Mobile Sidenav */
.ac-mobile-sidenav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 21, 48, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.ac-mobile-sidenav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ac-mobile-sidenav-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85%;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.25);
}

.ac-mobile-sidenav-overlay.active .ac-mobile-sidenav-box {
    transform: translateX(0);
}

.ac-mobile-sidenav-header {
    background: var(--bosmen-dark);
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ac-mobile-sidenav-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
    transition: transform 0.2s ease;
}

.ac-mobile-sidenav-close:hover {
    transform: scale(1.15);
}

.ac-mobile-sidenav-body {
    padding: 20px 18px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.ac-mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.ac-mobile-menu-item {
    border-bottom: 1px solid #f1f5f9;
}

.ac-mobile-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ac-mobile-menu-link {
    flex: 1;
    display: block;
    padding: 13px 4px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--bosmen-dark);
    font-family: var(--font-heading);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color 0.15s ease;
}

.ac-mobile-menu-link:hover {
    color: var(--bosmen-blue);
}

.ac-mobile-toggle-btn {
    background: none;
    border: none;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
    border-radius: 4px;
}

.ac-mobile-toggle-btn:hover {
    background: #f8fafc;
    color: var(--bosmen-dark);
}

.ac-mobile-toggle-btn.active {
    color: var(--bosmen-dark);
}

.ac-mobile-sublist {
    display: none;
    list-style: none;
    padding: 4px 0 12px 12px;
    margin: 0 0 8px 6px;
    border-left: 2px solid #e2e8f0;
}

.ac-mobile-sublist.open {
    display: flex;
    flex-direction: column;
    gap: 3px;
    animation: fadeInTab 0.18s ease;
}

.ac-mobile-sublink {
    display: block;
    padding: 5px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.ac-mobile-sublink:hover {
    background: #f1f5f9;
    color: var(--bosmen-blue);
    padding-left: 12px;
}

.ac-mobile-sublink.category-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--bosmen-dark);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 8px;
    padding-bottom: 2px;
    border-bottom: 1px dashed #e2e8f0;
}

/* ==========================================================================
   2.1 FULL-WIDTH MEGA MENU (MAVI & LUXURY MENSWEAR STYLE)
   ========================================================================== */
.ac-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 2px solid var(--bosmen-dark);
    box-shadow: 0 20px 45px rgba(7, 21, 48, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1200;
    padding: 28px 0 32px 0;
    pointer-events: none;
}

.ac-nav-item:hover > .ac-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.ac-mega-menu-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 220px 280px 1fr;
    gap: 32px;
    align-items: stretch;
}

.ac-mega-categories {
    list-style: none;
    border-right: 1px solid #e2e8f0;
    padding-right: 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ac-mega-cat-item {
    margin-bottom: 0;
}

.ac-mega-cat-link {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
    cursor: pointer;
    background: transparent;
}

.ac-mega-cat-link:hover, 
.ac-mega-cat-link.active {
    background: var(--bosmen-dark);
    color: #ffffff !important;
}

.ac-mega-cat-link:hover i,
.ac-mega-cat-link.active i {
    color: var(--bosmen-gold);
}

.ac-mega-cat-link i {
    font-size: 11px;
    color: #94a3b8;
    transition: color 0.15s ease;
}

.ac-mega-sublinks-wrapper {
    position: relative;
    width: 100%;
    min-height: 260px;
    border-right: 1px solid #e2e8f0;
    padding-right: 20px;
}

.ac-mega-sublinks-grid {
    display: none;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    align-content: start;
    margin: 0;
    padding: 4px 0;
    animation: fadeInTab 0.15s ease;
}

.ac-mega-sublinks-grid.active {
    display: flex !important;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateX(-4px); }
    to { opacity: 1; transform: translateX(0); }
}

.ac-mega-sublink {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    display: inline-block;
    padding: 4px 0;
    transition: color 0.15s ease, transform 0.15s ease;
    text-decoration: none;
}

.ac-mega-sublink:hover {
    color: var(--bosmen-blue);
    font-weight: 700;
    transform: translateX(4px);
}

.ac-mega-showcase-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 100%;
    align-items: stretch;
}

.ac-showcase-card-alt {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
    display: block;
    background: var(--bosmen-dark);
    box-shadow: 0 4px 15px rgba(7, 21, 48, 0.1);
}

.ac-showcase-card-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ac-showcase-card-alt:hover img {
    transform: scale(1.05);
}

.ac-showcase-overlay-alt {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 21, 48, 0.05) 0%, rgba(7, 21, 48, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    color: #ffffff;
}

.ac-showcase-title-alt {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.ac-showcase-cta-alt {
    font-size: 11px;
    font-weight: 700;
    color: var(--bosmen-gold);
    letter-spacing: 0.5px;
}
/* ==========================================================================
   3. DEV KAMPANYA BANNER (MAVI KOYU LACİVERT HERO)
   ========================================================================== */
.hero-campaign {
    background-color: #0b1e42;
    color: #ffffff;
    text-align: center;
    padding: 50px 20px 45px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.hero-campaign h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.hero-campaign .sub-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #e2e8f0;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0;
}

.hero-campaign .discount {
    font-size: 84px;
    font-weight: 900;
    color: var(--mavi-red);
    font-family: var(--font-heading);
    line-height: 0.95;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    letter-spacing: -2px;
    margin: 6px 0;
    text-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
}

.hero-campaign .discount span {
    font-size: 44px;
    margin-top: 8px;
    margin-right: 4px;
}

.hero-campaign .coupon-pill {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    padding: 6px 18px;
    border-radius: 6px;
    text-transform: uppercase;
    color: #ffffff;
}

.btn-shop {
    background: #ffffff;
    color: #0b1e42 !important;
    padding: 14px 38px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-shop:hover {
    background: var(--mavi-red);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.campaign-terms {
    font-size: 10.5px;
    opacity: 0.65;
    margin-top: 15px;
    max-width: 800px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ==========================================================================
   4. MOZAIK GRID YAPI (ERKEK KONSEPTE UYARLANMIŞ)
   ========================================================================== */
.mosaic-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 12px;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-item:hover img {
    transform: scale(1.06);
}

.grid-item .item-link {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: block;
}

.grid-large {
    grid-row: span 2;
}

.grid-text-box {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eaeaea;
}

.grid-text-box.blue-bg {
    background-color: #0b1e42;
    color: #ffffff;
    border: none;
}

.grid-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.grid-subtitle {
    font-size: 13.5px;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.grid-brand-tag {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    text-transform: lowercase;
    letter-spacing: -1px;
}

/* ==========================================================================
   5. ERKEK YENİ GELENLER & ÜRÜN LİSTESİ (5 KOLONLU GRID)
   ========================================================================== */
.product-section {
    padding: 60px 40px 40px 40px;
    text-align: center;
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    color: var(--mavi-dark);
}

.section-title::before, .section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: #bbb;
}

.section-title::before {
    left: -80px;
}

.section-title::after {
    right: -80px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px 18px;
}

.product-card {
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: transform 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--bg-gray);
    margin-bottom: 12px;
    border-radius: 2px;
}

.product-card-img-wrap img.primary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-card-img-wrap img.hover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-card-img-wrap img.hover-img {
    opacity: 1;
}

.product-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--mavi-red);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-favorite-btn:hover, .product-favorite-btn.active {
    color: var(--mavi-red);
    background: #ffffff;
    transform: scale(1.1);
}

.product-swatches {
    display: flex;
    gap: 5px;
    margin-bottom: 6px;
}

.swatch-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 35px;
}

.product-name:hover {
    color: var(--mavi-blue);
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}

.product-price-current {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--mavi-dark);
    font-family: var(--font-heading);
}

.product-price-old {
    font-size: 12px;
    font-weight: 500;
    color: #999999;
    text-decoration: line-through;
}

/* ==========================================================================
   5.1 PLP & MAVI 2-STEP CARD QUICK BUY STYLES
   ========================================================================== */
.ac-plp-container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 20px 30px 60px 30px;
}

.ac-plp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 20px;
}

.ac-plp-breadcrumb a {
    color: #64748b;
}

.ac-plp-breadcrumb a:hover {
    color: var(--mavi-dark);
}

.ac-plp-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.ac-plp-title-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.ac-plp-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--mavi-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

.ac-plp-count {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.ac-plp-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ac-view-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.ac-grid-btn-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ac-grid-toggle-btn {
    background: none;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 6px;
}

.ac-grid-toggle-btn svg {
    width: 100%;
    height: 100%;
    fill: #64748b;
}

.ac-grid-toggle-btn:hover, .ac-grid-toggle-btn.active {
    border-color: var(--mavi-dark);
    background: #f8fafc;
}

.ac-grid-toggle-btn.active svg {
    fill: var(--mavi-dark);
}

.ac-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin: 0;
}

.ac-sort-select {
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--mavi-dark);
    background: #ffffff;
    cursor: pointer;
    outline: none;
}

.ac-filter-drawer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mavi-dark);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ac-filter-drawer-btn:hover {
    background: var(--mavi-blue);
}

.ac-subcategories-bar-wrap {
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.ac-subcategories-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.ac-subcat-link {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    color: #334155;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.ac-subcat-link:hover, .ac-subcat-link.active {
    background: var(--mavi-dark);
    color: #ffffff !important;
}

/* PLP Grid System */
.ac-plp-grid {
    display: grid;
    gap: 28px 20px;
}

.ac-plp-grid.ac-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.ac-plp-grid.ac-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.ac-plp-grid.ac-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.ac-plp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: transform 0.25s ease;
}

.ac-plp-card:hover {
    transform: translateY(-4px);
}

.ac-plp-thumb-box, .product-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f1f5f9;
    border-radius: 4px;
}

.ac-plp-thumb-box a, .product-card-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.ac-plp-img-main, .product-card-img-wrap img.primary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.ac-plp-img-hover, .product-card-img-wrap img.hover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ac-plp-card:hover .ac-plp-img-hover,
.product-card:hover .product-card-img-wrap img.hover-img {
    opacity: 1;
}

/* 1. MAVI WHITE "SEPETE EKLE" HOVER TRIGGER BUTTON */
.mavi-card-quick-trigger {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: #ffffff;
    color: var(--mavi-dark);
    border: 1px solid rgba(11, 30, 66, 0.12);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 11px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.ac-plp-card:hover .mavi-card-quick-trigger,
.product-card:hover .mavi-card-quick-trigger {
    opacity: 1;
    transform: translateY(0);
}

.mavi-card-quick-trigger:hover {
    background: var(--mavi-dark);
    color: #ffffff;
}

/* 2. MAVI SLIDE-UP SIZE SELECTOR OVERLAY PANEL */
.mavi-card-size-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -8px 24px rgba(11, 30, 66, 0.16);
    padding: 12px 14px 14px 14px;
    z-index: 10;
    transform: translateY(105%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.2s ease, visibility 0.2s ease;
}

.mavi-card-size-overlay.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mavi-card-size-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f1f5f9;
}

.mavi-card-size-header span {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mavi-dark);
}

.mavi-card-size-close {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.15s ease;
}

.mavi-card-size-close:hover {
    color: var(--mavi-red);
}

.mavi-card-size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    max-height: 85px;
    overflow-y: auto;
}

.mavi-size-pill {
    flex: 1 0 calc(25% - 6px);
    min-width: 36px;
    height: 32px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #1e293b;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    padding: 0 4px;
}

.mavi-size-pill:hover:not(:disabled) {
    border-color: var(--mavi-dark);
    color: var(--mavi-dark);
    background: #f8fafc;
}

.mavi-size-pill.active {
    background: var(--mavi-dark) !important;
    border-color: var(--mavi-dark) !important;
    color: #ffffff !important;
    font-weight: 800;
}

.mavi-size-pill.out-of-stock,
.mavi-size-pill:disabled {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
    text-decoration: line-through;
    cursor: not-allowed;
    opacity: 0.55;
}

.mavi-card-confirm-btn {
    width: 100%;
    background: var(--mavi-dark);
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 10px 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mavi-card-confirm-btn:hover:not(:disabled) {
    background: var(--mavi-blue);
}

.mavi-card-confirm-btn.is-sold-out,
.mavi-card-confirm-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

/* Star / Favorite Button */
.ac-plp-star-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    z-index: 4;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.ac-plp-star-btn:hover, .ac-plp-star-btn.active {
    color: var(--mavi-red);
    background: #ffffff;
    transform: scale(1.1);
}

/* Card Details */
.ac-plp-details {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ac-plp-prod-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 35px;
}

.ac-plp-prod-title:hover {
    color: var(--mavi-blue);
}

.ac-plp-price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}

.ac-plp-current-price {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--mavi-dark);
    font-family: var(--font-heading);
}

.ac-plp-old-price {
    font-size: 12px;
    font-weight: 500;
    color: #999999;
    text-decoration: line-through;
}

.ac-pagination-container {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ac-pagination-info {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

/* ==========================================================================
   6. COL-12 GRAND KATEGORİ VİTRİNLERİ (PANTOLON, CEKET)
   ========================================================================== */
.grand-showcase-section {
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.grand-showcase-card {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 2px;
    overflow: hidden;
    background-color: var(--mavi-dark);
    display: flex;
    align-items: center;
}

.grand-showcase-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.grand-showcase-card:hover img {
    transform: scale(1.03);
}

.grand-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,30,66,0.85) 0%, rgba(11,30,66,0.3) 60%, transparent 100%);
    z-index: 2;
}

.grand-showcase-content {
    position: relative;
    z-index: 3;
    padding: 0 60px;
    max-width: 650px;
    color: #ffffff;
}

.grand-showcase-badge {
    display: inline-block;
    background: var(--mavi-red);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-radius: 2px;
}

.grand-showcase-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.grand-showcase-desc {
    font-size: 14.5px;
    color: #e2e8f0;
    margin-bottom: 22px;
    line-height: 1.5;
}

.btn-showcase {
    display: inline-block;
    background: #ffffff;
    color: var(--mavi-dark) !important;
    font-size: 12.5px;
    font-weight: 800;
    padding: 13px 32px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-showcase:hover {
    background: var(--mavi-red);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   7. BANKA KAMPANYALARI (MAVI BANK BANNERS)
   ========================================================================== */
.bank-banners {
    display: flex;
    padding: 30px 40px 50px 40px;
    gap: 20px;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
}

.bank-banner {
    flex: 1;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.maximum-banner {
    background-color: #ff0055;
    color: #ffffff;
}

.axess-banner {
    background-color: #ffc900;
    color: #000000;
}

.bank-logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1px;
}

.bank-highlight-badge {
    background: #ffffff;
    padding: 6px 12px;
    font-weight: 900;
    font-size: 12px;
    border-radius: 3px;
    text-align: center;
    line-height: 1.2;
}

.maximum-banner .bank-highlight-badge {
    color: #ff0055;
}

.axess-banner .bank-highlight-badge {
    color: #000000;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.mavi-footer {
    background: var(--mavi-dark);
    color: #ffffff;
    padding: 60px 40px 30px 40px;
}

.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #94a3b8;
}

/* ==========================================================================
   9. MOBILE SIDENAV DRAWER (OFF-CANVAS)
   ========================================================================== */
.ac-mobile-sidenav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ac-mobile-sidenav-overlay.active {
    display: block !important;
    opacity: 1 !important;
}

.ac-mobile-sidenav-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #ffffff;
    box-shadow: 4px 0 25px rgba(0,0,0,0.25);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.ac-mobile-sidenav-overlay.active .ac-mobile-sidenav-box {
    transform: translateX(0);
}

.ac-mobile-sidenav-header {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
    background: var(--mavi-dark);
    color: #ffffff;
}

.ac-mobile-sidenav-header span {
    color: #ffffff !important;
}

.ac-mobile-sidenav-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #ffffff;
}

.ac-mobile-sidenav-body {
    padding: 20px;
    flex: 1;
}

.ac-mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ac-mobile-menu-item {
    border-bottom: 1px solid #f1f5f9;
}

.ac-mobile-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
}

.ac-mobile-menu-link {
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
    text-transform: uppercase;
}

.ac-mobile-expand-btn {
    background: none;
    border: none;
    font-size: 13px;
    color: #64748b;
    padding: 4px 8px;
    cursor: pointer;
}

.ac-mobile-sublist {
    list-style: none;
    padding: 0 0 10px 15px;
    margin: 0;
    display: none;
}

.ac-mobile-sublist.open {
    display: block;
}

.ac-mobile-sublink {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: #64748b;
}

/* ==========================================================================
   10. SEARCH OVERLAY & MODALS
   ========================================================================== */
.ac-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 30, 66, 0.85);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ac-search-overlay.active {
    display: flex !important;
}

.ac-search-modal {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.ac-search-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
}

.ac-search-input-box {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--mavi-dark);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.ac-search-input-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--mavi-dark);
    background: transparent;
}

.ac-search-input-box button {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--mavi-dark);
    cursor: pointer;
}

.ac-search-quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 12.5px;
}

.ac-search-tag-label {
    font-weight: 700;
    color: #64748b;
}

.ac-search-tag {
    background: #f1f5f9;
    color: #1e293b;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.ac-search-tag:hover {
    background: var(--mavi-dark);
    color: #ffffff;
}

/* ==========================================================================
   11. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    header.mavi-header {
        padding: 15px 20px;
    }
    .mosaic-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        padding: 15px 20px;
    }
    .grid-large {
        grid-row: span 1;
        height: 380px;
    }
    .grid-item {
        height: 280px;
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .header-right .search-bar {
        display: none;
    }
    .main-nav ul {
        gap: 12px;
        font-size: 11px;
    }
    .grand-showcase-section, .product-section, .bank-banners {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
    }
    .logo {
        position: static;
        transform: none;
    }
    .hero-campaign .discount {
        font-size: 56px;
    }
    .hero-campaign .discount span {
        font-size: 30px;
    }
    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 10px 15px;
    }
    .grid-large {
        height: 320px;
    }
    .grid-item {
        height: 240px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
    }
    .grand-showcase-card {
        height: 360px;
    }
    .grand-showcase-content {
        padding: 0 25px;
    }
    .grand-showcase-title {
        font-size: 26px;
    }
    .bank-banners {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* ==========================================================================
   5. DUAL SPLIT CARDS (T-SHIRT & GÖMLEK)
   ========================================================================= */
.bosmen-split-card {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bosmen-dark);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .bosmen-split-card {
        height: 300px;
    }
}

.bosmen-split-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bosmen-split-card:hover .bosmen-split-img {
    transform: scale(1.04);
}

.bosmen-split-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 15, 18, 0.15) 0%, rgba(13, 15, 18, 0.88) 100%);
}

.bosmen-split-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #ffffff;
}

.bosmen-split-badge {
    align-self: flex-start;
    background: var(--bosmen-gold);
    color: #0d0f12;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.bosmen-split-title {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #ffffff;
}

.bosmen-split-desc {
    font-size: 13px;
    color: #e2e8f0;
    margin-bottom: 16px;
}

/* ==========================================================================
   6. PROMO CARDS
   ========================================================================= */
.bosmen-promo-card {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.bosmen-promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 15, 18, 0.3) 0%, rgba(13, 15, 18, 0.9) 100%);
}

.bosmen-promo-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: #ffffff;
}

.bosmen-promo-badge {
    align-self: flex-start;
    background: #b91c1c;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.bosmen-promo-title {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
}

.bosmen-promo-desc {
    font-size: 13px;
    color: #e2e8f0;
    margin-bottom: 14px;
}

/* ==========================================================================
   7. TRUST BAR
   ========================================================================= */
.bosmen-trust-bar {
    background: var(--bosmen-dark);
    color: #ffffff;
    padding: 40px 0;
    margin-top: 30px;
}

.bosmen-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .bosmen-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .bosmen-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.bosmen-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bosmen-trust-icon {
    font-size: 28px;
    color: var(--bosmen-gold);
    flex-shrink: 0;
}

.bosmen-trust-title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 2px 0;
    color: #ffffff;
}

.bosmen-trust-desc {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.btn-men-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-men-whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    color: #ffffff !important;
}

/* ==========================================================================
   BOSMEN HOMEPAGE MODERN SECTIONS & TRENDYOL GRID
   ========================================================================== */
.men-container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .men-container {
        padding: 0 16px;
    }
}

.men-section-wrapper {
    padding: 45px 0;
    position: relative;
}

.men-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 12px;
}

.men-section-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.men-section-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bosmen-blue);
}

.men-section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--bosmen-dark);
    letter-spacing: -0.3px;
    margin: 0;
    text-transform: uppercase;
}

.men-section-subtitle {
    font-size: 13.5px;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.men-view-all-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--bosmen-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    padding: 6px 14px;
    border-radius: 6px;
    background: #f1f5f9;
}

.men-view-all-link:hover {
    background: var(--bosmen-dark);
    color: #ffffff !important;
    transform: translateX(3px);
}

/* 4 Category Mosaic Cards */
.men-cat-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.men-cat-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.men-cat-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 1200px) {
    .men-cat-grid-6 {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 992px) {
    .men-cat-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .men-cat-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .men-cat-grid-4 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.men-cat-card {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #071530;
    box-shadow: 0 4px 20px rgba(7, 21, 48, 0.08);
}

.men-cat-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.men-cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.men-cat-card:hover .men-cat-img-box img {
    transform: scale(1.06);
}

.men-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 21, 48, 0.05) 0%, rgba(7, 21, 48, 0.45) 40%, rgba(7, 21, 48, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px 14px;
    text-align: center;
    color: #ffffff !important;
}

/* ==========================================================================
   KOMBİNLER (LOOKBOOK STİL REHBERİ) SECTION
   ========================================================================== */
.men-kombin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .men-kombin-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .men-kombin-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.men-kombin-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 18px rgba(7, 21, 48, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.men-kombin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(7, 21, 48, 0.14);
    border-color: #071530;
}

.men-kombin-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #071530;
}

.men-kombin-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.men-kombin-card:hover .men-kombin-img-wrap img {
    transform: scale(1.05);
}

.men-kombin-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(7, 21, 48, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.men-kombin-body {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.men-kombin-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: #071530;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.men-kombin-items-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.men-kombin-pill {
    font-size: 11px;
    background: #f1f5f9;
    color: #475569;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.men-kombin-pill::before {
    content: "•";
    color: var(--bosmen-blue);
    font-weight: 900;
}

.men-kombin-btn {
    width: 100%;
    background: #071530;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.men-kombin-btn:hover {
    background: var(--bosmen-blue);
    box-shadow: 0 4px 14px rgba(0, 80, 157, 0.3);
}

/* ==========================================================================
   TAKIM ELBİSE & ATELIER ALANI (6 ALT KATEGORİ İLE)
   ========================================================================== */
.men-atelier-subcats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 992px) {
    .men-atelier-subcats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .men-atelier-subcats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.men-atelier-subcat-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    padding: 14px 10px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.men-atelier-subcat-card:hover {
    border-color: #071530;
    background: #071530;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(7, 21, 48, 0.15);
}

.men-atelier-subcat-icon {
    font-size: 20px;
    color: #071530;
    transition: color 0.2s ease;
}

.men-atelier-subcat-card:hover .men-atelier-subcat-icon {
    color: #c5a880;
}

.men-atelier-subcat-name {
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 800;
    color: #071530;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.men-atelier-subcat-card:hover .men-atelier-subcat-name {
    color: #ffffff;
}

.men-cat-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.men-cat-subtitle {
    font-size: 12px;
    color: #ffffff !important;
    opacity: 0.95;
    margin-bottom: 12px;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.men-cat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #071530 !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 30px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.men-cat-card:hover .men-cat-btn {
    background: var(--bosmen-blue);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Trendyol Product Grid (4 Columns Desktop, 2 Columns Mobile) */
.men-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .men-product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .men-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .men-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.men-product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #edf2f7;
    transition: all 0.25s ease;
}

.men-product-card:hover {
    box-shadow: 0 10px 30px rgba(7, 21, 48, 0.08);
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

.men-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #f8fafc;
    overflow: hidden;
    cursor: pointer;
}

.men-card-img-wrap img.primary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.men-product-card:hover .men-card-img-wrap img.primary-img {
    transform: scale(1.02);
}

.men-card-discount-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--bosmen-red);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(227, 6, 19, 0.3);
}

.men-card-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #475569;
    cursor: pointer;
    z-index: 4;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.men-card-fav-btn:hover, .men-card-fav-btn.active {
    color: var(--bosmen-red);
    transform: scale(1.1);
    background: #ffffff;
}

/* Synchronized Cursor Dots */
.trendyol-dots-container {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 3;
    pointer-events: auto;
}

.trendyol-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.trendyol-dot.active {
    background: #ffffff;
    width: 16px;
    border-radius: 4px;
}

/* Color Badge */
.trendyol-color-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 4;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.trendyol-color-badge:hover {
    transform: scale(1.06);
}

.trendyol-color-icon {
    display: flex;
    align-items: center;
    gap: 2px;
}

.trendyol-color-icon span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.trendyol-color-icon .circle-c1 { background: #071530; }
.trendyol-color-icon .circle-c2 { background: #c5a880; }
.trendyol-color-icon .circle-c3 { background: #cbd5e1; }

.trendyol-color-count {
    font-size: 11px;
    font-weight: 800;
    color: #071530;
}

/* Variant Drawer Popup */
.trendyol-variant-popup {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-radius: 8px 8px 0 0;
    padding: 12px;
    z-index: 10;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    display: none;
    animation: slideUpPopup 0.2s ease;
}

.trendyol-variant-popup.active {
    display: block;
}

@keyframes slideUpPopup {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.variant-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f1f5f9;
}

.variant-popup-title {
    font-size: 11px;
    font-weight: 800;
    color: #071530;
    text-transform: uppercase;
}

.variant-popup-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #94a3b8;
    line-height: 1;
}

.variant-popup-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.variant-thumb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    flex-shrink: 0;
}

.variant-thumb-item img {
    width: 38px;
    height: 48px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.15s ease;
}

.variant-thumb-item:hover img {
    border-color: #071530;
}

.variant-color-label {
    font-size: 9.5px;
    color: #64748b;
    font-weight: 600;
    max-width: 44px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card Body */
.men-card-body {
    padding: 14px 14px 16px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.men-card-brand {
    font-size: 11px;
    font-weight: 800;
    color: var(--bosmen-blue);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.men-card-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
    transition: color 0.15s ease;
}

.men-card-title:hover {
    color: var(--bosmen-blue);
}

.men-card-price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.men-card-current-price {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--bosmen-dark);
}

.men-card-old-price {
    font-size: 12.5px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: line-through;
}

.men-btn-add-cart {
    width: 100%;
    background: #f1f5f9;
    color: var(--bosmen-dark);
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
}

.men-btn-add-cart:hover {
    background: var(--bosmen-dark);
    color: #ffffff;
}

/* High Contrast Duo Banners */
.men-duo-banner-wrapper {
    margin: 30px 0 50px 0;
}

.men-duo-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .men-duo-banner-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.men-duo-card {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #071530;
    box-shadow: 0 8px 30px rgba(7, 21, 48, 0.1);
}

.men-duo-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 280px;
    overflow: hidden;
}

.men-duo-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.men-duo-card:hover .men-duo-img-box img {
    transform: scale(1.05);
}

.men-duo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 21, 48, 0.15) 0%, rgba(7, 21, 48, 0.5) 40%, rgba(7, 21, 48, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px 38px;
    color: #ffffff;
}

.men-duo-tag {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bosmen-yellow);
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.men-duo-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.men-duo-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background: #ffffff;
    color: #071530 !important;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.men-duo-card:hover .men-duo-btn {
    background: var(--bosmen-blue);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 80, 157, 0.5);
}

/* 2-Col Categories */
.men-duo-categories-wrapper {
    padding: 10px 0 50px 0;
}

.men-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .men-duo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.men-duo-link {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    height: 320px;
    background: #071530;
}

.men-duo-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.men-duo-link:hover img {
    transform: scale(1.05);
}

.men-duo-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 21, 48, 0.2) 0%, rgba(7, 21, 48, 0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    text-align: center;
    color: #ffffff;
}

.men-duo-content .men-duo-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.men-duo-cta {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--bosmen-yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Value Props Bar */
.men-value-props-bar {
    background: #071530;
    color: #ffffff;
    padding: 38px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.men-props-grid,
.men-value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

@media (max-width: 992px) {
    .men-props-grid,
    .men-value-props-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .men-props-grid,
    .men-value-props-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.men-prop-card,
.men-prop-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.men-prop-icon-wrap,
.men-prop-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.men-prop-icon-wrap i,
.men-prop-icon i {
    font-size: 22px;
    color: var(--bosmen-yellow);
}

.men-prop-info,
.men-prop-text {
    display: flex;
    flex-direction: column;
}

.men-prop-title,
.men-prop-text strong {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.men-prop-desc,
.men-prop-text span {
    font-size: 11.5px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   BOSMEN LUXURY RIGHT-SIDE CART DRAWER (OFFCANVAS) & TOAST
   ========================================================================== */
.bosmen-side-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 21, 48, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bosmen-side-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bosmen-side-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 999999;
    box-shadow: -10px 0 40px rgba(7, 21, 48, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bosmen-side-cart-drawer.active {
    transform: translateX(0);
}

/* Header */
.bosmen-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: #071530;
    color: #ffffff;
}

.bosmen-drawer-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.bosmen-drawer-close-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bosmen-drawer-close-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Free Shipping Bar */
.bosmen-drawer-shipping-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 22px;
}

.bosmen-shipping-text {
    font-size: 11.5px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.bosmen-shipping-progress {
    height: 5px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.bosmen-shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bosmen-gold), #10b981);
    transition: width 0.4s ease;
}

/* Items List */
.bosmen-drawer-items-wrap {
    flex: 1;
    overflow-y: auto;
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bosmen-drawer-item {
    display: flex;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
    position: relative;
    animation: fadeInItem 0.2s ease;
}

@keyframes fadeInItem {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.bosmen-drawer-item-img {
    width: 68px;
    height: 86px;
    border-radius: 6px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.bosmen-drawer-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bosmen-drawer-item-info {
    flex: 1;
    min-width: 0;
}

.bosmen-drawer-item-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    display: block;
}

.bosmen-drawer-item-title:hover {
    color: var(--bosmen-blue);
}

.bosmen-drawer-item-meta {
    font-size: 11.5px;
    color: #64748b;
    margin-bottom: 8px;
}

.bosmen-drawer-item-meta span {
    font-weight: 600;
    color: #071530;
}

.bosmen-drawer-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Qty Buttons */
.bosmen-drawer-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #ffffff;
    overflow: hidden;
}

.bosmen-drawer-qty-btn {
    background: none;
    border: none;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    transition: background 0.15s ease;
}

.bosmen-drawer-qty-btn:hover {
    background: #f1f5f9;
    color: #071530;
}

.bosmen-drawer-qty-val {
    width: 28px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    color: #071530;
}

.bosmen-drawer-item-price {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: #071530;
}

.bosmen-drawer-item-remove {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 13px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.15s ease;
}

.bosmen-drawer-item-remove:hover {
    color: var(--bosmen-red);
}

/* Empty State */
.bosmen-drawer-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
}

.bosmen-empty-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.bosmen-drawer-empty h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: #071530;
    margin-bottom: 6px;
}

.bosmen-drawer-empty p {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.bosmen-empty-btn {
    display: inline-block;
    background: #071530;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
}

/* Drawer Footer */
.bosmen-drawer-footer {
    padding: 18px 22px 24px 22px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.bosmen-drawer-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.bosmen-drawer-total-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
}

.bosmen-drawer-total-val {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: #071530;
}

.bosmen-drawer-note {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 14px;
}

.bosmen-drawer-actions {
    display: flex;
    gap: 10px;
}

.bosmen-drawer-btn-cart {
    flex: 1;
    background: #ffffff;
    color: #071530 !important;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 10px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.bosmen-drawer-btn-cart:hover {
    background: #f1f5f9;
    border-color: #071530;
}

.bosmen-drawer-btn-checkout {
    flex: 1.3;
    background: #071530;
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 14px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(7, 21, 48, 0.2);
}

.bosmen-drawer-btn-checkout:hover {
    background: var(--bosmen-blue);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 80, 157, 0.35);
}

/* FLOATING TOAST */
.bosmen-cart-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(7, 21, 48, 0.18);
    border-left: 4px solid #10b981;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999999;
    transform: translateY(-50px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.bosmen-cart-toast.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.bosmen-toast-icon {
    font-size: 20px;
    color: #10b981;
}

.bosmen-toast-body {
    font-size: 13px;
    color: #1e293b;
    line-height: 1.4;
}

.bosmen-toast-body strong {
    color: #071530;
    display: inline;
}

.bosmen-toast-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    margin-left: 6px;
}

/* LOGIN MODAL BACKDROP */
.bosmen-cart-modal-backdrop {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 21, 48, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.bosmen-cart-modal-backdrop.active {
    display: flex !important;
    opacity: 1;
}

.bosmen-cart-modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 24px 50px rgba(7, 21, 48, 0.28);
    overflow: hidden;
    transform: scale(0.92) translateY(12px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    animation: modalPopIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPopIn {
    from { opacity: 0; transform: scale(0.92) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.bosmen-cart-modal-btn-continue {
    flex: 1;
    background: #ffffff;
    color: #475569;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
}

.bosmen-cart-modal-btn-continue:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #071530;
}

.bosmen-cart-modal-btn-cart {
    flex: 1.2;
    background: #071530;
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(7, 21, 48, 0.2);
}

.bosmen-cart-modal-btn-cart:hover {
    background: var(--bosmen-blue);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 80, 157, 0.35);
}

/* ==========================================================================
   MAVI / BOSMEN PRODUCT CARD QUICK SIZE OVERLAY DRAWER
   ========================================================================== */
.men-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.mavi-card-size-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 14px 12px 16px 12px;
    box-shadow: 0 -8px 24px rgba(7, 21, 48, 0.14);
    z-index: 30;
    transform: translateY(105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    border-top: 1px solid #e2e8f0;
}

.mavi-card-size-overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mavi-size-overlay-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f1f5f9;
}

.mavi-size-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #071530;
}

.mavi-size-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.15s ease;
}

.mavi-size-close-btn:hover {
    color: #071530;
}

.mavi-size-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.mavi-size-pill {
    min-width: 38px;
    height: 34px;
    padding: 0 8px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: #071530;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.18s ease;
}

.mavi-size-pill:hover:not(:disabled) {
    background: #071530;
    border-color: #071530;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(7, 21, 48, 0.2);
}

.mavi-size-pill.disabled,
.mavi-size-pill:disabled {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #cbd5e1;
    text-decoration: line-through;
    cursor: not-allowed;
    opacity: 0.55;
    box-shadow: none;
}

/* ==========================================================================
   MODALS & OVERLAYS (SEARCH & LOGIN MODAL)
   ========================================================================== */
.ac-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 21, 48, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ac-search-overlay.active {
    display: flex !important;
}

.ac-search-modal {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 640px;
    border-radius: 12px;
    padding: 36px 30px 30px 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalScaleIn 0.22s ease-out;
}

@keyframes modalScaleIn {
    from { opacity: 0; transform: scale(0.96) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.ac-search-close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    transition: color 0.15s ease;
}

.ac-search-close-btn:hover {
    color: #071530;
}

.ac-search-input-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.ac-search-input-box input {
    width: 100%;
    height: 52px;
    border: 2px solid #071530;
    border-radius: 8px;
    padding: 0 54px 0 20px;
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 500;
    color: #071530;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ac-search-input-box input:focus {
    box-shadow: 0 0 0 4px rgba(7, 21, 48, 0.12);
}

.ac-search-input-box button {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #071530;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

.ac-search-quick-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.ac-search-tag-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ac-search-tag {
    font-size: 12.5px;
    font-weight: 600;
    color: #071530;
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.ac-search-tag:hover {
    background: #071530;
    color: #ffffff;
}

.ac-hero-btn {
    display: inline-block;
    background: #071530;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ac-hero-btn:hover {
    background: #1e3a8a;
    transform: translateY(-1px);
}




