/* ==========================================
   ShopMyFun.com - Modern E-Commerce Design
   Inspired by Shoply.com
   ========================================== */

/* CSS Variables */
:root {
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --primary-light: #A29BFE;
    --primary-ultra-light: #F0EDFF;
    --secondary: #00CEC9;
    --accent: #FD79A8;
    --accent-light: #FFE0EE;
    --dark: #1A1A2E;
    --dark-soft: #4A4A68;
    --gray: #8E8EA0;
    --gray-light: #E8E8EF;
    --gray-lighter: #F7F7FB;
    --white: #FFFFFF;
    --success: #00B894;
    --success-light: #E6FFF5;
    --warning: #FDCB6E;
    --danger: #E17055;
    --danger-light: #FFEBE6;
    --info: #74B9FF;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-xs: 0 1px 2px rgba(26,26,46,0.04);
    --shadow-sm: 0 2px 8px rgba(26,26,46,0.06);
    --shadow-md: 0 4px 16px rgba(26,26,46,0.08);
    --shadow-lg: 0 8px 32px rgba(26,26,46,0.1);
    --shadow-xl: 0 16px 48px rgba(26,26,46,0.14);
    --shadow-primary: 0 8px 24px rgba(108,92,231,0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --max-width: 1320px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.header.scrolled {
    border-bottom-color: var(--gray-light);
    box-shadow: 0 1px 12px rgba(26,26,46,0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    gap: 12px;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.logo i { font-size: 1.3rem; }
.logo span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-soft);
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--radius-full);
}
.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-ultra-light);
}

.search-wrapper {
    position: relative;
    flex: 0 1 420px;
}
.search-wrapper input {
    width: 100%;
    padding: 10px 16px 10px 44px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    background: var(--gray-lighter);
    transition: var(--transition);
    outline: none;
}
.search-wrapper input:focus {
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.08);
}
.search-wrapper .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.9rem;
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-light);
    max-height: 420px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}
.search-group { padding: 12px 0; }
.search-group h4 { padding: 4px 16px 8px; font-size: 0.7rem; text-transform: uppercase; color: var(--gray); letter-spacing: 1.5px; font-weight: 600; }
.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    transition: var(--transition-fast);
}
.search-item:hover { background: var(--gray-lighter); }
.search-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 10px; background: var(--gray-lighter); }
.search-item-name { display: block; font-weight: 600; font-size: 0.9rem; }
.search-item-brand { display: block; font-size: 0.8rem; color: var(--gray); }
.search-item-price { display: block; font-size: 0.85rem; color: var(--primary); font-weight: 700; }
.search-empty { padding: 32px; text-align: center; color: var(--gray); font-size: 0.9rem; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--dark-soft);
    transition: var(--transition);
    font-size: 1.05rem;
}
.cart-btn:hover { background: var(--primary-ultra-light); color: var(--primary); }
.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.65rem;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid white;
}

/* User Menu */
.user-menu { position: relative; }
.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}
.user-menu-btn:hover { background: var(--gray-lighter); }
.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-light);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    padding: 8px;
}
.user-dropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }
.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    border-radius: 8px;
}
.user-dropdown a:hover { background: var(--gray-lighter); color: var(--primary); }
.user-dropdown hr { margin: 4px 0; border: none; border-top: 1px solid var(--gray-light); }
.admin-link { color: var(--primary) !important; font-weight: 600; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 28px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 28px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    background: transparent;
}
.btn-outline:hover { background: var(--primary); color: white; }

.btn-ghost {
    padding: 10px 24px;
    color: var(--dark-soft);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-ghost:hover { background: var(--gray-lighter); color: var(--primary); }

.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-sm { padding: 7px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-icon { padding: 10px 14px; }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    padding: 100px 24px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 85vh;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108,92,231,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253,121,168,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero Video Background */
.hero-video-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-height: 92vh;
    padding: 0;
    overflow: hidden;
}
.hero-video-section::before,
.hero-video-section::after { display: none; }

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}

