/*
Theme Name: Luangiaituvi.vn
Theme URI: https://luangiaituvi.vn
Author: Agentics
Author URI: https://agentics.vn
Description: A modern Vietnamese astrology website theme with Tử Vi consultation features. Converted from React/Tailwind design files.
Version: 2.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luangiaituvi
Tags: astrology, vietnamese, consultation, modern, responsive
*/

/* ============================================
   CSS VARIABLES (from globals.css)
   ============================================ */

:root {
  /* Typography */
  --font-size: 16px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  
  /* Colors */
  --background: #F4F2F3;
  --foreground: #000000;
  --primary: #861B0B;
  --primary-hover: #9E0F0A;
  --primary-foreground: #ffffff;
  --secondary: #F8BD0A;
  --secondary-foreground: #000000;
  --accent: #9E0F0A;
  --accent-foreground: #ffffff;
  
  /* UI Elements */
  --border: rgba(0, 0, 0, 0.1);
  --input-background: #F4F2F3;
  --ring: #861B0B;
  --radius: 0.625rem;
  
  /* Card/Surface */
  --card: #ffffff;
  --card-foreground: #000000;
}

/* ============================================
   GLOBAL RESETS & BASE STYLES
   ============================================ */

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

html {
  font-size: var(--font-size);
  font-family: 'Lora', serif;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lora', serif;
  background: #FFFFFF;
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY BASE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
}

p, span, div, a, button, input, textarea, select, label {
    font-family: 'Lora', serif;
}

/* ============================================
   GLASSMORPHISM EFFECTS
   ============================================ */

.hero-glassmorphism {
    background: linear-gradient(135deg, 
        rgba(240, 240, 240, 0.8) 0%, 
        rgba(220, 220, 220, 0.78) 15%, 
        rgba(210, 210, 210, 0.76) 25%, 
        rgba(200, 200, 200, 0.75) 35%, 
        rgba(190, 190, 190, 0.74) 42%, 
        rgba(180, 180, 180, 0.73) 50%, 
        rgba(190, 190, 190, 0.74) 58%, 
        rgba(200, 200, 200, 0.75) 65%, 
        rgba(210, 210, 210, 0.76) 75%, 
        rgba(220, 220, 220, 0.78) 85%, 
    rgba(240, 240, 240, 0.8) 100%
  );
}

.card-glassmorphism {
  background: linear-gradient(135deg, 
    rgba(240, 240, 240, 0.5) 0%, 
    rgba(230, 230, 230, 0.48) 20%, 
    rgba(220, 220, 220, 0.46) 40%, 
    rgba(230, 230, 230, 0.48) 60%, 
    rgba(240, 240, 240, 0.5) 80%, 
    rgba(250, 250, 250, 0.52) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.form-glassmorphism {
  background: linear-gradient(135deg, 
    rgba(240, 240, 240, 0.25) 0%, 
    rgba(220, 220, 220, 0.23) 15%, 
    rgba(210, 210, 210, 0.22) 25%, 
    rgba(200, 200, 200, 0.21) 35%, 
    rgba(190, 190, 190, 0.2) 42%, 
    rgba(180, 180, 180, 0.19) 50%, 
    rgba(190, 190, 190, 0.2) 58%, 
    rgba(200, 200, 200, 0.21) 65%, 
    rgba(210, 210, 210, 0.22) 75%, 
    rgba(220, 220, 220, 0.23) 85%, 
    rgba(240, 240, 240, 0.25) 100%
  );
}

/* ============================================
   SCROLLBAR HIDING
   ============================================ */

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ============================================
   MOBILE TOUCH OPTIMIZATIONS
   ============================================ */

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }
  
  * {
    -webkit-overflow-scrolling: touch;
  }
}

@media (hover: none) and (pointer: coarse) {
  * {
    -webkit-tap-highlight-color: rgba(134, 27, 11, 0.1);
  }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Flex utilities */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.shrink-0 { flex-shrink: 0; }

/* Grid utilities */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

/* Positioning */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-24 { top: 6rem; }
.right-5 { right: 1.25rem; }
.right-6 { right: 1.5rem; }
.bottom-6 { bottom: 1.5rem; }

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ============================================
   SPACING UTILITIES
   ============================================ */

/* Gap */
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }

/* Space Between (vertical) */
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-16 > * + * { margin-top: 4rem; }

