/* =============================================
   ÇAKIROĞLU BIÇAK - ANA STİL DOSYASI
   Premium E-Ticaret Teması
   ============================================= */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #141414;
    --text-primary: #f5f2eb;
    --text-secondary: #e8e3d9;
    --text-muted: #8a8680;
    --accent-gold: #b8975e;
    --accent-gold-light: #c9a96e;
    --accent-gold-bright: #d4b88a;
    --success: #4a9f6e;
    --error: #c94a4a;
    --warning: #d4a72c;
    --info: #4a8bc9;
    --border-color: rgba(184, 151, 94, 0.15);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(184, 151, 94, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* =============================================
   TOP BAR
   ============================================= */
.campaign-topbar {
    background: linear-gradient(90deg, #15110a 0%, #2a1c0c 50%, #15110a 100%);
    border-bottom: 1px solid rgba(184, 151, 94, 0.35);
    color: var(--accent-gold-bright);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.campaign-topbar-track {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 1.3em;
    line-height: 1.3;
}

.campaign-topbar-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    white-space: nowrap;
    text-align: center;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    animation: campaignTopbarFade 12s infinite;
}

.campaign-topbar-item:nth-child(1) {
    animation-delay: 0s;
}

.campaign-topbar-item:nth-child(2) {
    animation-delay: 4s;
}

.campaign-topbar-item:nth-child(3) {
    animation-delay: 8s;
}

@keyframes campaignTopbarFade {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    5%,
    28% {
        opacity: 1;
        transform: translateY(0);
    }
    33%,
    100% {
        opacity: 0;
        transform: translateY(-8px);
    }
}

.top-bar {
    background: var(--bg-secondary);
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-left a {
    color: var(--text-muted);
}

.top-bar-left a:hover {
    color: var(--accent-gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-phone {
    color: var(--accent-gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

/* Homepage: transparent overlay header + hero starts from top */
body.homepage .campaign-topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 121;
    background: rgba(8, 8, 8, 0.18);
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.homepage .top-bar {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 121;
    background: rgba(8, 8, 8, 0.2);
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.homepage .top-bar-left a {
    color: rgba(255, 255, 255, 0.88);
}

body.homepage .top-bar-left a:hover {
    color: #f0cd96;
}

body.homepage .nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 122;
    background: transparent;
    border-top: 0;
    border-bottom: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.homepage .hero.video-hero-slider {
    min-height: 100vh;
}

body.homepage .hero-content {
    padding-top: clamp(8.5rem, 16vh, 12rem);
}

.nav-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    max-width: 210px;
}

.nav-logo img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 100%;
    object-fit: contain;
}

.nav-logo span {
    color: var(--text-primary);
    font-weight: 400;
}

.nav-center {
    display: flex;
    gap: clamp(0.9rem, 1.8vw, 1.8rem);
}

.nav-center a {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-center a:hover,
.nav-center a.active {
    color: var(--accent-gold);
}

.nav-center a:hover::after,
.nav-center a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-search-toggle {
    background: transparent;
    border: 0;
    padding: 0;
}

.nav-search-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 3rem;
    width: min(420px, calc(100vw - 2rem));
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: rgba(14, 14, 14, 0.98);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
    z-index: 120;
}

.nav-search-panel[hidden] {
    display: none !important;
}

.nav-search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-search-input {
    flex: 1;
    height: 42px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(7, 7, 7, 0.88);
    color: var(--text-primary);
    padding: 0 0.8rem;
    font-size: 0.9rem;
}

.nav-search-input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.nav-search-submit {
    width: 42px;
    height: 42px;
    border: 1px solid var(--accent-gold);
    background: var(--accent-gold);
    color: var(--bg-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-search-submit svg {
    width: 18px;
    height: 18px;
}

.nav-icon {
    position: relative;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

.nav-icon:hover {
    color: var(--accent-gold);
}

.nav-icon svg {
    width: 22px;
    height: 22px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon .cart-badge {
    position: absolute !important;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 999px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 18px;
}

.span_cart_product_count {
    display: flex !important;
}

#cart_item_count {
    position: absolute !important;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 999px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 18px;
}

#cart_item_count.visibility-hidden {
    visibility: hidden !important;
}

#cart_item_count.visibility-visible {
    visibility: visible !important;
}

.toast-notification {
    display: flex !important;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: inherit;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-ghost {
    background: transparent;
    color: var(--accent-gold);
    padding: 0.5rem 0;
}

.btn-ghost:hover {
    color: var(--accent-gold-bright);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* =============================================
   FORMS
   ============================================= */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(184, 151, 94, 0.1);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a8680' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-checkbox,
.form-radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox input,
.form-radio input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-gold);
}

.form-error {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* =============================================
   CARDS
   ============================================= */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

/* Product Card */
.product-card {
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-new { background: var(--accent-gold); color: var(--bg-primary); }
.badge-sale { background: var(--error); color: white; }
.badge-free-shipping { background: var(--success); color: white; }
.badge-limited { background: var(--warning); color: var(--bg-primary); }

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-fast);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-action-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
}

.product-action-btn svg {
    width: 16px;
    height: 16px;
}

.product-info {
    padding: 1.5rem;
}

.product-brand {
    font-size: 0.7rem;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--error);
    background: rgba(201, 74, 74, 0.1);
    padding: 0.2rem 0.5rem;
}

.product-add-cart {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(184, 151, 94, 0.3);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-add-cart:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-primary);
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    color: var(--text-primary);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* =============================================
   FEATURES BAR
   ============================================= */
.features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    text-align: left;
    border-right: 1px solid var(--border-color);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item svg {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    letter-spacing: 0.02em;
}

.feature-item p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-hero-slider {
    isolation: isolate;
}

.video-hero-track {
    position: absolute;
    inset: 0;
}

.video-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.video-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.8);
}

.video-hero-media {
    z-index: -2;
}

.video-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72) saturate(1);
    transform: scale(1.01);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 25, 39, 0.08) 0%, rgba(2, 25, 39, 0.22) 100%);
}

.hero-content {
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: transparent;
    border: 0;
    color: #ffffff;
    padding: 0;
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Roboto Condensed', 'Inter', sans-serif;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.3rem, 7vw, 4.8rem);
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: 0.16em;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    font-family: 'Roboto Condensed', 'Inter', sans-serif;
    font-weight: 700;
}

.hero-title span {
    color: inherit;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', 'Inter', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.video-hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(2, 25, 39, 0.22);
    color: #ffffff;
    z-index: 3;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.video-hero-control span {
    font-size: 1.35rem;
    line-height: 1;
}

.video-hero-control:hover {
    border-color: #ffffff;
    background: rgba(2, 25, 39, 0.45);
    color: #ffffff;
}

.video-hero-prev {
    left: 2rem;
}

.video-hero-next {
    right: 2rem;
}

.video-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    z-index: 3;
}

.video-hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(245, 242, 235, 0.45);
    background: rgba(245, 242, 235, 0.15);
    cursor: pointer;
    transition: var(--transition-fast);
}

.video-hero-dot:hover {
    border-color: rgba(245, 242, 235, 0.9);
}

.video-hero-dot.is-active {
    width: 28px;
    border-radius: 10px;
    border-color: #ffffff;
    background: #ffffff;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 3rem;
    padding: 5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184, 151, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-google-reviews p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

.footer-google-stars {
    color: #fbbc04;
    letter-spacing: 0.18em;
    margin-bottom: 0.65rem;
    font-size: 1rem;
}

.footer-google-reviews a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent-gold);
    border-bottom: 1px solid rgba(212, 165, 116, 0.45);
    padding-bottom: 0.2rem;
    font-size: 0.86rem;
    letter-spacing: 0.03em;
}

