/**
 * ============================================================================
 * MEDYA WEB
 * ============================================================================
 */

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #6366f1;
    --accent: #8b5cf6;
    --success: #10b981;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #475569;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --gray-50: #fafafa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--gray-100);
    color: var(--gray-900);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--gray-900);
    transform: translateY(-1px);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-gradient:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: #333333;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

/* HERO */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-location {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-rating .stars {
    display: flex;
    gap: 4px;
}

.hero-rating span {
    font-size: 16px;
    color: var(--gray-400);
}

.hero-description {
    font-size: 19px;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BREADCRUMBS */
.breadcrumbs-section {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    flex-wrap: wrap;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 8px;
    color: var(--gray-400);
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs span {
    color: var(--dark);
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

/* MAIN */
.main-content {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
}

//* --- Genel Slider Ayarları --- */
.product-slider-section {
    margin-bottom: 80px;
    padding: 0 15px;
}

.product-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    background: #fff; /* Slider genel arka planı */
}

.slider-container {
    position: relative;
    width: 100%;
    /* Masaüstü yüksekliği - Görselin rahat sığması için */
    height: 500px; 
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
    z-index: 0;
    
    /* FLEXBOX DÜZENİ: Yan yana dizilim */
    display: flex;
    flex-direction: row;
    background: #fff;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* --- Resim Alanı (Sağ Taraf) --- */
.slider-image-wrapper {
    position: relative;
    width: 60%; /* Genişliğin %60'ı resme ait */
    height: 100%;
    background: #f8f9fa; /* Resim dolmazsa arkada görünecek renk */
    overflow: hidden;
}

.slider-item img {
    width: 100%;
    height: 100%;
    /* COVER yerine CONTAIN kullanıyoruz ki resmin HİÇBİR YERİ KESİLMESİN */
    object-fit: contain; 
    object-position: center;
    transition: transform 0.8s ease;
}

.slider-item.active img {
    transform: scale(1.02); /* Çok hafif bir zoom, canlılık katar */
}

/* --- Yazı Alanı (Sol Taraf) --- */
.slider-content-wrapper {
    position: relative;
    width: 40%; /* Genişliğin %40'ı yazıya ait */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikey ortalama */
    padding: 50px;
    background: #1a1a2e; /* Koyu modern bir arka plan */
    color: #fff;
    z-index: 2;
}

.slider-caption-card {
    /* Artık karta gerek yok, wrapper zaten kart görevi görüyor */
    position: relative;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.slider-item.active .slider-caption-card {
    transform: translateX(0);
    opacity: 1;
}

/* --- İçerik Tipografisi --- */
.slider-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    color: #4facfe; /* Mavi ton */
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.product-title {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 15px 0;
    font-weight: 700;
    color: #fff;
}

.product-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.price-action-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.slider-price {
    font-size: 32px;
    color: #2ecc71;
    font-weight: 700;
    margin: 0;
}

.btn-gradient {
    padding: 14px 35px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(79, 172, 254, 0.4);
}

/* --- Navigasyon (Oklar) --- */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #1a1a2e;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.slider-prev:hover, .slider-next:hover {
    background: #4facfe;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* --- Noktalar --- */
.slider-dots {
    position: absolute;
    bottom: 20px;
    /* Noktaları yazı alanının ortasına hizalayalım */
    left: 20%; 
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #4facfe;
    width: 25px;
    border-radius: 10px;
}

/* =========================================
   MOBİL İÇİN ÖZEL AYARLAR (RESPONSIVE)
   ========================================= */
@media (max-width: 991px) {
    .slider-container {
        height: auto; /* Mobilde yükseklik içeriğe göre uzasın */
        min-height: 550px; 
    }

    .slider-item {
        flex-direction: column; /* Alt alta dizilim */
        position: relative; 
        display: none; 
    }

    .slider-item.active {
        display: flex; 
    }

    /* Resim Üste - YÜKSEKLİK ARTIRILDI */
    .slider-image-wrapper {
        width: 100%;
        height: 380px; /* 250px'den 380px'e çıkardık, resim çok daha büyük olacak */
        order: 1; 
        background: #fff;
    }
    
    .slider-item img {
        object-fit: contain; 
        padding: 5px; /* Kenar boşluğunu azalttım */
    }

    /* Yazı Alta - KOMPAKT HALE GETİRİLDİ */
    .slider-content-wrapper {
        width: 100%;
        height: auto;
        order: 2; 
        /* Padding üstten ve alttan kısıldı: 20px */
        padding: 20px 15px 50px 15px; 
        text-align: center; 
    }

    .slider-caption-card {
        transform: translateY(10px);
        margin: 0;
    }
    
    .slider-item.active .slider-caption-card {
        transform: translateY(0);
    }
    
    .slider-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 10px;
    }

    .product-title {
        font-size: 22px; /* Başlık biraz küçültüldü */
        margin-bottom: 5px;
    }
    
    /* Fiyat ve buton bloğu */
    .price-action-row {
        justify-content: center; 
        flex-direction: row; /* Mobilde yan yana sığdırabiliriz artık */
        gap: 15px;
        margin-top: 10px;
        padding-top: 15px;
        flex-wrap: wrap;
    }

    .slider-price {
        font-size: 24px; /* Fiyat biraz küçültüldü */
    }
    
    .btn-gradient {
        padding: 10px 25px; /* Buton küçültüldü */
        font-size: 14px;
    }

    .slider-dots {
        left: 50%; 
        bottom: 15px;
    }
    
    /* Okları mobilde resmin ortasına hizalayalım */
    .slider-prev, .slider-next {
        top: 380px; /* Resim yüksekliği kadar yukarıdan başlat (380px resim bitimi) */
        margin-top: -190px; /* Yüksekliğin yarısı kadar geri çek = Resmin tam ortası */
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.9);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
}

/* CATEGORIES */
.categories-section {
    margin-bottom: 100px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.category-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-icon svg {
    color: var(--primary);
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.category-arrow {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.category-card:hover .category-arrow {
    background: var(--primary);
}

.category-card:hover .category-arrow svg {
    color: var(--white);
}

/* PRODUCTS */
.products-section {
    margin-bottom: 100px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.product-badge {
    
    top: 16px;
    left: 16px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.product-body {
    padding: 28px;
}

.product-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-body h3 a {
    color: var(--dark);
}

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

.product-body p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.product-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--gray-100);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.product-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* PRODUCT DETAIL - FIXED STICKY SIDEBAR */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

.product-detail-main {
    width: 100%;
    min-height: 100vh;
}

.product-gallery {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.gallery-main {
    width: 100%;
    border-radius: var(--radius);
}

/* PRODUCT INFO TABLE */
.product-info-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    margin-top: 32px;
}

.product-info-table h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
    color: var(--dark);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 16px 0;
    font-size: 15px;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--gray-700);
    width: 180px;
}

.info-table td:last-child {
    color: var(--gray-900);
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.info-badge svg {
    width: 14px;
    height: 14px;
}

/* DYNAMIC CONTENT - INTERNAL LINKS */
.dynamic-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
    margin-top: 32px;
}

.seo-article h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark);
}

.seo-article h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
    color: var(--dark);
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.seo-article strong {
    color: var(--dark);
    font-weight: 600;
}

/* INTERNAL LINKS */
.internal-link {
    color: var(--primary);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

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

/* REVIEWS */
.reviews-section,
.home-reviews-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
    margin-top: 32px;
}

.home-reviews-section {
    margin-top: 0;
    margin-bottom: 100px;
}

.reviews-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--dark);
}

.reviews-summary {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    text-align: center;
}

.summary-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.score-big {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary);
}

.score-stars {
    display: flex;
    gap: 4px;
}

.score-count {
    font-size: 16px;
    color: var(--gray-600);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
}

.review-date {
    font-size: 13px;
    color: var(--gray-500);
}

.review-rating {
    display: flex;
    gap: 4px;
}

.review-comment {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* SIDEBAR - FIXED STICKY */
.product-sidebar {
    position: relative;
}

.sidebar-sticky-wrapper {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-sticky-wrapper::-webkit-scrollbar {
    width: 6px;
}

.sidebar-sticky-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-sticky-wrapper::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 10px;
}

.sidebar-sticky-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

.buy-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    margin-bottom: 24px;
}

.price-section {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-note {
    font-size: 13px;
    color: var(--success);
    margin-top: 8px;
}

.features-list {
    margin-bottom: 28px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
}

.features-list svg {
    color: var(--success);
    flex-shrink: 0;
}

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-600);
}