.hero-content-video {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}
.hero-content-video h1 { color: #fff; }
.hero-content-video .gradient-text {
    background: linear-gradient(135deg, #FFD700, #FF6B6B, #00CEC9);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}
.hero-content-video p { color: rgba(255,255,255,0.9); margin: 0 auto 32px; }
.hero-content-video .hero-buttons { justify-content: center; }

.btn-outline-light {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}
.hero-badge i { color: var(--warning); font-size: 1rem; }

.hero-content { position: relative; z-index: 1; }
.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--dark);
}
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--dark-soft);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-cards {
    position: relative;
    width: 400px;
    height: 400px;
}
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 18px 28px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(232,232,239,0.8);
}
.floating-card i { font-size: 1.5rem; }
.card-1 { top: 10px; left: -10px; animation: floatA 7s ease-in-out infinite; }
.card-1 i { color: var(--accent); }
.card-2 { top: 45%; right: -20px; animation: floatB 7s ease-in-out infinite; }
.card-2 i { color: var(--secondary); }
.card-3 { bottom: 10px; left: 20px; animation: floatC 7s ease-in-out infinite; }
.card-3 i { color: var(--success); }

@keyframes floatA {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(8px, -18px) rotate(2deg); }
    66% { transform: translate(-5px, -8px) rotate(-1deg); }
}
@keyframes floatB {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    33% { transform: translateY(calc(-50% - 12px)) rotate(-2deg); }
    66% { transform: translateY(calc(-50% + 8px)) rotate(1deg); }
}
@keyframes floatC {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-10px, -15px) rotate(-2deg); }
    66% { transform: translate(6px, -5px) rotate(1deg); }
}

/* ==========================================
   FEATURED CAROUSEL
   ========================================== */
.featured-carousel {
    overflow: hidden;
    padding: 24px 0;
    background: linear-gradient(180deg, var(--gray-lighter) 0%, var(--white) 100%);
    position: relative;
}
.featured-carousel::before,
.featured-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.featured-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--gray-lighter) 0%, transparent 100%);
}
.featured-carousel::after {
    right: 0;
    background: linear-gradient(-90deg, var(--white) 0%, transparent 100%);
}
.carousel-track {
    display: flex;
    gap: 16px;
    animation: scroll 50s linear infinite;
    width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-item {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    background: var(--gray-lighter);
}
.carousel-item:hover {
    transform: scale(1.06);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.carousel-item img { width: 100%; height: 100%; object-fit: cover; }

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

/* ==========================================
   SECTIONS
   ========================================== */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-lighter); }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}
.section-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark);
}
.view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--radius-full);
}
.view-all:hover { gap: 10px; background: var(--primary-ultra-light); }

.page-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    color: var(--dark);
}
.page-subtitle { color: var(--dark-soft); margin-top: -20px; margin-bottom: 32px; }

/* ==========================================
   CATEGORY CARDS
   ========================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}
.category-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.category-card:hover::before { opacity: 1; }

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}
.category-card:hover .category-icon { transform: scale(1.1); }
.category-card span { font-weight: 600; font-size: 0.9rem; color: var(--dark); }

/* ==========================================
   PRODUCT CARDS
   ========================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    cursor: pointer;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-lighter);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image img { transform: scale(1.08); }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    z-index: 1;
}
.product-badge.sale { background: var(--danger); color: white; }
.product-badge.new { background: var(--success); color: white; }

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-4px);
    transition: var(--transition);
    font-size: 1rem;
    color: var(--dark-soft);
    box-shadow: var(--shadow-sm);
    z-index: 1;
}
.product-card:hover .wishlist-btn { opacity: 1; transform: translateY(0); }
.wishlist-btn:hover { background: var(--accent); color: white; transform: scale(1.12) !important; }

.product-info { padding: 16px 18px 18px; }
.product-brand {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    font-weight: 600;
}
.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    color: var(--dark);
}
.product-price { display: flex; align-items: center; gap: 8px; }
.price-current, .price-sale { font-weight: 700; font-size: 1.1rem; color: var(--dark); }
.price-sale { color: var(--danger); }
.price-original { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; }

/* ==========================================
   MERCHANT CARDS
   ========================================== */
