/* ============================================
   E-Ticaret - Modern Scandinavian Tasarım
   ukayhome.com benzeri
   ============================================ */

:root {
    --primary: #1a1a1a;
    --secondary: #666;
    --accent: #c8a96e;
    --bg: #ffffff;
    --bg-light: #f8f7f5;
    --bg-warm: #f5f0eb;
    --border: #e8e8e8;
    --text: #1a1a1a;
    --text-light: #666;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    --radius: 0px;
    --radius-sm: 0px;
    --radius-lg: 0px;
    --shadow: 0 2px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    padding: 6px 0;
    letter-spacing: 0.5px;
}
.top-bar span { opacity: 0.8; }
.top-link { color: #fff; opacity: 0.8; font-size: 12px; }
.top-link:hover { opacity: 1; color: #fff; }
.lang-dropdown .btn { color: #fff; font-size: 12px; padding: 0; border: none; }
.lang-dropdown .btn:hover, .lang-dropdown .btn:focus { color: #fff; box-shadow: none; }
.lang-dropdown .dropdown-menu { min-width: 120px; font-size: 13px; }

/* ===== HEADER ===== */
.main-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}
.logo { flex-shrink: 0; }
.logo-img { height: 40px; width: auto; object-fit: contain; }
.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}
.logo-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--accent, #e94560);
    border-radius: 2px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}
.main-nav .nav-link {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    position: relative;
    white-space: nowrap;
}
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}
.main-nav .nav-link:hover::after { width: 80%; }

/* Mega Dropdown */
.nav-item-dropdown { position: relative; }
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 20px 25px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
    box-shadow: var(--shadow-lg);
}
.nav-item-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-link {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: var(--secondary);
    border-bottom: 1px solid #f0f0f0;
}
.mega-link:last-child { border: none; }
.mega-link:hover { color: var(--primary); padding-left: 5px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    border-radius: 50%;
}
.header-action-btn:hover { background: var(--bg-light); }
.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Search Panel */
.search-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}
.search-panel.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}
.search-input {
    flex: 1;
    border: none;
    border-bottom: 2px solid var(--primary);
    padding: 12px 0;
    font-size: 18px;
    outline: none;
    background: transparent;
}
.search-submit, .search-close {
    font-size: 20px;
    color: var(--primary);
    padding: 10px;
}
.search-results {
    max-width: 600px;
    margin: 10px auto 0;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.search-result-item:hover { background: var(--bg-light); }
.search-result-img { width: 50px; height: 50px; object-fit: cover; }
.search-result-name { font-size: 14px; font-weight: 500; }
.search-result-price { font-size: 13px; color: var(--secondary); }

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}
.cart-sidebar.active { right: 0; }
.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}
.cart-sidebar-header h5 { margin: 0; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.cart-sidebar-close { font-size: 24px; }
.cart-sidebar-body { flex: 1; overflow-y: auto; padding: 15px; }
.cart-sidebar-footer { padding: 20px; border-top: 1px solid var(--border); }
.cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}
.cart-item-mini {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}
.cart-item-mini-img { width: 80px; height: 80px; object-fit: cover; }
.cart-item-mini-info { flex: 1; }
.cart-item-mini-name { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.cart-item-mini-price { font-size: 13px; color: var(--secondary); }
.cart-item-mini-qty { font-size: 12px; color: var(--text-light); }
.cart-item-mini-remove {
    position: absolute;
    top: 12px;
    right: 0;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}
.cart-item-mini-remove:hover { color: var(--danger); }

.cart-overlay, .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.cart-overlay.active, .mobile-overlay.active { opacity: 1; visibility: visible; }

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg);
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-menu.active { left: 0; }
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}
.mobile-menu-close { font-size: 24px; }
.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    color: var(--primary);
}
.mobile-nav-link.sub { padding-left: 35px; font-weight: 400; color: var(--secondary); }
.mobile-sub-menu { display: none; }
.mobile-sub-menu.active { display: block; }
.mobile-sub-toggle { cursor: pointer; transition: var(--transition); }
.mobile-sub-toggle.active { transform: rotate(180deg); }

