/* ============================================
   KODAK × BLACK × WHITE — 2025 E-Commerce
   Clean, Modern, Sharp
   ============================================ */

/* ===== DESIGN TOKENS ===== */
:root {
    /* === COLOR PALETTE === */
    --yellow: #FFB81C;
    --yellow-dark: #E6A418;
    --yellow-light: #FFF3D0;

    --black: #0A0A0A;
    --gray-900: #111111;
    --gray-800: #1F1F1F;
    --gray-700: #333333;
    --gray-600: #555555;
    --gray-500: #777777;
    --gray-400: #999999;
    --gray-300: #CCCCCC;
    --gray-200: #E5E5E5;
    --gray-100: #F5F5F5;
    --gray-50: #FAFAFA;
    --white: #FFFFFF;

    /* === SEMANTIC === */
    --primary: var(--black);
    --accent: var(--yellow);
    --bg: var(--white);
    --bg-subtle: var(--gray-50);
    --bg-muted: var(--gray-100);
    --surface: var(--white);
    --border: var(--gray-200);
    --border-strong: var(--gray-700);
    --text: var(--gray-900);
    --text-muted: var(--gray-500);
    --text-faint: var(--gray-400);

    --success: #22c55e;
    --danger: #ef4444;
    --info: #3b82f6;

    /* === SHAPE === */
    --radius: 4px;
    --radius-sm: 2px;
    --radius-lg: 6px;

    /* === SHADOW (subtle, no excess) === */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

    /* === MOTION === */
    --transition: all 0.2s ease;
    --transition-slow: all 0.4s ease;

    /* === TYPOGRAPHY === */
    --font: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-mono: 'Courier New', monospace;
}

/* DARK MODE */
[data-theme="dark"] {
    --primary: var(--white);
    --bg: var(--black);
    --bg-subtle: var(--gray-900);
    --bg-muted: var(--gray-800);
    --surface: var(--gray-900);
    --border: var(--gray-700);
    --border-strong: var(--gray-300);
    --text: var(--white);
    --text-muted: var(--gray-400);
    --text-faint: var(--gray-600);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
}

/* Critical layout */
.main-content {
    min-height: 50vh;
}

/* Fix Bootstrap's .form-control for dark mode */
.form-control,
.form-select {
    background-color: var(--bg);
    color: var(--text);
    border-color: var(--border);
}

.form-control:focus,
.form-select:focus {
    background-color: var(--bg);
    color: var(--text);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 184, 28, 0.15);
}

/* Fix Bootstrap dropdown for dark mode */
.dropdown-menu {
    background-color: var(--surface);
    border-color: var(--border);
}

.dropdown-item {
    color: var(--text);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--bg-muted);
    color: var(--text);
}

.dropdown-item.active {
    background-color: var(--accent);
    color: var(--black);
}

.dropdown-header {
    color: var(--text-muted);
    font-size: 12px;
}

.dropdown-divider {
    border-color: var(--border);
}

/* Fix Bootstrap btn for dark mode */
.btn-dark {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gray-800);
    border-color: var(--gray-800);
    color: var(--white);
}

.btn-outline-dark {
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-outline-dark:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

[data-theme="dark"] .btn-dark {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

[data-theme="dark"] .btn-dark:hover {
    background: var(--gray-200);
    border-color: var(--gray-200);
    color: var(--black);
}

[data-theme="dark"] .btn-outline-dark {
    color: var(--text);
    border-color: var(--border);
}

[data-theme="dark"] .bg-light,
[data-theme="dark"] .bg-white {
    background-color: var(--surface) !important;
    color: var(--text) !important;
}

[data-theme="dark"] .text-dark {
    color: var(--text) !important;
}

/* Swiper slide card fix */
.swiper-slide {
    height: auto;
}

.swiper-slide>.product-card {
    height: 100%;
}

/* Prevent images from overflowing their containers */
.banner-item img,
.category-card img {
    width: 100%;
    object-fit: cover;
}

/* Fix hr in dark mode */
hr {
    border-color: var(--border);
    opacity: 1;
}

/* Fix tab links */
.nav-tabs {
    border-color: var(--border);
}

.nav-tabs .nav-link {
    color: var(--text-muted);
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--text);
    background: var(--bg);
    border-color: var(--border) var(--border) var(--bg);
}

.tab-content {
    padding-top: 20px;
}


/* ===== TOP BAR ===== */
.top-bar {
    display: none;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    padding: 7px 0;
    letter-spacing: 0.3px;
}

.top-bar span {
    opacity: 0.75;
}

.top-link {
    color: var(--white);
    opacity: 0.75;
    font-size: 12px;
}

.top-link:hover {
    opacity: 1;
    color: var(--white);
}

.lang-dropdown .btn {
    color: var(--white);
    font-size: 12px;
    padding: 0;
    border: none;
}

.lang-dropdown .btn:hover,
.lang-dropdown .btn:focus {
    color: var(--white);
    box-shadow: none;
}

.lang-dropdown .dropdown-menu {
    min-width: 120px;
    font-size: 13px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* ===== HEADER ===== */
.main-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px !important;
    gap: 15px;
}

.header-left {
    flex: 1 1 auto;
    min-width: 0;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 60px !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 3rem !important;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent);
}

