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

/* ==========================================
   CSS CUSTOM PROPERTIES (COLOR SYSTEM)
   ========================================== */
:root {
  --color-background: hsl(40, 50%, 98%);
  --color-foreground: hsl(0, 0%, 20%);
  --color-card: hsl(37, 33%, 94%);
  --color-card-foreground: hsl(0, 0%, 20%);
  --color-primary: hsl(0, 80%, 81%);
  --color-primary-foreground: hsl(0, 0%, 100%);
  --color-secondary: hsl(37, 33%, 93%);
  --color-secondary-foreground: hsl(0, 0%, 25%);
  --color-muted: hsl(30, 15%, 90%);
  --color-muted-foreground: hsl(0, 0%, 40%);
  --color-accent: hsl(152, 25%, 72%);
  --color-accent-foreground: hsl(0, 0%, 20%);
  --color-destructive: hsl(0, 84%, 60%);
  --color-border: hsl(30, 15%, 88%);
  --color-input: hsl(30, 15%, 88%);
  --color-ring: hsl(0, 80%, 81%);
  --color-coral: hsl(0, 80%, 81%);
  --color-peach: hsl(11, 100%, 83%);
  --color-sage: hsl(152, 25%, 72%);
  --color-terracotta: hsl(14, 68%, 62%);
  --color-beige: hsl(37, 33%, 94%);

  --radius: 0.5rem;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-soft: 0 4px 20px -4px rgba(51, 51, 51, 0.06);
  --shadow-elevated: 0 8px 40px -8px rgba(51, 51, 51, 0.1);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

ul {
  list-style: none;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container-wide {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .container-wide {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ==========================================
   TYPOGRAPHY UTILITIES
   ========================================== */
.font-display {
  font-family: var(--font-display);
}

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

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

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

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

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-fade-in {
  animation: fadeIn 0.6s var(--transition-smooth) forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s var(--transition-smooth) forwards;
}

.animate-marquee {
  animation: marquee 25s linear infinite;
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
}

/* ==========================================
   CARD & IMAGE EFFECTS
   ========================================== */
.card-hover {
  transition: all 0.5s var(--transition-smooth);
}

.card-hover:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}

.image-zoom {
  transition: transform 0.7s ease-out;
}

.image-zoom:hover {
  transform: scale(1.05);
}

.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.3s var(--transition-smooth);
}

.link-underline:hover::after {
  transform: scaleX(1);
}

/* ==========================================
   BADGES
   ========================================== */
.sold-out-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: var(--color-foreground);
  color: var(--color-background);
  z-index: 2;
}

.new-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: var(--color-coral);
  color: white;
  z-index: 2;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.9;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  border-color: var(--color-primary);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
  border-color: var(--color-secondary);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-foreground);
  border-color: var(--color-border);
}

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

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

/* ==========================================
   HEADER
   ========================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(253, 250, 244, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

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

@media (min-width: 1024px) {
  #site-header .header-inner {
    height: 64px;
  }
}

/* Mobile logo */
.header-logo-mobile {
  display: flex;
  align-items: center;
}

.header-logo-mobile img {
  height: 56px;
  width: auto;
}

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

/* Desktop nav */
.header-desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
}

.header-nav-left,
.header-nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}

.header-nav-left {
  justify-content: flex-end;
}

.header-nav-right {
  justify-content: flex-start;
}

.header-nav-link {
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.025em;
  transition: opacity 0.2s;
}

.header-nav-link:hover {
  opacity: 0.6;
}

.header-logo-desktop {
  margin-left: 3rem;
  margin-right: 3rem;
  flex-shrink: 0;
}

.header-logo-desktop img {
  height: 56px;
  width: auto;
}

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

.cart-btn {
  position: relative;
  padding: 0.5rem;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-btn:hover {
  opacity: 0.6;
}

.cart-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-foreground);
  stroke-width: 1.5;
  fill: none;
  display: block;
}

.theme-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  border-radius: 9999px;
  padding: 0 4px;
}

.theme-cart-count:empty {
  display: none;
}

.mobile-menu-btn {
  padding: 0.5rem;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

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

.mobile-menu-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-foreground);
  stroke-width: 1.5;
  fill: none;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
}

.mobile-menu.is-open {
  display: block;
  animation: fadeIn 0.2s ease;
}

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

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-links a {
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.025em;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-menu-links a:hover {
  color: var(--color-muted-foreground);
}

/* data-scrolled for inner pages */
html[data-scrolled="true"] #site-header {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ==========================================
   FOOTER
   ========================================== */
#site-footer {
  border-top: 1px solid var(--color-border);
  background-color: var(--color-secondary);
}

