/* Golden Scents Store - Premium Frontend Styles */

:root {
    --primary-gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #E6C200;
    --bg-dark: #000000;
    --bg-card: #111111;
    --bg-hover: #1a1a1a;
    --text-white: #FFFFFF;
    --text-gray: #AAAAAA;
    --text-muted: #666666;
    --border-color: #222222;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --transition: all 0.3s ease;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 1s ease-in-out infinite;
}

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

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: var(--primary-gold);
    font-size: 0.9rem;
    transition: var(--transition);
}

.top-social a:hover {
    color: var(--gold-light);
    transform: scale(1.1);
}

.top-message {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-arrow {
    background: none;
    border: none;
    color: var(--primary-gold);
    cursor: pointer;
    padding: 5px;
    font-size: 0.7rem;
}

.nav-arrow:hover {
    color: var(--gold-light);
}

.top-currency {
    color: var(--primary-gold);
    font-size: 0.85rem;
    cursor: pointer;
}

.top-currency i {
    font-size: 0.7rem;
    margin-left: 5px;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.store-header {
    background: var(--bg-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

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

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

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

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.icon-link {
    color: var(--primary-gold);
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
}

.icon-link:hover {
    color: var(--gold-light);
    transform: scale(1.1);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Search Overlay */
.search-overlay {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.search-overlay.active {
    display: block;
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-form input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    color: var(--text-white);
    font-size: 1rem;
}

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

.search-form button {
    background: var(--primary-gold);
    border: none;
    padding: 15px 25px;
    color: var(--bg-dark);
    cursor: pointer;
}

/* ============================================
   HERO SECTION - FULL WIDTH SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: right;
    color: var(--text-white);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-nav-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.hero-nav-btn:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-white);
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    opacity: 1;
    background: var(--primary-gold);
}

.hero-pause {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.7;
}

/* Simple Hero (Fallback) */
.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFD700" stroke-width="0.5" opacity="0.1"/></svg>') center/cover;
    opacity: 0.3;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    letter-spacing: 1px;
}

.hero-btn {
    display: inline-block;
    background: transparent;
    color: var(--primary-gold);
    padding: 18px 50px;
    border: 1px solid var(--primary-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title p {
    color: var(--text-gray);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Product Grid */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Product Card - Premium Style with Shopify-like Animations */
.product-card {
    background: var(--bg-card);
    border: none;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover .product-image-secondary {
    opacity: 1;
}

.product-card:hover .product-image-primary {
    opacity: 0;
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}

.product-image-primary {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.product-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
}

.product-card:hover .product-image img:not(.product-image-secondary) {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    gap: 10px;
    justify-content: center;
    z-index: 10;
}

.product-overlay .btn {
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
    opacity: 1;
}

.product-card:hover .product-overlay .btn:nth-child(1) {
    transition-delay: 0.05s;
}

.product-card:hover .product-overlay .btn:nth-child(2) {
    transition-delay: 0.1s;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-sale {
    background: var(--danger);
    color: var(--text-white);
}

.badge-new {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.badge-featured {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.product-info {
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover .product-info {
    background: rgba(255, 215, 0, 0.03);
}

.product-brand {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.product-card:hover .product-brand {
    color: var(--primary-gold);
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.product-name a {
    color: inherit;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-gold);
}

.product-card:hover .product-name {
    color: var(--gold-light);
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

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

.stock-status {
    font-size: 0.7rem;
    padding: 5px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.stock-in {
    background: transparent;
    color: var(--success);
    border: 1px solid var(--success);
}

.stock-low {
    background: transparent;
    color: var(--warning);
    border: 1px solid var(--warning);
}

.stock-out {
    background: transparent;
    color: var(--danger);
    border: 1px solid var(--danger);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

/* Buttons - Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    color: var(--text-white);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* Brand Collections - Image Cards */
.collections-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.collection-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    transition: var(--transition);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    z-index: 1;
}

.collection-card:hover {
    transform: scale(1.02);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    text-align: center;
}

.collection-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.collection-card span {
    font-size: 0.8rem;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

/* Product Page */
.product-page {
    padding: 60px 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-gallery {
    position: relative;
}

.main-image {
    aspect-ratio: 1;
    background: var(--bg-card);
    overflow: hidden;
    margin-bottom: 15px;
}

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

.thumbnail-gallery {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.product-details {
    padding: 20px 0;
}

.product-details .product-brand {
    font-size: 0.75rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.product-details h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.product-details .product-price {
    margin-bottom: 25px;
    justify-content: flex-start;
}

.product-details .current-price {
    font-size: 1.8rem;
    font-weight: 500;
}

.product-description {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.9;
    font-size: 0.95rem;
}

.product-description h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-meta {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.meta-item strong {
    width: 120px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.meta-item span {
    color: var(--text-white);
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-detail-actions .btn {
    padding: 18px 40px;
    font-size: 0.85rem;
}

/* Collection Page */
.collection-header {
    background: var(--bg-card);
    padding: 60px 0;
    text-align: center;
}

.collection-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.collection-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.products-count {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.filter-bar select {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 12px 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
}

.filter-bar select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* Footer - Premium */
.store-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    margin-top: 80px;
}

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

.footer-section h4 {
    color: var(--primary-gold);
    font-size: 0.85rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-gray);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Cart Sidebar - Premium */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-color);
    z-index: 2000;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
    transform: translateX(0);
}

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

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h3 {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.cart-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-close:hover {
    color: var(--primary-gold);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px 30px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
    color: var(--primary-gold);
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: var(--bg-card);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.cart-item-brand {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

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

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--danger);
}

.cart-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-card);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-total span:last-child {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 2001;
    transition: left 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header h3 {
    color: var(--primary-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    color: var(--text-white);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-social, .top-currency {
        display: none;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .product-info {
        padding: 15px 10px;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .collection-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-info {
        padding: 12px 8px;
    }
    
    .current-price {
        font-size: 0.95rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Placeholder image for products without images */
.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--primary-gold);
    font-size: 3rem;
    height: 100%;
    opacity: 0.5;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in {
    animation: fadeIn 0.6s ease;
}

.slide-up {
    animation: slideUp 0.6s ease;
}
