/* 
   biryerdenaldim.com - Lululemon Türkiye Tasarım Sistemi (Birebir Replikasyon)
   Renk Paleti: Saf Beyaz, Işık Gri (#f4f4f4), Kömür Siyahı (#000000), Vurgu Kırmızı (#d31327)
   Tasarım Estetiği: Keskin köşeler (0px border-radius), yüksek kontrast, temiz tipografi
*/

/* --- Değişkenler --- */
:root {
    --bg-white: #ffffff;
    --bg-light: #f4f4f4;
    --bg-dark: #000000;
    --primary: #d31327; /* Lululemon Kırmızısı */
    --primary-hover: #a60f1d;
    --success: #10b981;  /* Yeşil: ücretsiz kargo, kupon, onay */
    --text-black: #000000;
    --text-dark: #000000;
    --text-gray: #555555;
    --text-muted: #7f7f7f;
    --border-color: #e5e5e5;
    --border-dark: #000000;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Klavye navigasyonu için focus halkası — mouse click'te gizli */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

button, a, input, select {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Tipografi --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-black);
    font-weight: 800; /* Bold & Punchy */
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* --- Lululemon Üst Duyuru Çubuğu (Light Gray, Minimalist) --- */
.announcement-bar {
    background-color: var(--bg-light);
    color: var(--text-black);
    text-align: center;
    padding: 8px 15px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.12em;
    z-index: 1000;
    position: relative;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
}

.announcement-bar p {
    margin: 0;
}

/* --- Navigasyon --- */
.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px; /* Daha yüksek ve ferah header */
}

/* Logo Yerleşimi */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    text-decoration: none;
}

.header-logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--text-black);
    text-transform: uppercase;
}

.logo-container:hover .header-logo-img {
    transform: scale(1.05);
}

.logo-container:hover .logo-text {
    color: var(--primary);
}

/* Menüler */
.nav-menu > ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    align-items: center;
    white-space: nowrap;
}

.nav-menu > ul > li > a {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 28px 0; /* Header yüksekliğine göre ortalama */
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

.nav-menu > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Header alt sınır çizgisine sıfırla */
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-menu > ul > li > a:hover {
    color: var(--primary);
}

.nav-menu > ul > li > a:hover::after, .nav-menu > ul > li > a.active::after {
    width: 100%;
}

.nav-menu > ul > li > a.active {
    color: var(--text-black);
}

/* --- Sub Dropdown Menü (Sadece üzerine gelindiğinde açılan dikey küçük menü) --- */
.nav-menu li.menu-item-has-children {
    position: relative;
}

.sub-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(8px) !important;
    min-width: 200px !important;
    background: #ffffff !important;
    border: 1px solid #eaeaea !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12) !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s ease !important;
    z-index: 9999 !important;
}

.nav-menu li.menu-item-has-children:hover .sub-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.sub-dropdown li {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
}

.sub-dropdown li a {
    display: block !important;
    padding: 10px 18px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #333333 !important;
    text-transform: capitalize !important;
    letter-spacing: normal !important;
    transition: background-color 0.15s ease, color 0.15s ease, padding-left 0.15s ease !important;
    white-space: nowrap !important;
    text-align: left !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.sub-dropdown li a::after {
    display: none !important;
}

.sub-dropdown li a:hover {
    background-color: #f6f6f6 !important;
    color: #000000 !important;
    padding-left: 22px !important;
}

/* Aksiyon Butonları */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0px; /* Lululemon keskin kutular */
    padding: 8px 16px;
    width: 240px;
    transition: var(--transition-smooth);
}

.search-box:focus-within {
    border-color: var(--text-black);
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 13px;
    width: 100%;
    font-weight: 400;
}

.search-box button {
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    margin-left: 8px;
    font-size: 13px;
}

.search-box button:hover {
    color: var(--primary);
}