.footer-inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .footer-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    text-align: left;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

.footer-logo img {
  height: 64px;
  width: auto;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-logo img {
    margin: 0;
  }
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  max-width: 28rem;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .footer-tagline {
    margin-left: 0;
    margin-right: 0;
  }
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.footer-social a {
  padding: 0.5rem;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  opacity: 0.6;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-foreground);
  stroke-width: 1.5;
  fill: none;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
  .footer-links {
    align-items: flex-start;
  }
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  transition: color 0.2s;
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-contact-list {
    align-items: flex-start;
  }
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-foreground);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.footer-contact-item a {
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-bottom p,
.footer-bottom-right {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
}

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

@media (min-width: 640px) {
  .footer-bottom-right {
    flex-direction: row;
    gap: 1rem;
  }
}

.footer-bottom-right a {
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-bottom-right a:hover {
  color: var(--color-foreground);
}

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 0;
  }
}

.hero-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s var(--transition-smooth) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: white;
  animation: slideUp 0.6s var(--transition-smooth) forwards;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  animation: slideUp 0.6s var(--transition-smooth) forwards;
  animation-delay: 0.1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  animation: slideUp 0.6s var(--transition-smooth) 0.2s forwards;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  margin-top: 0.5rem;
}

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

/* ==========================================
   PRODUCT GRID
   ========================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

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

/* ==========================================
   PRODUCT CARD
   ========================================== */
.product-card {
  position: relative;
  background-color: var(--color-background);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card-image-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: var(--color-muted);
  margin-bottom: 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.product-card-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

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

.product-card-quick-add {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background-color: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s, background-color 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 10;
  border: none;
  cursor: pointer;
}

.product-card:hover .product-card-quick-add,
.product-card-image-wrap:hover .product-card-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-card-body {
  padding: 0;
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Ensure product card body (category, title, price) is always visible in all grids */
.product-grid .product-card .product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-card-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted-foreground);
  margin-bottom: 0;
}

.product-card-name {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
}

.product-card-name a:hover {
  opacity: 0.7;
}

.product-card-price {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.product-card-sold-out {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  font-style: italic;
}

/* ==========================================
   CATEGORY GRID
   ========================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.category-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--color-card);
  display: block;
  text-decoration: none;
}

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

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.3);
  transition: background-color 0.3s;
}

.category-card:hover .category-card-overlay {
  background-color: rgba(51, 51, 51, 0.4);
}

.category-card-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-label h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: white;
  font-weight: 500;
}

/* ==========================================
   ABOUT PREVIEW
   ========================================== */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-preview-image {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 24rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-preview-image {
    margin: 0;
  }
}

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

/* ==========================================
   HOW IT WORKS
   ========================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

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

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

/* ==========================================
   MARQUEE
   ========================================== */
.marquee-bar {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  padding: 0.75rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  flex-shrink: 0;
}

/* ==========================================
   IMAGE SLIDER
   ========================================== */
.image-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

@media (min-width: 768px) {
  .image-slider {
    aspect-ratio: 16/9;
  }
}

.slider-slide {
  position: absolute;
  inset: 0;
  transition: opacity 0.7s ease;
}

.slider-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.slider-slide:not(.is-active) {
  opacity: 0;
  z-index: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5000ms ease-out;
}

.slider-slide.is-active img {
  transform: scale(1.10);
}

.slider-slide:not(.is-active) img {
  transform: scale(1.00);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: rgba(253, 250, 244, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-foreground);
  stroke-width: 1.5;
  fill: none;
}

.image-slider:hover .slider-btn {
  opacity: 1;
}

.slider-prev {
  left: 1rem;
}

.slider-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slider-dot.is-active {
  background-color: white;
  transform: scale(1.1);
}

/* ==========================================
   REVIEWS
   ========================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.review-card {
  background-color: var(--color-background);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  animation: fadeIn 0.6s var(--transition-smooth) both;
}

.review-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-8px);
  border-color: rgba(242, 132, 132, 0.3);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
  stroke: var(--color-primary);
  transition: transform 0.3s;
}

.review-card:hover .review-stars svg {
  transform: scale(1.1);
}

.review-text {
  color: var(--color-muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  flex: 1;
  font-style: italic;
}

.review-author-wrap {
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
  transition: border-color 0.3s;
}

.review-card:hover .review-author-wrap {
  border-color: rgba(242, 132, 132, 0.2);
}

.review-author {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ==========================================
   CONTACT CTA / PARALLAX
   ========================================== */
.contact-cta-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .contact-cta-section {
    padding: 13rem 0;
  }
}