/* Inline Search Bar */
.header-search-container {
    flex: 2 1 auto;
    max-width: 600px;
    min-width: 200px;
    margin: 0 15px;
}

.header-search-form {
    position: relative;
    display: flex;
}

.header-search-input {
    background: var(--bg-subtle);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    padding-right: 50px;
    font-size: 14px;
    width: 100%;
    color: var(--text);
    transition: var(--transition);
}

.header-search-input:focus {
    background: var(--bg);
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.header-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 18px;
    padding: 8px;
    cursor: pointer;
}

/* Navigation - Bottom Row */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-top: 1px solid var(--border);
    margin-top: 5px;
    padding: 0;
    width: 100%;
}

.main-nav .nav-link {
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.main-nav .nav-link:hover {
    color: var(--accent);
}

.main-nav .nav-link:hover::after {
    transform: scaleX(1);
}

/* Mega Dropdown */
.nav-item-dropdown {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 20px 24px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
}

.nav-item-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-link {
    display: block;
    padding: 7px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mega-link:last-child {
    border: none;
}

.mega-link:hover {
    color: var(--text);
    padding-left: 6px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1 0 auto;
}

.header-action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--text);
    transition: var(--transition);
    position: relative;
    border-radius: var(--radius);
}

.header-action-btn:hover {
    background: var(--bg-muted);
    color: var(--text);
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--accent);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Theme Toggle */
.theme-toggle-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--text);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.theme-toggle-btn:hover {
    background: var(--bg-muted);
}

/* 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-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.search-p.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    padding: 40px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.trust-badge-icon {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.trust-badge-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.trust-badge-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== FLASH SALE ===== */
.flash-sale-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.flash-sale-content {
    position: relative;
    z-index: 2;
}

.flash-sale-badge {
    background: var(--accent);
    color: var(--black);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.flash-sale-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.flash-timer {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.timer-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    min-width: 80px;
}

.timer-box span.num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--accent);
}

.timer-box span.text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BENTO CATEGORY GRID ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-muted);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item:hover img {
    transform: scale(1.08);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    z-index: 2;
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
}

.bento-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bento-large {
    grid-column: span 8;
    grid-row: span 2;
}

.bento-small-top {
    grid-column: span 4;
    grid-row: span 1;
}

.bento-small-bottom {
    grid-column: span 4;
    grid-row: span 1;
}

@media(max-width: 991px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .bento-large,
    .bento-small-top,
    .bento-small-bottom {
        grid-column: span 1;
    }
}

/* ===== BRAND CAROUSEL ===== */
.brand-carousel {
    overflow: hidden;
    padding: 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    white-space: nowrap;
}

.brand-track {
    display: inline-flex;
    animation: scrollBrands 30s linear infinite;
    align-items: stretch;
}

.brand-track:hover {
    animation-play-state: paused;
}

.brand-item {
    padding: 5px;
    margin: 0;
    display: inline-block;
    height: 180px;
    flex-shrink: 0;
}

.brand-item a {
    display: block;
    height: 100%;
}

.brand-item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
    padding: 0;
    margin: 0;
}

.brand-item:hover {
    opacity: 0.85;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.search-panel.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    border: none;
    border-bottom: 2px solid var(--text);
    padding: 10px 0;
    font-size: 17px;
    font-weight: 500;
    outline: none;
    background: transparent;
    color: var(--text);
}

.search-input::placeholder {
    color: var(--text-faint);
}

.search-input:focus {
    border-color: var(--accent);
}