.action-btn {
    font-size: 18px;
    color: var(--text-dark);
    position: relative;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.action-btn:hover {
    color: var(--primary);
}

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

.cart-count {
    position: absolute;
    top: -2px;
    right: -4px;
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 20px;
    cursor: pointer;
}

/* --- Hero Banner Bölümü (Keskin Köşeli Bilgi Kartı) --- */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-mobile-img {
    display: none;
}

.hero-content-box {
    position: relative;
    z-index: 2;
    background-color: var(--bg-white);
    padding: 48px;
    max-width: 520px;
    border-radius: 0px; /* Keskin köşeli */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-tag {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.hero-content-box h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-content-box p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

/* Buton Tasarımları (Lululemon Keskin Köşeli Siyah/Beyaz) --- */
.btn {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 32px;
    border-radius: 0px; /* Keskin köşeler */
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    border: 1px solid var(--bg-dark);
}

.btn-dark:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-light {
    background-color: var(--bg-white);
    color: var(--text-black);
    border: 1px solid var(--text-black);
}

.btn-light:hover {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    border-color: var(--bg-dark);
}

/* --- İki Sütunlu Banner Alanı (Keskin Köşeli Promo) --- */
.promo-grid-section {
    background-color: var(--bg-white);
    padding: 60px 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.promo-card {
    display: flex;
    flex-direction: column;
}

.promo-img-wrapper {
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: 0px; /* Keskin köşeler */
}

.promo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.promo-card:hover .promo-img-wrapper img {
    transform: scale(1.02);
}

.promo-info {
    padding-top: 24px;
}

.promo-info h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.promo-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 95%;
    line-height: 1.6;
}

.link-btn {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    color: var(--text-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    border-bottom: 2px solid var(--text-black);
    padding-bottom: 4px;
    width: fit-content;
}

.link-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* --- Yatay Liste Başlığı (Featured Products Carousel) --- */
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.carousel-header h2 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 800;
}

.view-all-link {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    color: var(--text-black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all-link:hover {
    color: var(--primary);
}

/* --- Orta Geniş Banner Bölümü (Lululemon Kumaş Teknolojisi) --- */
.middle-feature-banner {
    position: relative;
    height: 65vh;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.feature-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.feature-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35); /* Biraz daha aydınlık, Lululemon tarzı */
    z-index: 2;
}

.feature-banner-content {
    position: relative;
    z-index: 3;
    color: var(--bg-white);
    max-width: 700px;
}

.feature-banner-content .sub-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--bg-white);
    display: block;
    margin-bottom: 15px;
}

.feature-banner-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.feature-banner-content p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.6;
}

.middle-feature-banner .btn-light {
    border-radius: 0px;
    border: none;
    background-color: var(--bg-white);
    color: var(--text-black);
    padding: 16px 36px;
}

.middle-feature-banner .btn-light:hover {
    background-color: var(--bg-dark);
    color: var(--bg-white);
}

/* --- Aktiviteye Göre Alışveriş (Shop by Activity) --- */
.activities-section-wrapper {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header p {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 400;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.activity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.activity-img-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}

.activity-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.activity-item:hover .activity-img-circle {
    border-color: var(--text-black);
}

.activity-item:hover .activity-img-circle img {
    transform: scale(1.04);
}

.activity-item h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Etiket Bulutu Bölümü (Quick Search Tags) --- */
.tags-cloud-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
}

.tags-header {
    text-align: center;
    margin-bottom: 30px;
}

.tags-header h2 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.tag-pill {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 12px 26px;
    border-radius: 0px; /* Lululemon minimalizm: Keskin haplar */
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.tag-pill:hover {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    border-color: var(--bg-dark);
}

/* --- Avantajlar (Features) Bölümü --- */
.features-info-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 24px;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 10px;
}

.feature-icon {
    font-size: 30px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 800;
    color: var(--text-black);
    text-transform: uppercase;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 400;
}

/* --- Ürünler Bölümü (Lululemon Temiz Ürün Kartları) --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background-color: var(--bg-white);
    border: 1px solid transparent;
    border-radius: 0px; /* Keskin köşeler */
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.product-image-container {
    position: relative;
    height: 420px; /* Daha uzun ve dikey */
    overflow: hidden;
    background-color: var(--bg-light);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 10px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 0px;
    z-index: 2;
    letter-spacing: 0.05em;
}

.product-badge.discount {
    background-color: var(--primary);
    color: var(--bg-white);
}

.product-badge.new {
    background-color: var(--bg-dark);
    color: var(--bg-white);
}

/* Hover'da alttan kayarak çıkan keskin köşeli sepet butonu */
.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    transform: translateY(100%);
    transition: var(--transition-smooth);
    background: linear-gradient(transparent, rgba(255,255,255,0.95) 20%);
    z-index: 3;
}