.merchants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.merchant-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 20px 28px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.merchant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-ultra-light), var(--accent-light));
    opacity: 0.5;
    transition: var(--transition);
}
.merchant-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--primary-light);
}
.merchant-card:hover::before { opacity: 1; }
.merchant-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    background: var(--white);
}
.merchant-logo img { width: 100%; height: 100%; object-fit: cover; }
.merchant-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}
.merchant-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; position: relative; z-index: 1; }
.merchant-products { font-size: 0.8rem; color: var(--gray); margin-bottom: 14px; position: relative; z-index: 1; }
.merchant-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--primary-ultra-light);
    transition: var(--transition);
}
.merchant-card:hover .merchant-link { background: var(--primary); color: white; }

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #7C4DFF 50%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}
.cta-content h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.cta-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-content .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-content .btn-primary:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

/* ==========================================
   PRODUCT DETAIL
   ========================================== */
.product-detail { padding-top: 100px; }
.breadcrumb {
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--gray);
}
.breadcrumb a { color: var(--dark-soft); transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary); }

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 24px 0 56px;
}

.product-gallery { position: sticky; top: 100px; }
.main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-lighter);
    aspect-ratio: 1;
    border: 1px solid var(--gray-light);
}
.main-image img { width: 100%; height: 100%; object-fit: cover; }
.thumbnail-strip { display: flex; gap: 10px; margin-top: 14px; }
.thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.5;
}
.thumb.active, .thumb:hover { border-color: var(--primary); opacity: 1; }

.product-detail-info { padding-top: 8px; }
.detail-brand {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    padding: 4px 12px;
    background: var(--primary-ultra-light);
    border-radius: var(--radius-full);
}
.product-detail-info h1 {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--warning);
    font-size: 1rem;
}
.product-rating span { color: var(--gray); font-size: 0.85rem; }

.detail-price { margin-bottom: 24px; display: flex; align-items: baseline; gap: 12px; }
.price-sale-lg { font-size: 2.2rem; font-weight: 800; color: var(--danger); }
.price-original-lg { font-size: 1.2rem; color: var(--gray); text-decoration: line-through; }
.price-current-lg { font-size: 2.2rem; font-weight: 800; color: var(--dark); }

.product-short-desc { color: var(--dark-soft); margin-bottom: 28px; line-height: 1.8; font-size: 0.95rem; }

.product-variants { margin-bottom: 28px; }
.variant-group { margin-bottom: 18px; }
.variant-group label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; color: var(--dark); }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn {
    padding: 8px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    background: var(--white);
}
.variant-btn:hover { border-color: var(--primary-light); background: var(--primary-ultra-light); }
.variant-btn.selected { border-color: var(--primary); background: var(--primary); color: white; }

.product-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 32px;
}
.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--white);
}
.quantity-selector button {
    padding: 11px 18px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition-fast);
    color: var(--dark-soft);
}
.quantity-selector button:hover { background: var(--gray-lighter); color: var(--primary); }
.quantity-selector input {
    width: 48px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    outline: none;
    color: var(--dark);
}
.quantity-selector.sm button { padding: 6px 12px; font-size: 0.9rem; }
.quantity-selector.sm span { padding: 0 8px; font-weight: 700; }

.btn-cart { flex: 1; font-size: 0.95rem; }

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    background: var(--gray-lighter);
    border-radius: 16px;
    border: 1px solid var(--gray-light);
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--dark-soft);
    font-weight: 500;
}
.meta-item i { color: var(--success); width: 20px; text-align: center; font-size: 1rem; }

.product-description, .product-reviews, .related-products {
    padding: 48px 0;
    border-top: 1px solid var(--gray-light);
    margin-top: 32px;
}
.product-description h2, .product-reviews h2, .related-products h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.review-card {
    padding: 24px;
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    margin-bottom: 14px;
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-sm); }
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.review-stars { color: var(--warning); font-size: 0.9rem; }