/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.p-\[10px\] { padding: 10px; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.px-24 { padding-left: 6rem; padding-right: 6rem; }

.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-3\.5 { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.py-32 { padding-top: 8rem !important; padding-bottom: 8rem !important; }
.py-36 { padding-top: 9rem !important; padding-bottom: 9rem !important; }
.py-40 { padding-top: 10rem !important; padding-bottom: 10rem !important; }
.py-48 { padding-top: 12rem !important; padding-bottom: 12rem !important; }

/* Padding Top */
.pt-0 { padding-top: 0; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-28 { padding-top: 7rem; }
.pt-32 { padding-top: 8rem; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-5 { padding-bottom: 1.25rem !important; }
.pb-12 { padding-bottom: 3rem !important; }
.pb-16 { padding-bottom: 4rem !important; }
.pb-20 { padding-bottom: 5rem !important; }
.pb-24 { padding-bottom: 6rem !important; }
.pb-32 { padding-bottom: 8rem !important; }

/* Margin */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.-mt-32 { margin-top: -8rem; }
.-mt-56 { margin-top: -14rem; }
.-mt-64 { margin-top: -16rem; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-10 { margin-top: 2.5rem !important; }
.mt-12 { margin-top: 3rem !important; }
.mt-16 { margin-top: 4rem !important; }
.mt-20 { margin-top: 5rem !important; }
.mt-24 { margin-top: 6rem !important; }
.mt-28 { margin-top: 7rem !important; }
.mt-32 { margin-top: 8rem !important; }
.mt-36 { margin-top: 9rem !important; }
.mt-56 { margin-top: 14rem !important; }
.mt-64 { margin-top: 16rem !important; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

/* ============================================
   SIZING UTILITIES
   ============================================ */

/* Width */
.w-1 { width: 0.25rem; }
.w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-full { width: 100%; }
.w-80 { width: 20rem; }
.w-screen { width: 100vw; }
.w-max { width: max-content; }

/* Height */
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-\[75vh\] { height: 75vh; }
.h-\[80vh\] { height: 80vh; }
.h-\[85vh\] { height: 85vh; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }

/* Min/Max Width */
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }

/* Min Height */
.min-h-screen { min-height: 100vh; }
.min-h-\[36px\] { min-height: 36px; }
.min-h-\[40px\] { min-height: 40px; }
.min-h-\[44px\] { min-height: 44px; }
.min-h-\[52px\] { min-height: 52px; }

.min-w-0 { min-width: 0; }

.max-h-0 { max-height: 0; }

/* ============================================
   COLOR UTILITIES
   ============================================ */

/* Background Colors */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }
.bg-\[\\#861B0B\] { background-color: #861B0B; }
.bg-\[\\#9E0F0A\] { background-color: #9E0F0A; }
.bg-\[\\#F8BD0A\] { background-color: #F8BD0A; }

/* Background with Opacity */
.bg-white\/60 { background-color: rgba(255, 255, 255, 0.6); }
.bg-white\/70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-black\/10 { background-color: rgba(0, 0, 0, 0.1); }
.bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-black\/90 { background-color: rgba(0, 0, 0, 0.9); }

/* Text Colors */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-\[\\#861B0B\] { color: #861B0B; }

/* Text with Opacity */
.text-black\/40 { color: rgba(0, 0, 0, 0.4); }
.text-black\/50 { color: rgba(0, 0, 0, 0.5); }
.text-black\/60 { color: rgba(0, 0, 0, 0.6); }
.text-black\/70 { color: rgba(0, 0, 0, 0.7); }
.text-black\/80 { color: rgba(0, 0, 0, 0.8); }
.text-black\/90 { color: rgba(0, 0, 0, 0.9); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }

/* Border Colors */
.border-transparent { border-color: transparent; }
.border-black\/10 { border-color: rgba(0, 0, 0, 0.1); }

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */

/* Font Size */
.text-\[10px\] { font-size: 10px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

/* Font Weight */
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Line Height */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

/* Letter Spacing */
.tracking-tight { letter-spacing: -0.02em; }
.tracking-normal { letter-spacing: 0; }

/* Text Decoration */
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

/* Whitespace */
.whitespace-nowrap { white-space: nowrap; }

/* ============================================
   BORDER & RADIUS UTILITIES
   ============================================ */

/* Border Width */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }

/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[24px\] { border-radius: 24px !important; }
.rounded-\[32px\] { border-radius: 32px !important; }
.rounded-32 { border-radius: 32px !important; }
.rounded-\[64px\] { border-radius: 64px !important; }
.rounded-64 { border-radius: 64px !important; }

/* ============================================
   EFFECTS UTILITIES
   ============================================ */

/* Backdrop Blur */
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.backdrop-blur-2xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* ============================================
   TRANSITIONS & ANIMATIONS
   ============================================ */

.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

/* ============================================
   CURSOR & POINTER
   ============================================ */

.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }

/* ============================================
   OBJECT FIT
   ============================================ */

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* ============================================
   HOVER UTILITIES
   ============================================ */

.hover\:bg-\[\\#861B0B\]:hover { background-color: #861B0B; }
.hover\:bg-\[\\#9E0F0A\]:hover { background-color: #9E0F0A; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-\[\\#861B0B\]:hover { color: #861B0B; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* Group Hover */
.group:hover .group-hover\:text-white { color: #ffffff; }

/* ============================================
   SCROLL BEHAVIOR
   ============================================ */

.snap-x { scroll-snap-type: x mandatory; }
.snap-center { scroll-snap-align: center; }

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-scroll {
    animation: scroll 30s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

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

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out;
}

/* ============================================
   RESPONSIVE UTILITIES - SM (640px+)
   ============================================ */

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
  .sm\:flex { display: flex; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:inline { display: inline; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:gap-1 { gap: 0.25rem; }
  .sm\:gap-1\.5 { gap: 0.375rem; }
  .sm\:gap-2 { gap: 0.5rem; }
  .sm\:gap-4 { gap: 0.75rem; }
  .sm\:gap-8 { gap: 2rem; }
  .sm\:h-10 { height: 2.5rem; }
  .sm\:h-1\.5 { height: 0.375rem; }
  .sm\:h-\[80vh\] { height: 80vh; }
  .sm\:w-4 { width: 1rem; }
  .sm\:w-5 { width: 1.25rem; }
  .sm\:w-10 { width: 2.5rem; }
  .sm\:w-1\.5 { width: 0.375rem; }
  .sm\:p-2 { padding: 0.5rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-\[10px\] { padding: 10px; }
  .sm\:px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .sm\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .sm\:mb-6 { margin-bottom: 1.5rem; }
  .sm\:mb-8 { margin-bottom: 2rem; }
  .sm\:mb-10 { margin-bottom: 2.5rem; }
  .sm\:mb-12 { margin-bottom: 3rem; }
  .sm\:-mt-12 { margin-top: -3rem; }
  .sm\:-mt-56 { margin-top: -14rem; }
  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:rounded-\[32px\] { border-radius: 32px; }
  .sm\:rounded-32 { border-radius: 32px; }
  .sm\:rounded-64 { border-radius: 64px; }
  .sm\:min-h-\[40px\] { min-height: 40px; }
}

/* ============================================
   RESPONSIVE UTILITIES - MD (768px+)
   ============================================ */

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:grid { display: grid; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:gap-2 { gap: 0.5rem; }
  .md\:gap-3 { gap: 0.75rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:h-5 { height: 1.25rem; }
  .md\:h-10 { height: 2.5rem; }
  .md\:h-12 { height: 3rem; }
  .md\:h-\[85vh\] { height: 85vh; }
  .md\:w-5 { width: 1.25rem; }
  .md\:w-10 { width: 2.5rem; }
  .md\:w-12 { width: 3rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-16 { padding-left: 4rem; padding-right: 4rem; }
  .md\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:pt-6 { padding-top: 1.5rem; }
  .md\:mb-4 { margin-bottom: 1rem; }
  .md\:mb-6 { margin-bottom: 1.5rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:mb-10 { margin-bottom: 2.5rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:space-y-2 > * + * { margin-top: 0.5rem; }
  .md\:-mt-36 { margin-top: -9rem; }
  .md\:-mt-64 { margin-top: -16rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:min-h-\[44px\] { min-height: 44px; }
}

/* ============================================
   RESPONSIVE UTILITIES - LG (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:pt-8 { padding-top: 2rem; }
  .lg\:mb-12 { margin-bottom: 3rem; }
}

/* ============================================
   COMPONENT SPECIFIC STYLES
   ============================================ */

/* Primary Button */
.btn-primary {
  display: inline-flex;
        align-items: center;
    justify-content: center;
    gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #861B0B;
  color: #ffffff;
    border: none;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
    cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #9E0F0A;
  transform: translateY(-1px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

/* Feature Button */
.feature-button {
    display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 10px;
  min-height: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-button:hover {
  background: #861B0B;
  color: #ffffff;
}

.feature-button.selected {
  background: #861B0B;
  color: #ffffff;
}

@media (min-width: 640px) {
  .feature-button {
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    min-height: 40px;
  }
}

@media (min-width: 768px) {
  .feature-button {
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    min-height: 44px;
  }
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f3f4f6;
  border: 0;
  border-radius: 9999px;
    font-family: 'Lora', serif;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

textarea {
  border-radius: 1rem;
  min-height: 100px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(134, 27, 11, 0.1);
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #861B0B;
}

/* FAQ Accordion */
.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
        border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-content.active {
  max-height: 500px;
    opacity: 1;
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 1.5rem;
  padding: 2rem;
  min-height: 280px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

/* ============================================
   UTILITY HELPERS
   ============================================ */

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

/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}


/* ============================================
   GRADIENT BACKGROUNDS (from globals.css)
   ============================================ */

/* Section Background Gradient - Light Gray */
.section-bg-gray-gradient {
  background: linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(245, 245, 245, 1) 50%, rgba(250, 250, 250, 1) 100%);
}

/* Primary Button Gradient - Red Theme */
.btn-primary-gradient {
  background: linear-gradient(135deg, #861B0B 0%, #9E0F0A 100%);
}

/* Page Background Gradient - Light Subtle */
.page-bg-gradient {
  background: linear-gradient(135deg, rgba(245, 245, 245, 1) 0%, rgba(250, 250, 250, 1) 100%);
}

/* Section Background Light - For Content Sections */
.section-bg-light-gradient {
  background: linear-gradient(135deg, rgba(245, 245, 245, 1) 0%, rgba(250, 250, 250, 1) 100%);
}

/* CTA Section Glassmorphism - For Feature Highlights */
.cta-glassmorphism {
    background: linear-gradient(135deg, 
        rgba(245, 245, 245, 0.85) 0%, 
        rgba(230, 230, 230, 0.82) 15%, 
        rgba(215, 215, 215, 0.78) 25%, 
        rgba(200, 200, 200, 0.75) 35%, 
        rgba(185, 185, 185, 0.72) 42%, 
        rgba(170, 170, 170, 0.70) 50%, 
        rgba(185, 185, 185, 0.72) 58%, 
        rgba(200, 200, 200, 0.75) 65%, 
        rgba(215, 215, 215, 0.78) 75%, 
        rgba(230, 230, 230, 0.82) 85%, 
    rgba(245, 245, 245, 0.85) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Section Divider Border */
.section-divider {
  border-color: rgba(0, 0, 0, 0.1);
}

/* ============================================
   HEADER & FOOTER COMPONENTS
   ============================================ */

/* Header Dropdown Menu */
.header-dropdown {
  position: relative;
}

.header-dropdown-trigger {
  cursor: pointer;
  user-select: none;
}

.header-dropdown-trigger:hover {
  opacity: 0.9;
}

.header-dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  width: 12rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 50;
}

.header-dropdown.active .header-dropdown-menu,
.header-dropdown-trigger:focus + .header-dropdown-menu,
.header-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-dropdown:hover .header-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-dropdown-trigger:focus + .header-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-dropdown-item {
  padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: #000000;
  transition: all 0.2s ease;
  text-decoration: none;
}

.header-dropdown-item:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}

.header-dropdown-item:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}

.header-dropdown-item:hover,
.header-dropdown-item:focus {
  background-color: #861B0B;
  color: #ffffff;
  text-decoration: none;
}

/* Header Hide on Scroll */
#site-header.header-hidden {
  transform: translateY(-100%);
}

/* Footer Accordion (Mobile Only) */
.footer-accordion-trigger {
    cursor: pointer;
  user-select: none;
}

.footer-accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.footer-accordion.active .footer-accordion-content {
  max-height: 24rem;
  opacity: 1;
}

.footer-accordion.active .footer-accordion-icon {
  transform: rotate(180deg);
}

/* Remove underline from all footer links */
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
}

/* ============================================
   WOOCOMMERCE CUSTOM STYLES
   ============================================ */

/* Cart & Checkout Form Fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: 'Lora', serif;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  outline: none;
  border-color: #861B0B;
  box-shadow: 0 0 0 3px rgba(134, 27, 11, 0.1);
}

.woocommerce form .form-row textarea {
  height: auto;
  min-height: 6rem;
}

.woocommerce form .form-row label {
    font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5rem;
  display: block;
}

.woocommerce form .form-row .required {
  color: #861B0B;
  font-weight: 700;
  text-decoration: none;
  margin-left: 2px;
}

/* Checkout Form Sections */
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
  background: rgba(245, 245, 245, 0.5);
    backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 {
    font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
    color: #000000;
  margin-bottom: 1.5rem;
}

/* Cart Totals & Order Review */
.cart_totals,
.woocommerce-checkout-review-order {
  background: rgba(245, 245, 245, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cart_totals h2,
.woocommerce-checkout-review-order-table thead {
    font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
    color: #000000;
        margin-bottom: 1.5rem;
}

.cart_totals table,
.woocommerce-checkout-review-order-table {
  width: 100%;
  border: none;
}

.cart_totals table th,
.cart_totals table td,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
}

.cart_totals table th,
.woocommerce-checkout-review-order-table th {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  text-align: left;
}

.cart_totals table td,
.woocommerce-checkout-review-order-table td {
  color: #000000;
  font-weight: 600;
  text-align: right;
}

.cart_totals .order-total th,
.cart_totals .order-total td,
.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout-review-order-table tfoot .order-total td {
  font-size: 1.125rem;
  font-family: 'Lora', serif;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.cart_totals .order-total td,
.woocommerce-checkout-review-order-table tfoot .order-total td {
  color: #861B0B;
  font-size: 1.5rem;
}

/* WooCommerce Buttons */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: #861B0B;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: none;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
    background: #000000;
  color: #FFFFFF;
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: #861B0B;
}

/* Product Cards (Shop Page) */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products li.product {
  background: rgba(245, 245, 245, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
}

.woocommerce ul.products li.product:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.woocommerce ul.products li.product img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin: 1rem 1.5rem 0.5rem;
}

.woocommerce ul.products li.product .price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #861B0B;
  margin: 0 1.5rem 1rem;
}

.woocommerce ul.products li.product .price del {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  margin-right: 0.5rem;
}

.woocommerce ul.products li.product .button {
  margin: 0 1.5rem 1.5rem;
  width: calc(100% - 3rem);
  text-align: center;
}

/* Product Rating */
.woocommerce .star-rating {
  color: #F8BD0A;
  font-size: 0.875rem;
  margin: 0.5rem 1.5rem;
}

.woocommerce .star-rating::before {
  color: rgba(0, 0, 0, 0.1);
}

/* Product Badges */
.woocommerce span.onsale {
  background: #F8BD0A;
  color: #000000;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
    font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

/* Cart Item Remove Link */
.woocommerce a.remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  padding: 0.5rem 1rem;
  background: #FFFFFF !important;
  color: #861B0B !important;
  border-radius: 0.75rem;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.woocommerce a.remove:hover {
  background: #861B0B !important;
  color: #FFFFFF !important;
}

/* WooCommerce Messages & Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
        margin-bottom: 1.5rem;
  border-left: 4px solid;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.woocommerce-message {
  border-left-color: #28a745;
  color: #28a745;
}

.woocommerce-info {
  border-left-color: #17a2b8;
  color: #17a2b8;
}

.woocommerce-error {
  border-left-color: #dc3545;
  color: #dc3545;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  float: right;
  margin-left: 1rem;
}

/* Payment Methods */
.woocommerce-checkout #payment {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
        padding: 0;
  margin: 0 0 1.5rem 0;
}

.woocommerce-checkout #payment ul.payment_methods li {
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-radius: 0.75rem;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method input[type="radio"]:checked + label {
  font-weight: 600;
  color: #861B0B;
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked ~ * {
  border-color: #861B0B;
}

.woocommerce-checkout #payment div.payment_box {
  background: rgba(248, 189, 10, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 0.75rem;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

.woocommerce-checkout #payment #place_order {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  margin-top: 1rem;
}

/* My Account Navigation */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: rgba(245, 245, 245, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
        margin-bottom: 0.5rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: #000000;
    text-decoration: none;
  transition: all 0.2s ease;
  font-family: 'Lora', serif;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: #FFFFFF;
    color: #861B0B;
  font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-content {
  background: rgba(245, 245, 245, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* WooCommerce Grid Layout */
/* Removed conflicting grid layout - using custom template layout instead */

/* WooCommerce Pagination */
.woocommerce nav.woocommerce-pagination {
  margin-top: 2rem;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 0.5rem;
  border: none;
  padding: 0;
    margin: 0;
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
    text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #861B0B;
  color: #FFFFFF;
}

/* Hide default WooCommerce wrappers */
.woocommerce-shop-wrapper .woocommerce-breadcrumb {
    display: none;
}

.woocommerce .woocommerce-result-count {
    font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
}

.woocommerce .woocommerce-ordering {
  margin-bottom: 1.5rem;
}

.woocommerce .woocommerce-ordering select {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
    font-family: 'Lora', serif;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
  
  /* Removed conflicting woocommerce-account grid styles - using custom template layout */
}


/* ============================================
   FLUENTFORMS CUSTOM STYLES
   Match React Form Design Exactly
   ============================================ */

/* Form Container */
.fluentform {
  font-family: 'Lora', serif !important;
  text-align: left !important;
  direction: ltr !important;
}

.fluentform .ff_form {
  display: flex !important;
  flex-direction: column !important;
}

/* Form Fields - Match React Input Style */
.fluentform .ff-el-form-control,
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform input[type="date"],
.fluentform input[type="time"],
.fluentform input[type="number"],
.fluentform select,
.fluentform textarea {
  height: 3.5rem !important;
  padding: 1rem 1.5rem !important;
  border-radius: 0.75rem !important;
  background: rgba(245, 245, 245, 0.8) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  font-family: 'Lora', serif !important;
  font-size: 1rem !important;
  color: #000000 !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  width: 100% !important;
  text-align: left !important;
  direction: ltr !important;
}

/* Focus State */
.fluentform .ff-el-form-control:focus,
.fluentform input:focus,
.fluentform select:focus,
.fluentform textarea:focus {
  outline: none !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(134, 27, 11, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(134, 27, 11, 0.4) !important;
}

/* Textarea */
.fluentform textarea {
  border-radius: 0.75rem !important;
  min-height: 6rem !important;
  height: auto !important;
  resize: vertical !important;
  padding: 1rem 1.5rem !important;
}

/* Labels - Left Aligned */
.fluentform .ff-el-input--label label,
.fluentform label {
  font-size: 0.9375rem !important;
  color: rgba(0, 0, 0, 0.7) !important;
  font-weight: 400 !important;
  margin-bottom: 0.75rem !important;
  display: block !important;
  text-align: left !important;
  font-family: 'Lora', serif !important;
}

/* Required Asterisk */
.fluentform .ff-el-input--label label .ff_required,
.fluentform label .ff_required {
  color: #861B0B !important;
  margin-left: 2px !important;
}

/* Select Dropdown */
.fluentform select {
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%233b3b3b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3E%3C/svg%3E") !important;
  background-position: right 1rem center !important;
  background-repeat: no-repeat !important;
  background-size: 1.25em 1.25em !important;
  padding-right: 3rem !important;
  cursor: pointer !important;
}

/* Radio & Checkbox */
.fluentform input[type="radio"],
.fluentform input[type="checkbox"] {
  width: 1.25rem !important;
  height: 1.25rem !important;
  border: 2px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 0.25rem !important;
  margin-right: 0.5rem !important;
  cursor: pointer !important;
}

.fluentform input[type="radio"] {
  border-radius: 50% !important;
}

.fluentform input[type="radio"]:checked,
.fluentform input[type="checkbox"]:checked {
  background-color: #861B0B !important;
  border-color: #861B0B !important;
}

/* Submit Button - Match React Style */
.fluentform .ff-btn-submit,
.fluentform button[type="submit"] {
  display: block !important;
  margin: 2rem auto 0 !important;
  max-width: 200px !important;
  width: 100% !important;
  padding: 1rem 2rem !important;
  background: #861B0B !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 9999px !important;
  font-family: 'Lora', serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 12px rgba(134, 27, 11, 0.25) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.fluentform .ff-btn-submit:hover,
.fluentform button[type="submit"]:hover {
  opacity: 0.9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(134, 27, 11, 0.3) !important;
}

/* Button Container Centering */
/* Button Containers - Force Center Alignment */
.fluentform .ff-el-group.ff-text-center,
.fluentform .ff-btn-submit-container,
.fluentform .step-footer,
.fluentform .ff-btn-next-prev-group,
.fluentform .ff-el-group.ff_submit_btn_wrapper {
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

/* Navigation Buttons (for multi-step forms) */
.fluentform .ff-btn-next,
.fluentform .ff-btn-prev,
.fluentform button.ff-btn-next,
.fluentform button.ff-btn-prev {
  padding: 0.875rem 2.5rem !important;
  border-radius: 9999px !important;
  font-family: 'Lora', serif !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  border: none !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  max-width: 200px !important;
  width: auto !important;
  display: inline-block !important;
  margin: 0 auto !important;
}

.fluentform .ff-btn-next,
.fluentform button.ff-btn-next {
  background: #861B0B !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(134, 27, 11, 0.25) !important;
}

.fluentform .ff-btn-prev,
.fluentform button.ff-btn-prev {
  background: #f3f4f6 !important;
  color: #000000 !important;
}

.fluentform .ff-btn-next:hover {
  opacity: 0.9 !important;
}

.fluentform .ff-btn-prev:hover {
  background: #e5e7eb !important;
}

/* Step Progress (for multi-step forms) */
.fluentform .ff-el-progress {
  margin-bottom: 2.5rem !important;
  order: -1 !important; /* Move to top */
}

.fluentform .ff-el-progress-bar {
  display: none !important; /* Hide progress bar, only show step numbers */
}

.fluentform .ff-el-progress-bar .ff-el-progress-bar-fill {
  background: #861B0B !important;
  height: 100% !important;
  transition: width 0.3s ease !important;
}

/* Step Indicator Numbers - Match Design */
.fluentform .ff-el-progress-status {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1rem !important;
  margin-bottom: 2.5rem !important;
  position: relative !important;
  padding: 0 !important;
}

/* Connector Lines Between Steps */
.fluentform .ff-el-progress-status::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 20% !important;
  right: 20% !important;
  height: 1px !important;
  background: rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-50%) !important;
  z-index: 0 !important;
}

.fluentform .ff-el-progress-status .ff-el-progress-step {
  width: 3rem !important;
  height: 3rem !important;
  border-radius: 9999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.125rem !important;
  font-weight: 500 !important;
  background: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  position: relative !important;
  z-index: 1 !important;
  font-family: 'Lora', serif !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

/* Active Step - RED (#861B0B) - Target correct FluentForm structure */
.fluentform .ff-step-header .ff-step-titles li.ff_active,
.fluentform .ff-step-header .ff-step-titles li.ff_active_step,
.fluentform .ff-step-header .ff-step-titles li.active_step,
.fluentform .ff-step-titles li.ff_active,
.fluentform .ff-step-titles li.ff_active_step,
.fluentform .ff-el-progress-status .ff-el-progress-step.active,
.fluentform .ff-el-progress-status .ff-el-progress-step.ff_active,
.fluentform .ff-el-progress-status li.active,
.fluentform .ff-el-progress-status li.ff_active {
  background: #861B0B !important;
  background-color: #861B0B !important;
  color: #FFFFFF !important;
  border-color: #861B0B !important;
  box-shadow: 0 4px 12px rgba(134, 27, 11, 0.3) !important;
  transform: scale(1) !important;
}

/* Override FluentForm's default blue color with inline styles */
.fluentform .ff-step-titles li[style*="background"],
.fluentform .ff-el-progress-status .ff-el-progress-step[style*="background"],
.fluentform .ff-el-progress-status li[style*="background"] {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}

.fluentform .ff-step-titles li.ff_active[style*="background"],
.fluentform .ff-step-titles li.ff_active_step[style*="background"],
.fluentform .ff-el-progress-status .ff-el-progress-step.active[style*="background"],
.fluentform .ff-el-progress-status .ff-el-progress-step.ff_active[style*="background"],
.fluentform .ff-el-progress-status li.active[style*="background"],
.fluentform .ff-el-progress-status li.ff_active[style*="background"] {
  background: #861B0B !important;
  background-color: #861B0B !important;
}

/* Completed Step */
.fluentform .ff-el-progress-status .ff-el-progress-step.completed {
  background: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.3) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
}

/* Error Messages */
.fluentform .error,
.fluentform .ff-el-is-error .text-danger {
  color: #dc2626 !important;
  font-size: 0.75rem !important;
  margin-top: 0.5rem !important;
  font-family: 'Lora', serif !important;
}

/* Error State - Keep Clean Input Styling */
.fluentform .ff-el-is-error .ff-el-form-control,
.fluentform .ff-el-is-error input[type="text"],
.fluentform .ff-el-is-error input[type="email"],
.fluentform .ff-el-is-error input[type="tel"],
.fluentform .ff-el-is-error select,
.fluentform .ff-el-is-error textarea {
  border: 1px solid #dc2626 !important;
  background: rgba(245, 245, 245, 0.8) !important;
  box-shadow: none !important;
}

/* Success Message */
.fluentform .ff-message-success {
  background: #d1fae5 !important;
  color: #065f46 !important;
  padding: 1rem 1.5rem !important;
  border-radius: 1rem !important;
  border-left: 4px solid #10b981 !important;
  font-family: 'Lora', serif !important;
  margin-top: 1rem !important;
}

/* Form Sections */
.fluentform .ff-el-section-break {
  margin: 2rem 0 !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.fluentform .ff-el-section-break h3 {
  font-family: 'Lora', serif !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #861B0B !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 1rem !important;
}

/* Default form group - Block layout for single fields (MUST come first) */
.fluentform .ff-el-group {
  display: block !important;
  grid-template-columns: none !important;
}

/* Grid Layout - Only for multi-column groups */
.fluentform .ff-el-repeat .ff-el-group,
.fluentform .ff-el-group[class*="ff-el-form-multiple"] {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: 1rem !important;
}

/* Help Text */
.fluentform .ff-el-help-message {
  font-size: 0.75rem !important;
  color: rgba(0, 0, 0, 0.5) !important;
  margin-top: 0.25rem !important;
  font-family: 'Lora', serif !important;
}

/* File Upload */
.fluentform .ff-upload-preview {
  border-radius: 0.75rem !important;
  overflow: hidden !important;
}

.fluentform .ff-upload-btn {
  border-radius: 9999px !important;
  padding: 0.5rem 1rem !important;
  background: #f3f4f6 !important;
  color: #000000 !important;
  border: none !important;
  cursor: pointer !important;
  font-family: 'Lora', serif !important;
  transition: all 0.2s ease !important;
}

.fluentform .ff-upload-btn:hover {
  background: #e5e7eb !important;
}

/* Rating */
.fluentform .ff-el-ratings label {
  color: #fbbf24 !important;
  font-size: 1.5rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.fluentform .ff-el-ratings label:hover,
.fluentform .ff-el-ratings input:checked ~ label {
  color: #f59e0b !important;
  transform: scale(1.1) !important;
}

/* Remove Default FluentForms Styling Conflicts */
.fluentform * {
  box-sizing: border-box !important;
}

.fluentform .ff-el-group:not(.ff-el-form-hide_label) {
  margin-bottom: 1.5rem !important;
}

.fluentform .ff-el-input--content {
  position: relative !important;
  text-align: left !important;
  direction: ltr !important;
}

/* Placeholder Text */
.fluentform input::placeholder,
.fluentform select::placeholder,
.fluentform textarea::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
  opacity: 1 !important;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .fluentform .ff-el-form-control,
  .fluentform input,
  .fluentform select {
    height: 2.75rem !important;
    font-size: 0.875rem !important;
  }
  
  .fluentform .ff-btn-submit,
  .fluentform button[type="submit"] {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.9375rem !important;
  }
}

/* ========================================================================
   Services Offering Section - WooCommerce Product Integration
   ======================================================================== */

/* Product Price Display */
.services-offering-section .price,
.services-offering-section .woocommerce-Price-amount {
  font-family: 'Lora', serif !important;
  font-size: 2rem !important;
  font-weight: 600 !important;
  color: #861B0B !important;
}

.services-offering-section .price del {
  opacity: 0.5;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.services-offering-section .price ins {
  text-decoration: none;
}

/* Loading Animation for Add to Cart Button */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* ========================================================================
   Blog Post (single.php) Styles
   ======================================================================== */

/* Prose Styling for Blog Content */
.prose {
  color: rgba(0, 0, 0, 0.8);
  max-width: 65ch;
}

.prose h2, .prose h3, .prose h4 {
  font-family: 'Lora', serif;
  color: #000000;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prose h2 {
  font-size: 2rem;
}

.prose h3 {
  font-size: 1.5rem;
}

.prose h4 {
  font-size: 1.25rem;
}

.prose p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.prose a {
  color: #861B0B;
  text-decoration: underline;
}

.prose a:hover {
  opacity: 0.8;
}

.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose img {
  border-radius: 1rem;
  margin: 2rem 0;
}

.prose blockquote {
  border-left: 4px solid #861B0B;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
}

.prose code {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

.prose pre {
  background: rgba(0, 0, 0, 0.05);
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.prose table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

.prose th, .prose td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  text-align: left;
}

.prose th {
  background: rgba(0, 0, 0, 0.05);
  font-weight: 600;
}


/* ========================================================================
   Additional Missing Utility Classes
   ======================================================================== */

/* Negative Margins */
.-mt-20 { margin-top: -5rem; }
.-mt-40 { margin-top: -10rem; }
.-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; }

/* Positioning */
.-right-1 { right: -0.25rem; }
.-top-1 { top: -0.25rem; }
.-top-4 { top: -1rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.left-1\/2 { left: 50%; }
.left-1\/3 { left: 33.333333%; }
.left-2\/3 { left: 66.666667%; }
.bottom-8 { bottom: 2rem; }

/* Heights */
.h-1 { height: 0.25rem; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-3\.5 { height: 0.875rem; }
.h-24 { height: 6rem; }
.h-48 { height: 12rem; }
.max-h-0 { max-height: 0; }

/* Backgrounds */
.bg-\[\#000000\] { background-color: #000000; }
.bg-\[\#861B0B\] { background-color: #861B0B; }
.bg-\[\#1877F2\] { background-color: #1877F2; }
.bg-\[\#F5F5F5\] { background-color: #F5F5F5; }
.bg-\[\#F8BD0A\] { background-color: #F8BD0A; }
.bg-\[\#FF0000\] { background-color: #FF0000; }
.bg-black\/10 { background-color: rgba(0, 0, 0, 0.1); }
.bg-white\/30 { background-color: rgba(255, 255, 255, 0.3); }
.bg-white\/40 { background-color: rgba(255, 255, 255, 0.4); }
.bg-white\/50 { background-color: rgba(255, 255, 255, 0.5); }
.bg-white\/60 { background-color: rgba(255, 255, 255, 0.6); }
.bg-white\/70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-green-500 { background-color: #22c55e; }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-\[\#F4F2F3\] { --tw-gradient-from: #F4F2F3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 242, 243, 0)); }

/* Borders */
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-\[\#000000\]\/5 { border-color: rgba(0, 0, 0, 0.05); }
.border-\[\#000000\]\/10 { border-color: rgba(0, 0, 0, 0.1); }
.border-\[\#861B0B\]\/20 { border-color: rgba(134, 27, 11, 0.2); }
.border-\[\#861B0B\]\/30 { border-color: rgba(134, 27, 11, 0.3); }
.border-black\/10 { border-color: rgba(0, 0, 0, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/40 { border-color: rgba(255, 255, 255, 0.4); }

/* Gaps */
.gap-1\.5 { gap: 0.375rem; }
.gap-5 { gap: 1.25rem; }

/* Fill */
.fill-\[\#F8BD0A\] { fill: #F8BD0A; }

/* Flexbox */
.flex-grow { flex-grow: 1; }
.items-baseline { align-items: baseline; }

/* Visibility */
.invisible { visibility: hidden; }

/* Transitions/Animations */
.duration-200 { transition-duration: 200ms; }
.duration-500 { transition-duration: 500ms; }

/* Hover States */
.hover\:bg-\[\#000000\]\/90:hover { background-color: rgba(0, 0, 0, 0.9); }
.hover\:bg-\[\#861B0B\]:hover { background-color: #861B0B; }
.hover\:bg-\[\#1877F2\]\/90:hover { background-color: rgba(24, 119, 242, 0.9); }
.hover\:bg-\[\#F8BD0A\]\/90:hover { background-color: rgba(248, 189, 10, 0.9); }
.hover\:bg-\[\#FF0000\]\/90:hover { background-color: rgba(255, 0, 0, 0.9); }
.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:text-\[\#861B0B\]:hover { color: #861B0B; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-black:hover { color: #000000; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:gap-3:hover { gap: 0.75rem; }

/* Group Hover States */
.group:hover .group-hover\:text-white { color: #ffffff; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

/* Large Screen (lg) Responsive Classes */
@media (min-width: 1024px) {
  .lg\:grid { display: grid; }
  .lg\:hidden { display: none; }
  .lg\:sticky { position: sticky; }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:grid-cols-\[1fr_auto_1fr\] { grid-template-columns: 1fr auto 1fr; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-9 { grid-column: span 9 / span 9; }
  .lg\:col-span-12 { grid-column: span 12 / span 12; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-20 { gap: 5rem; }
  .lg\:h-\[816px\] { height: 816px; }
  .lg\:p-16 { padding: 4rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:pt-8 { padding-top: 2rem; }
  .lg\:mb-12 { margin-bottom: 3rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:top-32 { top: 8rem; }
}

/* WordPress Default Classes */
.entry-header { margin-bottom: 2rem; }
.entry-title { font-family: 'Lora', serif; font-size: 2.5rem; font-weight: 600; margin-bottom: 1rem; }
.entry-content { line-height: 1.8; }
.error-404 { text-align: center; padding: 4rem 1rem; }

/* FAQ Section */
.faq-item { margin-bottom: 1rem; }
.faq-icon { transition: transform 0.3s ease; }
.faq-answer { overflow: hidden; transition: max-height 0.3s ease; }

/* Footer Accordion */
.footer-accordion-trigger { 
  width: 100%; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  cursor: pointer;
}
.footer-accordion-trigger.active .footer-accordion-icon { 
  transform: rotate(180deg); 
}
.footer-accordion-icon { 
  transition: transform 0.3s ease; 
}
.footer-accordion-content { 
  overflow: hidden; 
  transition: max-height 0.3s ease, opacity 0.3s ease; 
}
.footer-accordion-content.active {
  max-height: 24rem !important;
  opacity: 1 !important;
}

/* WooCommerce Classes */
.cart-collaterals { margin-top: 2rem; }
.add-to-cart-btn {
  background-color: #861B0B;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.add-to-cart-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================
   WOOCOMMERCE MY ACCOUNT CUSTOM STYLES
   ============================================ */

/* Account Dashboard */
.woocommerce-account .woocommerce-MyAccount-content {
  background: transparent;
}

/* Force proper grid layout for custom My Account page */
.woocommerce-account .grid {
  display: grid !important;
}

.woocommerce-account .grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

@media (min-width: 1024px) {
  .woocommerce-account .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
  
  .woocommerce-account .lg\:col-span-3 {
    grid-column: span 3 / span 3 !important;
  }
  
  .woocommerce-account .lg\:col-span-9 {
    grid-column: span 9 / span 9 !important;
  }
}

/* Hide the default "My account" page title */
.woocommerce-account .entry-title,
.woocommerce-account .page-title {
  display: none !important;
}

/* Account page title styling */
.woocommerce-account .woocommerce-MyAccount-content > h2,
.woocommerce-account .woocommerce-MyAccount-content > h3 {
  font-family: 'Lora', serif !important;
  font-size: clamp(1.5rem, 4vw, 2rem) !important;
  color: #000000 !important;
  margin-bottom: 1rem !important;
}

/* Add red underline to titles */
.woocommerce-account .woocommerce-MyAccount-content > h2:after,
.woocommerce-account .woocommerce-MyAccount-content > h3:after {
  content: '';
  display: block;
  width: 6rem;
  height: 4px;
  background-color: #861B0B;
  border-radius: 9999px;
  margin-top: 0.5rem;
}

/* Orders table styling */
.woocommerce-account table.woocommerce-orders-table {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: none !important;
}

.woocommerce-account table.woocommerce-orders-table thead {
  background: rgba(134, 27, 11, 0.05);
}

.woocommerce-account table.woocommerce-orders-table th {
  font-family: 'Lora', serif;
  color: #000000;
  font-weight: 600;
  padding: 1rem !important;
  border: none !important;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.woocommerce-account table.woocommerce-orders-table td {
  padding: 1rem !important;
  border: none !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  color: #000000;
}

.woocommerce-account table.woocommerce-orders-table a {
  color: #861B0B;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.woocommerce-account table.woocommerce-orders-table a:hover {
  opacity: 0.8;
}

/* Order status badges */
.woocommerce-account .woocommerce-orders-table__cell-order-status {
  text-transform: capitalize;
}

.woocommerce-account .woocommerce-orders-table .order-status {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Account details form */
.woocommerce-account .woocommerce-EditAccountForm {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.woocommerce-account .woocommerce-form-row label {
  font-size: 0.875rem;
  color: #000000;
  opacity: 0.5;
  margin-bottom: 0.5rem;
  display: block;
}

.woocommerce-account .woocommerce-form-row input[type="text"],
.woocommerce-account .woocommerce-form-row input[type="email"],
.woocommerce-account .woocommerce-form-row input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  font-size: 1rem;
  color: #000000;
  background: #FFFFFF;
  transition: border-color 0.3s;
}

.woocommerce-account .woocommerce-form-row input:focus {
  outline: none;
  border-color: #861B0B;
}

/* Buttons */
.woocommerce-account .woocommerce-Button {
  background: #861B0B !important;
  color: #FFFFFF !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.75rem !important;
  border: none !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: opacity 0.3s !important;
  font-family: 'Lora', serif !important;
}

.woocommerce-account .woocommerce-Button:hover {
  opacity: 0.9 !important;
}

/* Address cards */
.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.woocommerce-account .woocommerce-Address {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.woocommerce-account .woocommerce-Address-title h3 {
  font-family: 'Lora', serif;
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.woocommerce-account .woocommerce-Address address {
  color: #000000;
  opacity: 0.7;
  line-height: 1.6;
  font-style: normal;
}

/* Downloads */
.woocommerce-account .woocommerce-downloads-table {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Empty state */
.woocommerce-account .woocommerce-message {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  border: none;
  color: #000000;
}

/* Dashboard welcome message */
.woocommerce-account .woocommerce-MyAccount-content p {
  color: #000000;
  opacity: 0.7;
  line-height: 1.6;
}

/* ============================================
   WOOCOMMERCE CART PAGE STYLING
   ============================================ */

/* Cart wrapper */
.woocommerce-cart-wrapper {
  background: #FFFFFF;
  min-height: 100vh;
}

/* Hide default WooCommerce cart table */
.woocommerce-cart-form table.shop_table {
  display: none;
}

/* Cart totals styling */
.cart_totals {
  width: 100%;
}

.cart_totals h2 {
  display: none;
}

/* Remove default WooCommerce button styling */
.woocommerce-cart .wc-proceed-to-checkout {
  padding: 0;
  background: none;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  border: 0;
  text-decoration: none;
  background: #861B0B;
  color: #FFFFFF;
  font-family: 'Lora', serif;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  opacity: 0.9;
}

/* Cart item remove button */
.woocommerce-cart .cart-item a.remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  background: #FFFFFF;
  color: #861B0B;
  text-decoration: none;
  border: 0;
  width: auto;
  height: auto;
  font-size: 1rem;
}

.woocommerce-cart .cart-item a.remove:hover {
  background: #861B0B;
  color: #FFFFFF;
}

/* Hide quantity column in cart */
.woocommerce-cart .product-quantity {
  display: none;
}

/* Product thumbnail in cart */
.woocommerce-cart .cart-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

/* Cart notices */
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .woocommerce-info {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border: none;
  margin-bottom: 1.5rem;
}

/* Space-y utility for cart */
.space-y-4 > * + * {
  margin-top: 1rem;
}

/* Border utilities */
.border-b {
  border-bottom-width: 1px;
  border-style: solid;
}

.border-\[\#000000\]\/10 {
  border-color: rgba(0, 0, 0, 0.1);
}

/* ============================================
   WOOCOMMERCE SHOP PAGE STYLING
   ============================================ */

/* Shop wrapper */
.woocommerce-shop-wrapper {
  background: #FFFFFF;
  min-height: 100vh;
}

/* Hide default WooCommerce elements */
.woocommerce-shop-wrapper .woocommerce-breadcrumb,
.woocommerce-shop-wrapper .woocommerce-result-count,
.woocommerce-shop-wrapper .woocommerce-ordering {
  display: none;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

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

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Product card */
.woocommerce-shop-wrapper .product {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

/* Product image */
.woocommerce-shop-wrapper .product img {
  width: auto;
  height: auto;
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

/* Product title */
.woocommerce-shop-wrapper .woocommerce-loop-product__title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
  color: #000000;
  font-family: 'Lora', serif;
  font-weight: 400;
}

/* Product price */
.woocommerce-shop-wrapper .price {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #861B0B;
  font-weight: 600;
  margin: 0;
}

.woocommerce-shop-wrapper .price del {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #000000;
  opacity: 0.4;
  font-weight: 400;
}

.woocommerce-shop-wrapper .price ins {
  text-decoration: none;
  background: none;
}

/* Add to cart button */
.woocommerce-shop-wrapper .add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  background: #861B0B;
  color: #FFFFFF;
  border: 0;
  text-decoration: none;
  font-family: 'Lora', serif;
}

.woocommerce-shop-wrapper .add_to_cart_button:hover {
  opacity: 0.9;
}

/* Line clamp utility */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Space-y utility */
.space-y-2 > * + * {
  margin-top: 0.5rem;
}

/* Pagination */
.woocommerce-pagination {
  margin-top: 2rem;
  text-align: center;
}

.woocommerce-pagination ul {
  display: inline-flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-pagination ul li {
  margin: 0;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000000;
  text-decoration: none;
  transition: all 0.3s;
}

.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
  background: #861B0B;
  color: #FFFFFF;
}

/* Mobile filter */
#mobile-filter-dropdown.hidden {
  display: none;
}

/* ============================================
   WOOCOMMERCE CHECKOUT PAGE STYLING
   ============================================ */

/* Checkout wrapper */
.woocommerce-checkout-wrapper {
  background: #FFFFFF;
  min-h-screen;
}

/* Form field styling */
.woocommerce-checkout .form-row {
  margin-bottom: 0;
}

.woocommerce-checkout .form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
}

.woocommerce-checkout .form-row label .required {
  color: #861B0B;
}

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 0;
  font-size: 1rem;
  color: #000000;
  transition: all 0.3s;
}

.woocommerce-checkout .form-row textarea {
  height: auto;
  min-height: 6rem;
  padding: 0.75rem 1rem;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
  outline: none;
  ring: 2px;
  ring-color: rgba(134, 27, 11, 0.2);
}

/* Grid layout for form fields */
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: 100%;
}

@media (min-width: 768px) {
  .woocommerce-checkout .form-row-first {
    width: 48%;
    float: left;
    margin-right: 4%;
  }
  
  .woocommerce-checkout .form-row-last {
    width: 48%;
    float: right;
  }
}

.woocommerce-checkout .form-row-wide {
  width: 100%;
  clear: both;
}

/* Payment methods */
.woocommerce-checkout #payment {
  background: none;
  border-radius: 0;
}

.woocommerce-checkout #payment .payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-checkout #payment .payment_method {
  margin-bottom: 0.75rem;
}

.woocommerce-checkout #payment .payment_method label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.woocommerce-checkout #payment .payment_method input[type="radio"]:checked + label {
  border-color: #861B0B;
}

.woocommerce-checkout #payment .payment_method label img {
  max-height: 24px;
  width: auto;
}

.woocommerce-checkout #payment .payment_box {
  background: rgba(248, 189, 10, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 0.75rem;
}

/* Place order button */
.woocommerce-checkout #place_order {
  width: 100%;
  height: 3rem;
  border-radius: 0.75rem;
  background: #861B0B;
  color: #FFFFFF;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Lora', serif;
}

.woocommerce-checkout #place_order:hover {
  opacity: 0.9;
}

/* Terms and conditions */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 1.5rem;
}

.woocommerce-checkout .woocommerce-terms-and-conditions {
  max-height: 200px;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

/* Checkout notices */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border: none;
  margin-bottom: 1.5rem;
}

.woocommerce-checkout .woocommerce-error {
  background: rgba(134, 27, 11, 0.1);
  color: #861B0B;
}

/* Hide default WooCommerce elements */
.woocommerce-checkout .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.woocommerce-checkout .woocommerce-form__input-checkbox {
  width: auto;
  height: auto;
  margin: 0;
}

/* Shipping methods */
.woocommerce-checkout .shipping_method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}

/* Clear floats */
.woocommerce-checkout .clear {
  clear: both;
}

/* ============================================
   WOOCOMMERCE GLOBAL STYLING
   ============================================ */

/* Remove default WooCommerce styling */
.woocommerce ul.products,
.woocommerce-page ul.products {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: #861B0B;
  color: #FFFFFF;
  border: 0;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Lora', serif;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  opacity: 0.9;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background: #861B0B;
  color: #FFFFFF;
}

/* Messages and notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border: none;
  margin-bottom: 1.5rem;
  list-style: none;
}

.woocommerce-message {
  background: rgba(134, 27, 11, 0.1);
  color: #861B0B;
}

.woocommerce-error {
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
}

.woocommerce-info {
  background: rgba(248, 189, 10, 0.1);
  color: #000000;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}

.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button {
  float: none;
  margin-left: 1rem;
}

/* Tables */
.woocommerce table.shop_table {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 1rem;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce table.shop_table thead {
  background: rgba(255, 255, 255, 0.6);
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
  display: none;
}

/* Star ratings */
.woocommerce .star-rating {
  color: #F8BD0A;
}

.woocommerce .star-rating::before {
  color: rgba(0, 0, 0, 0.1);
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #861B0B;
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Lora', serif;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  font-weight: 400;
}

/* Quantity inputs */
.woocommerce .quantity input.qty {
  width: 4rem;
  height: 3rem;
  padding: 0 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Select dropdowns */
.woocommerce select,
.woocommerce-page select {
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
  margin-top: 2rem;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  margin: 0;
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000000;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #861B0B;
  color: #FFFFFF;
}

/* Single product page */
.woocommerce-single-product-wrapper {
  background: #FFFFFF;
  min-h-screen;
}

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

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

/* Product tabs */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 3rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0 0 2rem 0;
  list-style: none;
  border: none;
  display: flex;
  gap: 1rem;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  color: #000000;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  background: #861B0B;
  color: #FFFFFF;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  border: none;
  margin: 0;
}

/* Reviews */
.woocommerce #reviews #comments ol.commentlist {
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce #reviews #comments ol.commentlist li {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  border: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  padding: 0;
  margin: 0;
  border: none;
}

/* Related products */
.woocommerce .related.products {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce .related.products h2 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2rem;
}

/* Hide default WooCommerce elements */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  display: none;
}

/* Form styling */
.woocommerce form .form-row {
  padding: 0;
  margin: 0 0 1rem 0;
}

.woocommerce form .form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: all 0.3s;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  outline: none;
  border-color: #861B0B;
  box-shadow: 0 0 0 3px rgba(134, 27, 11, 0.1);
}

/* Site wrapper for proper footer positioning */
#page.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#page.site > footer {
  margin-top: auto;
}

/* Login Form Specific Styling */
.woocommerce-form-login {
  margin: 0;
  padding: 0;
}

.woocommerce-form-login .form-row {
  margin-bottom: 1.5rem;
}

.woocommerce-form-login .woocommerce-form-login__rememberme {
  margin-bottom: 1.5rem;
}

.woocommerce-form-login .woocommerce-form-login__rememberme label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.woocommerce-form-login .woocommerce-form-login__rememberme input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.woocommerce-form-login .woocommerce-Button {
  width: 100%;
  padding: 1rem;
  background: #861B0B;
  color: #FFFFFF;
  border: 0;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Lora', serif;
}

.woocommerce-form-login .woocommerce-Button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(134, 27, 11, 0.3);
}

.woocommerce-form-login .woocommerce-LostPassword {
  margin-top: 1rem;
  text-align: center;
}

.woocommerce-form-login .woocommerce-LostPassword a {
  color: #861B0B;
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.3s;
}

.woocommerce-form-login .woocommerce-LostPassword a:hover {
  opacity: 0.7;
}

/* Coupon form */
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  border: none;
  margin-bottom: 2rem;
}