.product-card:hover .product-card-overlay {
    transform: translateY(0);
}

.product-card .add-to-cart-btn {
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--bg-white);
    border: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    padding: 12px;
    border-radius: 0px; /* Keskin köşeler */
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-card .add-to-cart-btn:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.product-info {
    padding: 16px 4px; /* Dış sınırı temizlemek için az padding */
}

.product-category {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 500; /* Çok kalın olmayan, şık lululemon fontu */
    margin-bottom: 6px;
    line-height: 1.3;
    color: var(--text-dark);
}

.product-info h3 a:hover {
    color: var(--primary);
}

/* Lululemon Tarzı Renk Kutucukları (Swatches) */
.color-swatches {
    display: flex;
    gap: 6px;
    margin: 8px 0;
}

.swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.swatch:hover, .swatch.active {
    transform: scale(1.15);
    box-shadow: 0 0 0 1px var(--text-black);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f59e0b;
    font-size: 11px;
    margin-bottom: 8px;
}

.product-rating span {
    color: var(--text-muted);
    font-size: 11px;
    margin-left: 4px;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 13px;
}

.current-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-black);
}

.current-price.discounted {
    color: var(--primary);
}

/* --- Alt Bilgi (Footer) Bölümü (Temiz, Structured Columns) --- */
.main-footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
    color: var(--text-gray);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.1fr 1.1fr 1.3fr 2.3fr;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--text-black);
    letter-spacing: 0.1em;
    font-weight: 800;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul a {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid transparent;
}

.footer-col ul a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.brand-col p {
    color: var(--text-gray);
    font-size: 13px;
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 290px;
    line-height: 1.6;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 48px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition-smooth);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--text-black);
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.footer-logo-container:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-logo-container:hover .footer-logo-text {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    border-color: var(--bg-dark);
    transform: translateY(-2px);
}

.newsletter-col p {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0px; /* Keskin köşeler */
    padding: 4px;
    max-width: 340px;
    transition: var(--transition-smooth);
}

.newsletter-form:focus-within {
    border-color: var(--text-dark);
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--text-dark);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    flex-grow: 1;
    width: 100px;
}

.newsletter-form button {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    border: none;
    padding: 0 20px;
    border-radius: 0px; /* Keskin köşeler */
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 12px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 800;
}

.newsletter-form button:hover {
    background-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
}

.paytr-badge {
    font-family: var(--font-heading);
    font-size: 11px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    line-height: 1;
}

/* --- Mobil Arama & Alt Navigasyon Temel Stilleri (Desktop'ta gizli) --- */
.mobile-search-btn { display: none; }
.mobile-search-dropdown { display: none; }
.mobile-bottom-nav { display: none; }
.footer-accordion-header .accordion-icon { display: none; }