.search-submit,
.search-close {
    font-size: 20px;
    color: var(--text);
    padding: 8px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.search-submit:hover,
.search-close:hover {
    background: var(--bg-muted);
}

.search-results {
    max-width: 640px;
    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-subtle);
}

.search-result-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.search-result-name {
    font-size: 14px;
    font-weight: 600;
}

.search-result-price {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== BANNERS ===== */
.banner-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: block;
}

.banner-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.banner-item:hover img {
    transform: scale(1.03);
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    box-shadow: var(--shadow-lg);
    border-left: 1px solid var(--border);
    overscroll-behavior: contain;
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.cart-sidebar-header h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-sidebar-close {
    font-size: 22px;
    color: var(--text-muted);
    transition: var(--transition);
}

.cart-sidebar-close:hover {
    color: var(--text);
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    overscroll-behavior: contain;
}

.cart-sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
}

.cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 14px;
}

.cart-item-mini {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.cart-item-mini-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.cart-item-mini-info {
    flex: 1;
    min-width: 0;
}

.cart-item-mini-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: 1.4;
}

.cart-item-mini-price {
    font-size: 13px;
    color: var(--text-muted);
}

.cart-item-mini-qty {
    font-size: 12px;
    color: var(--text-faint);
}

.cart-item-mini-remove {
    font-size: 16px;
    color: var(--text-faint);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.cart-item-mini-remove:hover {
    color: var(--danger);
}

.cart-item-mini-variant {
    font-size: 11px;
    color: var(--text-faint);
    margin-bottom: 2px;
}

.cart-item-mini-total {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.cart-overlay,
.mobile-overlay {
    position: fixed;
    inset: 0;
    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: 6px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--bg-muted);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    z-index: 2000;
    transition: left 0.35s ease;
    overflow: hidden;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-close {
    font-size: 22px;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--bg-muted);
    color: var(--text);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    transition: var(--transition);
    min-height: 48px;
    /* touch target */
}

.mobile-nav-link:hover {
    background: var(--bg-subtle);
    color: var(--text);
}

.mobile-nav-link.sub {
    padding-left: 36px;
    font-weight: 400;
    color: var(--text-muted);
}

.mobile-sub-menu {
    display: none;
}

.mobile-sub-menu.active {
    display: block;
}

.mobile-sub-toggle {
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.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::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 1;
} */

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-active .hero-slide img {
    /* transform: scale(1.04); iptal edildi */
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    color: var(--white);
    z-index: 2;
    max-width: 560px;
}

.hero-slide-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.hero-slide-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-slide-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.88;
    line-height: 1.65;
    max-width: 420px;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: var(--accent);
    color: var(--black);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition);
    min-width: 48px;
    min-height: 48px;
}

.hero-slide-btn:hover {
    background: var(--yellow-dark);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 28, 0.4);
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.45;
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    border-radius: 4px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    background: var(--accent);
}

.swiper-pagination {
    padding-bottom: 20px !important;
}

/* ===== UTILITY BUTTONS ===== */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--text);
    color: var(--bg);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 2px solid var(--text);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border-strong);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--accent);
    color: var(--black);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    border: 2px solid var(--accent);
    transition: var(--transition);
    cursor: pointer;
}

.btn-accent:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    color: var(--black);
    transform: translateY(-1px);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 40px 0;
}

.section-warm {
    background: var(--bg-muted);
}

.section-light {
    background: var(--bg-subtle);
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-yellow {
    background: var(--accent);
    color: var(--black);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--text);
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.6;
}

.section-view-all {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    white-space: nowrap;
    transition: var(--transition);
}

.section-view-all:hover {
    color: var(--accent);
}

/* ===== PRODUCT CARD ===== */
.product-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: transparent;
}

.product-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    padding: 15px;
    box-sizing: border-box;
    object-fit: contain;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.product-card-image .product-card-main-img {
    position: relative;
    z-index: 1;
}

