/** Shopify CDN: Minification failed

Line 195:5 Unexpected ".5"
Line 214:5 Unexpected ".5"
Line 222:5 Unexpected ".5"
Line 223:5 Unexpected ".5"
Line 225:5 Unexpected ".5"
Line 227:5 Unexpected ".5"
Line 274:6 Unexpected ".5"
Line 276:6 Unexpected ".5"
Line 319:10 Unexpected "/"
Line 448:4 Unexpected ".5"
... and 2 more hidden warnings

**/
/* 
  Keya Aura Theme CSS
  Recreated from Tailwind CSS v4 design tokens and layouts.
*/

:root {
  /* Brand Theme Customizer Mappings */
  --background-h: 39;
  --background-s: 36%;
  --background-l: 96%;
  --background: var(--background-h) var(--background-s) var(--background-l); /* #F8F5F0 warm cream */

  --foreground-h: 197;
  --foreground-s: 5%;
  --foreground-l: 24%;
  --foreground: var(--foreground-h) var(--foreground-s) var(--foreground-l); /* #3A3F41 dark slate */

  --border-h: 22;
  --border-s: 20%;
  --border-l: 87%;
  --border: var(--border-h) var(--border-s) var(--border-l); /* #DFCABF */

  --input-h: 22;
  --input-s: 20%;
  --input-l: 87%;
  --input: var(--input-h) var(--input-s) var(--input-l);

  --ring-h: 22;
  --ring-s: 40%;
  --ring-l: 58%;
  --ring: var(--ring-h) var(--ring-s) var(--ring-l); /* #BF8869 copper */

  --card: 0 0% 100%;
  --card-foreground: var(--foreground);
  --card-border: 22 15% 92%;

  --popover: 0 0% 100%;
  --popover-foreground: var(--foreground);
  --popover-border: 22 15% 92%;

  --primary-h: 22;
  --primary-s: 40%;
  --primary-l: 58%;
  --primary: var(--primary-h) var(--primary-s) var(--primary-l); /* #BF8869 */
  --primary-foreground: 0 0% 100%;

  --secondary-h: 20;
  --secondary-s: 42%;
  --secondary-l: 90%;
  --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l); /* #EAD6CC */
  --secondary-foreground: var(--foreground);

  --muted-h: 20;
  --muted-s: 38%;
  --muted-l: 94%;
  --muted: var(--muted-h) var(--muted-s) var(--muted-l); /* #F0E5DF */
  --muted-foreground: 197 5% 46%; /* #646C70 */

  --accent-h: 22;
  --accent-s: 45%;
  --accent-l: 48%;
  --accent: var(--accent-h) var(--accent-s) var(--accent-l); /* #A36443 */
  --accent-foreground: 0 0% 100%;

  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;

  --radius: 0.5rem;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-h: 100vh;
}

/* Typography */
h1, h2, h3, .font-heading {
  font-family: 'Arsenal', sans-serif;
}

h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

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

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

