/* AnındaSite - Modern Script Satış Teması */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    --gradient-dark: linear-gradient(135deg, #4f46e5 0%, #0284c7 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,.1);
    --shadow-xl: 0 20px 40px -10px rgba(99,102,241,.25);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all .3s ease;
    --header-bar-height: 48px;
    --container-padding: clamp(20px, 4vw, 64px);
    --layout-top-offset: 118px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

body.site-premium:has(.announcement-bar) {
    --layout-top-offset: 156px;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

main[role="main"] {
    width: 100%;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.announcement-bar i { color: var(--accent); }
.announcement-close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    opacity: .7;
    font-size: 14px;
}
.announcement-close:hover { opacity: 1; }

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    overflow: visible;
    width: 100%;
}

.header .container {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: var(--header-bar-height);
    width: 100%;
    max-width: none;
}

.header .logo {
    flex-shrink: 0;
    margin-right: 4px;
}

.header .nav {
    flex: 1;
    min-width: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.header-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: var(--header-bar-height);
    min-height: var(--header-bar-height);
    padding: 0 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--gray-700);
    background: var(--gray-100);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: var(--transition);
}

.header-action-btn:hover {
    background: rgba(99, 102, 241, .1);
    color: var(--primary);
}

.header-action-btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.header-action-btn-primary:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(99, 102, 241, .35);
}

.header-action-label {
    max-width: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-login-dropdown {
    position: relative;
}

.header-login-caret {
    font-size: 10px;
    opacity: .7;
    transition: transform .2s ease;
}

.header-login-dropdown.open .header-login-caret {
    transform: rotate(180deg);
}

.header-login-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1100;
}

.header-login-dropdown.open .header-login-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-login-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--gray-700);
}

.header-login-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.header-login-menu a i {
    width: 18px;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.header-login-menu a span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.header-login-menu a strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.header-login-menu a small {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 400;
}

@media (max-width: 1180px) {
    .nav-list > li > a {
        padding: 0 10px;
        font-size: 14px;
    }
}

@media (max-width: 1050px) {
    .header .container {
        gap: 8px;
    }

    .header-action-label {
        max-width: 72px;
    }
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: var(--header-bar-height);
    flex-shrink: 0;
}

.header .logo-icon {
    width: var(--header-bar-height);
    height: var(--header-bar-height);
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.header .logo-image {
    height: var(--header-bar-height);
    max-width: 220px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header .logo-image img {
    display: block;
    height: var(--header-bar-height);
    max-height: var(--header-bar-height);
    max-width: 220px;
    width: auto;
    object-fit: contain;
}

.header .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: var(--header-bar-height);
    line-height: 1.15;
}

.header .logo-name {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.header .logo-tagline {
    display: block;
    font-size: 10px;
    color: var(--gray-500);
    font-weight: 500;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.logo-image {
    width: auto;
    height: 44px;
    max-width: 180px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image img {
    display: block;
    max-height: 44px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-brand .logo-image {
    height: 48px;
    max-width: 200px;
}

.footer-brand .logo-image img {
    max-height: 48px;
    max-width: 200px;
}

.logo-name {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.logo-tagline {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 2px;
    width: 100%;
}

.nav-list > li > a {
    min-height: var(--header-bar-height);
    padding: 0 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--primary);
    background: rgba(99,102,241,.08);
}

.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray-700);
}

.dropdown li a i { color: var(--primary); width: 18px; }
.dropdown li a:hover { background: var(--gray-100); color: var(--primary); }

.cart-btn {
    position: relative;
    width: var(--header-bar-height);
    height: var(--header-bar-height);
    border-radius: 10px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray-700);
}

.cart-btn:hover { background: rgba(99,102,241,.1); color: var(--primary); }

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--gray-100);
}

.user-btn:hover { background: rgba(99,102,241,.1); color: var(--primary); }

.user-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero */
.hero {
    background: #0f172a;
    padding: clamp(48px, 8vh, 96px) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: calc(100svh - var(--layout-top-offset));
    display: flex;
    align-items: center;
}

.hero-backgrounds {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity .9s ease, transform 8s ease;
}

.hero-bg.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(15, 23, 42, .92) 0%,
        rgba(15, 23, 42, .72) 38%,
        rgba(15, 23, 42, .25) 58%,
        rgba(15, 23, 42, .05) 100%
    );
}

.hero::before,
.hero::after {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-content-col {
    max-width: min(720px, 48vw);
    text-align: left;
}

.hero-slider {
    position: relative;
}

.hero-slides {
    position: relative;
    min-height: 300px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px);
    transition: opacity .6s ease, transform .6s ease, visibility .6s;
    pointer-events: none;
}