.product-card-hover-img {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    background: transparent;
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

.product-card:hover .product-card-hover-img {
    opacity: 1;
}

/* Yalnızca hover resmi varsa ana resmi gizle */
.product-card:hover .product-card-image:has(.product-card-hover-img) .product-card-main-img {
    opacity: 0;
}

/* Card Badges */
.product-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    z-index: 2;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.badge-new {
    background: var(--black);
    color: var(--white);
}

.badge-sale {
    background: var(--accent);
    color: var(--black);
    color: var(--white);
}

.badge-bestseller {
    background: var(--accent);
    color: var(--black);
}

/* Wishlist */
.product-card-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 3;
    transition: var(--transition);
    cursor: pointer;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.product-card-wishlist:hover {
    background: var(--accent);
    color: var(--white);
}

.product-card-wishlist.active {
    color: var(--danger);
}

[data-theme="dark"] .product-card-wishlist {
    background: var(--gray-800);
    border-color: var(--gray-700);
    color: var(--text-muted);
}

[data-theme="dark"] .product-card-wishlist.active {
    color: var(--danger);
}

.btn-wishlist-detail {
    border-radius: 4px;
    border: 1px solid var(--border);
    width: 48px;
    color: var(--text-muted);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: var(--transition);
}

.btn-wishlist-detail:hover {
    background: var(--bg-muted);
    color: var(--text);
}

.btn-wishlist-detail.active {
    color: var(--danger);
}

/* Card Info */
.product-card-info {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card-brand {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    flex: 1;
}

.product-card-name a {
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-name a:hover {
    color: var(--accent);
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.product-card-price {
    display: flex;
    flex-direction: column;
}

.product-card-price .old-price {
    text-decoration: line-through;
    color: var(--text-faint);
    font-size: 12px;
    font-weight: 400;
}

.product-card-price .current-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.product-card-price .sale-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

/* Add to Cart Button — compact round on card */
.btn-add-cart {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 15px;
    padding: 0;
    flex-shrink: 0;
    border: 2px solid var(--black);
}

.btn-add-cart i {
    pointer-events: none;
}

.btn-add-cart span {
    display: none;
}

.btn-add-cart:hover {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}

.btn-add-cart:disabled {
    background: var(--bg-muted);
    color: var(--text-faint);
    border-color: var(--border);
    cursor: not-allowed;
}

[data-theme="dark"] .btn-add-cart {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

[data-theme="dark"] .btn-add-cart:hover {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}

/* ===== PRODUCT SLIDER ===== */
.products-slider {
    padding: 0 40px;
    position: relative;
}

.products-slider .swiper-wrapper {
    padding-top: 15px;
    padding-bottom: 15px;
}

.products-slider .swiper-button-prev,
.products-slider .swiper-button-next {
    color: var(--text);
    width: 36px;
    height: 36px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.products-slider .swiper-button-prev::after,
.products-slider .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

.products-slider .swiper-button-prev:hover,
.products-slider .swiper-button-next:hover {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}

/* ===== CATEGORY CARDS ===== */
.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: var(--radius);
    background: var(--bg-muted);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    transition: var(--transition);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
}

.category-card-name {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
}

/* ===== BANNER ===== */
.banner-grid {
    display: grid;
    gap: 16px;
}

.banner-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-item:hover img {
    transform: scale(1.04);
}

.banner-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.55), transparent);
    display: flex;
    align-items: center;
    padding: 32px;
}

.banner-item-content {
    color: var(--white);
}

.banner-item-title {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.banner-item-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;
    transition: var(--transition);
}

.banner-item-link:hover {
    color: var(--white);
    border-color: var(--white);
}

/* ===== BLOG CARDS ===== */
.blog-card {
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-3px);
}

.blog-card-image {
    overflow: hidden;
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    background: var(--bg-muted);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 16px 0;
}

.blog-card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 6px;
    display: block;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-faint);
    margin-bottom: 6px;
    display: block;
}

/* ===== FEATURES BAR ===== */
.features-bar {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-subtle);
}

.feature-item {
    text-align: center;
    padding: 12px 16px;
}

.feature-icon {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--accent);
}

.feature-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.feature-text {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== PRODUCT DETAIL ===== */
.product-gallery {
    position: relative;
}

.product-gallery-main {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #fff;
    margin-bottom: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    object-fit: contain;
}

.product-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.product-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.product-gallery-thumb {
    width: 76px;
    min-width: 76px;
    height: 76px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    flex-shrink: 0;
    background: #fff;
}

.product-gallery-thumb.active {
    border-color: var(--accent);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    padding: 5px;
    box-sizing: border-box;
    object-fit: contain;
}

.product-detail-info {
    padding: 0 20px;
}

.product-detail-breadcrumb {
    font-size: 12px;
    color: var(--text-faint);
    margin-bottom: 12px;
}

.product-detail-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.product-detail-price .price-main {
    font-size: 1.7rem;
    font-weight: 800;
}

.product-detail-price .old-price {
    text-decoration: line-through;
    color: var(--text-faint);
    font-weight: 400;
    font-size: 1.1rem;
}

.product-detail-price .sale {
    color: var(--danger);
}

.product-detail-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 14px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: fit-content;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-subtle);
}