/* ===== HERO SLIDER ===== */
.hero-slider { width: 100%; position: relative; overflow: hidden; }
.hero-slide {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}
.hero-slide-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-slide-subtitle {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0.9;
}
.hero-slide-btn {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid #fff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.hero-slide-btn:hover { background: #fff; color: var(--primary); }

.swiper-pagination-bullet { background: #fff; opacity: 0.5; width: 16px; height: 16px; margin: 0 6px !important; padding: 0; border: none; }
.swiper-pagination-bullet-active { opacity: 1; }
.swiper-pagination { padding: 16px 0 !important; }
.hero-slide-btn { min-width: 48px; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 40px; }

/* ===== SECTION STYLES ===== */
.section { padding: 60px 0; }
.section-warm { background: var(--bg-warm); }
.section-light { background: var(--bg-light); }
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-subtitle {
    color: var(--secondary);
    font-size: 14px;
    letter-spacing: 1px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    position: relative;
    transition: var(--transition);
    background: var(--bg);
    overflow: hidden;
}
.product-card:hover { transform: translateY(-4px); }
.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-light);
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.product-card:hover .product-card-hover-img { opacity: 1; }

.product-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.badge-new { background: var(--primary); color: #fff; }
.badge-sale { background: #c0392b; color: #fff; }
.badge-bestseller { background: var(--accent); color: #fff; }

.product-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 3;
}
.product-card:hover .product-card-actions { transform: translateY(0); }
.btn-add-cart {
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: var(--transition);
}
.btn-add-cart:hover { background: var(--accent); }
.btn-add-cart:disabled { background: #ccc; cursor: not-allowed; }

.product-card-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 3;
    transition: var(--transition);
    cursor: pointer;
    padding: 0;
    color: inherit;
}
.product-card-wishlist:hover { background: var(--primary); color: #fff; }
.product-card-wishlist.active { color: var(--danger); }

.product-card-info { padding: 15px 5px; text-align: center; }
.product-card-brand {
    font-size: 11px;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.product-card-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary);
    line-height: 1.4;
}
.product-card-name a { color: inherit; }
.product-card-name a:hover { color: var(--accent); }
.product-card-price {
    font-size: 14px;
    font-weight: 600;
}
.product-card-price .old-price {
    text-decoration: line-through;
    color: #595959;
    font-weight: 400;
    margin-right: 8px;
    font-size: 13px;
}
.product-card-price .sale-price { color: #c0392b; font-weight: 700; }

/* Products Slider */
.products-slider { padding: 0 30px; position: relative; }
.products-slider .swiper-button-prev,
.products-slider .swiper-button-next {
    color: var(--primary);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.products-slider .swiper-button-prev::after,
.products-slider .swiper-button-next::after { font-size: 16px; }

/* ===== CATEGORY CARDS ===== */
.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.1); }
.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}
.category-card-name {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== BANNER ===== */
.banner-grid { display: grid; gap: 15px; }
.banner-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.banner-item:hover img { transform: scale(1.05); }

/* ===== BLOG CARDS ===== */
.blog-card { transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-image {
    overflow: hidden;
    aspect-ratio: 16/10;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 20px 0; }
.blog-card-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.blog-card-excerpt { font-size: 14px; color: var(--secondary); line-height: 1.6; }
.blog-card-date { font-size: 12px; color: #555; margin-bottom: 8px; }

/* ===== FEATURES BAR ===== */
.features-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.feature-item {
    text-align: center;
    padding: 15px;
}
.feature-icon {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary);
}
.feature-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.feature-text { font-size: 12px; color: var(--secondary); }

/* ===== PRODUCT DETAIL ===== */
.product-gallery { position: relative; }
.product-gallery-main {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-light);
    margin-bottom: 10px;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 8px; }
.product-gallery-thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.product-gallery-thumb.active { border-color: var(--primary); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info { padding: 0 20px; }
.product-detail-title {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.product-detail-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.product-detail-price .old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 400;
    font-size: 1.1rem;
    margin-right: 10px;
}
.product-detail-price .sale { color: var(--danger); }
.product-detail-desc { color: var(--secondary); line-height: 1.8; margin-bottom: 25px; font-size: 14px; }
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    width: fit-content;
}
.quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
}
.quantity-input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-weight: 600;
}
.quantity-input:focus { outline: none; }
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 40px;
    background: var(--primary);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    width: 100%;
}
.btn-primary-custom:hover { background: var(--accent); color: #fff; }
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 40px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-custom:hover { background: var(--primary); color: #fff; }
.product-tabs { margin-top: 50px; }
.product-tabs .nav-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--secondary);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 20px;
}
.product-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ===== PRODUCT LIST / CATEGORY ===== */
.product-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.product-list-count { font-size: 14px; color: var(--secondary); }
.product-list-sort select {
    border: 1px solid var(--border);
    padding: 8px 15px;
    font-size: 13px;
    outline: none;
}
.filter-sidebar { padding-right: 30px; }
.filter-group { margin-bottom: 25px; }
.filter-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.filter-option { padding: 4px 0; }
.filter-option label { font-size: 14px; color: var(--secondary); cursor: pointer; display: flex; align-items: center; gap: 8px; }
.price-range { display: flex; gap: 10px; align-items: center; }
.price-range input { width: 100px; padding: 6px 10px; border: 1px solid var(--border); font-size: 13px; }

