/* ==================== BASE & VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Schibsted Grotesk", sans-serif;
    -webkit-font-smoothing: antialiased;
}

:root {
    --header-height: 80px;   /* logo büyütüldü (52px), 64px'te sıkışıyordu */
    --topbar-bg: #1c1c1c;
    --border-color: #eeeeee;
    --brand-yellow: #d4502f; /* DHL Sarı Accent */
    --brand-black: #000000;
    --brand-gray: #f5f5f5;
}

body {
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

/* ==================== 1. ANNOUNCEMENT BAR ==================== */
.m-announcement-bar {
    background-color: var(--topbar-bg);
    color: #ffffff;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    font-size: 12px;
    letter-spacing: 0.2px;
}

.m-announcement-bar b { font-weight: 700; }

.m-announcement-bar__close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 13px;
    opacity: 0.85;
}

/* ==================== 2. HEADER & MEGA MENU ==================== */
header.m-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.m-header__inner {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
}

.m-header__left-icon,
.m-header__right-icons {
    display: flex;
    align-items: center;
    flex: 0 0 100px;
}

.m-header__left-icon { justify-content: flex-start; }
.m-header__right-icons { justify-content: flex-end; gap: 18px; }

.m-header__center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 24px;
}

.m-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 18px;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

.m-menu__item { 
    position: relative;
    display: inline-flex; 
    align-items: center; 
    height: var(--header-height);
}

.m-menu__link {
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    letter-spacing: -0.1px;
    transition: opacity 0.2s;
}