/* --- Mobil Responsive Uyumları --- */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
        height: 75px;
    }
    .header-logo-img {
        height: 60px;
    }
    .mega-dropdown {
        top: 75px;
    }
    .hero-section {
        padding: 40px;
        height: auto;
        min-height: 480px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .promo-img-wrapper {
        height: 440px;
    }
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
        padding-bottom: 60px; /* Sabit alt navigasyon çubuğu boşluğu */
    }
    .header-container {
        padding: 0 15px;
        height: 65px;
    }
    .header-logo-img {
        height: 44px;
    }
    .nav-menu {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        font-size: 20px;
        cursor: pointer;
    }
    .mobile-search-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .header-actions {
        gap: 10px;
    }
    .header-actions .search-form {
        display: none;
    }
    
    /* Mobil Açılır Arama Çubuğu */
    .mobile-search-dropdown {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        padding: 0 15px;
        z-index: 998;
    }
    .mobile-search-dropdown.active {
        max-height: 80px;
        opacity: 1;
        pointer-events: auto;
        padding: 12px 15px;
    }
    .mobile-search-form {
        display: flex;
        width: 100%;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        overflow: hidden;
        background: #fff;
    }
    .mobile-search-form input {
        flex-grow: 1;
        border: none;
        padding: 10px 14px;
        font-size: 14px;
        font-family: var(--font-body);
        outline: none;
    }
    .mobile-search-form button {
        background: transparent;
        border: none;
        padding: 0 14px;
        font-size: 15px;
        color: var(--text-gray);
        cursor: pointer;
    }

    /* Mobil Sabit Alt Navigasyon Çubuğu */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: #ffffff;
        border-top: 1px solid #e5e5e5;
        z-index: 9990;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.06);
    }
    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #555555;
        font-size: 10px;
        font-weight: 700;
        font-family: var(--font-heading);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px 0;
        flex: 1;
        transition: color 0.2s ease;
    }
    .bottom-nav-item i {
        font-size: 17px;
    }
    .bottom-nav-item.active, .bottom-nav-item:hover {
        color: var(--primary);
    }

    /* Mobilde Etiket Bulutunu Gizle */
    .tags-cloud-section {
        display: none !important;
    }

    /* Mobil Footer Akordeon */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-accordion-header {
        cursor: pointer;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #eee;
        padding-bottom: 12px;
        margin-bottom: 0 !important;
        user-select: none;
    }
    .footer-accordion-header .accordion-icon {
        display: inline-block !important;
        font-size: 12px;
        color: var(--text-gray);
        transition: transform 0.3s ease;
    }
    .footer-accordion-content {
        display: none;
        padding-top: 14px;
    }
    .footer-accordion.active .footer-accordion-content {
        display: block;
    }

    /* Mobilde Ürün Kartlarında Sepete Ekle Butonu Dokunma Erişimi */
    .product-card-overlay {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
        background: transparent !important;
        padding: 8px 0 0 0 !important;
    }
    .product-card-overlay .add-to-cart-btn {
        opacity: 1 !important;
        transform: none !important;
        width: 100% !important;
        border-radius: 0 !important;
        font-size: 11px !important;
        padding: 8px 5px !important;
        background: var(--bg-dark) !important;
        color: #fff !important;
    }

    /* Mobilde Mini-Cart Çakışma ve Alt Navigasyon Boşluğu Düzeltmesi */
    .mini-cart-panel {
        width: 100vw !important;
        max-width: 100vw !important;
    }
    .mini-cart-footer {
        padding: 16px 20px 85px 20px !important; /* Alt navigasyon çubuğu boşluğu */
    }
    .mini-cart-item-name {
        white-space: normal !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .hero-section {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding: 0 !important;
        position: relative !important;
        overflow: hidden !important;
        background: none !important;
        display: block !important;
    }
    .hero-slide-item {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }
    .hero-slide-item.active {
        position: relative !important;
    }
    .hero-bg {
        display: none !important;
    }
    .hero-mobile-img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }
    .hero-slider-controls {
        position: absolute !important;
        bottom: 12px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        z-index: 10 !important;
        display: flex !important;
        gap: 6px !important;
        background: rgba(255, 255, 255, 0.85) !important;
        padding: 6px 14px !important;
        border-radius: 20px !important;
        backdrop-filter: blur(6px) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
    }
    .hero-slider-controls button {
        display: none !important;
    }
    #hero-slide-dots .dot {
        height: 8px !important;
        border-radius: 4px !important;
        transition: width 0.3s ease, background 0.3s ease !important;
    }

    /* Mobilde Slider Dışındaki Diğer Banner'ları Gizle */
    .promo-grid-section,
    .middle-feature-banner {
        display: none !important;
    }

    .hero-content-box {
        padding: 24px 18px;
        text-align: center;
        max-width: 100%;
    }
    .hero-content-box h1 {
        font-size: 26px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .section-container {
        padding: 0 15px;
    }
    .featured-products-section {
        padding: 24px 0 30px 0 !important;
    }
    .carousel-header {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        margin-bottom: 18px !important;
        padding-bottom: 10px !important;
        border-bottom: 1px solid #eeeeee !important;
    }
    .carousel-header h2 {
        font-size: 15px !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: -0.01em !important;
        margin: 0 !important;
        line-height: 1.25 !important;
        flex: 1 !important;
    }
    .view-all-link {
        font-size: 11px !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
        letter-spacing: 0.04em !important;
        color: var(--text-black) !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .products-grid, .products-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .product-image-container {
        height: 240px;
    }
    .middle-feature-banner {
        height: auto;
        min-height: 320px;
        padding: 40px 20px;
    }
    .middle-feature-banner h2 {
        font-size: 26px;
    }
    .features-info-section {
        padding: 24px 12px;
    }
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 10px;
    }
    .feature-item {
        padding: 6px 2px;
    }
    .feature-icon {
        font-size: 22px;
        margin-bottom: 6px;
    }
    .feature-item h3 {
        font-size: 11px;
        margin-bottom: 0;
        line-height: 1.3;
    }
    .feature-item p {
        display: none !important;
    }
    .activity-img-circle {
        width: 140px;
        height: 140px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }
    .header-logo-img {
        height: 38px;
    }
    .hero-content-box h1 {
        font-size: 22px;
    }
    .hero-content-box p {
        font-size: 13px;
        margin-bottom: 18px;
    }
    .promo-info p {
        display: none !important;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .products-grid, .products-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-image-container {
        height: 200px;
    }
    .product-info h3, .catalog-info h3 {
        font-size: 12px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        min-height: 2.7em !important;
        line-height: 1.35 !important;
        margin-bottom: 6px !important;
    }
    .product-info, .catalog-info {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        flex-grow: 1 !important;
    }
    .product-price, .catalog-price-row {
        font-size: 13px !important;
        margin-top: auto !important;
    }
    .promo-img-wrapper {
        height: 240px;
    }
    .promo-info h2 {
        font-size: 20px;
    }
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}

/* --- Mobil Çekmece Menü Stilleri (Lululemon Esintili) --- */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px; /* Başlangıçta ekran dışında gizli */
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background-color: #fff;
    z-index: 10000;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 24px 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.drawer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.1em;
    color: #000;
}