/* ===== CART PAGE ===== */
.cart-table { width: 100%; }
.cart-table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 15px 10px;
    border-bottom: 2px solid var(--primary);
}
.cart-table td { padding: 20px 10px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-product-info { display: flex; align-items: center; gap: 15px; }
.cart-product-img { width: 100px; height: 100px; object-fit: cover; }
.cart-product-name { font-size: 14px; font-weight: 500; }
.cart-product-sku { font-size: 12px; color: var(--text-light); }
.cart-remove-btn { color: var(--text-light); font-size: 18px; }
.cart-remove-btn:hover { color: var(--danger); }
.cart-summary {
    background: var(--bg-light);
    padding: 30px;
}
.cart-summary-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}
.cart-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0;
    margin-top: 10px;
    border-top: 2px solid var(--primary);
    font-size: 18px;
    font-weight: 700;
}

/* ===== CHECKOUT ===== */
.checkout-section { margin-bottom: 30px; }
.checkout-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.form-control-custom {
    border: 1px solid var(--border);
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 0;
    transition: var(--transition);
}
.form-control-custom:focus { border-color: var(--primary); box-shadow: none; }
.payment-option {
    border: 1px solid var(--border);
    padding: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
}
.payment-option.active { border-color: var(--primary); }
.payment-option-header { display: flex; align-items: center; gap: 12px; }
.payment-option-title { font-weight: 600; }

/* ===== AUTH PAGES ===== */
.auth-container { max-width: 450px; margin: 60px auto; padding: 0 20px; }
.auth-title {
    font-size: 1.6rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.auth-form .form-group { margin-bottom: 20px; }
.auth-form label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; display: block; }
.auth-link { font-size: 14px; color: var(--secondary); }
.auth-link:hover { color: var(--primary); }
.auth-divider { text-align: center; padding: 20px 0; color: var(--text-light); font-size: 13px; }

/* ===== ACCOUNT PAGES ===== */
.account-sidebar { border-right: 1px solid var(--border); padding-right: 30px; }
.account-nav-link {
    display: block;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--secondary);
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}
.account-nav-link:hover, .account-nav-link.active { color: var(--primary); font-weight: 600; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    padding: 12px 0;
    background: var(--bg-light);
    font-size: 13px;
}
.breadcrumb-bar a { color: var(--secondary); }
.breadcrumb-bar a:hover { color: var(--primary); }
.breadcrumb-bar .separator { margin: 0 8px; color: var(--text-light); }

