/* ============================================================
   VOR - Frontend Styles - Modern Streetwear E-Commerce
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

:root {
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --bg-dark: #0a0a0a;
    --bg-glass: rgba(255,255,255,0.7);
    --text: #111111;
    --text-secondary: #555555;
    --text-muted: #999999;
    --border: #e5e5e5;
    --border-light: #f0f0f0;
    --accent: #111111;
    --accent-hover: #333333;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    --container: 1280px;
    --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; outline: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ Header ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.29);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo img {
    display: block;
}

.logooo {
    width: 110px !important;
    height: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--text);
    transition: var(--transition);
}

.header-nav a:hover { color: var(--text); }
.header-nav a:hover::after { width: 100%; }
.header-nav a.active { color: var(--text); }
.header-nav a.active::after { width: 100%; }

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-trigger svg {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(8px);
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-alt);
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-actions a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-actions a:hover { color: var(--text); }

.cart-count {
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text);
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--text);
    background: var(--bg-alt);
}

.btn-white {
    background: white;
    color: var(--text);
    border-color: white;
}

.btn-white:hover {
    background: var(--bg-alt);
    transform: translateY(-1px);
}

.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

.btn-danger { background: var(--danger); color: white; border-color: var(--danger); }
.btn-danger:hover { background: #dc2626; }

/* ============ Hero Slider ============ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-slide-content {
    color: white;
    max-width: 700px;
    text-align: center;
}

.hero-slide-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: white;
    -webkit-text-stroke: 5px #000;
    paint-order: stroke fill;
}

.hero-slide-content p {
    font-size: 1rem;
    opacity: 1;
    margin-bottom: 24px;
    font-weight: 400;
    color: white;
    -webkit-text-stroke: 3px #000;
    paint-order: stroke fill;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* ============ Marquee ============ */
.marquee {
    background: var(--bg-dark);
    color: white;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 35s linear infinite;
}

.marquee-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 0 48px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ Gothic Marquee Divider ============ */
.gothic-marquee {
    background: var(--bg-dark);
    color: white;
    padding: 48px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.gothic-marquee::before,
.gothic-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gothic-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}

.gothic-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-dark) 0%, transparent 100%);
}

.gothic-marquee-track {
    display: inline-flex;
    align-items: center;
    animation: gothicMarquee 35s linear infinite;
}

.gothic-marquee-word {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    letter-spacing: 2px;
    padding: 0 40px;
    line-height: 1;
    text-shadow: 0 0 60px rgba(255,255,255,0.08);
}

.gothic-marquee-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.5;
}

@keyframes gothicMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ Promo Banner Strip ============ */
.promo-strip {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.promo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.promo-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.promo-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
}

.promo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: -4px;
}

/* ============ Section ============ */
.section {
    padding: 80px 0;
    background: rgba(199, 216, 229, 0.85);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.section-header .section-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 6px;
}

.section-header a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.section-header a:hover { color: var(--text); }

/* ============ Product Grid ============ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    group: true;
}

.product-card:hover { transform: translateY(-4px); }

.product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-alt);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.badge-new { background: var(--accent); color: white; }
.badge-sale { background: var(--danger); color: white; }
.badge-out { background: rgba(0,0,0,0.6); color: white; backdrop-filter: blur(8px); }

.product-card-info {
    padding: 14px 4px 4px;
}

.product-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.product-card-price .original {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 8px;
    font-size: 0.8rem;
}

.product-card-price .unavailable {
    color: var(--danger);
    font-size: 0.78rem;
    font-weight: 600;
}

/* ============ Categories Grid ============ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-alt);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.category-card:hover img { transform: scale(1.08); }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.category-card-overlay h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.category-card-overlay span {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    margin-top: 4px;
}

/* ============ Product Detail ============ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 40px 0;
}

.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.product-main-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-alt);
    margin-bottom: 12px;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.product-thumb {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-thumb.active,
.product-thumb:hover {
    border-color: var(--accent);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.product-info .product-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.product-price .original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
    margin-left: 12px;
}

.product-price .discount-tag {
    background: var(--danger);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Filter Options */
.filter-option {
    margin-bottom: 20px;
}

.filter-option label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    background: white;
    transition: var(--transition);
    color: var(--text);
}

.filter-btn:hover { border-color: var(--accent); }
.filter-btn.active { background: var(--accent); color: white; border-color: var(--accent); }
.filter-btn.out-of-stock { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-alt);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    color: var(--text);
}

.qty-btn:hover { background: var(--border); }

.qty-input {
    width: 60px;
    height: 44px;
    text-align: center;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    background: white;
}