.footer-google-reviews a:hover {
    border-color: var(--accent-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-bottom {
    padding: 1.5rem 3rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-payments {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* =============================================
   WHATSAPP BUTTON
   ============================================= */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition-fast);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

/* =============================================
   GOOGLE REVIEW WIDGET
   ============================================= */
.google-review-widget {
    position: fixed;
    right: -76px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    padding: 0.9rem 0.75rem;
    min-width: 150px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff8e3 0%, #f3e0ac 100%);
    color: #2b1f08;
    border: 1px solid rgba(184, 151, 94, 0.6);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    z-index: 98;
    transition: var(--transition-fast);
}

.google-review-widget:hover {
    right: -70px;
    color: #2b1f08;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.google-review-widget-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
}

.google-review-widget-stars {
    display: none;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    color: #9c6e00;
}

@media (max-width: 768px) {
    .google-review-widget {
        top: auto;
        right: 1rem;
        bottom: 7rem;
        transform: none;
        border-radius: 10px;
        min-width: 0;
        max-width: 180px;
        padding: 0.65rem 0.7rem;
    }

    .google-review-widget-label {
        font-size: 0.68rem;
    }

    .google-review-widget-stars {
        font-size: 0.75rem;
    }
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.85rem;
}

.breadcrumb-item {
    color: var(--text-muted);
}

.breadcrumb-item a:hover {
    color: var(--accent-gold);
}

.breadcrumb-item.active {
    color: var(--text-primary);
}

.breadcrumb-separator {
    color: var(--text-muted);
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.pagination-item:hover,
.pagination-item.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.pagination-item.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* =============================================
   ALERTS & NOTIFICATIONS
   ============================================= */
.alert {
    padding: 1rem 1.5rem;
    border: 1px solid;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(74, 159, 110, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(201, 74, 74, 0.1);
    border-color: var(--error);
    color: var(--error);
}

.alert-warning {
    background: rgba(212, 167, 44, 0.1);
    border-color: var(--warning);
    color: var(--warning);
}

.alert-info {
    background: rgba(74, 139, 201, 0.1);
    border-color: var(--info);
    color: var(--info);
}

/* =============================================
   LOADING STATES
   ============================================= */
.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   FADE ANIMATIONS
   ============================================= */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   TABLES
   ============================================= */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table td {
    color: var(--text-secondary);
}

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

/* =============================================
   MODALS
   ============================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* =============================================
   QUANTITY SELECTOR
   ============================================= */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.quantity-btn:hover {
    color: var(--accent-gold);
    background: var(--bg-tertiary);
}

.quantity-input {
    width: 60px;
    height: 40px;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    color: var(--text-primary);
    text-align: center;
    font-size: 0.95rem;
}

.quantity-input:focus {
    outline: none;
}

/* =============================================
   RATING
   ============================================= */
.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
}

.rating svg.empty {
    color: var(--text-muted);
}

.rating-count {
    margin-left: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =============================================
   HOMEPAGE LAYOUT
   ============================================= */
.home-stories-section {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0 0.9rem;
}

.home-stories-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.4rem;
    scrollbar-width: thin;
}

.home-story-chip {
    min-width: 86px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
}

.home-story-chip-ring {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    background: linear-gradient(135deg, #ff9130, #ff385c, #c13584);
}

.home-story-chip-image-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-primary);
    padding: 3px;
}

.home-story-chip-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.home-story-chip-title {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-story-chip:hover .home-story-chip-title {
    color: var(--text-primary);
}

.home-category-carousel {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    align-items: start;
    gap: 1.25rem;
}

.home-category-carousel-title {
    padding-top: 6.4rem;
    max-width: 260px;
}

.home-category-carousel-title h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    line-height: 1.08;
    letter-spacing: 0;
    color: rgba(245, 242, 235, 0.72);
}

.home-category-carousel-slider {
    min-width: 0;
    overflow: hidden;
    width: 100%;
    cursor: grab;
    position: relative;
    z-index: 1;
}

.home-category-carousel-slider.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.home-category-track {
    display: block;
    width: 100%;
    padding-top: 0.35rem;
    padding-bottom: 0.2rem;
    opacity: 0;
    transition: opacity 180ms ease;
}

.home-category-track.slick-initialized {
    opacity: 1;
}

.home-category-track .slick-list {
    overflow: hidden;
}

.home-category-track .slick-track {
    display: flex;
    align-items: flex-start;
}

.home-category-track .slick-slide {
    margin-right: 1rem;
    height: auto;
}

.home-category-track .slick-slide:last-child {
    margin-right: 0;
}

.home-category-track .slick-slide > div {
    height: 100%;
}

.home-category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #0e0e0e;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
    transform: none;
    opacity: 1;
    transition: box-shadow 260ms ease, filter 260ms ease;
    filter: saturate(0.94);
}

.home-category-card.is-active {
    transform: none;
    opacity: 1;
    filter: saturate(1);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.home-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 560ms ease;
    filter: brightness(0.72);
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.home-category-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.home-category-card-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.65rem;
    z-index: 1;
    padding: 0 1.35rem;
    color: #fff;
    font-size: clamp(0.98rem, 1.2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.18;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.home-category-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.8);
}

.home-category-carousel-nav {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.85rem;
    margin-left: 0;
    grid-column: 2 / 3;
    justify-self: start;
    position: relative;
    z-index: 3;
}

.home-category-nav-btn {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.home-category-nav-btn svg {
    width: 26px;
    height: 12px;
}

.home-category-nav-btn:hover {
    border-color: rgba(255, 255, 255, 0.52);
}

.home-category-nav-prev {
    background: #b7b7ba;
    color: rgba(255, 255, 255, 0.94);
}

.home-category-nav-next {
    background: #040404;
    color: #ffffff;
}

.home-category-carousel.is-at-start .home-category-nav-prev {
    opacity: 0.68;
    cursor: default;
}

.home-category-carousel.is-at-end .home-category-nav-next {
    opacity: 0.68;
    cursor: default;
}

.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.home-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

@media (min-width: 1200px) {
    .home-products-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.home-craft-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.home-craft-media {
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    border: 1px solid rgba(184, 151, 94, 0.2);
}

.home-craft-video {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.home-craft-text {
    color: var(--text-muted);
    font-size: 1.04rem;
    line-height: 1.9;
    margin-bottom: 1.15rem;
}

.home-craft-btn {
    width: auto;
    min-width: 220px;
}

.home-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.home-story-media {
    position: relative;
}

.home-story-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: brightness(0.9);
}

.home-story-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 2rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.home-story-badge-sub {
    display: block;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.home-story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(184, 151, 94, 0.2);
}

.home-ig-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.home-ig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.home-ig-video {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
}

.home-newsletter-container {
    max-width: 600px;
}

.home-newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.home-newsletter-input {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .nav {
        padding: 1rem 2rem;
    }

    .nav-search-panel {
        right: 2rem;
    }

    .nav-logo {
        max-width: 180px;
    }

    .nav-logo img {
        height: 38px;
    }

    .section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    .campaign-topbar {
        height: 36px;
    }

    .campaign-topbar-item {
        font-size: 0.74rem;
        letter-spacing: 0.02em;
    }

    .top-bar {
        display: none;
    }

    .nav {
        padding: 1rem 1.5rem;
    }

    body.homepage .campaign-topbar {
        border-top: 0;
        border-bottom: 0;
    }

    body.homepage .nav {
        top: 36px;
        border-top: 0;
        border-bottom: 0;
    }

    body.homepage .hero-content {
        padding-top: clamp(6rem, 12vh, 8rem);
    }

    .nav-search-panel {
        top: calc(100% + 8px);
        right: 1rem;
        width: calc(100vw - 2rem);
    }

    .nav-logo {
        max-width: 150px;
    }

    .nav-logo img {
        height: 34px;
    }

    .nav-center {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
    }

    .nav-center.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-center a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
        z-index: 101;
    }

    .features-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item:nth-child(2) {
        border-right: none;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .video-hero-control {
        width: 40px;
        height: 40px;
    }

    .video-hero-prev {
        left: 0.9rem;
    }

    .video-hero-next {
        right: 0.9rem;
    }

    .video-hero-dots {
        bottom: 1.2rem;
    }

    .btn {
        width: 100%;
    }

    .home-products-header {
        align-items: flex-start;
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .home-category-carousel {
        grid-template-columns: 1fr;
    }

    .home-category-carousel-title {
        padding-top: 0;
        max-width: none;
    }

    .home-category-carousel-title h3 {
        font-size: 1.6rem;
    }

    .home-category-card { width: 100%; }

    .home-category-card-title {
        bottom: 1.15rem;
        padding: 0 0.9rem;
        font-size: 0.92rem;
    }

    .home-category-carousel-nav {
        grid-column: 1 / -1;
        margin-top: 0.65rem;
    }

    .home-stories-section {
        padding-top: 0.8rem;
    }

    .home-stories-scroll {
        gap: 0.8rem;
    }

    .home-story-chip {
        min-width: 74px;
    }

    .home-story-chip-ring {
        width: 66px;
        height: 66px;
    }

    .home-story-chip-title {
        font-size: 0.68rem;
    }

    .home-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .home-products-grid .product-info {
        padding: 0.9rem;
    }

    .home-products-grid .product-name {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .home-products-grid .product-add-cart {
        padding: 0.6rem 0.75rem;
        font-size: 0.82rem;
    }

    .home-craft-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-craft-video {
        aspect-ratio: 16 / 11;
    }

    .home-craft-text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .home-craft-btn {
        width: 100%;
        min-width: 0;
    }

    .home-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-story-media {
        max-width: 520px;
        margin: 0 auto;
    }

    .home-story-badge {
        right: 1rem;
        bottom: 1rem;
        padding: 1rem 1.1rem;
        font-size: 2rem;
    }

    .home-story-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .home-story-content p {
        font-size: 1rem !important;
        line-height: 1.75 !important;
    }

    .home-ig-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .home-newsletter-input {
        min-width: 0;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .features-bar {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .section {
        padding: 3rem 1rem;
    }

    .home-category-carousel {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-category-carousel-title {
        padding-top: 0;
        max-width: none;
    }

    .home-category-carousel-title h3 {
        font-size: 1.45rem;
    }

    .home-category-card { width: 100%; }

    .home-category-card-title {
        bottom: 1rem;
        padding: 0 0.75rem;
        font-size: 0.84rem;
    }

    .home-category-carousel-nav {
        grid-column: 1 / -1;
        margin-top: 0.65rem;
    }

    .home-products-grid {
        gap: 0.75rem;
    }

    .home-products-grid .product-brand {
        font-size: 0.68rem;
    }

    .home-story-chip {
        min-width: 70px;
    }

    .home-story-chip-ring {
        width: 62px;
        height: 62px;
    }

    .home-products-grid .price-current {
        font-size: 0.95rem;
    }

    .home-products-grid .product-add-cart {
        font-size: 0.78rem;
        padding: 0.55rem 0.5rem;
    }

    .home-craft-layout {
        gap: 1.2rem;
    }

    .home-craft-media {
        border-radius: 12px;
    }

    .home-craft-text {
        font-size: 0.94rem;
        margin-bottom: 0.95rem;
    }

    .home-story-badge {
        right: 0.6rem;
        bottom: 0.6rem;
        font-size: 1.6rem;
        padding: 0.75rem 0.8rem;
    }

    .home-story-badge-sub {
        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }

    .home-story-stats {
        grid-template-columns: 1fr;
    }

    .home-ig-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   BREADCRUMB (Extended)
   ============================================= */
.breadcrumb {
    padding: 1rem 2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

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

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

.breadcrumb span {
    color: var(--text-muted);
}

.breadcrumb span:last-child {
    color: var(--text-primary);
}

/* =============================================
   LEGACY PAGE COMPATIBILITY
   ============================================= */
#wrapper {
    padding: 1.75rem 0 4rem;
}

#wrapper .nav-breadcrumb {
    margin-bottom: 1rem;
}

#wrapper .nav-breadcrumb .breadcrumb {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
}

#wrapper .nav-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

#wrapper .nav-breadcrumb .breadcrumb-item a {
    color: var(--text-muted);
}

#wrapper .nav-breadcrumb .breadcrumb-item.active {
    color: var(--text-primary);
}

#wrapper .page-title {
    margin-bottom: 1.5rem;
}

#wrapper .support {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
}

#wrapper .profile-tab-content,
#wrapper .ticket-container,
#wrapper .new-ticket-content,
#wrapper .support-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
}

#wrapper .table {
    color: var(--text-primary);
}

#wrapper .table thead th {
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

#wrapper .table td {
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    vertical-align: middle;
}

#wrapper .table-striped tbody tr:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.02);
}

#wrapper .row-col-messages .col-message-sidebar .messages-sidebar,
#wrapper .row-col-messages .col-message-content .messages-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

