@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8941F;
    --burgundy: #8B0000;
    --burgundy-light: #A91D3A;
    --emerald: #2C5F2D;
    --emerald-light: #4a8f4f;
    --navy: #1a2634;
    --navy-light: #2c3e50;
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --sidebar-bg: #fafafa;
    --cream: #f5f1e8;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
}

body {
    font-variant-numeric: lining-nums proportional-nums;
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* For areas where alignment matters (badges, prices, sizes), use tabular-nums */
.product-title,
.product-detail-title,
.product-category-badge,
.badge,
.sub-category-item,
h1, h2, h3 {
  font-variant-numeric: lining-nums tabular-nums slashed-zero;
  /* Optional fine tuning */
  letter-spacing: 0.01em;
}

/* If hyphens/slashes feel too tight around numbers, add tiny tracking */
.product-title,
.product-detail-title {
  letter-spacing: 0.015em;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float-orb 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--gold-primary), var(--burgundy));
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--emerald), var(--navy));
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold-primary));
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
}

/* Main Layout */
.main-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 320px;
    height: 100vh;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-right: 2px solid transparent;
    border-image: linear-gradient(to bottom, var(--gold-primary), transparent) 1;
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 30px rgba(212, 175, 55, 0.1);
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

.mobile-menu-btn {
  display: none;                           /* shown only on mobile in media query */
  position: fixed;
  top: max(1rem, calc(1rem + env(safe-area-inset-top, 0px)));
  right: max(1rem, calc(1rem + env(safe-area-inset-right, 0px)));
  left: auto;                              /* IMPORTANT: unset the left anchor */
  z-index: 2000;                           /* above the sidebar (which is 1000) */
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--text-dark);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

/* When button toggles to "open" (✕), keep it on the RIGHT as well */
.mobile-menu-btn.open {
  right: max(1rem, calc(1rem + env(safe-area-inset-right, 0px)));
  left: auto;                              /* ensure no override moves it left */
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: #fff;
}

/* Only show the button on tablet/phone, keep right-anchored */
@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: block;
    right: max(1rem, calc(1rem + env(safe-area-inset-right, 0px)));
    left: auto;
  }
  .mobile-menu-btn.open {
    right: max(1rem, calc(1rem + env(safe-area-inset-right, 0px)));
    left: auto;
  }
}

/* If you also use a floating logo in the top-right, avoid overlap on mobile: */
@media (max-width: 1024px) {
  .floating-brand-mark {
    right: 76px;   /* push it left so the menu button has room */
  }
}

.sidebar-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
}

.sidebar-logo span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-top: 0.5rem;
    opacity: 0.7;
    -webkit-text-fill-color: var(--text-dark);
}

.sidebar-search {
    position: relative;
    margin-bottom: 2rem;
}

.sidebar-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    background: white;
    transition: all 0.3s;
    color: var(--text-dark);
    font-weight: 500;
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.sidebar-search::before {
    content: '🔍';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}

.category-nav {
    list-style: none;
}

.category-item {
    margin-bottom: 0.3rem;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: var(--text-dark);
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    transition: left 0.4s ease;
    z-index: -1;
}

.category-link:hover::before,
.category-link.active::before {
    left: 0;
}

.category-link:hover,
.category-link.active {
    color: var(--text-dark);
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.category-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* NEW: Image icon styling for sidebar */
.category-icon-img {
    width: 41px;          /* ← ADJUST THIS: Icon width (24px to 48px) */
    height: 41px;         /* ← ADJUST THIS: Icon height (24px to 48px) */
    object-fit: contain;  /* ← Keeps image proportions */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

/* Hover effect for icon images */
.category-link:hover .category-icon-img {
    transform: scale(1.1);
}

/* Active state */
.category-link.active .category-icon-img {
    filter: drop-shadow(0 3px 6px rgba(212, 175, 55, 0.4));
}

.expand-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.category-link.expanded .expand-icon {
    transform: rotate(180deg);
}

/* === Dynamic Product Submenu Styling (refined) === */
.sub-categories {
  max-height: 0;
  overflow: hidden;
  margin-left: 0;             /* remove indent */
  padding: 0;                 /* no hidden space */
  transition: max-height 0.35s ease;
}

.sub-categories.open {
  /* Adjust the 320px subtraction if last item still touches footer controls */
  max-height: calc(100vh - 320px);
  overflow-y: auto;
  padding: 0.25rem 0 0.5rem;
  margin-top: 0.4rem;
  scrollbar-width: thin;
}

/* Scrollbar styling (WebKit) */
.sub-categories.open::-webkit-scrollbar { width: 6px; }
.sub-categories.open::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); border-radius: 6px; }
.sub-categories.open::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 6px; }