.size-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    margin-top: 8px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--text-muted);
}

.size-guide-link:hover { color: var(--text); }

/* Size Guide Modal */
.size-guide-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.size-guide-modal.active { opacity: 1; visibility: visible; }

.size-guide-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: var(--transition);
}

.size-guide-modal.active .size-guide-content { transform: scale(1); }

.size-guide-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.size-guide-content table {
    width: 100%;
    border-collapse: collapse;
}

.size-guide-content th,
.size-guide-content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.size-guide-content th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-guide-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-alt);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

/* ============ Cart ============ */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.cart-table td {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-img {
    width: 80px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-alt);
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h4 { font-size: 0.9rem; font-weight: 600; }
.cart-item-info p { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.cart-summary {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-top: 32px;
}

.cart-summary h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.summary-row.total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    padding-top: 16px;
    margin-top: 12px;
    border-top: 2px solid var(--text);
}

/* ============ Checkout ============ */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    padding: 40px 0;
}

.checkout-section {
    margin-bottom: 32px;
}

.checkout-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* ============ Forms ============ */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text);
    background: white;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(17,17,17,0.06);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

textarea.form-control { resize: vertical; min-height: 80px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.form-check label {
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--text-secondary);
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-error {
    font-size: 0.75rem;
    color: var(--danger);
    margin-top: 4px;
}

/* ============ Steps ============ */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.step.active { color: var(--text); background: var(--bg-alt); }
.step.completed { color: var(--success); }

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.step.active .step-number { border-color: var(--accent); background: var(--accent); color: white; }
.step.completed .step-number { border-color: var(--success); background: var(--success); color: white; }

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--border);
}

/* ============ Flash Messages ============ */
.flash-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.875rem;
    border: 1px solid;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.flash-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.flash-error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.flash-warning { background: #fffbeb; border-color: #fed7aa; color: #92400e; }
.flash-info { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }

.flash-close {
    margin-left: auto;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.5;
}

.flash-close:hover { opacity: 1; }

/* ============ Warning Bar ============ */
.warning-bar {
    background: #fffbeb;
    border: 1px solid #fed7aa;
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #92400e;
}

.warning-bar a {
    font-weight: 600;
    text-decoration: underline;
}

/* ============ Badges ============ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-success { background: #dcfce7; color: #166534; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fef2f2; color: #991b1b; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-primary { background: var(--bg-alt); color: var(--text); }

/* ============ My Orders ============ */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.order-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.order-card-header h4 { font-size: 0.95rem; font-weight: 600; }
.order-card-header .order-date { font-size: 0.8rem; color: var(--text-muted); }

.order-card-items {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    overflow-x: auto;
}

.order-item-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-alt);
    flex-shrink: 0;
}

.order-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

.order-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

/* ============ Profile ============ */
.profile-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    padding: 40px 0;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
}

.profile-email {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

.profile-stats {
    display: flex;
    gap: 32px;
    text-align: center;
}

.profile-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
}

.profile-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.profile-sidebar a {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
    margin-bottom: 4px;
}

.profile-sidebar a:hover { background: var(--bg-alt); color: var(--text); }
.profile-sidebar a.active { background: var(--accent); color: white; }

.profile-content .card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.profile-content .card-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.profile-content .card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ============ Footer ============ */
.site-footer {
    background: var(--bg-dark);
    color: white;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-brand img {
    height: 50px;
    width: auto;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    padding: 5px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-col a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

/* ============ Pagination ============ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.page-link:hover { border-color: var(--accent); color: var(--text); }
.page-link.active { background: var(--accent); color: white; border-color: var(--accent); }

/* ============ Empty State ============ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state .empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.empty-state h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

/* ============ Auth Pages ============ */
.auth-page {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.auth-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-card .auth-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 32px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent);
    font-weight: 600;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-detail { grid-template-columns: 1fr; gap: 32px; }
    .checkout-grid { grid-template-columns: 1fr; }
    .profile-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .header-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-slide-content h2 { font-size: 1.8rem; }
    .hero-slide-overlay { padding: 30px; }
    .section { padding: 48px 0; }
    .section-header h2 { font-size: 1.4rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cart-summary { max-width: 100%; }
    .auth-card { padding: 28px 20px; }
    .steps { flex-wrap: wrap; }
    .gothic-marquee { padding: 32px 0; }
    .gothic-marquee-word { font-size: clamp(2rem, 7vw, 3.5rem); padding: 0 24px; }
    .promo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .categories-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .logooo { width:88px !important; height: auto; }
}

/* ============ Scrollbar ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d4d4d4; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #aaa; }