/* ==========================================
   CART
   ========================================== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 36px;
    align-items: start;
}
.cart-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    margin-bottom: 14px;
    align-items: center;
    transition: var(--transition);
}
.cart-item:hover { box-shadow: var(--shadow-sm); }
.cart-item img { width: 88px; height: 88px; border-radius: 12px; object-fit: cover; background: var(--gray-lighter); }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.cart-brand { font-size: 0.8rem; color: var(--gray); }
.cart-variant { font-size: 0.8rem; color: var(--dark-soft); display: block; }
.cart-item-price { font-weight: 700; color: var(--primary); margin-top: 6px; }
.cart-item-actions { display: flex; align-items: center; gap: 18px; }
.cart-line-total { font-weight: 700; font-size: 1.05rem; min-width: 80px; text-align: right; color: var(--dark); }
.btn-remove { color: var(--gray); transition: var(--transition); padding: 8px; border-radius: 8px; }
.btn-remove:hover { color: var(--danger); background: var(--danger-light); }

.cart-summary {
    padding: 28px;
    background: var(--gray-lighter);
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
    border: 1px solid var(--gray-light);
}
.cart-summary h3 { font-size: 1.15rem; margin-bottom: 24px; font-weight: 700; }
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--dark-soft);
}
.summary-row.total { font-weight: 800; font-size: 1.25rem; color: var(--dark); }
.cart-summary hr { margin: 14px 0; border: none; border-top: 1px solid var(--gray-light); }
.free-shipping { color: var(--success); font-weight: 700; }
.free-shipping-note { font-size: 0.85rem; color: var(--success); text-align: center; margin: 14px 0; font-weight: 500; }
.cart-summary .btn-primary { margin-top: 18px; }

/* ==========================================
   ORDERS
   ========================================== */
.orders-list { display: flex; flex-direction: column; gap: 16px; }
.order-card {
    padding: 24px;
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    transition: var(--transition);
}
.order-card:hover { box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.order-number { font-weight: 700; font-size: 0.95rem; }
.order-date { color: var(--gray); font-size: 0.85rem; margin-left: 12px; }
.status-badge {
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
}
.status-success { background: var(--success-light); color: var(--success); }
.status-warning { background: #FFF8E1; color: #E67E22; }
.status-info { background: #E3F2FD; color: #2196F3; }
.status-primary { background: var(--primary-ultra-light); color: var(--primary); }
.status-danger { background: var(--danger-light); color: var(--danger); }
.status-muted { background: var(--gray-lighter); color: var(--gray); }

.order-items-preview { display: flex; gap: 8px; margin-bottom: 14px; }
.order-item-thumb { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; border: 1px solid var(--gray-light); }
.more-items { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 10px; background: var(--gray-lighter); font-size: 0.85rem; font-weight: 700; color: var(--gray); }
.order-footer { display: flex; justify-content: space-between; align-items: center; }
.order-total { font-weight: 800; font-size: 1.1rem; }

/* ==========================================
   BRAND HEADER
   ========================================== */
.brand-header-section {
    padding: 120px 24px 60px;
    background: linear-gradient(135deg, var(--primary), #7C4DFF, var(--accent));
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.brand-header-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108,92,231,0.88), rgba(124,77,255,0.85));
}
.brand-header-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand-logo-lg { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,255,255,0.3); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.brand-logo-lg img { width: 100%; height: 100%; object-fit: cover; }
.brand-initial-lg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
}
.brand-header-content h1 { font-size: 2.2rem; font-weight: 800; }
.brand-header-content p { opacity: 0.9; margin-top: 6px; font-size: 1.05rem; }

/* ==========================================
   EMPTY STATES
   ========================================== */
.empty-state {
    text-align: center;
    padding: 120px 20px;
}
.empty-state i { font-size: 4rem; color: var(--gray-light); margin-bottom: 24px; display: block; }
.empty-state h2 { font-size: 1.5rem; margin-bottom: 12px; font-weight: 700; }
.empty-state p { color: var(--gray); margin-bottom: 28px; }

/* ==========================================
   AUTH MODAL
   ========================================== */
.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(26,26,46,0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.auth-modal.show { display: flex; }
.auth-modal-inner {
    background: white;
    border-radius: var(--radius-xl);
    padding: 44px;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.96) translateY(16px); } }

.auth-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gray);
    transition: var(--transition);
}
.auth-close:hover { background: var(--gray-lighter); color: var(--dark); }