.m-menu__link:hover { opacity: 0.6; }
.m-menu__arrow { font-size: 8px; color: #222222; margin-left: 2px; }
.heart-icon { color: #e53935; font-size: 12px; margin-left: 3px; }
.gift-icon { font-size: 13px; margin-left: 3px; }

.m-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 10px;
}

.m-logo img {
    height: 52px;          /* iki kat büyütüldü (26px -> 52px) */
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.icon-btn:hover { opacity: 0.6; }
.m-hamburger-btn { display: none; }

/* MASAÜSTÜ MEGA MENU DROPDOWN */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    padding: 20px 25px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease;
    z-index: 999;
    border-radius: 4px;
    min-width: 200px;
}

.mega-menu--grid {
    display: grid;
    grid-template-columns: repeat(3, 160px);
    gap: 15px;
}

.m-menu__item:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mega-menu a {
    font-size: 12.5px;
    font-weight: 500;
    color: #333;
    display: block;
    padding: 6px 0;
    transition: color 0.2s;
}

.mega-menu a:hover {
    color: #000;
    font-weight: 700;
}

/* ==================== MOBİL DRAWER ==================== */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #ffffff;
    z-index: 2001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.drawer-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-header img { height: 22px; }

.drawer-close-btn {
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

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

.mobile-nav-list li {
    border-bottom: 1px solid #f2f2f2;
}

.mobile-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.mobile-submenu {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
    background-color: #fafafa;
}

.mobile-submenu a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

/* ==================== 3. HERO SLIDER ==================== */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 520px;
    background: url('https://paulkenzie.com/cdn/shop/files/1N5A2990_web.jpg?v=1782214888&width=2000') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 50px;
}

.btn-yellow {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    font-weight: 700;
    padding: 12px 36px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    display: inline-block;
}

.btn-yellow:hover {
    transform: translateY(-2px);
    background-color: #e6b800;
}

/* ==================== 4. TICKER PROMOTION BAR ==================== */
.scrolling-promotion {
    background-color: var(--brand-black);
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.promotion-track {
    display: flex;
    gap: 60px;
    animation: scrollTicker 22s linear infinite;
    width: max-content;
}

.promotion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
}

.promotion-item img {
    height: 28px;
    width: auto;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== 5. CATEGORY CIRCLES ==================== */
.category-grid-section {
    padding: 40px 20px;
    max-width: 1480px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 15px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease;
}

.category-item:hover { transform: translateY(-4px); }

.category-img-box {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background-color: var(--brand-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: background-color 0.2s ease;
}

.category-item:hover .category-img-box {
    background-color: var(--brand-yellow);
}

.category-img-box img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.category-title {
    font-size: 12px;
    font-weight: 500;
    color: #000000;
}

/* ==================== 6. LOOKBOOK GRID ==================== */
.lookbook-section { padding: 10px 30px 60px 30px; }
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lookbook-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.lookbook-card img { width: 100%; height: 100%; object-fit: cover; }

.lookbook-dot {
    position: absolute;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.lookbook-dot::after {
    content: '';
    width: 7px;
    height: 7px;
    background: #000;
    border-radius: 50%;
}

/* ==================== 7. FEATURED SECTIONS ==================== */
.section-block { padding: 30px 0 70px 0; }
.section-header { text-align: center; margin-bottom: 35px; }
.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
}
.section-header p { font-size: 13px; color: #666; margin-top: 6px; }

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.banner-side {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    min-height: 580px;
}

.banner-side img { width: 100%; height: 100%; object-fit: cover; }
.banner-side .btn-yellow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

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

.product-card { text-align: left; }
.product-media {
    position: relative;
    background-color: #fff;
    margin-bottom: 12px;
    border-radius: 2px;
    overflow: hidden;
}

.product-media img { width: 100%; aspect-ratio: 3/4; object-fit: contain; background-color: #fff; }
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
}

.product-title {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.product-price { font-size: 14px; font-weight: 700; }
.price-sale { color: #e53935; }
.price-old {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    font-size: 12px;
    margin-left: 6px;
}

/* ==================== 8. USP STRIP ==================== */
.usp-section {
    border-top: 1px solid var(--border-color);
    padding: 50px 0;
    background-color: #ffffff;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.usp-icon img { width: 75px; height: 75px; margin: 0 auto 12px auto; }
.usp-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.usp-desc { font-size: 12px; color: #666; line-height: 1.4; }

/* ==================== 9. FOOTER ==================== */
footer.m-footer {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    padding: 60px 0 25px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-title { font-size: 15px; font-weight: 800; text-transform: uppercase; margin-bottom: 18px; }
.footer-text { font-size: 13px; line-height: 1.6; font-weight: 500; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; font-weight: 500; }
.footer-links a:hover { opacity: 0.6; }

.newsletter-box { display: flex; margin-top: 15px; }
.newsletter-box input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #000;
    background: transparent;
    font-size: 12px;
    outline: none;
}
.newsletter-box button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0 18px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.12);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

.social-links { display: flex; gap: 10px; }
.social-item {
    width: 38px;
    height: 38px;
    background-color: rgba(0,0,0,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.2s;
}

.social-item:hover { background-color: #000; color: #fff; }

/* ==================== DROPDOWN MENÜ ==================== */
.m-menu__item {
    position: relative;
}

.m-menu__item.has-dropdown > .m-menu__link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.m-menu__sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
    list-style: none;
    padding: 8px 0;
    margin-top: 6px;
    z-index: 1000;
}

.m-menu__item.has-dropdown:hover .m-menu__sub {
    display: block;
}

.m-menu__sub li {
    padding: 0;
}

.m-menu__sub li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.m-menu__sub li a:hover {
    background-color: #f5f5f5;
    color: #d4502f;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1180px) {
    .m-menu { gap: 12px; }
    .m-menu__link { font-size: 12px; }
    .category-grid { grid-template-columns: repeat(6, 1fr); }
    .split-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
    .m-menu { display: none; }
    .m-hamburger-btn { display: inline-flex; }
    .m-header__inner { padding: 0 16px; }
    .m-header__left-icon, .m-header__right-icons { flex: 0 0 auto; }
    .m-header__left-icon { gap: 12px; }
    .m-logo img { height: 40px; }
    .lookbook-grid { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

/* =========================================================
   ÇorapXML Footer Color V1 — desktop + mobile
   Sadece footer renk paleti değiştirilmiştir.
   ========================================================= */
footer.m-footer{
    background-color:#111827!important;
    color:#ffffff!important;
}
footer.m-footer .footer-title,
footer.m-footer .footer-text,
footer.m-footer .footer-links a,
footer.m-footer .footer-contact,
footer.m-footer .footer-contact li,
footer.m-footer .footer-bottom{
    color:#ffffff!important;
}
footer.m-footer .footer-text,
footer.m-footer .footer-contact li,
footer.m-footer .footer-links a{
    color:#cbd5e1!important;
}
footer.m-footer .footer-links a:hover{
    color:#ef3b3b!important;
    opacity:1!important;
}
footer.m-footer .newsletter-box input{
    background:#1f2937!important;
    color:#ffffff!important;
    border-color:#374151!important;
}
footer.m-footer .newsletter-box input::placeholder{
    color:#94a3b8!important;
}
footer.m-footer .newsletter-box button{
    background:#ef3b3b!important;
    color:#ffffff!important;
}
footer.m-footer .footer-bottom{
    border-top-color:rgba(255,255,255,.10)!important;
}
footer.m-footer .social-item{
    background:rgba(255,255,255,.08)!important;
    color:#ffffff!important;
}
footer.m-footer .social-item:hover{
    background:#ef3b3b!important;
    color:#ffffff!important;
}