#wrapper .row-col-messages .conversation-item {
    border-bottom: 1px solid var(--border-color);
}

#wrapper .row-col-messages .conversation-item:last-child {
    border-bottom: 0;
}

#wrapper .messages-head {
    border-bottom: 1px solid var(--border-color);
}

#wrapper .ticket-buttons .btn,
#wrapper .btn-submit-request {
    white-space: nowrap;
}

#wrapper .float-right .pagination,
#wrapper .pagination {
    justify-content: flex-end;
}

@media (max-width: 768px) {
    #wrapper {
        padding: 1rem 0 2.5rem;
    }

    #wrapper .profile-tab-content,
    #wrapper .ticket-container,
    #wrapper .new-ticket-content,
    #wrapper .support-content,
    #wrapper .support {
        padding: 1rem;
        border-radius: 10px;
    }

    #wrapper .ticket-buttons .btn,
    #wrapper .btn-submit-request {
        float: none !important;
        display: inline-flex;
        margin-top: 0.5rem;
    }
}

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.products-page {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.products-page .container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Sidebar */
.products-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-section:last-of-type {
    border-bottom: none;
}

.sidebar-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.category-list a:hover,
.category-list a.active {
    color: var(--accent-gold);
}

.category-list span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.price-range {
    padding: 0.5rem 0;
}

.price-slider {
    width: 100%;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    appearance: none;
    margin-bottom: 1.5rem;
}

.price-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-inputs input {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.85rem;
    text-align: center;
}

.price-inputs span {
    color: var(--text-muted);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.filter-checkbox:hover {
    color: var(--text-primary);
}

/* Products Main */
.products-main {
    min-height: 100vh;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.results-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.results-count strong {
    color: var(--text-primary);
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-sort select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a8680' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.view-toggle {
    display: flex;
    border: 1px solid var(--border-color);
}

.view-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.view-btn:first-child {
    border-right: 1px solid var(--border-color);
}

.view-btn:hover,
.view-btn.active {
    color: var(--accent-gold);
    background: var(--bg-secondary);
}

.view-btn svg {
    width: 18px;
    height: 18px;
}

#baguetteBox-overlay:not(.visible) {
    display: none !important;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.pagination-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pagination-btn:hover:not(:disabled),
.pagination-btn.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.pagination-btn.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn svg {
    width: 18px;
    height: 18px;
}

.pagination-dots {
    color: var(--text-muted);
    padding: 0 0.5rem;
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg-secondary);
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-fast);
}

.product-main-image:hover .gallery-zoom,
.product-main-image:focus-within .gallery-zoom {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (hover: none) {
    .gallery-zoom {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.gallery-zoom:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
}

.gallery-zoom svg {
    width: 20px;
    height: 20px;
}

.product-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    padding: 0;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    overflow: hidden;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--accent-gold);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-detail-info {
    padding-top: 1rem;
}

.product-detail-header {
    margin-bottom: 1.25rem;
}

.product-main-image .product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-detail-title {
    font-size: clamp(1.35rem, 1.5vw, 1.95rem);
    font-family: var(--font-body);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0;
}

.product-label-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(245, 242, 235, 0.45);
    border-radius: 10px;
    color: rgba(245, 242, 235, 0.85);
    font-size: 0.52em;
    font-weight: 500;
    line-height: 1;
    padding: 0.28em 0.45em;
    margin-left: 0.35em;
    vertical-align: middle;
}

.product-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.25rem;
}

.product-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.product-meta-list .meta-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    column-gap: 1.1rem;
}

.product-meta-list .meta-label {
    font-size: clamp(0.95rem, 1.05vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1;
}

.product-meta-list .meta-value,
.product-meta-list .meta-brand-link {
    font-size: clamp(1rem, 1.15vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1;
}

.product-meta-list .meta-brand-link {
    text-decoration: underline;
    text-underline-offset: 0.16em;
    word-break: keep-all;
}

.product-rating-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.35rem;
    gap: 0.55rem;
}

.product-rating-side .stars {
    display: flex;
    gap: 0.35rem;
}

.product-rating-side .stars svg {
    width: 28px;
    height: 28px;
}

.review-write-link {
    border: 0;
    background: transparent;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1vw, 1.15rem);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    padding: 0;
    cursor: pointer;
}

.product-detail-price {
    margin-bottom: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.product-detail-price .price-discount-layout {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.product-detail-price .price-discount-badge {
    min-width: 92px;
    min-height: 88px;
    background: #ff1717;
    color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.6rem;
}

.product-detail-price .price-discount-badge strong {
    font-size: 1.95rem;
    line-height: 1;
    font-weight: 700;
}

.product-detail-price .price-discount-badge span {
    font-size: 0.82rem;
    line-height: 1.1;
    text-transform: lowercase;
    margin-top: 0.25rem;
}

.product-detail-price .price-values {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.product-detail-price .price-current {
    font-size: clamp(1.25rem, 1.65vw, 1.8rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.05;
}

.product-detail-price .price-old {
    font-size: clamp(0.95rem, 1.05vw, 1.2rem);
    color: #e01919;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #e01919;
    line-height: 1;
}

.installment-info-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: clamp(0.82rem, 0.9vw, 1rem);
    margin-bottom: 1rem;
}

.installment-info-row svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    flex: 0 0 auto;
}

.installment-info-row strong {
    color: var(--text-primary);
    font-weight: 700;
}

.installment-info-row u {
    text-underline-offset: 0.12em;
}

@media (max-width: 767px) {
    .product-detail-title {
        font-size: 1.45rem;
    }

    .product-meta-top {
        flex-direction: column;
        gap: 0.9rem;
    }

    .product-meta-list .meta-row {
        grid-template-columns: 66px minmax(0, 1fr);
        column-gap: 0.8rem;
    }

    .product-meta-list .meta-label,
    .product-meta-list .meta-value,
    .product-meta-list .meta-brand-link {
        font-size: 0.92rem;
    }

    .product-rating-side .stars svg {
        width: 24px;
        height: 24px;
    }

    .product-detail-price .price-discount-layout {
        align-items: flex-start;
        gap: 0.75rem;
    }

    .product-detail-price .price-discount-badge {
        min-width: 80px;
        min-height: 74px;
    }

    .product-detail-price .price-discount-badge strong {
        font-size: 1.35rem;
    }

    .product-detail-price .price-current {
        font-size: 1.45rem;
    }

    .product-detail-price .price-old {
        font-size: 0.85rem;
    }

    .installment-info-row {
        font-size: 0.85rem;
    }
}

.product-detail-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-specs {
    background: var(--bg-secondary);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.product-specs h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-specs table {
    width: 100%;
}

.product-specs td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.product-specs td:first-child {
    color: var(--text-muted);
    width: 40%;
}

.product-specs td:last-child {
    color: var(--text-primary);
}

.product-specs tr:last-child td {
    border-bottom: none;
}

.installment-cards-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1360px) {
    .installment-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.payment-summary-rows {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}

.payment-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
}

.payment-summary-row span {
    color: var(--text-muted);
    font-size: 0.86rem;
}

.payment-summary-row strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.installment-cards-title {
    margin: 0 0 1rem;
    padding: 0.8rem 1rem;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    background: #d9d9d9;
    color: #2f2f2f;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
}

.installment-api-status {
    margin: -0.35rem 0 0.95rem;
    min-height: 1.1rem;
    color: #bdbdbd;
    font-size: 0.8rem;
}

.installment-bank-card {
    --installment-accent: #0b8f1a;
    --installment-accent-soft: #22a633;
    --installment-text: #0a7f18;
    border: 1px solid var(--installment-accent-soft);
    background: #ececec;
    border-radius: 8px;
    overflow: hidden;
}

.installment-bank-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--installment-accent-soft);
}

.installment-bank-brand {
    display: inline-flex;
    align-items: center;
}

.installment-bank-logo {
    width: auto;
    height: 48px;
    max-width: 180px;
    object-fit: contain;
}

.installment-bank-logo-fallback {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.installment-bank-name {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.88);
}

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

.installment-table th,
.installment-table td {
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.installment-table th {
    font-weight: 600;
    color: #fff;
    background: var(--installment-accent);
}

.installment-table td {
    color: var(--installment-text);
    background: #ececec;
}

.installment-table td span,
.installment-table th span {
    color: inherit !important;
}

.installment-bank-card-foot {
    padding: 0.6rem 1rem 0.8rem;
    font-size: 2rem;
    color: #fff;
    background: var(--installment-accent);
    text-align: center;
    line-height: 1;
    text-transform: lowercase;
}

.installment-bank-card.theme-bonus {
    --installment-accent: #008f00;
    --installment-accent-soft: #5dcb2d;
    --installment-text: #0d8a19;
}

.installment-bank-card.theme-maximum {
    --installment-accent: #ec3f91;
    --installment-accent-soft: #ea0f74;
    --installment-text: #ec237e;
}

.installment-bank-card.theme-axess {
    --installment-accent: #8b7a0d;
    --installment-accent-soft: #dfc100;
    --installment-text: #907a04;
}

.installment-bank-card.theme-cardfinans {
    --installment-accent: #2c77ea;
    --installment-accent-soft: #1f4fa0;
    --installment-text: #2456a9;
}

.installment-bank-card.theme-world {
    --installment-accent: #9b40b8;
    --installment-accent-soft: #6f1388;
    --installment-text: #7b2e9a;
}

.installment-bank-card.theme-paraf {
    --installment-accent: #0d7fae;
    --installment-accent-soft: #34a8d9;
    --installment-text: #0d7fae;
}

.installment-bank-card.theme-saglam {
    --installment-accent: #9f1b32;
    --installment-accent-soft: #c02b45;
    --installment-text: #9f1b32;
}

.installment-bank-card.theme-default {
    --installment-accent: #3f3f3f;
    --installment-accent-soft: #717171;
    --installment-text: #3f3f3f;
}

.installment-bank-card.theme-bonus .installment-bank-logo,
.installment-bank-card.theme-maximum .installment-bank-logo,
.installment-bank-card.theme-world .installment-bank-logo,
.installment-bank-card.theme-cardfinans .installment-bank-logo {
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.35));
}