.drawer-logo-link {
    display: flex;
    align-items: center;
}

.drawer-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.drawer-close-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.drawer-close-btn:hover {
    color: var(--primary);
}

/* ── Mobil Çekmece Kullanıcı Kartı & Hızlı İşlemler ── */
.drawer-user-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 18px;
}

.drawer-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.drawer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.drawer-user-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.drawer-user-greeting {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.drawer-user-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-user-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-user-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 34px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.2s ease;
}

.drawer-user-btn:active {
    background: #f1f5f9;
    transform: scale(0.97);
}

.drawer-logout-btn {
    flex: 0 0 34px !important;
    color: #ef4444 !important;
    border-color: #fecaca !important;
}

.drawer-guest-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-guest-text span {
    font-size: 11px;
    color: #64748b;
    display: block;
}

.drawer-guest-text strong {
    font-size: 13px;
    color: #0f172a;
    font-weight: 800;
    font-family: var(--font-heading);
}

.drawer-guest-actions {
    display: flex;
    gap: 8px;
}

.drawer-guest-login-btn,
.drawer-guest-reg-btn {
    flex: 1;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s ease;
}

.drawer-guest-login-btn {
    background: #0f172a;
    color: #ffffff;
}

.drawer-guest-reg-btn {
    background: #ffffff;
    color: #0f172a;
    border: 1.5px solid #e2e8f0;
}

.drawer-guest-login-btn:active,
.drawer-guest-reg-btn:active {
    transform: scale(0.97);
}

/* ── Alt Müşteri Destek & WhatsApp ── */
.drawer-footer-actions {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}

.drawer-support-btn.drawer-wa-btn {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.drawer-support-btn.drawer-wa-btn i {
    color: #22c55e;
    font-size: 15px;
}

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

.drawer-search {
    margin-bottom: 24px;
}

.drawer-nav {
    flex: 1;
    overflow-y: auto;
}

.drawer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-nav ul li a {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.2s ease;
    display: block;
}

.drawer-nav ul li a:hover {
    color: var(--primary);
}

/* ══════════════════════════════════════════════════════
   MINI-CART SLIDE-OUT PANEL
   ══════════════════════════════════════════════════════ */

/* Overlay */
.mini-cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mini-cart-overlay.active {
    display: block;
    opacity: 1;
}

/* Panel */
.mini-cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100vw;
    height: 100dvh;
    background-color: #fff;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mini-cart-panel.active {
    transform: translateX(0);
}