.auth-form h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.auth-subtitle { color: var(--gray); margin-bottom: 28px; }
.auth-error { background: var(--danger-light); color: var(--danger); padding: 12px 18px; border-radius: 10px; font-size: 0.9rem; margin-bottom: 18px; font-weight: 500; }
.auth-switch { text-align: center; margin-top: 24px; color: var(--gray); font-size: 0.9rem; }
.auth-switch a { color: var(--primary); font-weight: 700; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    background: var(--white);
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108,92,231,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ==========================================
   TOAST
   ========================================== */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 14px;
    background: var(--dark);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    animation: toastIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
}
.toast button { color: rgba(255,255,255,0.6); font-size: 1.2rem; margin-left: auto; }
.toast button:hover { color: white; }
.toast-success { background: var(--success); }
.toast-error { background: var(--danger); }
.toast-info { background: var(--info); }
@keyframes toastIn { from { transform: translateX(120px); opacity: 0; } }

/* ==========================================
   LOADING
   ========================================== */
.loading-spinner {
    display: flex;
    justify-content: center;
    padding: 48px;
}
.loading-spinner::after {
    content: '';
    width: 38px;
    height: 38px;
    border: 3px solid var(--gray-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.load-more { display: flex; justify-content: center; padding: 36px 0; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 72px 0 28px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), var(--accent), transparent);
    opacity: 0.4;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand .logo i { color: var(--primary-light); }
.footer-brand .logo span { -webkit-text-fill-color: white; }
.footer-brand p { font-size: 0.9rem; opacity: 0.6; max-width: 300px; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }

.footer-section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}
.footer-section a {
    display: block;
    padding: 5px 0;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: var(--transition);
}
.footer-section a:hover { opacity: 1; color: var(--primary-light); transform: translateX(4px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.4;
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    z-index: 999;
}
.mobile-menu.show { display: block; animation: slideDown 0.25s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } }
.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-lighter);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding-top: 100px; min-height: auto; gap: 40px; }
    .hero-visual { display: none; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content { text-align: center; }
    .hero-content p { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-video-section { min-height: 80vh; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 36px; }
    .product-gallery { position: static; }
    .cart-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    /* Nav - mobilde taşmayı engelle */
    .nav { padding: 0 12px; gap: 8px; height: 60px; }
    .nav-links { display: none; }
    .search-wrapper { display: none; }
    .mobile-menu-toggle { display: flex; }
    .logo { font-size: 1.2rem; gap: 6px; }
    .logo i { font-size: 1.1rem; }
    #authLinks { display: flex; gap: 4px; }
    #authLinks .btn-primary, #authLinks .btn-ghost { padding: 6px 10px; font-size: 0.75rem; white-space: nowrap; }
    .nav-actions { gap: 6px; }
    .cart-btn { width: 36px; height: 36px; font-size: 0.95rem; }
    .user-menu-btn { padding: 4px 8px 4px 4px; gap: 4px; font-size: 0.8rem; }
    .user-menu-btn #userName { display: none; }
    .user-avatar { width: 30px; height: 30px; font-size: 0.65rem; }
    
    /* Hero video - mobil */
    .hero-video-section { min-height: 75vh; }
    .hero-content-video h1 { font-size: 2rem; letter-spacing: -1px; }
    .hero-content-video p { font-size: 0.95rem; }
    .hero-badges { gap: 8px; }
    .hero-badge { padding: 7px 14px; font-size: 0.75rem; }
    .hero-badge i { font-size: 0.85rem; }
    
    .hero-content h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .hero { padding: 90px 16px 50px; }
    
    .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .category-card { padding: 18px 10px; gap: 10px; }
    .category-icon { width: 48px; height: 48px; font-size: 1.2rem; border-radius: 14px; }
    .category-card span { font-size: 0.78rem; }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-info { padding: 12px 14px 16px; }
    .product-name { font-size: 0.85rem; }
    .price-current, .price-sale { font-size: 0.95rem; }
    
    .merchants-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .merchant-card { padding: 24px 14px 20px; }
    
    .section { padding: 48px 0; }
    .section-header h2 { font-size: 1.35rem; }
    .section-header { margin-bottom: 24px; }
    
    .cart-item { flex-wrap: wrap; }
    .cart-item-actions { width: 100%; justify-content: space-between; margin-top: 10px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .auth-modal-inner { margin: 16px; padding: 28px; border-radius: var(--radius-lg); }
    
    .carousel-item { width: 140px; height: 140px; }
    
    .cta-content h2 { font-size: 1.8rem; }
    .cta-section { padding: 56px 0; }
    
    .brand-header-section { padding: 90px 16px 48px; }
    .brand-header-content { flex-direction: column; text-align: center; gap: 16px; }
    .brand-header-content h1 { font-size: 1.6rem; }

    /* Mobile menu */
    .mobile-menu { top: 60px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.85rem; }
    .hero-content-video h1 { font-size: 1.7rem; }
    .hero-content-video p { font-size: 0.88rem; }
    .hero-badges { flex-direction: column; align-items: center; gap: 6px; }
    .hero-badge { width: fit-content; }
    .hero-video-section { min-height: 70vh; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn-lg { width: 100%; }
    .product-actions { flex-direction: column; }
    .product-actions .btn-cart { width: 100%; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .container { padding: 0 12px; }
    #authLinks .btn-primary { padding: 5px 8px; font-size: 0.7rem; }
    #authLinks .btn-ghost { display: none; }
}

/* ==========================================
   MISC
   ========================================== */
.text-center { text-align: center; }
.text-muted { color: var(--gray); }

/* ==========================================
   STATIC PAGES (Hakkımızda, İletişim, vb.)
   ========================================== */
.static-page {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 60vh;
}
.static-page h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}
.breadcrumb-nav a { color: var(--gray); transition: var(--transition); }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav i { font-size: .6rem; }
.breadcrumb-nav span { color: var(--dark); font-weight: 500; }

.static-content {
    max-width: 860px;
    line-height: 1.8;
    color: var(--dark-soft);
}
.static-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin: 2rem 0 .8rem;
}
.static-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 1rem 0 .5rem;
}
.static-content p { margin-bottom: .8rem; }
.static-content a { color: var(--primary); text-decoration: underline; }
.static-content a:hover { opacity: .8; }
.static-content ul, .static-content ol {
    margin: .5rem 0 1rem 1.5rem;
}
.static-content li { margin-bottom: .4rem; }

/* Legal pages date */
.legal-date {
    font-size: .85rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Feature grid (Hakkımızda) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}
.feature-item {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}
.feature-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: .8rem;
}
.feature-item h3 {
    margin: .5rem 0;
    color: var(--dark);
}
.feature-item p {
    font-size: .9rem;
    color: var(--gray);
}