.hero-slide.hero-text-left {
    justify-content: flex-start;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.hero-slide-content {
    max-width: min(640px, 100%);
    width: 100%;
    text-align: left;
}

.hero-slide .hero-badge {
    animation: heroFadeUp .6s ease .1s both;
}

.hero-slide.active h1 {
    animation: heroFadeUp .6s ease .2s both;
}

.hero-slide.active p {
    animation: heroFadeUp .6s ease .3s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(99,102,241,.35);
    border-color: rgba(99,102,241,.5);
    transform: scale(1.05);
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.hero-dot:hover {
    background: rgba(255,255,255,.5);
}

.hero-dot.active {
    width: 28px;
    border-radius: 50px;
    background: var(--gradient);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,.2);
    border: 1px solid rgba(99,102,241,.3);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 17px;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
    margin: 0;
}

.hero .hero-search {
    max-width: 100%;
    margin: 28px 0 20px;
    display: flex;
    background: var(--white);
    border-radius: 50px;
    padding: 6px;
    box-shadow: var(--shadow-xl);
}

.hero .hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.hero .hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 500;
}

.hero .hero-feature i {
    color: var(--success);
}

.hero-search {
    max-width: 640px;
    margin: 0 auto 40px;
    display: flex;
    background: var(--white);
    border-radius: 50px;
    padding: 6px;
    box-shadow: var(--shadow-xl);
}

.hero-search select,
.hero-search input {
    border: none;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    background: transparent;
}

.hero-search select {
    padding: 12px 16px;
    border-right: 1px solid var(--gray-300);
    color: var(--gray-700);
    min-width: 160px;
    cursor: pointer;
}

.hero-search input {
    flex: 1;
    padding: 12px 20px;
    color: var(--gray-700);
}

.hero-search button {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.hero-search button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(99,102,241,.4);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.8);
    font-size: 14px;
}

.hero-feature i { color: var(--success); }

/* Section */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}

.section-header .badge {
    display: inline-block;
    background: rgba(99,102,241,.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.section-divider span {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--dark);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(16px, 2vw, 28px);
}

@media (min-width: 1600px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (min-width: 1920px) {
    .product-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 48px;
    color: var(--primary);
    opacity: .6;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-badge.new { background: var(--success); }
.product-badge.hot { background: var(--accent); }

.product-body { padding: 20px; }

.product-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-body h3 a:hover { color: var(--primary); }

.product-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.product-meta span { display: flex; align-items: center; gap: 4px; }

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.product-price .current {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.product-price .old {
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99,102,241,.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-cart {
    flex: 1;
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-cart:hover { background: var(--primary); color: var(--white); }

.btn-demo {
    background: var(--secondary);
    color: var(--white);
}

.btn-demo:hover {
    background: #0284c7;
    color: var(--white);
    transform: translateY(-1px);
}

/* Stats */
.stats {
    background: var(--gradient);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    font-weight: 500;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(99,102,241,.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover { background: var(--gray-100); }

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 300px; }

/* References */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.reference-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    display: block;
    color: inherit;
}

.reference-card-link {
    cursor: pointer;
    text-decoration: none;
}

.reference-card:hover,
.reference-card-link:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.reference-logo {
    width: 100%;
    height: 80px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 10px;
    overflow: hidden;
    padding: 12px;
}

.reference-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.reference-initials {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
}

.reference-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.reference-card span {
    font-size: 13px;
    color: var(--gray-500);
}

.reference-visit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,.6);
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--primary-light); }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,.3);
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--gray-500);
    margin-bottom: 16px;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.about-feature i { color: var(--success); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(99,102,241,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-item p { font-size: 14px; color: var(--gray-500); }

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail-gallery {
    width: 100%;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-gallery-main {
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: var(--radius-lg);
    height: 420px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .25s ease;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    height: 420px;
}

.product-gallery-thumb {
    border: 2px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0;
    background: var(--gray-100);
    cursor: pointer;
    transition: var(--transition);
    height: 100%;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-thumb:hover {
    border-color: rgba(99, 102, 241, .45);
}

.product-gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .15);
}

.product-detail-image {
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary);
    opacity: .5;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.product-detail-image:has(img) {
    opacity: 1;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.product-detail-info h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.product-detail-info .description {
    color: var(--gray-500);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-700);
}

.feature-list li i { color: var(--success); font-size: 12px; }

/* Cart */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.cart-table th {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e0e7ff, #dbeafe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.cart-summary {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 24px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.cart-summary-row.total {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    border-top: 2px solid var(--gray-300);
    padding-top: 16px;
    margin-top: 16px;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 18px;
}

/* Payment */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.payment-method {
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.payment-method:hover,
.payment-method.active {
    border-color: var(--primary);
    background: rgba(99,102,241,.05);
}

.payment-method i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.payment-method h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.payment-method p {
    font-size: 13px;
    color: var(--gray-500);
}

.payment-form {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.card-input-group {
    position: relative;
}

.card-input-group i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
}

.bank-info {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.bank-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.bank-info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-300);
    font-size: 14px;
}

.bank-info-row:last-child { border-bottom: none; }

.bank-info-row strong { color: var(--dark); }

.havale-claim-box {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: #fff;
}

.havale-claim-label {
    margin-bottom: 0;
}

.havale-receipt-upload {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--gray-300);
}

.thank-you-receipt {
    margin: 24px 0;
    padding: 24px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--gray-100);
}

.thank-you-receipt h3 {
    margin-bottom: 16px;
    font-size: 18px;
}

.thank-you-receipt-form {
    margin-top: 16px;
}

.iban-copy {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    font-family: inherit;
}

/* Alert */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success { background: #d1fae5; color: #065f46; }
.alert-error { background: #fee2e2; color: #991b1b; }
.alert-info { background: #dbeafe; color: #1e40af; }

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.empty-cart h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.empty-cart p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

/* Success Page */
.success-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--success);
}

.success-box h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.order-id {
    background: var(--gray-100);
    padding: 12px 24px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
    margin: 16px 0;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
}

.footer-top { padding: 60px 0 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    font-size: 14px;
    margin: 16px 0;
    line-height: 1.7;
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,.5); }

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.social-links a:hover { background: var(--primary); }

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); }
.footer-links a:hover { color: var(--white); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact li i { color: var(--primary-light); width: 16px; }

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

.whatsapp-btn:hover { background: #20bd5a; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

/* Floating Elements */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); }

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37,211,102,.4);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,.4); }
    50% { box-shadow: 0 4px 25px rgba(37,211,102,.6); }
}

