/* --- Global Variables & Reset --- */
:root {
  --gold: #d4af37;
  --gold-dark: #b8860b;
  --gold-light: #f3e5ab;
  --black: #050505;
  --near-black: #0f0f0f;
  --dark-grey: #1a1a1a;
  --mid-grey: #2a2a2a;
  --text-white: #ffffff;
  --text-muted: #a0a0a0;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 0px; /* Luxury often prefers sharp or slightly rounded corners */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-white);
  line-height: 1.7;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-white);
}

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

ul {
    list-style: none;
}

/* --- Layout Components --- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

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

/* --- Announcement Bar --- */
.announcement-bar {
    background: var(--gold);
    color: black;
    text-align: center;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1100;
}

/* --- Navigation --- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* True centering */
  align-items: center;
  position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.brand-link {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
}

.nav-bar {
    display: flex;
    gap: 35px;
    margin-top: 10px;
}

.nav-bar a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

/* Mobile adjustments for Shopify-like Header */
@media (max-width: 1024px) {
    .header { padding: 10px 0; }
    .top-bar {
        padding: 0 20px;
        grid-template-columns: 60px 1fr 60px;
    }
    
    .header-center {
        padding: 0;
    }

    .mobile-nav-toggle {
        display: flex !important;
        background: none;
        border: none;
        color: white;
        font-size: 22px;
        cursor: pointer;
        padding: 10px;
        align-items: center;
        justify-content: center;
    }

    .brand-link {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .header-right .icon-btn {
        font-size: 18px;
    }
}

.nav-bar a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  position: relative;
}

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

.nav-bar a:hover, .nav-bar a.active {
  color: var(--text-white);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    padding: 5px;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -5px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Centered content for clean look */
    padding-top: 80px;
    background: radial-gradient(circle at 70% 50%, #1a1a1a 0%, #050505 60%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-right: 50px;
}

.hero-subtitle {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 450px;
    font-weight: 300;
}

.hero-image-container {
    position: relative;
    z-index: 1;
    width: 500px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    top: -20px;
    left: -20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    transform: scale(1.1) rotate(-5deg);
    transition: transform 1s ease;
}

.hero-section:hover .hero-image {
    transform: scale(1.15) rotate(0deg);
}

/* --- Buttons --- */
.btn-primary {
  padding: 18px 40px;
  background: var(--gold);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
}

.btn-outline {
    padding: 16px 36px;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
}

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

/* --- Sections General --- */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 60px;
}

.separator-gold {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 20px auto;
}

/* --- Shop Cards (Shopify Luxury Style) --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px; /* Tighter horizontal gap, standard vertical */
}

.product-card {
    background: #111111; /* Refined charcoal for better contrast */
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    border: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.product-card:hover {
    border-color: var(--gold);
    background: #161616;
}

.out-of-stock-card {
    opacity: 0.8;
}

.out-of-stock-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff4444;
    color: white;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 5;
    border-radius: 2px;
}