/* ===== ORDER TRACKING ===== */
.tracking-form { max-width: 500px; margin: 0 auto; }
.tracking-timeline { position: relative; padding-left: 40px; }
.tracking-step {
    position: relative;
    padding-bottom: 30px;
    padding-left: 20px;
}
.tracking-step::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    z-index: 1;
}
.tracking-step.active::before { background: var(--success); border-color: var(--success); }
.tracking-step::after {
    content: '';
    position: absolute;
    left: -31px;
    top: 20px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--border);
}
.tracking-step:last-child::after { display: none; }
.tracking-step.active::after { background: var(--success); }

/* ===== SUPPORT ===== */
.ticket-card {
    border: 1px solid var(--border);
    padding: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
}
.ticket-card:hover { border-color: var(--primary); }
.ticket-status {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.status-open { background: #d5f5e3; color: var(--success); }
.status-answered { background: #d6eaf8; color: var(--info); }
.status-closed { background: #f0f0f0; color: var(--secondary); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-settings {
    max-width: 1200px;
    margin: 15px auto 0;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}
.cookie-option { padding: 5px 0; }
.cookie-option label { font-size: 14px; display: flex; align-items: center; gap: 8px; }

/* ===== FLOATING BUTTONS ===== */
.floating-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.floating-btn:hover { transform: scale(1.1); color: #fff; }
.whatsapp-btn { bottom: 90px; right: 20px; background: #25D366; }
.telegram-btn { bottom: 25px; right: 20px; background: #0088cc; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== PAGINATION ===== */
.pagination-custom { display: flex; justify-content: center; gap: 5px; margin-top: 40px; }
.page-link-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}
.page-link-custom:hover, .page-link-custom.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== FOOTER ===== */
.site-footer { background: var(--primary); color: #fff; }
.footer-top { padding: 60px 0 40px; }
.footer-logo { height: 35px; filter: brightness(0) invert(1); }
.footer-brand { font-size: 1.3rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
.footer-desc { font-size: 14px; opacity: 0.7; line-height: 1.7; }
.footer-widget-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; opacity: 0.7; transition: var(--transition); }
.footer-links a:hover { opacity: 1; color: #fff; padding-left: 5px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.newsletter-form .form-control {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 0;
    font-size: 14px;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form .btn { border-radius: 0; font-size: 13px; letter-spacing: 1px; }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.7;
}
.payment-icons { display: flex; gap: 10px; font-size: 24px; }

/* ===== LOADING SPINNER ===== */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,0.1);
    border-left-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.3s;
}

/* ===== TOAST ===== */
.toastify { font-family: var(--font); font-size: 14px; border-radius: 0 !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .header-inner { height: 60px; }
    .hero-slide { height: 400px; }
    .hero-slide-title { font-size: 2rem; }
    .section { padding: 40px 0; }
    .section-title { font-size: 1.4rem; }
    .product-card-actions { transform: translateY(0); background: rgba(255,255,255,0.95); }
    .filter-sidebar { padding-right: 0; margin-bottom: 30px; }
    .account-sidebar { border-right: none; padding-right: 0; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
}
@media (max-width: 767px) {
    .hero-slide { height: 300px; }
    .hero-slide-title { font-size: 1.5rem; letter-spacing: 2px; }
    .hero-slide-subtitle { font-size: 0.9rem; }
    .section { padding: 30px 0; }
    .section-title { font-size: 1.2rem; letter-spacing: 2px; }
    .cart-table { font-size: 13px; }
    .cart-product-img { width: 70px; height: 70px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .footer-top { padding: 40px 0 20px; }
}
@media (max-width: 575px) {
    .hero-slide { height: 220px; }
    .hero-slide-content { padding: 0 15px; }
    .hero-slide-title { font-size: 1.2rem; }
    .hero-slide-btn { padding: 8px 25px; font-size: 11px; }
    .top-bar { font-size: 11px; }
}
