/*
Theme Name: Adikaara Heritage Jewellery
Theme URI: https://adikaara.com
Author: Adikaara
Author URI: https://adikaara.com
Description: A premium WordPress theme for Adikaara Heritage Jewellery - featuring elegant gold and charcoal design with full e-commerce functionality.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adikaara
Tags: e-commerce, jewelry, luxury, responsive, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Colors */
  --gold: #D9BB74;
  --gold-dark: #B8995A;
  --gold-light: #E8D5A3;
  --charcoal: #0D0D0D;
  --cream: #F5F5F0;
  --silver: #D1D1D1;
  --white: #FFFFFF;
  --black: #000000;
  
  /* Text Colors */
  --text-primary: #0D0D0D;
  --text-secondary: #666666;
  --text-muted: #888888;
  --text-white: #FFFFFF;
  --text-white-muted: rgba(255, 255, 255, 0.7);
  
  /* Background Colors */
  --bg-white: #FFFFFF;
  --bg-cream: #F5F5F0;
  --bg-charcoal: #0D0D0D;
  --bg-gold: #D9BB74;
  
  /* Border Colors */
  --border-light: rgba(0, 0, 0, 0.1);
  --border-white: rgba(255, 255, 255, 0.2);
  
  /* Shadows */
  --shadow-gold: 0 10px 40px -10px rgba(217, 187, 116, 0.4);
  --shadow-gold-lg: 0 20px 60px -15px rgba(217, 187, 116, 0.5);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Great Vibes', cursive;
  
  /* Spacing */
  --section-padding: 6rem;
  --container-max-width: 1400px;
  --container-padding: 1.5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.7s ease;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.font-script {
  font-family: var(--font-script);
}

.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.text-gold { color: var(--gold); }
.text-charcoal { color: var(--charcoal); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section-padding {
  padding-left: max(1.5rem, calc((100vw - var(--container-max-width)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - var(--container-max-width)) / 2 + 1.5rem));
}

.section-spacing {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
}

.site-header.scrolled,
.site-header:not(.home-header) {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header.home-header:not(.scrolled) {
  background: transparent;
}

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

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  margin-top: 0.25rem;
}

.site-header.scrolled .logo-tagline,
.site-header:not(.home-header) .logo-tagline {
  color: var(--charcoal);
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link:hover::after {
  width: 100%;
}

.site-header.home-header:not(.scrolled) .nav-link {
  color: var(--white);
}

.site-header.scrolled .nav-link,
.site-header:not(.home-header) .nav-link {
  color: var(--charcoal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-action-btn {
  padding: 0.5rem;
  transition: color var(--transition-base);
}

.site-header.home-header:not(.scrolled) .header-action-btn {
  color: var(--white);
}

.site-header.scrolled .header-action-btn,
.site-header:not(.home-header) .header-action-btn {
  color: var(--charcoal);
}

.header-action-btn:hover {
  color: var(--gold);
}

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

.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  overflow: hidden;
}

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

.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--charcoal);
  transition: all var(--transition-base);
}

.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(217, 187, 116, 0.1);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.5), transparent);
  z-index: 1;
}

.hero-overlay-secondary {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.6), transparent, rgba(13, 13, 13, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--gold);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--transition-base);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

.hero-scroll:hover {
  color: var(--gold);
}

.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-scroll svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Decorative elements */
.hero-decor-1,
.hero-decor-2 {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 5;
}

.hero-decor-1 {
  top: 25%;
  right: 2.5rem;
  height: 8rem;
  opacity: 0.5;
}

.hero-decor-2 {
  bottom: 25%;
  right: 5rem;
  height: 12rem;
  opacity: 0.3;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.section-label {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-section {
  background: var(--cream);
  position: relative;
}

.categories-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.category-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.3), transparent);
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.category-card:hover .category-card-overlay {
  opacity: 0.9;
}

.category-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.category-count {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  transform: translateY(1rem);
  transition: transform 0.5s ease;
}

.category-card:hover .category-count {
  transform: translateY(0);
}

.category-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(1rem);
  opacity: 0;
  transition: all 0.5s ease;
}

.category-card:hover .category-link {
  transform: translateY(0);
  opacity: 1;
}

.category-link:hover {
  color: var(--gold);
}