@media (max-width: 767px) {
    .product-specs {
        overflow-x: auto;
    }

    .product-specs table {
        min-width: 0;
        table-layout: fixed;
    }

    .product-specs td {
        word-break: break-word;
    }

    .installment-bank-card {
        overflow-x: auto;
    }

    .installment-cards-grid {
        grid-template-columns: 1fr;
    }

    .installment-cards-title {
        font-size: 1.4rem;
        padding: 0.65rem 0.75rem;
    }

    .installment-table th,
    .installment-table td {
        padding: 0.6rem 0.75rem;
        font-size: 0.82rem;
        white-space: normal;
    }

    .installment-bank-logo {
        height: 40px;
        max-width: 150px;
    }

    .installment-bank-card-foot {
        font-size: 1.5rem;
    }
}

/* Product Extras (Custom Tile Layout) */
.extra-options-block {
    margin-bottom: 1.5rem;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.product-personalization-note.is-hidden {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.processing-options-block,
.product-extras.extra-options-block {
    margin-bottom: 0.9rem;
}

.extra-options-open-btn,
.extra-options-open-btn-full {
    width: 100%;
    max-width: none;
}

.extra-options-open-btn {
    min-height: 56px;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.extra-options-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 12000;
    padding: 1rem;
}

.extra-options-modal-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.66);
}

.extra-options-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(760px, 96vw);
    max-height: 85vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: #101010;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.extra-options-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.extra-options-modal-title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text-primary);
}

.extra-options-modal-close {
    border: 0;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.extra-options-modal-body {
    max-height: calc(85vh - 66px);
    overflow: auto;
    padding: 1rem;
}

.extra-options-modal-body .extra-field-block {
    margin-bottom: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.extra-options-modal-body .control-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--text-primary);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.extra-options-modal-body .extra-field-block:last-child {
    margin-bottom: 0;
}

.extra-options-modal-body .form-control,
.extra-options-modal-body .custom-select {
    width: 100%;
    min-height: 42px;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-primary);
}

.extra-options-modal-body .extra-options-list {
    display: grid;
    gap: 0.5rem;
}

.extra-options-modal-body .custom-control {
    margin: 0;
}

.extra-options-modal-body .custom-control-label {
    width: 100%;
    color: var(--text-secondary);
    line-height: 1.35;
}

.extra-options-modal-body .extra-option-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0;
}

.extra-options-modal-body .extra-option-row-label {
    width: 100%;
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    min-height: 44px;
    padding: 0.55rem 2.8rem 0.55rem 0.8rem;
    text-align: left;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(0, 0, 0, 0.35) !important;
    box-shadow: none !important;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.extra-options-modal-body .extra-option-main {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.extra-options-modal-body .extra-option-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.extra-options-modal-body .extra-option-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    white-space: nowrap;
}

.extra-options-modal-body .extra-option-icon-circle {
    width: 26px;
    height: 26px;
    min-width: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

.extra-options-modal-body .extra-option-icon-circle img {
    width: 68%;
    height: 68%;
}

.extra-options-modal-body .extra-option-initial {
    font-size: 0.95rem;
    font-weight: 600;
}

.extra-options-modal-body .extra-option-row-label:hover {
    border-color: rgba(184, 151, 94, 0.65) !important;
    background: rgba(0, 0, 0, 0.44) !important;
}

.extra-options-modal-body .extra-option-input-hidden:checked + .extra-option-row-label {
    border-color: var(--accent-gold) !important;
    box-shadow: inset 0 0 0 1px rgba(184, 151, 94, 0.35) !important;
    background: rgba(184, 151, 94, 0.14) !important;
}

.extra-options-title {
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.extra-options-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.9rem !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding: 0.2rem 0.2rem 0.5rem;
}

.extra-options-grid::-webkit-scrollbar {
    height: 6px;
}

.extra-options-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.extra-option-tile {
    position: relative;
    flex: 0 0 170px;
    width: 170px;
    min-width: 170px;
    max-width: 170px;
    scroll-snap-align: start;
}

.extra-option-image-trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    transition: var(--transition-fast);
}

.extra-option-image-trigger:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.48);
    transform: scale(1.05);
}

.extra-option-image-trigger svg {
    width: 14px;
    height: 14px;
    pointer-events: none;
}

.extra-option-image-trigger.is-disabled {
    opacity: 0.42;
}

.extra-option-input-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    display: none !important;
}

.extra-option-label {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1.1rem 0.8rem;
    background: rgba(0, 0, 0, 0.22) !important;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
    min-height: 118px;
    text-align: center;
    border: 0 !important;
    width: 100%;
}

.extra-option-label:hover {
    background: rgba(0, 0, 0, 0.28) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-1px);
}

.extra-option-input-hidden:checked + .extra-option-label {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3) !important;
    outline: 1px solid var(--accent-gold);
}

.extra-option-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06) !important;
}

.extra-option-icon-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.1);
}

.extra-option-initial {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.extra-option-text {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.2;
}

.extra-option-price.extra-option-text {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .extra-options-grid {
        scroll-snap-type: x mandatory;
    }
}

@media (max-width: 768px) {
    .extra-options-grid {
        gap: 0.7rem !important;
    }
    .extra-option-tile {
        flex: 0 0 146px;
        width: 146px;
        min-width: 146px;
        max-width: 146px;
    }

    .extra-options-open-btn {
        min-height: 52px;
        font-size: 0.74rem;
        letter-spacing: 0.07em;
    }
}

/* Gift Package Checkbox (Custom) - Strong Override */
.gift-package-control .gift-package-input {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    display: none !important;
    appearance: none !important;
}

.gift-package-control .gift-package-label {
    position: relative;
    padding-left: 34px !important;
    cursor: pointer;
    color: var(--text-primary) !important;
}

.gift-package-control .gift-package-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.45);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.gift-package-control .gift-package-label::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 10px;
    height: 6px;
    border-left: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(-45deg);
    opacity: 0;
}

.gift-package-control .gift-package-input:checked + .gift-package-label::before {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.gift-package-control .gift-package-input:checked + .gift-package-label::after {
    opacity: 1;
}

.extra-option-input-hidden:checked + .extra-option-label .extra-option-text {
    color: var(--accent-gold);
}

.processing-option-control {
    position: relative;
}

.processing-option-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.processing-option-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.processing-option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.processing-option-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    min-height: 44px;
    padding: 0.55rem 2.8rem 0.55rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.processing-option-label:hover {
    border-color: rgba(184, 151, 94, 0.65);
    background: rgba(0, 0, 0, 0.44);
}

.processing-option-input:checked + .processing-option-label {
    border-color: var(--accent-gold);
    box-shadow: inset 0 0 0 1px rgba(184, 151, 94, 0.35);
    background: rgba(184, 151, 94, 0.14);
}

.processing-option-name {
    font-weight: 600;
    line-height: 1.3;
}

.processing-option-price {
    color: var(--accent-gold);
    font-weight: 600;
    white-space: nowrap;
}

.processing-option-image-trigger-inline {
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 4;
}

.processing-option-image-trigger-inline:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.48);
    transform: translateY(-50%) scale(1.05);
}

.processing-option-image-trigger-inline svg {
    width: 14px;
    height: 14px;
    pointer-events: none;
}

.processing-option-image-trigger-inline.is-disabled {
    opacity: 0.42;
}

.option-image-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 13000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-image-preview-modal[hidden] {
    display: none !important;
}

.option-image-preview-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.7);
}

.option-image-preview-dialog {
    position: relative;
    z-index: 2;
    width: min(90vw, 560px);
    background: #121212;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.option-image-preview-title {
    margin: 0 2rem 0.75rem 0;
    font-size: 1rem;
    color: #fff;
}

.option-image-preview-close {
    position: absolute;
    top: 6px;
    right: 10px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.option-image-preview-img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    background: #000;
}

/* Gift Package Checkbox (Custom) */
.gift-package-control .gift-package-checkbox {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0.6rem;
    position: relative;
}

.gift-package-control .gift-package-input {
    position: absolute;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    display: none !important;
}

.gift-package-control .gift-package-label {
    position: relative;
    padding-left: 34px;
    cursor: pointer;
    color: var(--text-primary);
    line-height: 1.4;
}

.gift-package-control .gift-package-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.45);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.gift-package-control .gift-package-label::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 10px;
    height: 6px;
    border-left: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(-45deg);
    opacity: 0;
    transition: var(--transition-fast);
}

.gift-package-control .gift-package-input:checked + .gift-package-label::before {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.gift-package-control .gift-package-input:checked + .gift-package-label::after {
    opacity: 1;
}

/* Product Actions */
.product-actions-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
}

.qty-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    color: var(--accent-gold);
    background: var(--bg-secondary);
}

.qty-input {
    width: 60px;
    height: 48px;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    color: var(--text-primary);
    text-align: center;
    font-size: 1rem;
}

.qty-input:focus {
    outline: none;
}

.add-to-cart-btn {
    flex: 1;
    min-width: 200px;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 0.9rem;
}

/* Product Option */
.product-option {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
}

.option-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.option-label input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-gold);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

/* Product Tabs */
.product-tabs {
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.tab-buttons {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--accent-gold);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
}

.product-tabs .tab-content {
    display: none;
}

.product-tabs .tab-content.active {
    display: block;
}

.product-tabs .tab-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.product-tabs .tab-content h4 {
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.product-tabs .tab-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

.product-tabs .tab-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.product-tabs .tab-content li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    list-style: disc;
}

/* Shipping Info */
.shipping-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.shipping-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.shipping-item p {
    font-size: 0.9rem;
}