/* Theme Utilities */
.bg-background { background-color: hsl(var(--background)); }
.text-foreground { color: hsl(var(--foreground)); }
.border-border { border-color: hsl(var(--border)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary\/5 { background-color: hsla(var(--primary), 0.05); }
.bg-primary\/10 { background-color: hsla(var(--primary), 0.1); }
.bg-primary\/3 { background-color: hsla(var(--primary), 0.03); }
.bg-primary\/2 { background-color: hsla(var(--primary), 0.02); }
.border-primary\/20 { border-color: hsla(var(--primary), 0.2); }
.border-primary\/30 { border-color: hsla(var(--primary), 0.3); }
.border-primary\/40 { border-color: hsla(var(--primary), 0.4); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-secondary\/20 { background-color: hsla(var(--secondary), 0.2); }
.bg-secondary\/30 { background-color: hsla(var(--secondary), 0.3); }
.bg-secondary\/40 { background-color: hsla(var(--secondary), 0.4); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-muted\/30 { background-color: hsla(var(--muted), 0.3); }
.bg-muted\/50 { background-color: hsla(var(--muted), 0.5); }
.bg-muted\/60 { background-color: hsla(var(--muted), 0.6); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.bg-accent { background-color: hsl(var(--accent)); }
.text-accent-foreground { color: hsl(var(--accent-foreground)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-card\/95 { background-color: hsla(var(--card), 0.95); }
.border-card-border { border-color: hsl(var(--card-border)); }

/* Layout Utilities */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.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-6xl { max-width: 72rem; }
.mx-auto { margin-right: auto; margin-left: auto; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-0.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.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-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-0.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-14 { padding-top: 3.5rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-28 { padding-top: 7rem; }
.pb-0 { padding-bottom: 0; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }

/* Border Radius mapping */
.rounded-xl { border-radius: calc(var(--radius) + 4px); } /* 12px */
.rounded-2xl { border-radius: calc(var(--radius) + 8px); } /* 16px */
.rounded-3xl { border-radius: calc(var(--radius) + 16px); } /* 24px */
.rounded-full { border-radius: 9999px; }
.rounded-none { border-radius: 0; }

/* Display & Flex / Grid */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.shrink-0 { flex-shrink: 0; }
.inline-flex { display: inline-flex; }

.grid { display: grid; }
.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)); }

.gap-0.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-1.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.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-x-5 { column-gap: 1.25rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-1 { row-gap: 0.25rem; }
.gap-y-2 { row-gap: 0.5rem; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:block { display: block; }
  .sm\:w-auto { width: auto; }
  .sm\:ml-0 { margin-left: 0; }
  .sm\:flex-none { flex: none; }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .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-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:sticky { position: sticky; }
  .md\:top-28 { top: 7rem; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:row-span-3 { grid-row: span 3 / span 3; }
  .md\:grid-rows-subgrid { grid-template-rows: subgrid; }
}

@media (min-width: 1024px) {
  .lg\:w-1/2 { width: 50%; }
  .lg\:flex-row { flex-direction: row; }
}

/* Borders & Styles */
.border { border: 1px solid hsl(var(--border)); }
.border-2 { border: 2px solid hsl(var(--border)); }
.border-t { border-top: 1px solid hsl(var(--border)); }
.border-b { border-bottom: 1px solid hsl(var(--border)); }
.border-y { border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); }
.border-dashed { border-style: dashed; }
.border-transparent { border-color: transparent; }
.border-primary { border-color: hsl(var(--primary)); }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.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); }
.glow-shadow {
  box-shadow: 0 10px 40px -10px rgba(191, 136, 105, 0.35);
}
.copper-glow {
  box-shadow: 0 10px 40px -10px rgba(191, 136, 105, 0.25);
}
.shadow-primary\/25 { box-shadow: 0 10px 30px -5px rgba(191, 136, 105, 0.25); }
.shadow-primary\/30 { box-shadow: 0 10px 30px -5px rgba(191, 136, 105, 0.3); }

/* Text formatting */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.line-through { text-decoration: line-through; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Transitions & Animations */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.10); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:scale-\[1\.01\]:hover { transform: scale(1.01); }
.active\:scale-\[0\.98\]:active { transform: scale(0.98); }
.active\:scale-\[0\.99\]:active { transform: scale(0.99); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:border-primary:hover { border-color: hsl(var(--primary)); }
.hover\:border-primary\/30:hover { border-color: hsla(var(--primary), 0.3); }
.hover\:border-primary\/40:hover { border-color: hsla(var(--primary), 0.4); }
.hover\:bg-primary\/90:hover { background-color: hsla(var(--primary), 0.9); }
.hover\:bg-primary\/5:hover { background-color: hsla(var(--primary), 0.05); }
.hover\:bg-primary\/10:hover { background-color: hsla(var(--primary), 0.1); }
.hover\:bg-primary\/20:hover { background-color: hsla(var(--primary), 0.2); }
.hover\:bg-secondary\/20:hover { background-color: hsla(var(--secondary), 0.2); }
.hover\:bg-secondary:hover { background-color: hsl(var(--secondary)); }
.hover\:bg-white\/90:hover { background-color: rgba(255, 255, 255, 0.9); }
.hover\:bg-white:hover { background-color: rgba(255, 255, 255, 1); }
.hover\:bg-muted:hover { background-color: hsl(var(--muted)); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-primary\/10 { color: hsla(var(--primary), 0.1); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }

.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-spin { animation: spin 1s linear infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Specific elements */
.no-js .js, .js .no-js { display: none !important; }
.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; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.pointer-events-none { pointer-events: none; }
.h-1 { height: 0.25rem; }
.h-1.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.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-\[60px\] { height: 60px; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.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-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.aspect-square { aspect-ratio: 1 / 1; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.opacity-20 { opacity: 0.2; }
.opacity-50 { opacity: 0.5; }
.opacity-55 { opacity: 0.55; }
.opacity-60 { opacity: 0.6; }
.opacity-85 { opacity: 0.85; }
.disabled\:opacity-50:disabled { opacity: 0.5; }
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* Custom decorative elements */
.bg-gradient-radial {
  background: radial-gradient(circle, var(--tw-gradient-stops));
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-secondary\/50 { --tw-gradient-from: hsla(var(--secondary), 0.5); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, hsla(var(--secondary), 0)); }
.from-secondary\/20 { --tw-gradient-from: hsla(var(--secondary), 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, hsla(var(--secondary), 0)); }
.from-primary { --tw-gradient-from: hsl(var(--primary)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, hsla(var(--primary), 0)); }
.from-primary\/40 { --tw-gradient-from: hsla(var(--primary), 0.4); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, hsla(var(--primary), 0)); }
.from-secondary\/40 { --tw-gradient-from: hsla(var(--secondary), 0.4); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, hsla(var(--secondary), 0)); }
.via-primary\/5 { --tw-gradient-via: hsla(var(--primary), 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, hsla(var(--primary), 0)); }
.to-background { --tw-gradient-to: hsl(var(--background)); }
.to-accent { --tw-gradient-to: hsl(var(--accent)); }
.to-accent\/40 { --tw-gradient-to: hsla(var(--accent), 0.4); }
.to-muted\/40 { --tw-gradient-to: hsla(var(--muted), 0.4); }

.bg-primary\/6 { background-color: hsla(var(--primary), 0.06); }
.bg-accent\/6 { background-color: hsla(var(--accent), 0.06); }
.blur-\[80px\] { filter: blur(80px); }
.blur-3xl { filter: blur(64px); }

/* Banner / Badge specific */
.bg-amber-50 { background-color: #fffbeb; }
.border-amber-200 { border-color: #fde68a; }
.text-amber-700 { color: #b45309; }
.text-amber-400 { color: #fbbf24; }
.text-green-700 { color: #15803d; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-400 { background-color: #4ade80; }
.text-blue-700 { color: #1d4ed8; }
.bg-blue-100 { background-color: #dbeafe; }
.text-yellow-700 { color: #a16207; }
.bg-yellow-100 { background-color: #fef9c3; }

/* Custom components */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Accordion styles */
.faq-drawer {
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  max-height: 0;
  overflow: hidden;
}
.faq-drawer.open {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(0.9, 0, 0.8, 0.2);
}

/* Slide over cart drawer styling */
.cart-drawer-overlay {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.cart-drawer-overlay.active {
  opacity: 1;
}
.cart-drawer-container {
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer-container.active {
  transform: translateX(0);
}

/* Simple snap slider for images */
.image-gallery-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.image-gallery-slide {
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: start;
}
.image-gallery-slider::-webkit-scrollbar {
  display: none;
}

/* Form Styles */
input, textarea {
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  border-radius: var(--radius);
  width: 100%;
  transition: all 0.2s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsla(var(--primary), 0.2);
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
}

/* Shopify Policies Page Styles */
.shopify-policy__container {
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 65rem;
  margin: 0 auto;
}
.shopify-policy__title h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: hsl(var(--foreground));
}
@media (min-width: 768px) {
  .shopify-policy__title h1 {
    font-size: 2.25rem;
  }
}