.category-card-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: border-color 0.5s ease;
  pointer-events: none;
}

.category-card:hover .category-card-border {
  border-color: rgba(217, 187, 116, 0.5);
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
  background: var(--white);
}

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

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  position: relative;
}

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

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.product-sale-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
}

.product-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(1rem);
  transition: all 0.5s ease;
}

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

.product-action-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.product-action-btn:hover {
  background: var(--gold);
}

.product-action-btn.active {
  background: var(--gold);
}

.product-add-to-cart {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.product-card:hover .product-add-to-cart {
  transform: translateY(0);
}

.product-add-to-cart:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.product-info {
  padding: 0.5rem 0;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.product-rating svg {
  width: 0.875rem;
  height: 0.875rem;
}

.product-rating .star-filled {
  color: var(--gold);
  fill: var(--gold);
}

.product-rating .star-empty {
  color: #ddd;
}

.product-rating-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  transition: color var(--transition-base);
}

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

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

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

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

/* ========================================
   INSTAGRAM FEED SECTION
   ======================================== */
.instagram-section {
  background: var(--white);
}

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

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

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

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.6);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before,
.testimonials-section::after {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(217, 187, 116, 0.05);
  filter: blur(60px);
}

.testimonials-section::before {
  top: 0;
  right: 0;
}

.testimonials-section::after {
  bottom: 0;
  left: 0;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-author-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
}

.testimonial-author-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(217, 187, 116, 0.3);
  transition: all var(--transition-base);
}

.testimonial-dot.active {
  width: 2rem;
  background: var(--gold);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0;
}

