/* =====================================================
   E-Ticaret Script - Ana Stil Dosyasi
   Profesyonel, kurumsal, acik tema
   ===================================================== */

:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #0f3460;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --text-muted: #999999;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-gray: #f4f5f7;
    --border: #e2e2e2;
    --border-light: #f0f0f0;
    --success: #2e7d32;
    --warning: #f57c00;
    --danger: #c62828;
    --info: #1565c0;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 4px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.1);
    --radius: 6px;
    --radius-lg: 8px;
    --container: 1200px;
    --header-height: 64px;
    --transition: 0.2s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.page-content {
    min-height: calc(100vh - var(--header-height) - 300px);
    padding: 32px 0;
}

.section {
    margin-bottom: 48px;
}

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

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 24px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition);
}

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

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 24px;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.header-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.3px;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: 4px;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
    background: var(--bg-alt);
    color: var(--primary);
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 360px;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 9px 14px 9px 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg-alt);
    outline: none;
    transition: border-color var(--transition), background var(--transition);
}

.header-search input:focus {
    border-color: var(--primary);
    background: var(--bg);
}

.header-search svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-action-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border-radius: 4px;
    transition: background var(--transition);
    position: relative;
}

.header-action-link:hover {
    background: var(--bg-alt);
}

.header-action-link svg {
    color: var(--text-light);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    padding: 8px;
    color: var(--text);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 64px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    max-width: 520px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #f1f5f9;
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--white);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: opacity var(--transition);
}

.hero-btn:hover { opacity: 0.9; }

.hero-image {
    flex-shrink: 0;
}

.hero-image img {
    max-width: 400px;
    height: auto;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-light);
    transition: color var(--transition);
}

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

.breadcrumb-sep {
    margin: 0 8px;
    color: var(--border);
}

.breadcrumb-current {
    color: var(--text);
    font-weight: 500;
}

/* =====================================================
   PRODUCT GRID
   ===================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
}

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

.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { opacity: 0.9; }

.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { background: var(--bg-alt); border-color: var(--text-muted); }

.btn-success { background: var(--success); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }

.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-block { width: 100%; }

/* =====================================================
   FORMS
   ===================================================== */
.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color var(--transition);
}

.form-control:focus { border-color: var(--primary); }

textarea.form-control { resize: vertical; min-height: 80px; }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.required { color: var(--danger); }