.security-badges svg {
    color: var(--success);
}

/* PRODUCT DETAIL ACTIONS */
.product-detail-actions {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 20px;
}

.product-detail-actions .btn {
    margin-bottom: 12px;
}

.product-detail-actions .btn:last-child {
    margin-bottom: 0;
}

/* LOCATION WIDGET */
.location-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.location-widget h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
    color: var(--dark);
}

.location-back {
    margin-bottom: 16px;
}

.location-back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.location-back a:hover {
    text-decoration: underline;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.location-grid::-webkit-scrollbar {
    width: 6px;
}

.location-grid::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

.location-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.location-grid a {
    font-size: 14px;
    color: var(--gray-700);
    padding: 8px 12px;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.location-grid a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.location-info {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

.location-info p {
    margin-bottom: 16px;
    font-size: 15px;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.6;
}

.footer h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

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

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky-wrapper {
        position: static;
        max-height: none;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 32px;
        transition: left 0.3s ease;
        gap: 24px;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-location {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .categories-grid,
    .products-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .slider-container {
        height: 400px;
    }

    .slider-caption {
        padding: 40px 20px 20px;
    }

    .slider-caption h3 {
        font-size: 11px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .dynamic-content {
        padding: 32px 20px;
    }

    .seo-article h1 {
        font-size: 28px;
    }

    .seo-article h2 {
        font-size: 22px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .info-table td:first-child {
        width: 140px;
        font-size: 14px;
    }
    
    .info-table td:last-child {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .price-amount {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .info-table td {
        display: block;
        width: 100%;
    }
    
    .info-table td:first-child {
        padding-bottom: 8px;
        width: 100%;
    }
    
    .info-table td:last-child {
        padding-top: 0;
    }
}