/* Individual product links in submenu */
.sub-category-item {
  display: flex;                   /* left-aligned row (bullet + text) */
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;           /* remove underline */
  text-align: left;                /* left align text */
  justify-content: flex-start;     /* left align content */
  padding: 0.65rem 0.9rem;         /* tighter horizontal padding */
  margin: 0.25rem 0;
  min-height: 42px;
  border-radius: 10px;
  background: #f7f5f0;             /* light neutral pill */
  color: var(--text-dark);
  font-size: 0.82rem;              /* slightly larger for readability */
  font-weight: 700;                /* readable at small sizes */
  letter-spacing: .2px;
  line-height: 1.2;
  border: 1px solid rgba(212,175,55,0.12);
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  cursor: pointer;
}

.sub-category-item:hover,
.sub-category-item:focus {
  text-decoration: none;
  background: rgba(212,175,55,0.18);
  border-color: rgba(212,175,55,0.35);
  transform: translateX(4px);
}

/* Text wrapper so we can clamp to 2 lines neatly */
.submenu-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;           /* clamp to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: balance;              /* nicer breaks on modern browsers */
  /* fallback */
  word-break: break-word;
}

/* Tiny gold bullet for visual anchor */
.sub-category-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex: 0 0 6px;
  box-shadow: 0 0 0 2px rgba(212,175,55,0.15);
}

.sub-category-item:active {
  transform: translateY(0);
}

/* Informational (no items) look */
.sub-category-item[style*="opacity"] {
  cursor: default;
  pointer-events: none;
  background: #eee;
  border-style: dashed;
  transform: none;
}

.sidebar-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    margin: 2rem 0;
}

.sidebar-footer {
    margin-top: 2rem;
}

.contact-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--text-dark), #2a2a2a);
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    cursor: pointer;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    transition: left 0.4s ease;
}

.contact-btn:hover::before {
    left: 0;
}

.contact-btn span {
    position: relative;
    z-index: 1;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
    color: var(--text-dark);
}

.content-area {
    margin-left: 320px;
    flex: 1;
    padding: 3rem 4rem;
    position: relative;
    z-index: 1;
}

.hidden {
    display: none !important;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, transparent 0px, transparent 20px, white 20px, white 22px),
        repeating-linear-gradient(-45deg, transparent 0px, transparent 20px, white 20px, white 22px);
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

/* Content Header */
.content-header {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.content-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.content-header h1 .accent {
    display: block;
    font-style: italic;
    background: linear-gradient(135deg, white, var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    line-height: 1.8;
}

.filter-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    backdrop-filter: blur(10px);
    color: var(--gold-light);
    border-radius: 30px;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Featured Banner */
.featured-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.featured-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.featured-content {
    position: relative;
    z-index: 1;
}

.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.category-card {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.4);
}

.category-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.category-card:hover .category-card-bg {
    transform: scale(1.1);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.7) 70%,
        rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

.category-badge {
    align-self: flex-end;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card-content {
    color: white;
}

.category-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.category-card-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.product-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.product-icon-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;  /* ← ADJUST THIS: Controls how wide the image is (50% to 100%) */
    height: 100%; /* ← ADJUST THIS: Controls how tall the image is (50% to 100%) */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem; /* ← ADJUST THIS: Adds breathing room around image */
}

.product-icon-placeholder img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* ← MAGIC: Keeps full image visible, no cropping */
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

/* For product detail page icons */
.product-detail-icon {
    max-width: 70%;  /* ← ADJUST THIS: Detail page size (50% to 90%) */
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain; /* ← MAGIC: Keeps full image visible */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    margin: auto;
}

@keyframes floatProduct {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.product-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-category-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-details-btn:hover {
    background: var(--gold-primary);
    color: var(--text-dark);
    transform: translateX(5px);
}

.theme-burgundy .product-image-container,
.theme-burgundy .product-detail-image-bg { 
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light)); 
}

.theme-emerald .product-image-container,
.theme-emerald .product-detail-image-bg { 
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light)); 
}

.theme-gold .product-image-container,
.theme-gold .product-detail-image-bg { 
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary)); 
}