.quantity-btn:hover {
    background: var(--bg-muted);
}

.quantity-input {
    width: 52px;
    height: 42px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-weight: 700;
    font-size: 15px;
    background: var(--bg);
    color: var(--text);
}

.quantity-input:focus {
    outline: none;
}

.product-tabs {
    margin-top: 48px;
}

.product-tabs .nav-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--text-muted);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 18px;
    transition: var(--transition);
}

.product-tabs .nav-link.active {
    color: var(--text);
    border-bottom-color: var(--accent);
}

.product-tabs .nav-link:hover {
    color: var(--text);
}

.product-description-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.product-description-content {
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.product-description-content.expanded {
    max-height: 5000px;
    /* arbitrary large value */
}

.product-description-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-description-content.expanded+.product-description-fade {
    opacity: 0;
}

.btn-read-more {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    display: block;
    margin: 0 auto;
}

.btn-read-more:hover {
    background: var(--bg-subtle);
    border-color: var(--text-muted);
}

/* ===== PRODUCT LIST / CATEGORY ===== */
.product-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 767px) {
    .product-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .product-list-header>div {
        width: 100%;
        justify-content: space-between;
    }
}

.product-list-count {
    font-size: 14px;
    color: var(--text-muted);
}

.product-list-sort select {
    border: 1px solid var(--border);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
}

.filter-sidebar {
    padding-right: 28px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.filter-option {
    padding: 3px 0;
}

.filter-option label {
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-option label:hover {
    color: var(--text);
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    width: 96px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    font-size: 13px;
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
}

/* ===== CART PAGE ===== */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    padding: 14px 10px;
    border-bottom: 2px solid var(--text);
    color: var(--text);
    text-align: left;
}

.cart-table td {
    padding: 18px 10px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-product-img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-product-name {
    font-size: 14px;
    font-weight: 600;
}

.cart-product-sku {
    font-size: 12px;
    color: var(--text-faint);
}

.cart-product-variant {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.cart-remove-btn {
    color: var(--text-faint);
    font-size: 18px;
    transition: var(--transition);
}

.cart-remove-btn:hover {
    color: var(--danger);
}

.cart-summary {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: var(--radius);
}

.cart-summary-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 14px;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0 0;
    margin-top: 10px;
    border-top: 2px solid var(--text);
    font-size: 18px;
    font-weight: 800;
}

/* ===== CHECKOUT ===== */
.checkout-section {
    margin-bottom: 28px;
}

.checkout-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.form-control-custom {
    border: 1px solid var(--border);
    padding: 11px 14px;
    font-size: 14px;
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--bg);
    color: var(--text);
    width: 100%;
}

.form-control-custom:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 184, 28, 0.15);
    outline: none;
}

.payment-option {
    border: 1px solid var(--border);
    padding: 18px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
}

.payment-option.active {
    border-color: var(--accent);
    background: var(--yellow-light);
}

[data-theme="dark"] .payment-option.active {
    background: rgba(255, 184, 28, 0.1);
}

.payment-option-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-option-title {
    font-weight: 700;
    font-size: 14px;
}

/* ===== AUTH PAGES ===== */
.auth-container {
    max-width: 440px;
    margin: 60px auto;
    padding: 0 20px;
}

.auth-card {
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: var(--radius);
}

.auth-title {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    display: block;
}

.auth-link {
    font-size: 14px;
    color: var(--text-muted);
}

.auth-link:hover {
    color: var(--text);
}

.auth-divider {
    text-align: center;
    padding: 18px 0;
    color: var(--text-faint);
    font-size: 13px;
}