.contact-cta-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.6);
}

.contact-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-cta-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1.5rem;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.5;
  fill: none;
}

.contact-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: white;
}

.contact-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

/* ==========================================
   INNER PAGE BASE
   ========================================== */
.inner-page-main {
  padding-top: 4rem;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .inner-page-main {
    padding-top: 5rem;
  }
}

.page-content-wrap {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  transition: color 0.2s;
  margin-bottom: 2rem;
}

.back-link:hover {
  color: var(--color-foreground);
}

.back-link svg {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

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

.about-hero-text .space-y-4 > p + p {
  margin-top: 1rem;
}

.about-mission-box {
  background-color: var(--color-secondary);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .about-mission-box {
    padding: 4rem;
  }
}

.about-mission-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-muted-foreground);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
  font-style: italic;
}

.about-cta-section {
  text-align: center;
  margin-bottom: 5rem;
}

.about-cta-section h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.contact-info-card {
  background-color: var(--color-secondary);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.contact-info-item a {
  transition: color 0.2s;
}

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

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-primary);
  transition: opacity 0.2s;
}

.contact-social-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-social-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  fill: none;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--color-foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-muted-foreground);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(242, 132, 132, 0.15);
}

.form-group textarea {
  resize: none;
}

/* Contact Video */
.contact-video-section {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.contact-video-section video {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .contact-video-section video {
    height: 650px;
  }
}

.contact-video-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.5);
}

.contact-video-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.contact-video-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 2.5rem);
  font-style: italic;
  color: white;
  line-height: 1.5;
  max-width: 40rem;
}

.contact-video-quote p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

/* Contact Success */
.contact-success {
  max-width: 40rem;
  margin: 5rem auto;
  text-align: center;
}

.contact-success-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-primary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary-foreground);
  stroke-width: 2;
  fill: none;
}

.contact-success h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ==========================================
   FAQ PAGE
   ========================================== */
.faq-category-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: rgba(237, 229, 213, 0.5);
}

.faq-question span {
  font-weight: 500;
  font-size: 0.875rem;
  padding-right: 1rem;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--color-muted-foreground);
  stroke-width: 1.5;
  fill: none;
  transition: transform 0.3s;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  animation: fadeIn 0.2s ease;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq-still-questions {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.faq-still-questions h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.faq-still-questions p {
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
}

/* ==========================================
   SHOP / FULL SHOP SECTION
   ========================================== */
#shop {
  scroll-margin-top: 6rem;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.shop-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  border: 1px solid var(--color-border);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}

.shop-filter-btn:hover,
.shop-filter-btn.is-active {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

.shop-search-wrap {
  max-width: 24rem;
  margin: 0 auto 2rem;
}

.shop-search-input {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-background);
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--color-foreground);
}

.shop-search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(242, 132, 132, 0.15);
}

.shop-search-input::placeholder {
  color: var(--color-muted-foreground);
}

/* ==========================================
   WOOCOMMERCE - SIDE CART DRAWER
   ========================================== */
#theme-cart-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.5);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.cart-open #theme-cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

#theme-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background-color: var(--color-background);
  z-index: 70;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
}

body.cart-open #theme-cart-drawer {
  transform: translateX(0);
}

#theme-cart-drawer.is-updating {
  opacity: 0.6;
  pointer-events: none;
}

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

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

.cart-drawer-close {
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.cart-drawer-close:hover {
  opacity: 0.6;
}

.cart-drawer-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-foreground);
  stroke-width: 1.5;
  fill: none;
}

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

/* Cart empty state */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 1rem;
  padding: 2rem;
}

.cart-empty-state p {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
}

/* Cart items */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.cart-item-image {
  width: 72px;
  height: 90px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--color-muted);
}

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

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.cart-item-name a {
  color: inherit;
}

.cart-item-price {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}

.cart-item-variations {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: background-color 0.2s;
}

.cart-qty-btn:hover {
  background-color: var(--color-secondary);
}

.cart-item-qty-display {
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 24px;
  text-align: center;
}

.cart-remove-btn {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.25rem;
}

.cart-remove-btn:hover {
  color: var(--color-destructive);
}

/* Cart footer */
.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
  background-color: var(--color-background);
}

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

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

.cart-subtotal-value {
  font-size: 1rem;
  font-weight: 600;
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem;
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: opacity 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.cart-checkout-btn:hover {
  opacity: 0.9;
  color: var(--color-primary-foreground);
}

/* ==========================================
   WOOCOMMERCE SINGLE PRODUCT
   ========================================== */
.single-product-main {
  padding-top: 4rem;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .single-product-main {
    padding-top: 5rem;
  }
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .product-layout {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
  }
}

.product-gallery-col {}

.product-main-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--color-muted);
  margin-bottom: 1rem;
}