/* Address block */
.address-block {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
}
.address-block p { margin-bottom: .8rem; }
.address-block i { color: var(--primary); }

/* Contact grid (İletişim) */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}
.contact-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}
.contact-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: .8rem;
}
.contact-card h3 {
    margin: .5rem 0;
    color: var(--dark);
}
.contact-card a { color: var(--primary); text-decoration: none; font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }
.contact-note { font-size: .82rem; color: var(--gray); margin-top: .3rem; }

/* Address grid */
.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0 2rem;
}
.address-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.address-card h3 {
    margin: 0 0 .8rem;
    color: var(--dark);
}
.address-card h3 i { color: var(--primary); margin-right: .4rem; }

/* FAQ items (Yardım) */
.faq-section { margin-bottom: 2rem; }
.faq-item {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    margin-bottom: .8rem;
}
.faq-item h3 {
    margin: 0 0 .5rem;
    font-size: 1rem;
    color: var(--dark);
}
.faq-item p { margin: 0; font-size: .92rem; }

/* Help contact */
.help-contact {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}
.help-contact h2 { color: #fff; margin-top: 0; }
.help-contact a { color: #fff; }

/* Info table (Kargo, KVKK) */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: .92rem;
}
.info-table th, .info-table td {
    padding: .8rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.info-table th {
    background: var(--light);
    font-weight: 600;
    color: var(--dark);
}
.info-table tr:hover td { background: #fafafa; }

/* Footer contact */
.footer-contact p { margin-bottom: 0; line-height: 1.5; }

@media (max-width: 768px) {
    .static-page { padding-top: 80px; padding-bottom: 40px; }
    .static-page h1 { font-size: 1.5rem; }
    .feature-grid, .contact-grid, .address-grid { grid-template-columns: 1fr; }
    .info-table { font-size: .82rem; }
    .info-table th, .info-table td { padding: .6rem .7rem; }
}