.product-image-container {
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    padding: 40px; 
    overflow: hidden;
    height: 380px; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-image {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

.product-info {
    text-align: center; 
    padding: 25px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: white;
    height: 40px; /* Fixed height for name to ensure price alignment */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.product-price {
    font-family: 'Lato', sans-serif !important;
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    font-style: normal !important;
}

.product-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 10;
}

.product-card:hover .product-card-actions {
    transform: translateY(0);
}

.product-card-action-btn {
    flex: 1;
    background: var(--gold);
    color: black;
    border: none;
    height: 40px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.product-card-action-btn:hover {
    background: white;
}

.product-card-action-btn i {
    font-size: 14px;
}

/* --- Values Section --- */
.values-section {
    background: #080808;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.value-item i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 25px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
    background: url('main.png') no-repeat center center; /* Ideally a different abstract background */
    background-size: cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
    background-attachment: fixed;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-size: 18px;
}

/* --- Cart Sidebar --- */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000; display: none; backdrop-filter: blur(5px);
}
.cart-overlay.open { display: block; }

.cart-sidebar {
    position: fixed; top: 0; right: -450px; width: 450px; height: 100%;
    background: #0a0a0a; z-index: 2001; transition: var(--transition);
    border-left: 1px solid #222; display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }

.cart-header {
    padding: 30px;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 { font-size: 22px; margin: 0; }
.close-cart { background: none; border: none; color: white; font-size: 28px; cursor: pointer; }

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

.cart-item { display: flex; gap: 20px; margin-bottom: 25px; align-items: center; }
.cart-item img { width: 70px; height: 70px; object-fit: contain; background: #111; border-radius: 4px; border: 1px solid #222; }
.cart-item-details { flex: 1; }
.cart-item-details h4 { font-size: 16px; margin-bottom: 5px; font-family: var(--font-heading); }
.cart-item-price { color: var(--gold); font-size: 14px; }
.cart-item-remove { background: none; border: none; color: #666; font-size: 12px; cursor: pointer; margin-top: 5px; text-transform: uppercase; }
.cart-item-remove:hover { color: white; }

.cart-footer { padding: 30px; border-top: 1px solid #222; background: #0f0f0f; }
.cart-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; margin-bottom: 25px; color: white; }
.checkout-btn { width: 100%; padding: 18px; background: white; color: black; border: none; text-transform: uppercase; font-weight: 700; letter-spacing: 2px; cursor: pointer; transition: var(--transition); }
.checkout-btn:hover { background: var(--gold); }

/* --- Footer --- */
footer {
    padding: 80px 0 30px;
    background: black;
    border-top: 1px solid #111;
    text-align: center;
}

.social-links { margin-bottom: 30px; }
.social-links a { color: var(--text-muted); font-size: 20px; margin: 0 15px; }
.social-links a:hover { color: var(--gold); }

/* --- Reviews Section --- */
.reviews-section {
    margin-bottom: 100px;
    padding-top: 60px;
    border-top: 1px solid #222;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    margin-top: 60px;
}

.rating-summary-box {
    background: #0a0a0a;
    padding: 40px;
    border: 1px solid #1a1a1a;
    margin-bottom: 30px;
}

.add-review-box {
    background: #0f0f0f;
    padding: 30px;
    border: 1px solid #222;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- Mobile & Responsive --- */
.mobile-only { display: none; }
.mobile-nav-toggle { display: none; }
.hide-desktop { display: none !important; }
.filter-toggle-btn { display: none; }

@media (max-width: 1024px) {
    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .entry-title {
        font-size: 32px !important;
    }

    .rating-summary-box {
        padding: 30px 20px;
    }
    
    .product-detail-grid { 
        grid-template-columns: 1fr !important; 
        gap: 40px !important; 
    }

    .shop-layout {
        flex-direction: column !important;
    }

    .checkout-summary, .checkout-payment {
        width: 100% !important;
        flex-shrink: 1 !important;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .mobile-only { display: block; }
    .hide-desktop { display: block !important; }
    .sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
    
    .card-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hero-section { 
        flex-direction: column; 
        text-align: center; 
        padding-top: calc(100px + env(safe-area-inset-top)); 
        padding-bottom: 60px; 
        min-height: auto; 
    }
    .hero-content { margin-right: 0; margin-bottom: 40px; padding: 0 20px; }
    .hero-title { font-size: 42px; }
    .hero-image-container { width: 100%; height: auto; padding: 20px; }
    .hero-circle { width: 250px; height: 250px; }
    .values-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .shop-layout { flex-direction: column; }
    .shop-container { 
        padding-left: 20px; 
        padding-right: 20px; 
        padding-top: calc(100px + env(safe-area-inset-top)); 
    }
    .section-title { font-size: 32px; }
    
    .product-image-container { height: 300px; padding: 30px; }
    .product-info { padding: 20px 10px; }
    .product-name { font-size: 12px; letter-spacing: 1px; height: 34px; }
    .product-price { font-size: 16px; }
    
    .product-gallery .image-wrapper { padding: 40px !important; }
    .product-gallery .image-wrapper img { max-height: 300px !important; }
    
    .product-detail-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    
    .hide-mobile { display: none !important; }
    .mobile-nav { display: flex; }

    .sidebar {
        position: fixed; top: 0; left: -320px; width: 300px; height: 100vh;
        background: #000; z-index: 2000; padding: 40px; border-right: 1px solid #222;
        transition: var(--transition); overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: calc(40px + env(safe-area-inset-top));
    }
    .sidebar.open { left: 0; }
    .filter-toggle-btn {
        display: inline-block; background: var(--near-black); color: white;
        border: 1px solid #333; padding: 10px 25px; cursor: pointer; margin-top: 20px;
    }

    /* Show both category and price filters on mobile */
    .sidebar .filter-group.category-filter,
    .sidebar .filter-group.price-filter {
        display: block !important;
    }
    
    .sidebar .filter-group:not(.category-filter):not(.price-filter) {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .card-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; 
    }
    .product-image-container { 
        height: 250px; 
        padding: 15px; 
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    }
    .product-image {
        max-height: 160px;
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8));
    }
    .product-gallery .image-wrapper { padding: 20px !important; }
    .product-gallery .image-wrapper img { max-height: 250px !important; }
    .product-name { font-size: 11px; letter-spacing: 0.5px; height: 34px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; white-space: normal; }
    .product-price { font-size: 13px; }
    
    .product-card-actions {
        position: relative;
        transform: none;
        background: transparent;
        padding: 5px 0 0 0;
        gap: 5px;
        opacity: 1;
        visibility: visible;
        display: flex;
        flex-direction: column; /* Stack vertically for names */
        width: 100%;
        margin-top: auto;
    }
    
    .product-card-action-btn {
        height: 38px;
        font-size: 9px;
        width: 100%; /* Full width */
        background: var(--dark-grey);
        border: 1px solid var(--mid-grey);
        color: white;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 0 10px;
    }

    .product-card-action-btn:first-child {
        background: var(--gold);
        color: black;
        border: none;
    }
    
    .container { padding: 0 15px; }
    .hero-title { font-size: 32px; }
    .cta-content h2 { font-size: 28px; }
    
    .cart-sidebar { 
        width: 100%; 
        right: -100%; 
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* --- Search Bar Styles (Shopify Style) --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    z-index: 3000;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-overlay.open {
    display: flex;
    animation: fadeInDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-container {
    width: 100%;
    max-width: 700px;
    position: relative;
    text-align: center;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 28px;
    font-family: var(--font-heading);
    padding: 15px 0;
    outline: none;
    text-align: center;
    letter-spacing: 1px;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.search-input:focus {
    border-bottom-color: var(--gold);
}

.search-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.search-results-summary {
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Optimization for very narrow phones (iPhone SE, etc) */
@media (max-width: 350px) {
    .card-grid { gap: 10px; }
    .shop-container { padding-left: 10px; padding-right: 10px; }
    .product-image-container { height: 180px; padding: 15px; }
    .product-name { font-size: 10px; }
}

.mobile-nav {
    display: none;
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh; 
    background: var(--black); 
    z-index: 2500;
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    gap: 30px; 
    transform: translateX(-100%); 
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
}

.mobile-nav.open { 
    display: flex;
    transform: translateX(0); 
    opacity: 1;
    visibility: visible;
}

.mobile-nav a { 
    font-size: 28px; 
    color: white; 
    font-family: var(--font-heading); 
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-nav a.active {
    color: var(--gold);
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    left: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* --- Shop Page Styles --- */
.shop-header { width: 100%; margin-bottom: 60px; text-align: center; }
.shop-header h1 { font-size: 56px; margin-bottom: 20px; }
.sidebar { width: 280px; flex-shrink: 0; }
.filter-group { margin-bottom: 40px; }
.filter-label { display: block; font-family: var(--font-heading); font-size: 18px; margin-bottom: 20px; color: var(--text-white); }
.filter-btn {
    display: block; width: 100%; text-align: left; background: none; border: none;
    color: var(--text-muted); padding: 10px 0; cursor: pointer; transition: var(--transition);
    border-bottom: 1px solid #1a1a1a; font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
}
.filter-btn:hover, .filter-btn.active { color: var(--gold); padding-left: 10px; border-color: #333; }
.pagination { margin-top: 80px; text-align: center; }
.pagination a {
    display: inline-block; padding: 10px 20px; margin: 0 5px; border: 1px solid #333;
    color: var(--text-muted); transition: var(--transition);
}
.pagination a.btn-primary, .pagination a:hover { background: var(--gold); color: black; border-color: var(--gold); }

/* Shop Container Fix */
.shop-container {
    padding-top: 150px; width: 100%; max-width: 1300px; margin: 0 auto;
    padding-left: 40px; padding-right: 40px;
}
.shop-layout { display: flex; width: 100%; gap: 60px; position: relative; }
/* Force hide mobile elements on desktop */
@media (min-width: 1025px) {
    .mobile-only, 
    .mobile-nav, 
    .mobile-nav-toggle, 
    .hide-desktop, 
    .filter-toggle-btn,
    .sidebar-header {
        display: none !important;
    }
}

/* --- Luxury Announcement Banner --- */
.announcement-banner {
    position: relative;
    padding: 120px 0;
    background: #050505;
    background: linear-gradient(135deg, #050505 0%, #0a0a0a 50%, #050505 100%);
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.banner-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 12px;
    display: block;
    margin-bottom: 20px;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 72px;
    color: white;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff 20%, var(--gold) 40%, var(--gold) 60%, #fff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gold-shimmer 4s linear infinite, title-pulse 2s ease-in-out infinite;
}

@keyframes title-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.banner-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    letter-spacing: 8px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.banner-divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 30px;
}

.banner-text {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
}

/* --- Announcement Hype Styles --- */
.floating-emojis {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bouncing-emoji {
    position: absolute;
    font-size: 30px;
    animation: emoji-bounce 3s ease-in-out infinite;
}

.bouncing-emoji:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.bouncing-emoji:nth-child(2) { top: 60%; left: 10%; animation-delay: 0.5s; }
.bouncing-emoji:nth-child(3) { top: 25%; right: 15%; animation-delay: 1s; }
.bouncing-emoji:nth-child(4) { top: 65%; right: 10%; animation-delay: 1.5s; }

.hype-fire {
    margin-bottom: 20px;
}

.fire-gif {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.bounce-hover:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

@keyframes emoji-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(20deg); }
}

@keyframes gold-shimmer {
    to { background-position: 200% center; }
}

@media (max-width: 768px) {
    .announcement-banner { padding: 80px 20px; }
    .banner-title { font-size: 42px; line-height: 1.2; margin-bottom: 15px; }
    .banner-subtitle { font-size: 14px; letter-spacing: 4px; margin-bottom: 20px; }
    .banner-text { font-size: 14px; padding: 0 10px; }
}

/* --- Swiper Overrides --- */
.product-swiper {
    padding: 20px 0 60px !important;
}
.swiper-pagination-bullet { background: rgba(255,255,255,0.2) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 20px !important; font-weight: bold; }

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .review-header {
        flex-direction: column;
        gap: 5px;
    }
    .entry-title {
        font-size: 28px !important;
    }
    .reviews-layout {
        margin-top: 30px;
    }
}