.footer-newsletter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .footer-newsletter-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-newsletter-title {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-newsletter-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

.newsletter-form button {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

.newsletter-form button:hover {
  background: var(--white);
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand-logo {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.footer-brand-tagline {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.footer-brand-text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

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

.footer-column-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-base);
}

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

/* ========================================
   ABOUT PAGE
   ======================================== */
.page-header {
  background: var(--charcoal);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--gold) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.05;
}

.page-header-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-header-label {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header-title span {
  color: var(--gold);
}

.page-header-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-story-section {
  padding: 6rem 0;
}

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

@media (min-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-story-image {
  position: relative;
}

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

.about-story-image-border {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(217, 187, 116, 0.5);
  pointer-events: none;
}

.about-story-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-gold-lg);
  max-width: 250px;
}

.about-story-badge-text {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-story-badge-subtext {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--charcoal);
}

.about-story-corner {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  border-top: 2px solid rgba(217, 187, 116, 0.5);
  border-left: 2px solid rgba(217, 187, 116, 0.5);
}

.about-story-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.about-stat svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  margin: 0 auto 0.75rem;
}

.about-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.values-section {
  background: var(--cream);
  padding: 6rem 0;
}

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

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.value-card:hover {
  box-shadow: var(--shadow-gold-lg);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(217, 187, 116, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.value-description {
  color: var(--text-muted);
  line-height: 1.7;
}

.process-section {
  padding: 6rem 0;
}

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

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.process-step-number {
  width: 5rem;
  height: 5rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.process-step-number span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.process-step-description {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cta-section {
  background: var(--gold);
  padding: 5rem 0;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.cta-description {
  color: rgba(13, 13, 13, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.cta-button:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* ========================================
   COLLECTIONS/SHOP PAGE
   ======================================== */
.shop-header {
  padding-top: 8rem;
  padding-bottom: 3rem;
  text-align: center;
}

.shop-filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .shop-filters {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(13, 13, 13, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.filter-toggle:hover {
  background: rgba(217, 187, 116, 0.1);
}

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

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

.sort-select {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid rgba(13, 13, 13, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  cursor: pointer;
}

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

.filter-panel {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
  .filter-panel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.filter-group-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.filter-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-category-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  background: var(--white);
  color: var(--charcoal);
  transition: all var(--transition-base);
}

.filter-category-btn:hover,
.filter-category-btn.active {
  background: var(--gold);
}

.price-range-slider {
  width: 100%;
  margin-bottom: 0.5rem;
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.no-products {
  text-align: center;
  padding: 5rem 0;
}

.no-products p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.clear-filters {
  color: var(--gold);
  text-decoration: underline;
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-detail {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

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

.breadcrumb-separator {
  width: 1rem;
  height: 1rem;
}

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

@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-detail-images {
  position: relative;
}

.product-detail-main-image {
  aspect-ratio: 1;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.product-detail-thumbnails {
  display: flex;
  gap: 1rem;
}

.product-detail-thumbnail {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-base);
}

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

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

.product-detail-category {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.product-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-detail-rating svg {
  width: 1.25rem;
  height: 1.25rem;
}

.product-detail-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-detail-price-current {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

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

.product-detail-description {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-detail-specs {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.product-detail-specs-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.product-detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-detail-spec-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.product-detail-spec-value {
  color: var(--charcoal);
}

.product-detail-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quantity-label {
  font-weight: 500;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(13, 13, 13, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quantity-control button {
  padding: 0.5rem 1rem;
  transition: background var(--transition-base);
}

.quantity-control button:hover {
  background: rgba(217, 187, 116, 0.1);
}

.quantity-control span {
  padding: 0.5rem 1rem;
  min-width: 3rem;
  text-align: center;
}

.product-detail-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-detail-add-cart {
  flex: 1;
  padding: 1rem 2rem;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

.product-detail-add-cart:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.product-detail-wishlist {
  padding: 1rem 1.5rem;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  transition: all var(--transition-base);
}

.product-detail-wishlist:hover,
.product-detail-wishlist.active {
  background: rgba(217, 187, 116, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.product-detail-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.trust-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  margin: 0 auto 0.5rem;
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.related-products {
  margin-top: 4rem;
}

.related-products-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

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

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-muted);
}

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

.contact-form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--transition-base);
}

.form-submit:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ========================================
   BLOG PAGE
   ======================================== */
.blog-section {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

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

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  transition: color var(--transition-base);
}

.blog-card:hover .blog-card-title {
  color: var(--gold);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ========================================
   CART DRAWER
   ======================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

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

.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.cart-drawer-close {
  padding: 0.5rem;
  transition: color var(--transition-base);
}

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

.cart-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 0;
}

.cart-empty svg {
  width: 4rem;
  height: 4rem;
  color: #ddd;
  margin: 0 auto 1rem;
}

.cart-empty p {
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.cart-item-image {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item-actions {
  display: flex;
  gap: 0.5rem;
}

.cart-item-btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.cart-item-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.cart-item-btn.remove {
  color: #dc2626;
}

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

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-subtotal-label {
  font-weight: 500;
}

.cart-subtotal-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
}

.cart-checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.cart-checkout-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

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

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Initial state for animated elements */
[data-animate] {
  opacity: 0;
}

[data-animate="fade-in-up"] {
  transform: translateY(30px);
}

[data-animate].animated {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   UTILITIES
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.hidden { display: none; }

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
}

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */
/* Admin bar fix */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Screen reader text */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Alignments */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

/* WordPress gallery */
.gallery {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-columns-5 { grid-template-columns: repeat(5, 1fr); }
.gallery-columns-6 { grid-template-columns: repeat(6, 1fr); }

/* Captions */
.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.wp-caption img {
  display: block;
  margin: 0;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.pagination a:hover,
.pagination .current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* Comments */
.comments-area {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-light);
}

.comment-list {
  margin-bottom: 3rem;
}

.comment {
  margin-bottom: 2rem;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.comment-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.comment-author-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
}

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

.comment-content {
  padding-left: 4rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.comment-reply-link {
  font-size: 0.875rem;
  color: var(--gold);
}

/* Comment form */
.comment-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.comment-form input[type="submit"] {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.comment-form input[type="submit"]:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ========================================
   WOOCOMMERCE INTEGRATION
   ======================================== */
.woocommerce .content-area {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.woocommerce-breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

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

.woocommerce-products-header {
  text-align: center;
  margin-bottom: 3rem;
}

.woocommerce-products-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--charcoal);
}

.woocommerce-result-count {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.woocommerce-ordering select {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid rgba(13, 13, 13, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  cursor: pointer;
}

.woocommerce-ordering select:focus {
  outline: none;
  border-color: var(--gold);
}

/* Product loop */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(4, 1fr);
  }
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  float: none;
  margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  padding: 0;
  margin-bottom: 0.5rem;
}

.woocommerce ul.products li.product .price {
  color: var(--gold);
  font-size: 1.125rem;
  font-weight: 600;
}

.woocommerce ul.products li.product .price del {
  color: var(--text-muted);
  font-weight: 400;
  margin-right: 0.5rem;
}

.woocommerce ul.products li.product .button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition-base);
}

.woocommerce ul.products li.product .button:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.woocommerce ul.products li.product .onsale {
  position: absolute;
  top: 1rem;
  left: 1rem;
  min-width: auto;
  min-height: auto;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
}

/* Single product */
.woocommerce div.product .product_title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
}

.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 1rem;
}

.woocommerce div.product .price {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.woocommerce div.product .price del {
  color: var(--text-muted);
  font-size: 1.25rem;
}

.woocommerce div.product form.cart {
  margin-bottom: 2rem;
}

.woocommerce div.product form.cart .button {
  padding: 1rem 2rem;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition-base);
}

.woocommerce div.product form.cart .button:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0 0 2rem;
  border-bottom: 1px solid var(--border-light);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: none;
  border: none;
  border-radius: 0;
  margin: 0 2rem 0 0;
  padding: 1rem 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: none;
  border-bottom: 2px solid var(--gold);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--charcoal);
}

/* Cart */
.woocommerce-cart .content-area {
  padding-top: 8rem;
}

.woocommerce table.shop_table {
  border: none;
  border-radius: 0;
}

.woocommerce table.shop_table th {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
  padding: 1rem;
  background: var(--cream);
}

.woocommerce table.shop_table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.woocommerce table.shop_table .product-name a {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--charcoal);
}

.woocommerce table.shop_table .product-name a:hover {
  color: var(--gold);
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
  color: var(--gold);
  font-weight: 600;
}

.woocommerce table.shop_table .product-quantity input {
  padding: 0.5rem;
  border: 1px solid var(--border-light);
  width: 4rem;
  text-align: center;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition-base);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Checkout */
.woocommerce-checkout .content-area {
  padding-top: 8rem;
}

.woocommerce-checkout #customer_details {
  margin-bottom: 3rem;
}

.woocommerce-checkout h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: var(--radius-md);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  outline: none;
  border-color: var(--gold);
}

.woocommerce #payment #place_order {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition-base);
}

.woocommerce #payment #place_order:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.woocommerce-message {
  background: rgba(217, 187, 116, 0.1);
  border-left: 4px solid var(--gold);
}

.woocommerce-info {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
}

.woocommerce-error {
  background: rgba(220, 38, 38, 0.1);
  border-left: 4px solid #dc2626;
}

.woocommerce-message .button {
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition-base);
}

.woocommerce-message .button:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }
  
  .hero-decor-1,
  .hero-decor-2 {
    display: none;
  }
  
  .about-story-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1rem;
  }
  
  .about-story-corner {
    display: none;
  }
  
  .product-detail-thumbnails {
    justify-content: center;
  }
  
  .product-detail-actions {
    flex-direction: column;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Final Shop Layout & Sidebar Fixes */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
}

@media (max-width: 1200px) {
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 992px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 576px) {
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

.product-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 15px !important;
  background: #fff !important;
  border: 1px solid #ddd !important;
  position: relative !important;
}

.product-card > .add_to_cart_button,
.product-card > .added_to_cart {
  display: none !important;
}

.product-add-to-cart-wrapper {
  margin-top: auto !important;
  padding-top: 15px !important;
}

.product-add-to-cart-wrapper .button {
  width: 100% !important;
  background: #0D0D0D !important;
  color: #D9BB74 !important;
  border: 1px solid #D9BB74 !important;
  padding: 12px !important;
  text-align: center !important;
  display: block !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
}

#main.site-main {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 40px !important;
}

.woocommerce-content, ul.products {
  flex: 1 !important;
  min-width: 0 !important;
}

.widget-area {
  width: 300px !important;
  flex-shrink: 0 !important;
}

@media (max-width: 992px) {
  .widget-area {
    width: 100% !important;
    order: 2 !important;
  }
}

img[src*="placeholder"] {
  content: url("https://images.unsplash.com/photo-1515562141207-7a18b5ce7142?auto=format&fit=crop&w=400&q=80") !important;
}