/* ===== ACCOUNT PAGES ===== */
.account-sidebar {
    border-right: 1px solid var(--border);
    padding-right: 28px;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border-left: 2px solid transparent;
    transition: var(--transition);
    margin-bottom: 2px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.account-nav-link:hover {
    color: var(--text);
    background: var(--bg-subtle);
}

.account-nav-link.active {
    color: var(--text);
    border-left-color: var(--accent);
    background: var(--bg-muted);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    padding: 11px 0;
    background: var(--bg-subtle);
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-bar a {
    color: var(--text-muted);
}

.breadcrumb-bar a:hover {
    color: var(--text);
}

.breadcrumb-bar .separator {
    margin: 0 7px;
    color: var(--text-faint);
}

/* ===== ORDER TRACKING ===== */
.tracking-timeline {
    position: relative;
    padding-left: 40px;
}

.tracking-step {
    position: relative;
    padding-bottom: 28px;
    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: var(--bg);
    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);
}

/* ===== TICKET / SUPPORT ===== */
.ticket-card {
    border: 1px solid var(--border);
    padding: 18px;
    margin-bottom: 12px;
    transition: var(--transition);
    border-radius: var(--radius);
}

.ticket-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.ticket-status {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: var(--radius-sm);
}

.status-open {
    background: rgba(34, 197, 94, 0.12);
    color: var(--success);
}

.status-answered {
    background: rgba(59, 130, 246, 0.12);
    color: var(--info);
}

.status-closed {
    background: var(--bg-muted);
    color: var(--text-muted);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 18px 24px;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    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: 16px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-settings {
    max-width: 1200px;
    margin: 14px auto 0;
    padding-top: 14px;
    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: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.07);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
    display: none;
    bottom: 84px;
    right: 18px;
    background: #25D366;
}

.telegram-btn {
    bottom: 18px;
    right: 18px;
    background: #0088cc;
}

/* ===== PAGINATION ===== */
.pagination-custom {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 40px;
}

.page-link-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    border-radius: var(--radius);
}

.page-link-custom:hover {
    background: var(--bg-muted);
    color: var(--text);
}

.page-link-custom.active {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--gray-800);
    color: var(--white);
}

.footer-top {
    padding: 64px 0 40px;
}

.footer-logo {
    height: 55px;
    max-width: 100%;
    object-fit: contain;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.footer-brand span {
    color: var(--accent);
}

.footer-desc {
    font-size: 14px;
    opacity: 0.65;
    line-height: 1.7;
}

.footer-widget-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    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.65;
    transition: var(--transition);
    display: block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 14px;
    padding: 10px 14px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    opacity: 0.55;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 22px;
}

/* ===== LOADING ===== */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-left-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.page-loader {
    position: fixed;
    inset: 0;
    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;
    font-weight: 600;
    border-radius: var(--radius) !important;
}