#product-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnails {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-thumbnail-btn {
  width: 72px;
  height: 90px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

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

.product-thumbnail-btn.is-active {
  border-color: var(--color-foreground);
}

.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-categories {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted-foreground);
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 500;
}

.product-price ins {
  text-decoration: none;
}

.product-stock-in {
  font-size: 0.875rem;
  color: var(--color-accent);
}

.product-stock-out {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  font-weight: 500;
}

.product-description {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  line-height: 1.7;
  white-space: pre-line;
}

.product-add-to-cart {
  margin-top: 0.5rem;
}

.product-add-to-cart-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-add-to-cart-row .product-quantity {
  margin-bottom: 0;
}

.product-add-to-cart-row .single_add_to_cart_button {
  flex: 1;
  min-width: 0;
}

.product-quantity {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background-color 0.2s;
  padding: 0.75rem;
}

.qty-btn:hover {
  background-color: var(--color-secondary);
}

.qty-display {
  font-size: 1rem;
  font-weight: 500;
  min-width: 40px;
  text-align: center;
  padding: 0.75rem 0.25rem;
}

.qty-input {
  display: none;
}

.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0 2rem;
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.single_add_to_cart_button:hover {
  opacity: 0.9;
  color: var(--color-primary-foreground);
}

.single_add_to_cart_button.is-disabled,
.single_add_to_cart_button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Force theme styles on Add to Cart buttons (override WooCommerce .button .alt) */
.product-add-to-cart .single_add_to_cart_button.button.alt,
.product-add-to-cart .single_add_to_cart_button.button,
.product-add-to-cart .button.single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0 2rem !important;
  background-color: var(--color-primary) !important;
  color: var(--color-primary-foreground) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-size: 0.875rem !important;
  font-weight: 500;
  font-family: var(--font-body);
  box-shadow: none !important;
  text-decoration: none;
  text-align: center;
}

.product-add-to-cart .single_add_to_cart_button.button.alt:hover,
.product-add-to-cart .single_add_to_cart_button.button:hover {
  opacity: 0.9;
  color: var(--color-primary-foreground) !important;
  background-color: var(--color-primary) !important;
}

