/* 
   Liosson.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;
    --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;
    outline: none;
}

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;
}

/* --- 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: 80px; /* Daha yüksek ve ferah header */
}

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

.header-logo-img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    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);
    border-color: var(--text-black);
}

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

/* Menüler */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 36px;
}

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

.nav-menu 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 a:hover {
    color: var(--primary);
}

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

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

/* 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;
}

.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-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: 2fr 1fr 1fr 2fr;
    gap: 50px;
    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: 42px;
    width: 42px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    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.08);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(211, 19, 39, 0.2);
}

.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: 4px 12px;
    border-radius: 0px; /* Keskin */
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-section {
        padding: 24px;
        align-items: center;
        justify-content: center;
        height: 70vh;
    }
    .hero-content-box {
        padding: 32px 24px;
        text-align: center;
    }
    .hero-content-box h1 {
        font-size: 30px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .product-image-container {
        height: 340px;
    }
    .middle-feature-banner h2 {
        font-size: 32px;
    }
    .activity-img-circle {
        width: 150px;
        height: 150px;
    }
}

/* --- 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;
    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: 30px 24px;
    box-sizing: border-box;
}

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

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

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

.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);
}

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

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

.drawer-nav ul li a {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    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);
}