/* ===== VARIANT SELECTORS ===== */
.variant-color-btn {
    outline: none;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.variant-color-btn:hover {
    transform: scale(1.1);
}

.variant-color-btn.active,
.variant-color-btn:focus {
    box-shadow: 0 0 0 3px var(--accent) !important;
}

.variant-opt-btn {
    min-width: 42px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    transition: var(--transition);
}

.variant-opt-btn:hover {
    border-color: var(--text);
    background: var(--bg-muted);
}

.variant-opt-btn.active {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.variant-group {
    min-height: 36px;
}

/* ===== RESPONSIVE ===== */

/* Prevent horizontal overflow globally */
html,
body {
    overflow-x: hidden;
}

.container,
.container-fluid {
    overflow-x: clip;
}

/* ---- LAPTOP / SMALL DESKTOP (≤1399px) ---- */
@media (max-width: 1399px) {
    .header-inner {
        gap: 12px;
    }

    .main-nav .nav-link {
        padding: 8px 10px;
        font-size: 13px;
        letter-spacing: 0;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .header-action-btn {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

/* ---- TABLET (≤991px) ---- */
@media (max-width: 991px) {

    /* Header */
    .header-inner {
        height: 60px;
        gap: 12px;
    }

    .header-actions {
        gap: 0;
    }

    .header-action-btn {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .header-action-btn.cart-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        background-color: var(--accent);
        color: var(--black);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        font-size: 24px;
    }

    .header-action-btn.cart-btn:hover {
        background-color: var(--accent);
        transform: scale(1.05);
    }

    .header-action-btn.cart-btn .cart-badge {
        top: 0;
        right: 0;
        background: var(--black);
        color: var(--white);
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .telegram-btn {
        bottom: 86px;
    }

    .whatsapp-btn {
        bottom: 152px;
    }

    /* main-nav is already hidden via Bootstrap d-none d-lg-flex — no override needed */

    /* Hero */
    .hero-slide {
        height: 440px;
    }

    .hero-slide-title {
        font-size: 2.4rem;
        letter-spacing: -0.5px;
    }

    .hero-slide-content {
        left: 6%;
        max-width: 80%;
    }

    /* Sections */
    .section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Product slider – 3 visible on tablet */
    .products-slider {
        padding: 0 8px;
    }

    /* Sidebar */
    .filter-sidebar {
        padding-right: 0;
        margin-bottom: 28px;
    }

    .account-sidebar {
        border-right: none;
        padding-right: 0;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border);
        padding-bottom: 14px;
    }

    /* Product detail */
    .product-detail-info {
        padding: 0;
        margin-top: 24px;
    }

    /* Footer columns */
    .footer-top .col-lg-3 {
        margin-bottom: 32px;
    }
}

/* ---- MOBILE LANDSCAPE / LARGE PHONE (≤767px) ---- */
@media (max-width: 767px) {

    .header-inner {
        gap: 8px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero-slide {
        height: 340px;
        min-height: unset;
    }

    .hero-slide-title {
        font-size: 1.9rem;
        letter-spacing: -0.5px;
    }

    .hero-slide-subtitle {
        font-size: 0.9rem;
        display: none;
    }

    .hero-slide-content {
        left: 5%;
        max-width: 88%;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-slide-btn {
        padding: 12px 22px;
        font-size: 13px;
    }

    .hero-slide-eyebrow {
        font-size: 11px;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-header-center {
        margin-bottom: 28px;
    }

    /* Product cards – 2 columns on mobile inside grid */
    .product-card-info {
        padding: 10px 12px 12px;
    }

    .product-card-name {
        font-size: 13px;
    }

    .product-card-price {
        font-size: 15px !important;
    }

    .product-card-price .old-price {
        font-size: 11px;
    }

    .btn-add-cart {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    /* Product slider */
    .products-slider {
        padding: 0 4px;
    }

    .products-slider .swiper-button-prev,
    .products-slider .swiper-button-next {
        display: none;
    }

    /* Category cards */
    .category-card {
        aspect-ratio: 1;
    }

    .category-card-name {
        font-size: 13px;
    }

    /* Blog */
    .blog-card-title {
        font-size: 14px;
    }

    /* Features bar */
    .features-bar {
        padding: 24px 0;
    }

    .feature-icon {
        font-size: 22px;
    }

    .feature-title {
        font-size: 12px;
    }

    /* Cookie */
    .cookie-banner {
        padding: 14px 16px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-actions {
        justify-content: center;
    }

    /* Footer */
    .footer-top {
        padding: 36px 0 20px;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    /* Cart sidebar full width */
    .cart-sidebar {
        width: 100vw;
        max-width: 100vw;
        right: -100vw;
    }

    .cart-sidebar-body {
        padding: 10px;
    }

    /* Cart page table → card layout */
    .cart-table thead {
        display: none;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-item-row {
        position: relative;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .cart-item-row td {
        padding: 4px 0;
        border: none;
    }

    .cart-item-row td:before {
        content: attr(data-label);
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-faint);
        display: block;
        margin-bottom: 2px;
    }

    .cart-item-row td:first-child:before {
        display: none;
    }

    .cart-item-row td:last-child {
        position: absolute;
        top: 14px;
        right: 0;
        width: auto;
    }

    .cart-item-row td:last-child:before {
        display: none;
    }

    .cart-product-img {
        width: 64px;
        height: 64px;
    }

    .cart-product-name {
        font-size: 13px;
    }

    .cart-summary {
        padding: 18px;
    }

    .cart-summary-total {
        font-size: 16px;
    }

    /* Quantity */
    .quantity-btn {
        width: 32px;
        height: 34px;
        font-size: 15px;
    }

    .quantity-input {
        width: 40px;
        height: 34px;
        font-size: 13px;
    }

    /* Auth */
    .auth-container {
        margin: 36px auto;
    }

    .auth-card {
        padding: 24px 20px;
    }

    /* Breadcrumb */
    .breadcrumb-bar {
        font-size: 12px;
    }

    /* Checkout */
    .checkout-title {
        font-size: 14px;
    }
}

/* ---- SMALL MOBILE (≤575px) ---- */
@media (max-width: 575px) {

    /* Hero */
    .hero-slide {
        height: 260px;
    }

    .hero-slide-title {
        font-size: 1.5rem;
    }

    .hero-slide-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    /* Typography */
    .section-title {
        font-size: 1.3rem;
    }

    /* Top bar */
    .top-bar {
        font-size: 10px;
        padding: 5px 0;
    }

    .top-bar .d-none-xs {
        display: none !important;
    }

    /* Logo */
    .logo-text {
        font-size: 1.2rem;
    }

    /* Section padding */
    .section {
        padding: 32px 0;
    }

    /* Product cards — ensure 2 per row */
    .row.g-3 .col-6,
    .row.g-4 .col-6 {
        padding-left: 6px;
        padding-right: 6px;
    }

    .row.g-3,
    .row.g-4 {
        --bs-gutter-x: 12px;
    }

    /* Cart page */
    .cart-page .section-title {
        font-size: 1.1rem;
        margin-bottom: 15px !important;
    }

    .coupon-form-mobile {
        flex-direction: column;
    }

    .coupon-form-mobile input,
    .coupon-form-mobile button {
        width: 100%;
    }

    /* Footer */
    .footer-brand {
        font-size: 1.1rem;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .payment-icons {
        font-size: 18px;
    }

    /* Features bar – 2 per row on tiny screens */
    .feature-item {
        padding: 10px 8px;
    }

    .feature-icon {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .feature-title {
        font-size: 11px;
        letter-spacing: 0;
    }

    .feature-text {
        display: none;
    }

    /* Floating buttons */
    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .whatsapp-btn {
        bottom: 72px;
        right: 14px;
    }

    .telegram-btn {
        bottom: 14px;
        right: 14px;
    }

    /* Pagination */
    .pagination-custom {
        gap: 3px;
    }

    .page-link-custom {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

/* ---- EXTRA SMALL (≤400px) ---- */
@media (max-width: 400px) {
    .hero-slide {
        height: 220px;
    }

    .hero-slide-title {
        font-size: 1.2rem;
    }

    .product-card-name {
        -webkit-line-clamp: 1;
    }
}

/* ---- TOUCH / HOVER NONE (mobile) — always show card footer ---- */
@media (hover: none) {
    .product-card-footer {
        display: flex;
    }

    .product-card:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--border);
    }

    .product-card:active {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }
}

/* Swiper responsive overrides */
.swiper-slide .product-card {
    height: 100%;
}

/* ===== PRODUCT DESCRIPTION READ MORE ===== */
.product-description-wrapper {
    position: relative;
}

.product-description-content {
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.product-description-content.expanded {
    max-height: 5000px;
}

.product-description-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--bg) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .product-description-fade {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bg) 100%);
}

.product-description-content.expanded+.product-description-fade,
.product-description-fade.hidden {
    opacity: 0;
    visibility: hidden;
}

.btn-read-more {
    margin-top: 15px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-read-more:hover {
    border-color: var(--text);
    background: var(--bg-subtle);
}

/* Premium Glassmorphism Preloader */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: rgba(var(--bg-rgb, 255, 255, 255), 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.8, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

[data-theme="dark"] .premium-loader {
    background: rgba(18, 18, 18, 0.6);
}

.premium-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
}

.spinner-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.spinner-rings .ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    animation: spin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-rings .ring:nth-child(2) {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-top-color: transparent;
    border-right-color: var(--primary);
    animation-direction: reverse;
    animation-duration: 1.5s;
}

.spinner-rings .ring:nth-child(3) {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-top-color: var(--primary);
    border-right-color: transparent;
    animation-duration: 3s;
}

.loader-logo {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

.loader-logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

/* Mobile Sticky Add to Cart Bar */
.sticky-cart-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--surface);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
    z-index: 1040;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--border);
}
[data-theme="dark"] .sticky-cart-bar {
    background: var(--bg);
}
.sticky-cart-bar.show {
    bottom: 0;
}
.sticky-cart-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    overflow: hidden;
}
.sticky-cart-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.sticky-cart-text {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sticky-cart-title {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    color: var(--text-muted);
}
.sticky-cart-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}
.sticky-cart-action {
    flex-shrink: 0;
    min-width: 110px;
}
.sticky-cart-action .btn {
    padding: 10px 15px;
    font-size: 14px;
    border-radius: var(--radius);
}

/* ===== HEADER LOGO TEXT ===== */
.logo-brand-text {
    font-family: var(--font);
    font-size: clamp(14px, 1.8vw, 24px);
    font-weight: 800;
    color: #a3a3a3;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    text-transform: uppercase;
    transition: var(--transition);
}

.logo-amp {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
    font-size: 1.1em;
    margin: 0 2px;
}

@media (max-width: 768px) {
    .logo-brand-text {
        font-size: clamp(12px, 2.5vw, 18px);
    }
}