.bg-light { background: var(--gray-100); }

.load-more {
    text-align: center;
    margin-top: 40px;
}

.cta-section {
    background: var(--gradient);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255,255,255,.85);
    margin-bottom: 24px;
    font-size: 16px;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    color: var(--gray-700);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid,
    .contact-grid,
    .product-detail { grid-template-columns: 1fr; }
    .product-gallery-main { height: 280px; }
    .product-gallery-thumbs {
        height: 72px;
        grid-template-columns: repeat(5, 1fr);
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
}

.checkout-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-200);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.checkout-step.active {
    color: var(--primary);
}

.checkout-step.active span,
.checkout-step.done span {
    background: var(--primary);
    color: var(--white);
}

.checkout-section {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.checkout-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section h3 i {
    color: var(--primary);
}

.checkout-section-desc {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 20px;
}

.extra-services-grid {
    display: grid;
    gap: 12px;
}

.extra-service-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

.extra-service-card:hover,
.extra-service-card.selected {
    border-color: var(--primary);
    background: rgba(99, 102, 241, .04);
}

.extra-service-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.extra-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0e7ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.extra-service-body strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
}

.extra-service-body span {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.45;
}

.extra-service-price {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.invoice-type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.invoice-type-option {
    cursor: pointer;
}

.invoice-type-option input {
    position: absolute;
    opacity: 0;
}

.invoice-type-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.invoice-type-option input:checked + span {
    border-color: var(--primary);
    background: rgba(99, 102, 241, .06);
    color: var(--primary);
}

.checkout-summary {
    position: sticky;
    top: 100px;
    margin-top: 0;
}

.checkout-summary h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.summary-extra-row span:first-child {
    color: var(--primary-dark);
    font-size: 14px;
}

.checkout-submit-btn {
    margin-top: 8px;
}

.checkout-legal-section {
    background: var(--gray-50, #f8fafc);
    border: 1px solid var(--gray-200);
}

.checkout-consent-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-consent-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--gray-700);
    cursor: pointer;
}

.checkout-consent-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.checkout-consent-item a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.checkout-consent-item a:hover {
    color: var(--primary-dark);
}

.checkout-consent-item.consent-error {
    color: #b91c1c;
}

.checkout-consent-item.consent-error span {
    background: rgba(239, 68, 68, .08);
    border-radius: 8px;
    padding: 8px 10px;
}

@media (max-width: 992px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .invoice-type-toggle { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header .container {
        gap: 8px;
    }

    .header .logo {
        margin-right: 0;
    }

    .header-action-label {
        display: none;
    }

    .header-action-btn {
        width: var(--header-bar-height);
        min-width: var(--header-bar-height);
        padding: 0;
    }

    .header-login-caret {
        display: none;
    }

    .header-auth {
        gap: 6px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 80px 20px 20px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav.open { left: 0; }

    .nav-list { flex-direction: column; align-items: stretch; }

    .nav-list > li > a { padding: 14px 16px; }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 16px;
        display: none;
    }

    .has-dropdown.open .dropdown { display: block; }

    .mobile-toggle { display: flex; }

    .hero { padding: 40px 0 48px; min-height: auto; }
    .hero-content-col { max-width: 100%; }
    .hero-slides { min-height: 220px; }
    .hero-slide-content { max-width: 100%; }
    .hero-slider-controls { justify-content: center; }
    .hero-arrow { width: 36px; height: 36px; }
    .hero .hero-search { flex-direction: column; border-radius: var(--radius); }
    .hero .hero-search select { border-right: none; border-bottom: 1px solid var(--gray-300); }
    .hero .hero-search button { border-radius: 10px; }
    .hero .hero-features { flex-direction: column; align-items: flex-start; gap: 12px; }

    .payment-methods { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }

    .cart-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .feature-list { grid-template-columns: 1fr; }
}