@media (max-width: 480px) {
    .mini-cart-panel { width: 100vw; }
}

/* Header */
.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.mini-cart-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.mini-cart-badge {
    background-color: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mini-cart-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #888;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.mini-cart-close:hover { color: #000; }

/* Body (scrollable list) */
.mini-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-cart-loading {
    text-align: center;
    padding: 40px 0;
    color: #aaa;
    font-size: 24px;
}

.mini-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #bbb;
    text-align: center;
    gap: 16px;
}

.mini-cart-empty i { font-size: 48px; }
.mini-cart-empty p  { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; }

/* Cart Item Row */
.mini-cart-item {
    display: grid;
    grid-template-columns: 70px 1fr 24px;
    gap: 14px;
    align-items: start;
    padding-bottom: 16px;
    border-bottom: 1px solid #f5f5f5;
}

.mini-cart-item-img-wrap { display: block; }

.mini-cart-item-img {
    width: 70px;
    height: 88px;
    object-fit: cover;
    display: block;
}

.mini-cart-img-placeholder {
    width: 70px;
    height: 88px;
    background-color: #f5f5f5;
}

.mini-cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.mini-cart-item-name {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cart-item-name:hover { color: var(--primary); }

.mini-cart-item-size {
    font-size: 11px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
}

.mini-cart-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.mini-cart-item-price {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #000;
}

.mini-cart-item-qty {
    font-size: 12px;
    color: #aaa;
}

.mini-cart-item-remove {
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
    align-self: center;
}

.mini-cart-item-remove:hover { color: #ef4444; }

/* Footer */
.mini-cart-footer {
    border-top: 1px solid #f0f0f0;
    padding: 16px 24px 24px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Shipping progress in mini-cart */
.mini-cart-shipping-bar {
    margin-bottom: 16px;
    padding: 12px 14px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 0;
}

.mini-ship-text {
    font-size: 12px;
    color: #444;
    margin-bottom: 8px;
}

.mini-progress-track {
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    overflow: hidden;
}

.mini-progress-fill {
    height: 100%;
    background-color: #10b981;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.mini-shipping-ok {
    font-size: 12px;
    color: #10b981;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Totals */
.mini-cart-totals {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.mini-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #444;
}

.mini-total-final {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #000;
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: 4px;
}

.mini-discount-row { color: #10b981; font-weight: 600; }

/* Action buttons */
.mini-cart-actions {
    display: flex;
    flex-direction: column;
}

.mini-btn-cart {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #000;
    color: #fff;
    border: none;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: 0.2s;
}

.mini-btn-cart:hover {
    background-color: var(--primary);
    color: #fff;
}

/* ── Cart Count Bounce Animation ── */
@keyframes cartBounce {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.45) translateY(-2px); }
    70%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.cart-count.bounce {
    animation: cartBounce 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ── Mobil Alt Navigasyon Rozet Tasarımı ── */
.mobile-bottom-nav .cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    font-family: var(--font-heading);
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
    box-sizing: border-box;
    line-height: 1;
}

/* ── Skeleton Loading ── */
@keyframes skeleton-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 800px 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
    border: none !important;
    color: transparent !important;
    user-select: none;
    pointer-events: none;
}

/* ── Scroll-to-top Butonu ── */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover { background-color: var(--primary); }

/* ── Input placeholder tutarlılığı ── */
input::placeholder, textarea::placeholder {
    color: #aaa;
    font-family: var(--font-body);
}

/* ── Form input focus tutarlılığı ── */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #000 !important;
}

/* ── Image loading smooth fade-in ── */
img {
    display: block;
}
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease;
}
img.loaded, img:not([loading]) {
    opacity: 1;
}

/* ── Genel scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f4f4f4; }
::-webkit-scrollbar-thumb { background: #ccc; }
::-webkit-scrollbar-thumb:hover { background: #999; }

/* ═══════════════════════════════════════════════
   MOBİL İYİLEŞTİRMELER (320px breakpoint + düzeltmeler)
   ═══════════════════════════════════════════════ */

/* 1. Alt navigasyon z-index düzeltmesi (arama çubuğunun altında kalsın) */
.mobile-bottom-nav {
    z-index: 500 !important;
}

/* 2. Mini sepet mobilde %90 genişlik (tam ekran yerine) */
.mini-cart-panel {
    width: 90vw !important;
    max-width: 420px;
}

/* 3. Ürün görseli aspect-ratio (sabit yükseklik yerine orantılı) */
.product-image-container {
    aspect-ratio: 3 / 4;
    height: auto !important;
    overflow: hidden;
}
.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 4. Checkout/ödeme sayfalarında alt navigasyonu gizle */
body.checkout-page .mobile-bottom-nav,
body.payment-page .mobile-bottom-nav {
    display: none !important;
}
body.checkout-page,
body.payment-page {
    padding-bottom: 0 !important;
}

/* 5. 320px çok küçük ekran breakpoint */
@media (max-width: 360px) {
    .header-container {
        padding: 0 8px;
    }
    .header-logo-img {
        height: 32px;
    }
    .header-actions {
        gap: 6px;
    }
    .header-actions .action-btn {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    .mobile-menu-btn {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }

    /* Ürün ızgarası: 2 sütun çok dar, 1 sütun daha okunur */
    .products-grid, .products-catalog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .product-image-container {
        aspect-ratio: 3 / 4;
    }
    .product-info h3 {
        font-size: 11px;
    }
    .product-price {
        font-size: 12px;
    }
    .product-price .old-price {
        font-size: 10px;
    }

    /* Kategori ızgarası */
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* Hero bölümü */
    .hero-content-box h1 {
        font-size: 18px;
    }
    .hero-content-box p {
        font-size: 12px;
    }

    /* Promo */
    .promo-img-wrapper {
        height: 180px;
    }
    .promo-info h2 {
        font-size: 16px;
    }

    /* Footer */
    .footer-grid {
        gap: 12px;
        padding: 20px 12px;
    }

    /* Sepet sayfası */
    .cart-item-row {
        grid-template-columns: 20px 60px 1fr auto !important;
        gap: 8px !important;
    }
    .cart-item-img {
        width: 60px !important;
        height: 80px !important;
    }
    .cart-item-details h3 {
        font-size: 12px !important;
    }
    .cart-qty-controls {
        transform: scale(0.9);
        transform-origin: left;
    }

    /* Checkout */
    .checkout-page-container {
        padding: 0 10px !important;
    }
    .checkout-card {
        padding: 20px 16px !important;
    }
    .payment-option-card {
        padding: 12px 14px !important;
    }

    /* Ürün detay */
    .product-detail-container {
        padding: 0 12px !important;
    }
    .product-title {
        font-size: 18px !important;
    }

    /* Drawer menü */
    .mobile-drawer {
        width: 85vw !important;
    }
    .drawer-nav ul li a {
        font-size: 13px !important;
        padding: 12px 14px !important;
    }
}

/* ══════════════════════════════════════════════════════
   MOBİL YAKLAŞIM GELİŞTİRMELERİ (MOBILE UX ENHANCEMENTS)
   ══════════════════════════════════════════════════════ */

/* 1. Sticky Add to Cart Bar (Ürün Detay Sayfası) */
.mobile-sticky-buy-bar {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 16px;
    box-sizing: border-box;
    z-index: 9980;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(140%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sticky-buy-bar.visible {
    transform: translateY(0);
}

.sticky-buy-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 55%;
}

.sticky-buy-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-buy-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-buy-price {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
}

.sticky-buy-size {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.sticky-buy-action {
    flex-grow: 1;
    max-width: 45%;
}

.sticky-add-cart-btn {
    width: 100%;
    height: 44px;
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

.sticky-add-cart-btn:active {
    transform: scale(0.96);
    background: #000;
}

.sticky-add-cart-btn.disabled {
    background: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

@media (min-width: 769px) {
    .mobile-sticky-buy-bar {
        display: none !important;
    }
}

/* 2. Scroll Top & Canlı Destek Mobilde Konum Çakışma Düzeltmesi */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 72px !important;
        left: 12px !important;
        right: auto !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        font-size: 13px !important;
        background: rgba(0, 0, 0, 0.7) !important;
        backdrop-filter: blur(4px) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
        z-index: 800 !important;
    }
    .bya-chat-widget-btn {
        bottom: 72px !important;
        right: 15px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
    }
}

/* 3. Mobil Bottom Sheet (Filtreleme & Sıralama Modalı) */
.mobile-bottom-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10010;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 80vh;
    background: #ffffff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.15);
    z-index: 10020;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-bottom-sheet.active {
    transform: translateY(0);
}

.bottom-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.bottom-sheet-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.bottom-sheet-close {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
}

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

.sheet-option-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sheet-option-item a, .sheet-option-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    background: #f8fafc;
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.sheet-option-item.active a, .sheet-option-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* 4. Mobil Mağaza Toolbar Dokunmatik Butonlar */
.mobile-catalog-actions {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 0 18px 0;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: #0f172a;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

.mobile-action-btn i {
    font-size: 14px;
    color: #0f172a;
}

.mobile-action-btn:active {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: scale(0.97);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .mobile-catalog-actions {
        display: grid;
    }
}

/* ── Mobil Giriş & Kayıt Formları Ergonomisi ── */
@media (max-width: 768px) {
    .auth-container {
        margin: 25px auto 50px auto !important;
        padding: 24px 18px !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
        max-width: calc(100% - 30px) !important;
    }
    .auth-title {
        font-size: 22px !important;
        margin-bottom: 22px !important;
    }
    .form-control {
        height: 48px !important;
        font-size: 15px !important;
        border-radius: 8px !important;
        padding: 0 16px !important;
    }
    .btn-auth-submit {
        height: 50px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Mobil Form & Klavye Odaklanma İyileştirmesi */
    .checkout-wrapper,
    .cart-container,
    .auth-container,
    .contact-container {
        padding-bottom: 60px !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea,
    .form-control {
        -webkit-appearance: none;
        font-size: 16px !important;
        transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus,
    .form-control:focus {
        border-color: #0f172a !important;
        box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08) !important;
        outline: none !important;
    }

    .btn-pay-now {
        height: 52px !important;
        border-radius: 30px !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        letter-spacing: 0.04em !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    .btn-pay-now:active {
        transform: scale(0.98) !important;
    }

    /* Mobil Canlı Arama Sonuç Paneli (Sadece Mobil Açılır Arama İçinde) */
    .mobile-search-dropdown .live-search-dropdown-results {
        display: none;
        position: static;
        width: 100%;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        margin-top: 8px;
        max-height: 320px;
        overflow-y: auto;
        box-sizing: border-box;
    }
    .mobile-search-dropdown .live-search-dropdown-results.active {
        display: block;
    }
    .live-search-header {
        padding: 8px 12px;
        font-size: 11px;
        font-weight: 700;
        color: #64748b;
        border-bottom: 1px solid #f1f5f9;
        text-transform: uppercase;
    }
    .live-search-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        border-bottom: 1px solid #f8fafc;
        text-decoration: none;
        color: inherit;
    }
    .live-search-item:last-child {
        border-bottom: none;
    }
    .live-search-thumb {
        width: 40px;
        height: 40px;
        border-radius: 4px;
        object-fit: cover;
        background: #f1f5f9;
        flex-shrink: 0;
    }
    .live-search-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
        overflow: hidden;
    }
    .live-search-name {
        font-family: var(--font-heading);
        font-size: 12.5px;
        font-weight: 700;
        color: #0f172a;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .live-search-price-row {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 11.5px;
    }
    .live-search-price {
        font-weight: 800;
        color: var(--primary);
    }
    .live-search-old-price {
        font-size: 10.5px;
        color: #94a3b8;
        text-decoration: line-through;
    }
    .live-search-footer {
        padding: 8px 12px;
        background: #f8fafc;
        border-top: 1px solid #f1f5f9;
        text-align: center;
    }
    .live-search-view-all {
        font-family: var(--font-heading);
        font-size: 11.5px;
        font-weight: 800;
        color: #0f172a;
        text-decoration: none;
        display: block;
    }
    .live-search-empty,
    .live-search-spinner {
        padding: 16px;
        text-align: center;
        color: #64748b;
        font-size: 12px;
    }
}