/* Reviews */
.reviews-summary {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.reviews-average {
    text-align: center;
}

.average-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.reviews-average .stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.reviews-average .stars svg {
    width: 20px;
    height: 20px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 1.5rem;
    background: var(--bg-secondary);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stars.small svg {
    width: 14px;
    height: 14px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =============================================
   CART PAGE
   ============================================= */
.cart-page {
    padding: 3rem 2rem;
    background: var(--bg-primary);
    min-height: 70vh;
}

.page-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

/* Cart Steps */
.cart-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.step.active .step-number {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.step.completed .step-number {
    border-color: var(--success);
    background: var(--success);
    color: white;
}

.step-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step.active .step-text {
    color: var(--accent-gold);
}

.step-line {
    width: 80px;
    height: 2px;
    background: var(--border-color);
    margin: 0 1rem;
    margin-bottom: 1.5rem;
}

/* Cart Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Cart Items */
.cart-items {
    background: var(--bg-secondary);
    padding: 2rem;
}

.cart-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-product {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-item-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: var(--bg-tertiary);
}

.cart-item-details h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.cart-item-details h3 a:hover {
    color: var(--accent-gold);
}

.cart-item-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.cart-item-extra {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 0;
}

.cart-item-price {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.cart-item-price .price-old {
    display: block;
    font-size: 0.8rem;
}

.cart-item-qty .quantity-selector {
    transform: scale(0.85);
    transform-origin: left;
}

.cart-item-qty .quantity-selector.small {
    transform: scale(0.9);
}

.cart-item-total {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.cart-item-remove {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    background: var(--error);
    border-color: var(--error);
    color: white;
}

.cart-item-remove svg {
    width: 18px;
    height: 18px;
}

.cart-coupon {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.cart-coupon input {
    flex: 1;
}

/* Cart Summary */
.cart-summary {
    background: var(--bg-secondary);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.summary-row span:first-child {
    color: var(--text-muted);
}

.summary-row span:last-child {
    color: var(--text-primary);
}

.summary-row.discount span:last-child {
    color: var(--success);
}

.summary-row.shipping .free {
    color: var(--success);
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-row.total span:last-child {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.summary-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(184, 151, 94, 0.1);
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.summary-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.payment-icons {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.payment-icons span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.payment-icons .icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

/* Cart Empty */
.cart-empty {
    text-align: center;
    padding: 5rem 2rem;
}

.cart-empty svg {
    width: 100px;
    height: 100px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.cart-empty h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cart-empty p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* =============================================
   AUTH PAGE (LOGIN/REGISTER)
   ============================================= */
.auth-page {
    padding: 4rem 2rem;
    background: var(--bg-primary);
    min-height: 80vh;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.auth-form {
    background: var(--bg-secondary);
    padding: 3rem;
}

.auth-header {
    margin-bottom: 2rem;
    text-align: center;
}

.auth-header h1 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
}

.password-toggle:hover {
    color: var(--accent-gold);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.forgot-link {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    padding: 0 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.social-btn svg {
    flex-shrink: 0;
}

.auth-switch {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-switch button {
    background: none;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
    font-size: inherit;
}

.auth-switch button:hover {
    text-decoration: underline;
}

/* Auth Benefits */
.auth-benefits {
    padding: 2rem 0;
}

.auth-benefits h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.auth-benefits ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-benefits li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.auth-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
}

.auth-trust svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.auth-trust p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-text {
    padding: 2rem 0;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--accent-gold);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-features .feature svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold), var(--border-color));
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    border: 3px solid var(--bg-secondary);
}

.timeline-year {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
}

.value-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page {
    padding: 4rem 2rem;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    transition: var(--transition-fast);
}

.contact-card:hover {
    background: var(--bg-tertiary);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(184, 151, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.contact-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-content a {
    color: var(--text-muted);
}

.contact-content a:hover {
    color: var(--accent-gold);
}

.contact-note {
    font-size: 0.8rem !important;
    margin-top: 0.25rem;
}

.contact-social {
    padding: 1.5rem;
    background: var(--bg-secondary);
}

.contact-social h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-secondary);
    padding: 3rem;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* Map Section */
.map-section {
    background: var(--bg-secondary);
}

.map-container {
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.95) contrast(0.9);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =============================================
   RESPONSIVE (Additional)
   ============================================= */
@media (max-width: 1024px) {
    .products-page .container {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        padding: 2rem;
        background: var(--bg-secondary);
        margin-bottom: 2rem;
    }

    .sidebar-section {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .auth-container {
        grid-template-columns: 1fr;
    }

    .auth-benefits {
        order: -1;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content.reverse {
        direction: ltr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .cart-header-row {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        background: var(--bg-tertiary);
        margin-bottom: 1rem;
    }

    .cart-item-product {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-product img {
        width: 100px;
        height: 100px;
    }

    .cart-item-qty .quantity-selector {
        transform: scale(1);
        justify-content: center;
    }

    .cart-item-price,
    .cart-item-total {
        text-align: center;
    }

    .cart-item-remove {
        margin: 0 auto;
    }

    .cart-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .step-line {
        display: none;
    }

    .product-thumbnails {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .tab-buttons {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .form-row.two-col {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ==========================================
   FAVORITES PAGE
   ========================================== */

.favorites-page {
    padding: 4rem 0;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.favorite-item {
    position: relative;
}

.remove-favorite {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.remove-favorite svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
    transition: stroke 0.3s ease;
}

.remove-favorite:hover {
    background: var(--error);
}

.remove-favorite:hover svg {
    stroke: white;
}

.favorites-empty {
    padding: 4rem 2rem;
    text-align: center;
}

.empty-state {
    max-width: 400px;
    margin: 0 auto;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    stroke: var(--accent-gold);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.favorites-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* ==========================================
   CATEGORIES PAGE
   ========================================== */

.categories-page {
    padding: 4rem 0;
}

.categories-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-secondary);
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-card-large .category-image {
    height: 350px;
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-card-large .category-name {
    font-size: 2rem;
}

.category-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.category-card:hover .category-link {
    gap: 1rem;
}

/* Collections Section */
.collections-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.collections-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.collection-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.collection-card:hover {
    border-color: var(--accent-gold);
    background: var(--bg-tertiary);
}

.collection-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(184, 151, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-gold);
}

.collection-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.collection-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================
   SALE / DISCOUNTS PAGE
   ========================================== */

.sale-banner {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.sale-banner-content {
    max-width: 600px;
    margin: 0 auto;
}

.sale-badge {
    display: inline-block;
    background: var(--error);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.sale-banner h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sale-banner p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.sale-countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.countdown-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.sale-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.sale-filter {
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sale-filter:hover,
.sale-filter.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-primary);
}

.product-savings {
    background: rgba(255, 107, 107, 0.1);
    color: var(--error);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

.badge-limited {
    background: var(--warning) !important;
    color: var(--bg-primary) !important;
}

.badge-best {
    background: var(--accent-gold) !important;
    color: var(--bg-primary) !important;
}

/* ==========================================
   ORDER TRACKING PAGE
   ========================================== */

.order-tracking-page {
    padding: 4rem 0;
}

.tracking-form-container {
    max-width: 500px;
    margin: 0 auto 3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tracking-input-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.tracking-input-group input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.tracking-input-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.tracking-form .btn {
    margin-top: 0.5rem;
}

/* Order Result */
.order-result {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.order-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.order-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.order-status {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-shipping {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.status-delivered {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.status-preparing {
    background: rgba(184, 151, 94, 0.15);
    color: var(--accent-gold);
}

/* Tracking Timeline */
.tracking-timeline {
    padding: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}

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

.timeline-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 45px;
    width: 2px;
    height: calc(100% - 45px);
    background: var(--border-color);
}

.timeline-step.completed:not(:last-child)::before {
    background: var(--success);
}

.timeline-step.active:not(:last-child)::before {
    background: linear-gradient(to bottom, var(--accent-gold) 50%, var(--border-color) 50%);
}

.timeline-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
}

.timeline-step.completed .timeline-icon {
    background: var(--success);
    border-color: var(--success);
}

.timeline-step.completed .timeline-icon svg {
    stroke: white;
}

.timeline-step.active .timeline-icon {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    animation: pulse 2s infinite;
}

.timeline-step.active .timeline-icon svg {
    stroke: var(--bg-primary);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184, 151, 94, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(184, 151, 94, 0); }
}

.timeline-content h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-date {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.cargo-info {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cargo-info a {
    color: var(--accent-gold);
    text-decoration: none;
}

.cargo-info a:hover {
    text-decoration: underline;
}

/* Order Items */
.order-items {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
}

.order-items h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-of-type {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.order-item-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.order-item-qty {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.order-item-price {
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Order Summary Box */
.order-summary-box {
    padding: 1.5rem 2rem;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
}

.order-summary-box .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.order-summary-box .summary-row.total {
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.free-shipping {
    color: var(--success);
}

/* Delivery Address */
.delivery-address {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
}

.delivery-address h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.delivery-address p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Order Help */
.order-help {
    padding: 1.5rem 2rem;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.order-help p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.help-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Tracking FAQ */
.tracking-faq {
    max-width: 700px;
    margin: 0 auto;
}

.tracking-faq h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .categories-main-grid {
        grid-template-columns: 1fr;
    }

    .category-card-large .category-image {
        height: 250px;
    }

    .sale-banner h1 {
        font-size: 2rem;
    }

    .sale-countdown {
        gap: 0.75rem;
    }

    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.75rem;
    }

    .order-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .timeline-step {
        gap: 1rem;
    }

    .order-item {
        flex-wrap: wrap;
    }

    .order-item-price {
        width: 100%;
        text-align: right;
    }

    .help-buttons {
        flex-direction: column;
    }

    .favorites-actions {
        flex-direction: column;
    }

    .collections-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }

    .sale-countdown {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .countdown-item {
        flex: 1;
        min-width: 70px;
    }
}

/* ==========================================
   ACCOUNT PAGE (Orders, Profile, Settings)
   ========================================== */

.account-page {
    padding: 3rem 2rem;
    background: var(--bg-primary);
    min-height: 70vh;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Account Sidebar */
.account-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.account-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--bg-primary);
    font-size: 1.1rem;
}

.user-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.account-nav {
    background: var(--bg-secondary);
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.account-nav-item:last-child {
    border-bottom: none;
}

.account-nav-item:hover,
.account-nav-item.active {
    color: var(--accent-gold);
    background: var(--bg-tertiary);
}

.account-nav-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.account-nav-item.logout {
    color: var(--error);
}

.account-nav-item.logout:hover {
    color: var(--error);
    background: rgba(201, 74, 74, 0.1);
}

/* Account Content */
.account-content {
    min-height: 500px;
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.account-header h1 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.account-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Orders Filters */
.orders-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.order-filter {
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.order-filter:hover,
.order-filter.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-primary);
}

/* Order Cards */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.order-card:hover {
    border-color: var(--accent-gold);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-number {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.order-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.order-status {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.status-shipping {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.status-delivered {
    background: rgba(74, 159, 110, 0.15);
    color: var(--success);
}

.status-preparing {
    background: rgba(184, 151, 94, 0.15);
    color: var(--accent-gold);
}

.status-cancelled {
    background: rgba(201, 74, 74, 0.15);
    color: var(--error);
}

.order-card-items {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-item-mini img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    background: var(--bg-tertiary);
}

.order-item-mini .item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-item-mini .item-name {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.order-item-mini .item-qty {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.order-total span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-total strong {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-left: 0.5rem;
}

.order-actions {
    display: flex;
    gap: 0.75rem;
}

/* Orders Empty */
.orders-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.orders-empty svg {
    width: 80px;
    height: 80px;
    color: var(--text-muted);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.orders-empty h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.orders-empty p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ==========================================
   ORDER DETAIL PAGE
   ========================================== */

.order-detail-page {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.order-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.back-link:hover {
    color: var(--accent-gold);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

.order-date-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.order-status-badge svg {
    width: 18px;
    height: 18px;
}

/* Order Progress */
.order-progress-wrapper {
    background: var(--bg-secondary);
    padding: 2rem;
    margin-bottom: 2rem;
}

.order-progress {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    flex: 1;
}

.progress-step .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.progress-step .step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-muted);
}

.progress-step.completed .step-icon {
    background: var(--success);
    border-color: var(--success);
}

.progress-step.completed .step-icon svg {
    stroke: white;
}

.progress-step.active .step-icon {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.progress-step.active .step-icon svg {
    stroke: var(--bg-primary);
}

.step-info .step-title {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.step-info .step-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin-top: 25px;
}

.progress-line.completed {
    background: var(--success);
}

.cargo-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 4px;
}

.cargo-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cargo-company {
    font-weight: 500;
    color: var(--text-primary);
}

.cargo-tracking {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Order Detail Layout */
.order-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.order-detail-section {
    background: var(--bg-secondary);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-detail-section h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item-detail {
    display: flex;
    gap: 1.25rem;
    padding: 1rem;
    background: var(--bg-tertiary);
}

.order-item-detail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.order-item-detail .item-info {
    flex: 1;
}

.order-item-detail .item-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.item-attributes {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.item-attributes span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.item-sku {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.item-qty-price {
    text-align: right;
}

.item-qty-price .qty {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.item-qty-price .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Order Addresses */
.order-addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.address-box {
    background: var(--bg-secondary);
    padding: 1.5rem;
}

.address-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.address-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.address-box .address-name {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.address-box .address-phone {
    color: var(--accent-gold);
    margin-top: 0.5rem;
}

/* Order Summary Card */
.order-summary-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-summary-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.order-summary-card .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.order-summary-card .summary-row span:first-child {
    color: var(--text-muted);
}

.order-summary-card .summary-row .free {
    color: var(--success);
}

.order-summary-card .summary-row.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
}

.order-summary-card .summary-row.total span:last-child {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.payment-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.payment-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-method svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
}

/* Order Actions Card */
.order-actions-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-full {
    width: 100%;
}

.text-danger {
    color: var(--error) !important;
}

.text-warning {
    color: var(--warning) !important;
}

/* ==========================================
   PROFILE PAGE
   ========================================== */

.profile-header {
    position: relative;
    padding-bottom: 2rem;
}

.profile-cover {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.profile-info {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    padding: 0 2rem;
    margin-top: -60px;
    position: relative;
}

.profile-avatar-large {
    position: relative;
}

.profile-avatar-large img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-primary);
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-primary);
}

.verified-badge svg {
    width: 14px;
    height: 14px;
    color: var(--bg-primary);
}

.profile-details {
    flex: 1;
    padding-bottom: 1rem;
}

.profile-details h1 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.profile-username {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.profile-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 600px;
}

.profile-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.meta-item svg {
    width: 16px;
    height: 16px;
}

.profile-actions {
    display: flex;
    gap: 0.75rem;
    padding-bottom: 1rem;
}

/* Profile Stats */
.profile-stats {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 0;
}

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.125rem;
    margin-top: 0.25rem;
}

.star-rating svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-gold);
    color: var(--accent-gold);
}

/* Profile Content */
.profile-content {
    padding: 3rem 2rem;
}

.profile-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.profile-tab {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.profile-tab:hover {
    color: var(--text-primary);
}

.profile-tab.active {
    color: var(--accent-gold);
}

.profile-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
}

.profile-content .tab-content {
    display: none;
}

.profile-content .tab-content.active {
    display: block;
}

.profile-products-more {
    text-align: center;
    margin-top: 2rem;
}

/* Profile About */
.profile-about {
    max-width: 800px;
}

.about-section {
    margin-bottom: 2.5rem;
}

.about-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.tag:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-list .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-info-list .contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
}

/* Profile Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: var(--bg-secondary);
    padding: 1.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--bg-primary);
    font-size: 0.85rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 500;
    color: var(--text-primary);
    display: block;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    gap: 0.125rem;
}

.review-rating svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-gold);
    color: var(--accent-gold);
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.review-product {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

/* ==========================================
   PROFILE EDIT PAGE
   ========================================== */

.profile-edit-form {
    max-width: 800px;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--success);
}

.form-hint svg {
    width: 14px;
    height: 14px;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.char-count.over {
    color: var(--error);
}

.input-prefix {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.input-prefix span,
.input-prefix svg {
    padding: 0 1rem;
    color: var(--text-muted);
}

.input-prefix svg {
    width: 20px;
    height: 20px;
}

.input-prefix input {
    border: none;
    padding-left: 0;
}

.input-prefix input:focus {
    outline: none;
}

/* Avatar Upload */
.avatar-upload {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.avatar-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.upload-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Notification Options */
.notification-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: var(--bg-secondary);
    transition: var(--transition-fast);
}

.checkbox-label:hover {
    background: var(--bg-tertiary);
}

.checkbox-label input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-gold);
    margin-top: 0.25rem;
}

.checkbox-label .label-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.checkbox-label .label-text strong {
    color: var(--text-primary);
    font-weight: 500;
}

.checkbox-label .label-text small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1rem;
}

/* Danger Zone */
.danger-zone {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(201, 74, 74, 0.05);
    border: 1px solid rgba(201, 74, 74, 0.2);
}

.danger-zone h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--error);
    margin-bottom: 1.5rem;
}

.danger-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 74, 74, 0.1);
}

.danger-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.danger-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.danger-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================
   ADDRESSES PAGE
   ========================================== */

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.address-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.address-card:hover {
    border-color: var(--accent-gold);
}

.address-card.default {
    border-color: var(--accent-gold);
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.address-card-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.address-card-header h3 svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}

.default-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(184, 151, 94, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.address-card-body {
    padding: 1.25rem;
}

.address-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.address-card-body .address-name {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.address-card-body .address-phone {
    color: var(--accent-gold);
    margin-top: 0.5rem;
}

.address-card-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.btn-text:hover {
    color: var(--accent-gold);
}

.btn-text.text-danger:hover {
    color: var(--error);
}

.btn-text svg {
    width: 16px;
    height: 16px;
}

/* Add New Address Card */
.address-card.add-new {
    border-style: dashed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    cursor: pointer;
    color: var(--text-muted);
}

.address-card.add-new:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.address-card.add-new svg {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.address-card.add-new span {
    font-size: 0.9rem;
}

/* Address Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
}

/* Bootstrap modal compatibility for pages using .modal.fade/.show */
.bootstrap-modal.modal.fade {
    display: none !important;
    visibility: visible !important;
    opacity: 0;
    z-index: 1050;
    background: transparent !important;
    border: 0 !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    overflow: hidden !important;
    transform: none !important;
}

.bootstrap-modal.modal.fade.show {
    display: block !important;
    opacity: 1;
}

.bootstrap-modal .modal-dialog {
    margin: 1.75rem auto;
}

.modal-backdrop {
    z-index: 1040;
}

/* Match login modal style used on product detail "add review" flow */
#loginModal {
    padding: 20px !important;
}

#loginModal .modal-dialog.login-modal {
    max-width: 540px;
    width: min(540px, 100%);
    margin: 0 auto;
    min-height: calc(100vh - 40px);
    display: flex;
    align-items: center;
}

#loginModal .modal-content {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(170deg, #121212 0%, #1b1b1b 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

#loginModal .auth-box {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box;
    background: transparent;
    border: none;
    padding: 24px 28px 24px;
    position: relative;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

#loginModal .auth-box .close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    z-index: 2;
    transition: all .2s ease;
}
@media (max-width: 767px) {
    #loginModal {
        padding: 10px !important;
    }
    #loginModal .modal-dialog.login-modal {
        width: 100% !important;
        max-width: 100% !important;
        min-height: calc(100vh - 20px);
        margin: 0 auto;
    }
    #loginModal .modal-content {
        border-radius: 12px !important;
    }
    #loginModal .auth-box {
        padding: 16px 14px 14px;
        max-height: calc(100vh - 40px);
    }
}

#loginModal .auth-box .close:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
}

#loginModal .auth-box .close span {
    transform: translateY(-1px);
}

#loginModal .auth-box .title {
    color: #fff;
    font-size: 30px;
    margin: 4px 0 14px;
    text-align: center;
}

#loginModal .login-review-notice {
    margin: 0 0 16px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #f4e0a0;
    font-size: 14px;
    line-height: 1.4;
}

#loginModal .auth-form-input {
    height: 54px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #f2f4f8;
    color: #121212;
    padding: 0 14px;
}

#loginModal .auth-form-input:focus {
    border-color: rgba(212, 175, 55, 0.75);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

#loginModal #form_login .form-group {
    margin-bottom: 14px;
}

#loginModal #form_login .form-group.text-right {
    text-align: center !important;
    margin-top: 6px;
}

#loginModal .link-forgot-password,
#loginModal .p-social-media,
#loginModal .p-social-media a {
    color: #d9d9d9;
}

#loginModal .social-login {
    margin-bottom: 10px;
}

#loginModal .p-social-media {
    text-align: center;
    margin-top: 16px !important;
}

#loginModal .p-social-media a {
    color: #f4e0a0;
    font-weight: 600;
}

@media (max-width: 576px) {
    #loginModal .auth-box {
        padding: 20px 18px 20px;
    }

    #loginModal .auth-box .title {
        font-size: 24px;
    }
}

/* ==========================================
   PASSWORD CHANGE PAGE
   ========================================== */

.password-change-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.password-change-form {
    max-width: 500px;
}

.password-input {
    position: relative;
}

.password-input input {
    width: 100%;
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
}

.toggle-password:hover {
    color: var(--accent-gold);
}

.toggle-password svg {
    width: 20px;
    height: 20px;
}

.forgot-password-link {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.forgot-password-link:hover {
    text-decoration: underline;
}

/* Password Strength */
.password-strength {
    margin-top: 0.75rem;
}

.strength-bar {
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-level {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background 0.3s ease;
}

.strength-level.weak { background: var(--error); }
.strength-level.fair { background: var(--warning); }
.strength-level.good { background: var(--info); }
.strength-level.strong { background: var(--success); }

.strength-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Password Match */
.password-match-status {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.password-match-status.match {
    color: var(--success);
}

.password-match-status.no-match {
    color: var(--error);
}

/* Password Requirements */
.password-requirements {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-secondary);
}

.password-requirements h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.password-requirements ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.password-requirements li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.password-requirements li .check-icon {
    width: 16px;
    height: 16px;
    opacity: 0.3;
}

.password-requirements li.met {
    color: var(--success);
}

.password-requirements li.met .check-icon {
    opacity: 1;
    color: var(--success);
}

/* Security Tips */
.security-tips {
    background: var(--bg-secondary);
    padding: 1.5rem;
}

.security-tips h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.security-tips h3 svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
}

.security-tips ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.security-tips li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
}

.security-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* ==========================================
   BLOG PAGE
   ========================================== */

.blog-page {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.blog-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Blog Posts */
.blog-posts {
    min-width: 0;
}

/* Blog Card */
.blog-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.blog-card:hover {
    border-color: var(--accent-gold);
}

.blog-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-date svg,
.blog-read-time svg {
    width: 14px;
    height: 14px;
}

.blog-card h2,
.blog-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card h3 {
    font-size: 1.25rem;
}

.blog-card h2 a,
.blog-card h3 a {
    color: inherit;
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
    color: var(--accent-gold);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-grid .blog-card {
    margin-bottom: 0;
}

.blog-grid .blog-card-image {
    height: 200px;
}

.blog-grid .blog-card-content {
    padding: 1.5rem;
}

.blog-grid .blog-meta {
    gap: 1rem;
}

.blog-grid .blog-card p {
    display: none;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-secondary);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Search Form */
.search-form {
    display: flex;
    border: 1px solid var(--border-color);
}

.search-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
}

.search-form input:focus {
    outline: none;
}

.search-form button {
    padding: 0.75rem 1rem;
    background: var(--accent-gold);
    border: none;
    color: var(--bg-primary);
    cursor: pointer;
}

.search-form button svg {
    width: 18px;
    height: 18px;
}

/* Category List */
.category-list li {
    margin-bottom: 0;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child a {
    border-bottom: none;
}

.category-list li a:hover {
    color: var(--accent-gold);
}

.category-list li a span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.popular-post h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.popular-post:hover h4 {
    color: var(--accent-gold);
}

.popular-post span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud .tag {
    padding: 0.4rem 0.75rem;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.tag-cloud .tag:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* Newsletter Widget */
.newsletter-widget p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-pages {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.page-number:hover,
.page-number.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.page-number.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.page-dots {
    color: var(--text-muted);
    padding: 0 0.5rem;
}

/* ==========================================
   BLOG DETAIL PAGE
   ========================================== */

.blog-detail {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-detail-main {
    min-width: 0;
}

/* Article Header */
.article-header {
    margin-bottom: 2rem;
}

.article-category {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 500;
    color: var(--text-primary);
    display: block;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-stats {
    display: flex;
    gap: 1.5rem;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-stats svg {
    width: 16px;
    height: 16px;
}

/* Article Featured Image */
.article-featured-image {
    margin-bottom: 2rem;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-featured-image figcaption {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.75rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

/* Article Content */
.article-content {
    margin-bottom: 2rem;
}

.article-content .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.article-content h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
}

.article-content h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.article-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-gold);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--accent-gold);
}

.article-content .article-image {
    margin: 2rem 0;
}

.article-content .article-image img {
    width: 100%;
}

.article-content .article-image figcaption {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.75rem 0;
    text-align: center;
}

.info-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(184, 151, 94, 0.1);
    border: 1px solid rgba(184, 151, 94, 0.3);
}

.info-box h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.info-box p {
    margin-bottom: 0;
}

/* Article Tags */
.article-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.article-tags span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-tags .tag {
    padding: 0.4rem 0.75rem;
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.article-tags .tag:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* Article Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.article-share span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.share-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-primary);
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    margin-bottom: 2rem;
}

.author-avatar-large {
    flex-shrink: 0;
}

.author-avatar-large img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.author-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.author-social a {
    color: var(--text-muted);
}

.author-social a:hover {
    color: var(--accent-gold);
}

.author-social svg {
    width: 20px;
    height: 20px;
}

/* Article Navigation */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.nav-prev,
.nav-next {
    padding: 1.5rem;
    background: var(--bg-secondary);
    transition: var(--transition-fast);
}

.nav-prev:hover,
.nav-next:hover {
    background: var(--bg-tertiary);
}

.nav-next {
    text-align: right;
}

.nav-prev span,
.nav-next span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.nav-prev strong,
.nav-next strong {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.nav-prev:hover strong,
.nav-next:hover strong {
    color: var(--accent-gold);
}

/* Related Posts */
.related-posts {
    margin-bottom: 2rem;
}

.related-posts h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.related-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    transition: var(--transition-fast);
}

.related-card:hover {
    background: var(--bg-tertiary);
}

.related-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

.related-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.related-card:hover h4 {
    color: var(--accent-gold);
}

.related-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Comments Section */
.comments-section {
    margin-top: 2rem;
}

.comments-section h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.comment {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
}

.comment-avatar {
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--bg-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 500;
    color: var(--text-primary);
}

.comment-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.comment p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.comment-reply {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 0.85rem;
    cursor: pointer;
}

.comment-reply:hover {
    text-decoration: underline;
}

/* Comment Form */
.comment-form-wrapper {
    background: var(--bg-secondary);
    padding: 2rem;
}

.comment-form-wrapper h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.comment-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* TOC Widget */
.toc-widget .toc {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toc-link {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.toc-link:last-child {
    border-bottom: none;
}

.toc-link:hover {
    color: var(--accent-gold);
}

/* ==========================================
   STATIC PAGE
   ========================================== */

.static-page {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.static-page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.static-page-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.static-page-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.content-section h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.content-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.content-section strong {
    color: var(--text-primary);
}

.contact-info-box {
    padding: 1.5rem;
    background: var(--bg-secondary);
    margin-top: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

/* ==========================================
   AUTH PAGES (Forgot Password, Register, etc.)
   ========================================== */

.auth-page-centered {
    padding: 4rem 2rem;
    background: var(--bg-primary);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-box {
    width: 100%;
    max-width: 450px;
    background: var(--bg-secondary);
    padding: 3rem;
}

.auth-box-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(184, 151, 94, 0.15);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.auth-logo svg {
    width: 30px;
    height: 30px;
    color: var(--accent-gold);
}

.auth-box-header h1 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-box-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.auth-box .form-group {
    margin-bottom: 1.5rem;
}

.auth-box label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.auth-box input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.auth-box input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.auth-box .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

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

.auth-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.auth-back:hover {
    color: var(--accent-gold);
}

.auth-back svg {
    width: 18px;
    height: 18px;
}

.auth-success {
    text-align: center;
    padding: 2rem 0;
}

.auth-success svg {
    width: 60px;
    height: 60px;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.auth-success h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.auth-success p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================
   CHECKOUT PAGE
   ========================================== */

.checkout-page {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-section {
    background: var(--bg-secondary);
    padding: 2rem;
}

.checkout-section h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

/* ==========================================
   LEGACY CHECKOUT COMPATIBILITY
   (cart/shipping/payment/payment_method views)
   ========================================== */

.shopping-cart {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.shopping-cart .checkout-row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
}

.shopping-cart .checkout-row > [class*="col-"] {
    padding: 0.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .shopping-cart .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1024px) {
    .shopping-cart .checkout-row .col-lg-8 {
        flex: 0 0 66.666%;
        width: 66.666%;
        max-width: 66.666%;
    }

    .shopping-cart .checkout-row .col-lg-4 {
        flex: 0 0 33.333%;
        width: 33.333%;
        max-width: 33.333%;
    }
}

.shopping-cart .left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tab-checkout {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.tab-checkout-open {
    box-shadow: var(--shadow-sm);
}

.tab-checkout-closed,
.tab-checkout-closed-bordered {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.tab-checkout-closed-bordered {
    border-style: dashed;
}

.tab-checkout .title {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.tab-checkout-closed .title,
.tab-checkout-closed-bordered .title,
.tab-checkout-closed a {
    color: var(--text-muted);
}

.link-underlined {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--accent-gold);
}

.link-underlined:hover {
    color: var(--accent-gold-light);
}

.edit-link {
    margin-left: auto;
    font-size: 0.85rem;
}

.link-return-cart {
    color: var(--text-muted);
}

.link-return-cart:hover {
    color: var(--accent-gold);
}

.order-summary-container {
    align-self: flex-start;
}

@media (min-width: 1024px) {
    .order-summary-container {
        position: sticky;
        top: 110px;
    }
}

.order-summary-container .right {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.cart-order-details .item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-order-details .item:last-child {
    border-bottom: none;
}

.img-cart-product {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.img-cart-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-order-details .item-right a {
    color: var(--text-secondary);
}

.cart-order-details .item-right a:hover {
    color: var(--accent-gold);
}

.lbl-price {
    color: var(--accent-gold);
}

.order-summary-container .row-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.order-summary-container .line-seperator {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.payment-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.text-shipping-address {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.option-payment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.option-payment img {
    height: 24px;
}

.custom-control {
    position: relative;
    display: block;
    padding-left: 1.8rem;
}

.custom-control-input {
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1rem;
    height: 1rem;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.custom-control-label {
    position: relative;
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
    cursor: pointer;
}

.custom-control-label::before,
.custom-control-label::after {
    content: "";
    position: absolute;
    left: -1.8rem;
    top: 0.1rem;
    width: 1rem;
    height: 1rem;
}

.custom-control-label::before {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 4px;
}

.custom-radio .custom-control-label::after {
    border-radius: 50%;
    background: var(--accent-gold);
    transform: scale(0.45);
    opacity: 0;
}

.custom-checkbox .custom-control-label::after {
    width: 0.35rem;
    height: 0.6rem;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
    left: -1.45rem;
    top: 0.2rem;
    opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::after {
    opacity: 1;
}

.custom-control-input:focus ~ .custom-control-label::before {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(184, 151, 94, 0.2);
}

.custom-control-label strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.custom-control-label p {
    margin: 0.25rem 0 0;
    color: var(--text-muted);
}

.custom-control-label small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.shipping-address-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.shipping-address-box-cart {
    background: var(--bg-tertiary) !important;
    border-color: var(--border-color) !important;
}

.address-left {
    flex: 1;
}

.address-right {
    display: flex;
    align-items: flex-start;
}

.dropdown {
    position: relative;
}

.dropdown .btn {
    padding: 0.4rem 0.6rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-radius: 6px;
}

.dropdown .btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 140px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.35rem 0;
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 20;
}

.dropdown.show .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.45rem 0.9rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-gold);
}

.cart-shipping-loader {
    display: none;
}

/* Force dark-theme text colors on legacy checkout markup (style-1.9 sets body color with !important). */
.shopping-cart,
.shopping-cart h1,
.shopping-cart h2,
.shopping-cart h3,
.shopping-cart p,
.shopping-cart label,
.shopping-cart strong,
.shopping-cart span,
.shopping-cart li {
    color: var(--text-primary) !important;
}

.shopping-cart a {
    color: var(--text-secondary) !important;
}

.shopping-cart .text-muted,
.shopping-cart .custom-control-label p,
.shopping-cart .tab-checkout-closed .title,
.shopping-cart .tab-checkout-closed-bordered .title,
.shopping-cart .tab-checkout-closed a,
.shopping-cart .bankeft-bank-label {
    color: var(--text-muted) !important;
}

.shopping-cart .link-underlined,
.shopping-cart .text-info,
.shopping-cart .bankeft-bank-copy {
    color: var(--accent-gold) !important;
}

.shopping-cart .tab-checkout,
.shopping-cart .shipping-address-box,
.shopping-cart .shipping-address-box-cart,
.shopping-cart .order-summary-container .right,
.shopping-cart .payment-icons-container,
.shopping-cart .bankeft-container,
.shopping-cart .bankeft-bank-box,
.shopping-cart .option-payment {
    background: var(--bg-secondary) !important;
    border-color: var(--border-color) !important;
}

.shopping-cart .btn-custom,
.shopping-cart .btn-payment,
.shopping-cart .btn-continue-payment,
.shopping-cart .btn-cart-shipping,
.shopping-cart .btn-pay {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light)) !important;
    border: 1px solid var(--accent-gold) !important;
    color: var(--bg-primary) !important;
}

.shopping-cart .btn-custom:disabled,
.shopping-cart .btn-payment:disabled,
.shopping-cart .btn-continue-payment:disabled,
.shopping-cart .btn-cart-shipping:disabled,
.shopping-cart .btn-pay:disabled {
    opacity: 0.55 !important;
}

.btn-custom,
.btn-payment,
.btn-continue-payment,
.btn-cart-shipping {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--bg-primary);
}

.btn-custom:hover,
.btn-payment:hover,
.btn-continue-payment:hover,
.btn-cart-shipping:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.payment-button-cnt {
    margin-top: 1.5rem;
}

.payment-icons-container {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-icons img {
    height: 22px;
}

.bankeft-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-secondary);
}

.bankeft-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.bankeft-phone {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bankeft-amount {
    font-weight: 600;
    color: var(--text-primary);
}

.bankeft-section-subtitle,
.bankeft-info-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.bankeft-bank-box {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}

.bankeft-bank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
}

.bankeft-bank-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.bankeft-bank-value {
    color: var(--text-primary);
    font-weight: 500;
}

.bankeft-bank-copy {
    cursor: pointer;
    color: var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bankeft-cizgi {
    height: 1px;
    background: var(--border-color);
    margin: 0.4rem 0;
}

.credit-card-payment-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
}

.credit-card-form-container {
    margin-top: 1rem;
}

.kredikarti {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kart-bg {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 0.9rem;
}

.kart-bg.error {
    border-color: var(--error);
}

.input-style {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
}

.input-style::placeholder {
    color: var(--text-muted);
}

.cc-icon {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.kart-dogrulama {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .kart-dogrulama {
        grid-template-columns: 1fr;
    }
}

.hatali-bilgi {
    display: none;
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

.bank-info-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

.kart-kaydet-alani {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}

.custom-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.check-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.aciklama {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.taksit-secenekleri {
    margin-top: 1rem;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.taksit-uyari {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.taksit-ekrani {
    margin-top: 0.75rem;
}

.taksitler {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.taksit-kutu {
    display: grid;
    gap: 0.5rem;
}

.btn-pay {
    margin-top: 1rem;
}

.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-border-sm {
    width: 0.85rem;
    height: 0.85rem;
}

.text-primary {
    color: var(--accent-gold);
}

.text-muted {
    color: var(--text-muted);
}

.text-success {
    color: var(--success);
}

.text-info {
    color: var(--info);
}

.text-right {
    text-align: right;
}

.float-right {
    margin-left: auto;
}

.m-b-10 {
    margin-bottom: 0.6rem;
}

.m-b-15 {
    margin-bottom: 1rem;
}

.m-t-15 {
    margin-top: 1rem;
}

.m-t-30 {
    margin-top: 2rem;
}

.m-t-0 {
    margin-top: 0;
}

.p-0 {
    padding: 0 !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   CHECKOUT FIX (Scoped)
   ========================================== */
.checkout-fix .checkout-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    align-items: start;
    margin: 0 !important;
}

.checkout-fix .checkout-row > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
}

.checkout-fix .tab-checkout {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    padding: 1.25rem !important;
}

.checkout-fix .shipping-address-box,
.checkout-fix .shipping-address-box-cart {
    background: var(--bg-tertiary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    padding: 1rem !important;
}

.checkout-fix .shipping-address-box-cart {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 1rem !important;
}

.checkout-fix .address-right {
    width: auto !important;
}

.checkout-fix .dropdown-shipping-options {
    position: static !important;
}

.checkout-fix .dropdown-shipping-options > .btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    border: 1px solid var(--border-color) !important;
    background: transparent !important;
    color: var(--text-secondary) !important;
    padding: 0 !important;
}

.checkout-fix .dropdown-shipping-options .dropdown-menu {
    right: 0 !important;
    left: auto !important;
}

.checkout-fix .order-summary-container .right {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
}

/* Keep native radios/checkboxes aligned inside checkout */
.checkout-fix .custom-control {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.55rem !important;
    padding-left: 0 !important;
}

.checkout-fix .custom-control-input {
    position: static !important;
    opacity: 1 !important;
    width: 16px !important;
    height: 16px !important;
    margin-top: 3px !important;
    flex: 0 0 auto !important;
}

.checkout-fix .custom-control-label {
    width: 100% !important;
}

.checkout-fix .custom-control-label::before,
.checkout-fix .custom-control-label::after {
    display: none !important;
}

.checkout-fix .form-group.m-t-60,
.checkout-fix .form-group.m-t-15 {
    display: flex !important;
    align-items: center !important;
    gap: 0.9rem !important;
    margin-top: 1.25rem !important;
}

.checkout-fix .link-return-cart {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 52px !important;
    padding: 0 1rem !important;
    border: 1px solid var(--accent-gold) !important;
    border-radius: 6px !important;
    background: rgba(184, 151, 94, 0.08) !important;
    color: var(--accent-gold) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    font-weight: 500 !important;
}

.checkout-fix .link-return-cart:hover {
    background: rgba(184, 151, 94, 0.16) !important;
    color: var(--accent-gold-light) !important;
}

.checkout-fix .btn-cart-shipping,
.checkout-fix .btn-continue-payment {
    min-width: 320px;
    margin-left: auto !important;
}

@media (max-width: 768px) {
    .checkout-fix .form-group.m-t-60,
    .checkout-fix .form-group.m-t-15 {
        flex-direction: column;
        align-items: stretch !important;
    }

    .checkout-fix .link-return-cart {
        width: 100%;
    }

    .checkout-fix .btn-cart-shipping,
    .checkout-fix .btn-continue-payment {
        min-width: 0;
        width: 100%;
        margin-left: 0 !important;
    }
}

@media (max-width: 1100px) {
    .checkout-fix .checkout-row {
        grid-template-columns: 1fr;
    }
}

/* Order Complete Page */
.order-complete-page {
    padding: 4rem 2rem;
    background: var(--bg-primary);
    min-height: 70vh;
}

.order-complete-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(74, 159, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    color: var(--success);
}

.order-complete-content h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.order-complete-content .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.order-info-box {
    background: var(--bg-secondary);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.order-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.order-info-row:last-child {
    border-bottom: none;
}

.order-info-row span:first-child {
    color: var(--text-muted);
}

.order-info-row span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.order-complete-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================
   RESPONSIVE FOR NEW PAGES
   ========================================== */

@media (max-width: 1024px) {
    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .account-nav {
        display: flex;
        flex-wrap: wrap;
    }

    .account-nav-item {
        flex: 1;
        min-width: 150px;
        justify-content: center;
        text-align: center;
        border-bottom: none;
        border-right: 1px solid var(--border-color);
    }

    .order-detail-layout {
        grid-template-columns: 1fr;
    }

    .order-addresses {
        grid-template-columns: 1fr;
    }

    .password-change-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-layout,
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .account-header {
        flex-direction: column;
        gap: 1rem;
    }

    .order-card-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .order-card-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .order-progress {
        flex-direction: column;
        gap: 1.5rem;
    }

    .progress-line {
        display: none;
    }

    .progress-step {
        flex-direction: row;
        text-align: left;
    }

    .profile-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -80px;
    }

    .profile-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profile-meta {
        justify-content: center;
    }

    .profile-actions {
        justify-content: center;
    }

    .stats-grid {
        gap: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .avatar-upload {
        flex-direction: column;
        text-align: center;
    }

    .addresses-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .comment-form .form-grid {
        grid-template-columns: 1fr;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .danger-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