/* =====================================================
   ALERTS
   ===================================================== */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.alert-success { background: #e8f5e9; border: 1px solid #c8e6c9; color: #2e7d32; }
.alert-danger { background: #ffebee; border: 1px solid #ffcdd2; color: #c62828; }
.alert-warning { background: #fff3e0; border: 1px solid #ffe0b2; color: #e65100; }
.alert-info { background: #e3f2fd; border: 1px solid #bbdefb; color: #1565c0; }

/* =====================================================
   BADGES
   ===================================================== */
.badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    white-space: nowrap;
}

.badge-sale { background: var(--danger); color: #fff; }
.badge-new { background: var(--success); color: #fff; }
.badge-campaign { background: var(--warning); color: #fff; }
.badge-free-shipping { background: var(--info); color: #fff; }

/* =====================================================
   CATEGORY GRID
   ===================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.category-card img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
}

.category-card-placeholder {
    width: 64px;
    height: 64px;
    background: var(--bg-gray);
    border-radius: 50%;
    margin-bottom: 12px;
}

.category-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.category-card-count {
    font-size: 12px;
    color: #555555;
    margin-top: 4px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    padding: 48px 0 0;
    margin-top: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    padding: 4px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
}

.footer-links a:hover { color: #ffffff; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form input:focus { border-color: rgba(255,255,255,0.3); }

.newsletter-form button {
    padding: 9px 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: opacity var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover { opacity: 0.9; }

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination-nav {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    background: var(--bg);
    transition: all var(--transition);
}

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

.pagination-active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-active:hover {
    background: var(--primary);
    color: var(--white);
}

.pagination-dots {
    padding: 0 4px;
    color: var(--text-muted);
    font-size: 13px;
}

/* =====================================================
   SORT & FILTER BAR
   ===================================================== */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.filter-bar-left {
    font-size: 13px;
    color: var(--text-light);
}

.filter-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-bar-right select {
    padding: 6px 28px 6px 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 50;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover { opacity: 0.9; }

/* =====================================================
   AUTH PAGES (Login / Register)
   ===================================================== */
.auth-page {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}

.auth-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 24px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    font-size: 13px;
    color: var(--text-light);
}

.auth-footer a {
    font-weight: 600;
    color: var(--primary);
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* =====================================================
   ACCOUNT LAYOUT
   ===================================================== */
.account-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: flex-start;
}

.account-sidebar {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: calc(var(--header-height) + 16px);
}

.account-user-info {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.account-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 10px;
}

.account-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.account-email {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.account-nav-link:hover {
    background: var(--bg-alt);
    color: var(--text);
}

.account-nav-link.active {
    background: var(--bg-alt);
    color: var(--primary);
    font-weight: 600;
}

.account-nav-link svg {
    flex-shrink: 0;
}

/* Account Stats */
.account-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.account-stat-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
}

.account-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.account-stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

/* =====================================================
   DATA TABLE
   ===================================================== */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.data-table th {
    background: var(--bg-alt);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.data-table td {
    padding: 12px 14px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: var(--bg-alt);
}

.data-table tfoot td {
    padding: 10px 14px;
    font-size: 14px;
    border-top: 1px solid var(--border);
}

/* =====================================================
   INFO CARDS
   ===================================================== */
.info-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
}

.info-card-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-card-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

/* =====================================================
   ORDER STATUS BADGES
   ===================================================== */
.badge-new { background: #e3f2fd; color: #1565c0; }
.badge-confirmed { background: #e8f5e9; color: #2e7d32; }
.badge-preparing { background: #fff3e0; color: #e65100; }
.badge-shipped { background: #e8eaf6; color: #283593; }
.badge-delivered { background: #e8f5e9; color: #1b5e20; }
.badge-cancelled { background: #ffebee; color: #c62828; }
.badge-returned { background: #fce4ec; color: #880e4f; }

/* =====================================================
   ORDER TIMELINE
   ===================================================== */
.order-timeline {
    position: relative;
    padding-left: 24px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 16px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -20px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--bg);
    box-shadow: 0 0 0 2px var(--border);
}

.timeline-content {
    padding: 2px 0;
}

/* =====================================================
   CART SUMMARY (Checkout sidebar)
   ===================================================== */
.cart-summary {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.cart-summary-row.total {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    border-top: 2px solid var(--border);
    padding-top: 12px;
    margin-top: 4px;
}

/* =====================================================
   SLIDER
   ===================================================== */
.slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-alt);
}

.slider-container {
    position: relative;
    width: 100%;
    max-height: 480px;
}

.slider-item {
    display: none;
    position: relative;
    width: 100%;
}

.slider-item.active {
    display: block;
    animation: sliderFadeIn 0.5s ease;
}

@keyframes sliderFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slider-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 48px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}

.slider-caption h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.slider-caption p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.slider-caption .hero-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: background var(--transition);
}

.slider-caption .hero-btn:hover {
    background: var(--accent);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: background var(--transition);
    box-shadow: var(--shadow);
}

.slider-btn:hover {
    background: #fff;
}

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

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background var(--transition);
}

.slider-dot.active {
    background: #fff;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    background: var(--bg-alt);
    padding: 48px 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-content { flex: 1; }

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 16px;
    color: #374151;
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: background var(--transition);
}

.hero-btn:hover { background: var(--accent); }

.hero-image img {
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .slider-item img { height: 280px; }
    .slider-caption { padding: 20px 24px; }
    .slider-caption h2 { font-size: 20px; }
    .slider-btn { width: 32px; height: 32px; font-size: 18px; }
    .hero-inner { flex-direction: column; gap: 24px; }
    .hero-title { font-size: 24px; }
    .hero-image img { max-width: 100%; }
}