.theme-navy .product-image-container,
.theme-navy .product-detail-image-bg { 
    background: linear-gradient(135deg, var(--navy), var(--navy-light)); 
}

/* PRODUCT DETAIL PAGE */
.product-detail-page {
    animation: fadeInUp 0.8s ease-out;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateX(-5px);
}

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

.product-detail-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.product-detail-image-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-icon {
    font-size: 15rem;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.product-detail-content {
    padding: 2rem 0;
}

.product-detail-category {
    font-size: 0.9rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.product-detail-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.product-tag {
    padding: 0.7rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.product-tag:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.action-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

/* CONTACT PAGE */
.contact-page {
    animation: fadeInUp 0.8s ease-out;
}

.contact-page .content-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-box {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.contact-info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-value {
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
    line-height: 1.6;
}

.contact-info-value a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-value a:hover {
    color: var(--gold-primary);
}

.contact-form-container {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-form-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-input,
.form-textarea,
.form-select {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

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

.service-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.service-option {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.service-option:hover,
.service-option.selected {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

.submit-button {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    margin-top: 2rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.map-container {
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--text-dark);
    border: none;
    border-radius: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

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

    .mobile-menu-btn {
        display: block;
    }

    .content-area {
        margin-left: 0;
        padding: 5rem 2rem 2rem;
    }

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

    .contact-info-section {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        height: 400px;
    }

    .product-detail-title {
        font-size: 2.5rem;
    }

    .service-options {
        grid-template-columns: 1fr;
    }
}

/* Store Locator Button */
.store-locator-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(44, 95, 45, 0.3);
    cursor: pointer;
    margin-bottom: 1rem;
}

.store-locator-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    transition: left 0.4s ease;
}

.store-locator-btn:hover::before {
    left: 0;
}

.store-locator-btn span {
    position: relative;
    z-index: 1;
}

.store-locator-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
    color: var(--text-dark);
}

/* Store Locator Page */
.store-locator-page {
    animation: fadeInUp 0.8s ease-out;
}

.store-locator-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    height: calc(100vh - 200px);
    min-height: 600px;
}

.stores-list-panel {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
}

.stores-list-panel::-webkit-scrollbar {
    width: 6px;
}

.stores-list-panel::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}

.stores-list-panel::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

.search-store-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-store-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.search-store-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.search-store-box::before {
    content: '🔍';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

.store-count {
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.store-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.store-item:hover,
.store-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.store-item.featured {
    border: 2px solid var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.store-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.store-distance {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.store-address {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.store-phone {
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.store-hours {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.map-panel {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .store-locator-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .stores-list-panel {
        max-height: 400px;
    }
    
    .map-panel {
        height: 500px;
    }
}


/* ===== CATEGORY CARD ICONS (Homepage Big Cards) ===== */

.category-card-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;          /* ← ADJUST THIS: 40% to 80% */
    height: 60%;         /* ← ADJUST THIS: 40% to 80% */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.25;       /* ← ADJUST THIS: 0.2 to 0.4 (transparency) */
    transition: all 0.6s ease;
}

.category-card-icon {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;  /* ← Keeps full image visible */
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}

/* Hover effect - icon gets bigger and brighter */
.category-card:hover .category-card-icon-container {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.35;       /* ← Slightly more visible on hover */
}

/* ===== Sidebar Brand (Logo + Text) ===== */
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
  cursor: pointer;
  user-select: none;
  padding: 0.2rem 0.4rem;
  border-radius: 14px;
  transition: background 0.35s, box-shadow 0.35s, transform 0.35s;
}

.sidebar-brand:hover {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  box-shadow: 0 6px 18px -6px rgba(212,175,55,0.35);
  transform: translateY(-2px);
}

.brand-mark {
  display: block;
  width: 58px;       /* Adjust size here */
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #f7f3e6 60%, #e3d9c2 100%);
  border: 2px solid rgba(212,175,55,0.55);
  box-shadow:
    0 4px 10px rgba(0,0,0,0.15),
    0 0 0 4px rgba(212,175,55,0.15);
  padding: 4px;      /* Inner breathing space */
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-line-1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-line-2 {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: #444;
  margin-top: 0.35rem;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Smaller on narrow mobile */
@media (max-width: 480px) {
  .brand-mark {
    width: 48px;
    height: 48px;
  }
  .brand-line-1 {
    font-size: 1.2rem;
  }
  .brand-line-2 {
    font-size: 0.55rem;
    letter-spacing: 3px;
  }
}