/* Product variations */
.product-variations {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.variation-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.variation-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variation-option-btn {
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}

.variation-option-btn:hover,
.variation-option-btn.is-selected {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

/* Product Details section */
.product-details-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.product-details-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-details-list {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-details-list li {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

/* Related products */
.related-products-section {
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
}

.related-products-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}

/* ==========================================
   WOOCOMMERCE ARCHIVE
   ========================================== */
.shop-page-main {
  padding-top: 4rem;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .shop-page-main {
    padding-top: 5rem;
  }
}

/* ==========================================
   WOOCOMMERCE CHECKOUT (matches contact form styles)
   ========================================== */
body.woocommerce-checkout .entry-content {
  max-width: 100%;
  display: block;
}

/* Allow checkout container full width so two-column layout has room */
body.woocommerce-checkout .page-entry-content {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: block;
}

/* Outer block wrapper: block only, no grid – avoids grid-in-grid */
body.woocommerce-checkout .wp-block-woocommerce-checkout {
  display: block !important;
}

body.woocommerce-checkout .wc-block-checkout {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-foreground);
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
  min-width: 0;
  width: 100%;
}

/* Prevent nested grid inside columns; content uses full width */
body.woocommerce-checkout .wc-block-checkout__main > *,
body.woocommerce-checkout .wc-block-checkout__sidebar > * {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Override any inner grid to single-column flow so we don't have grid-in-grid */
body.woocommerce-checkout .wc-block-checkout__main [class*="grid"],
body.woocommerce-checkout .wc-block-checkout__sidebar [class*="grid"] {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Labels – same as .form-group label */
body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-combobox label,
body.woocommerce-checkout .wc-block-components-select label,
body.woocommerce-checkout .wc-block-checkout-form .wc-block-components-label,
body.woocommerce-checkout .wc-block-components-checkout-form .wc-block-components-combobox label {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  display: block !important;
  color: var(--color-foreground) !important;
  margin-bottom: 0.5rem;
}

/* Fields – same as .form-group input/select/textarea */
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-combobox input,
body.woocommerce-checkout .wc-block-components-textarea textarea {
  width: 100% !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  background-color: var(--color-background) !important;
  color: var(--color-foreground) !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-textarea textarea::placeholder {
  color: var(--color-muted-foreground) !important;
}

body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-combobox input:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
  outline: none !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(242, 132, 132, 0.15) !important;
}

/* Place order button – same as .btn.btn-primary */
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background-color: var(--color-primary) !important;
  color: var(--color-primary-foreground) !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--color-primary) !important;
  width: 100%;
  font-size: 0.875rem !important;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  opacity: 0.9 !important;
}

body.woocommerce-checkout .wc-block-components-notice-banner {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-secondary);
  font-size: 0.875rem;
}

body.woocommerce-checkout .wc-block-cart-items {
  font-size: 0.875rem;
}

/* Classic checkout – fields, labels, button (same as contact form) */
body.woocommerce-checkout .woocommerce-form-row label,
body.woocommerce-checkout .form-row label {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  display: block !important;
  color: var(--color-foreground) !important;
  margin-bottom: 0.5rem;
}

body.woocommerce-checkout .woocommerce-form-row input,
body.woocommerce-checkout .woocommerce-form-row select,
body.woocommerce-checkout .woocommerce-form-row textarea,
body.woocommerce-checkout .form-row input,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .form-row textarea {
  width: 100% !important;
  padding: 0 !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  background-color: var(--color-background) !important;
  color: var(--color-foreground) !important;
  box-sizing: border-box;
}

body.woocommerce-checkout .woocommerce-form-row input:focus,
body.woocommerce-checkout .woocommerce-form-row select:focus,
body.woocommerce-checkout .woocommerce-form-row textarea:focus,
body.woocommerce-checkout .form-row input:focus,
body.woocommerce-checkout .form-row select:focus,
body.woocommerce-checkout .form-row textarea:focus {
  outline: none !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(242, 132, 132, 0.15) !important;
}

body.woocommerce-checkout #place_order,
body.woocommerce-checkout .woocommerce-form .button.alt {
  background-color: var(--color-primary) !important;
  color: var(--color-primary-foreground) !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--color-primary) !important;
  font-size: 0.875rem !important;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout .woocommerce-form .button.alt:hover {
  opacity: 0.9 !important;
}

/* Checkout two-column layout: only the sidebar-layout is grid (no grid-in-grid) */
@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
  }

  body.woocommerce-checkout .wc-block-checkout__sidebar,
  body.woocommerce-checkout .wc-block-checkout__main {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  body.woocommerce-checkout .wc-block-checkout__sidebar {
    min-width: 320px;
  }
}

/* ==========================================
   WOOCOMMERCE THANK YOU
   ========================================== */
.theme-thankyou-page .woocommerce-order {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 0;
}

.theme-thankyou-page .product-quantity {
  border: none;
}

/* ==========================================
   404 PAGE
   ========================================== */
.not-found-main {
  padding-top: 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.not-found-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.not-found-content p {
  color: var(--color-muted-foreground);
  margin-bottom: 2rem;
}

/* ==========================================
   WOOCOMMERCE OVERRIDES
   ========================================== */
.woocommerce-notices-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hide "added to cart" success notice on single product page */
.single-product .woocommerce-message {
  display: none !important;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  list-style: none;
}

.woocommerce-message {
  background-color: rgba(179, 209, 195, 0.2);
  border-left: 4px solid var(--color-accent);
  color: var(--color-foreground);
}

.woocommerce-error {
  background-color: rgba(220, 50, 50, 0.1);
  border-left: 4px solid var(--color-destructive);
  color: var(--color-foreground);
}

.woocommerce-info {
  background-color: rgba(242, 132, 132, 0.1);
  border-left: 4px solid var(--color-primary);
  color: var(--color-foreground);
}

/* Product price styling */
.price {
  font-size: 1rem;
  color: var(--color-foreground);
}

.price del {
  color: var(--color-muted-foreground);
  font-size: 0.875em;
  margin-right: 0.25rem;
}

.price ins {
  text-decoration: none;
  color: var(--color-foreground);
}

/* ==========================================
   UTILITY SECTIONS
   ========================================== */
.bg-secondary {
  background-color: var(--color-secondary);
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

/* Page template for content pages */
.page-content-main {
  padding-top: 4rem;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .page-content-main {
    padding-top: 5rem;
  }
}

.page-entry-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.page-entry-content h1,
.page-entry-content h2,
.page-entry-content h3 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.page-entry-content p {
  margin-bottom: 1rem;
  color: var(--color-muted-foreground);
}

/* ==========================================
   RESPONSIVE HELPERS
   ========================================== */
@media (max-width: 767px) {
  .footer-grid {
    text-align: center;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links,
  .footer-contact-list {
    align-items: center;
  }
}
