@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..800;1,9..144,300..800&family=Inter:ital,wght@0,300..800;1,300..800&display=swap');

/* ============================================================
   Saware — premium fashion accessories design system
   Tagline: Feel the class, wear the style.
   ============================================================ */

:root {
  --radius: 0.75rem;

  /* Saware core palette matching oklch tokens */
  --background: #faf8f5;
  --foreground: #1c1c1c;
  --card: #ffffff;
  --card-foreground: #1c1c1c;
  --popover: #ffffff;
  --popover-foreground: #1c1c1c;
  --primary: #1c1c1c;
  --primary-foreground: #faf8f5;
  --secondary: #f4f1ea;
  --secondary-foreground: #1c1c1c;
  --muted: #eae6dd;
  --muted-foreground: #737069;
  --accent: #d8b456;
  --accent-foreground: #1c1c1c;
  --destructive: #d32f2f;
  --destructive-foreground: #ffffff;
  --border: #e6e1d6;
  --input: #e6e1d6;
  --ring: #b89130;

  /* Brand tokens */
  --ink: #1c1c1c;
  --cream: #faf8f5;
  --gold: #d8b456;
  --gold-deep: #b89130;

  /* Authentic store */
  --saffron: #e76f2d;
  --indigo-craft: #3a3b7b;
  --madder: #9e2a2b;

  /* Gen Z store */
  --coral: #f26a5c;
  --lime: #84cc16;
  --fuchsia-pop: #d946ef;

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow-soft: 0 8px 24px -10px rgba(28, 28, 28, 0.18);
  --shadow-elegant: 0 20px 50px -20px rgba(28, 28, 28, 0.3);
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

#main-content {
  flex: 1 0 auto;
}

/* Typography base */
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

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

svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

svg.lucide, i[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  stroke-width: 1.75;
  flex-shrink: 0;
}

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

button {
  cursor: pointer;
}

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

/* Sizing (Width & Height) */
.w-2 { width: 0.5rem; }
.w-2\.5 { width: 0.625rem; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-4\.5 { width: 1.125rem; }
.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; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-max { width: max-content; }
.w-fit { width: fit-content; }
.min-w-0 { min-width: 0px; }
.min-w-4 { min-width: 1rem; }
.min-w-5 { min-width: 1.25rem; }
.min-w-6 { min-width: 1.5rem; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.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-full { max-width: 100%; }

.h-2 { height: 0.5rem; }
.h-2\.5 { height: 0.625rem; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-4\.5 { height: 1.125rem; }
.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-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.min-h-12 { min-height: 3rem; }
.min-h-14 { min-height: 3.5rem; }
.min-h-16 { min-height: 4rem; }
.min-h-full { min-height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Aspect Ratios */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.aspect-\[5\/4\] { aspect-ratio: 5 / 4; }
.aspect-\[6\/5\] { aspect-ratio: 6 / 5; }
.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-\[3\/4\] { aspect-ratio: 3 / 4; }

/* Typography */
.text-\[9px\] { font-size: 9px; line-height: 12px; }
.text-\[10px\] { font-size: 10px; line-height: 14px; }
.text-\[11px\] { font-size: 11px; line-height: 15px; }
.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.15; }
.text-6xl { font-size: 3.75rem; line-height: 1.1; }
.text-7xl { font-size: 4.5rem; line-height: 1.05; }

.font-sans { font-family: var(--font-sans); }
.font-display { font-family: var(--font-display); }
.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-extrabold { font-weight: 800; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.08em\] { letter-spacing: 0.08em; }
.tracking-\[0\.1em\] { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }

.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; }
.leading-loose { line-height: 2; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.15\] { line-height: 1.15; }

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

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-through { text-decoration: line-through; }
.underline { text-decoration: underline; }
.underline-offset-4 { text-underline-offset: 4px; }
.hover\:underline:hover { text-decoration: underline; }

/* Display & Flexbox & Grid */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.inline-grid { display: inline-grid; }
.hidden { display: none; }

.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.place-items-center { place-items: center; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }
.shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }

.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }

/* Grid columns */
.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-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

/* Gaps */
.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-14 { gap: 3.5rem; }
.gap-16 { gap: 4rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }
.gap-y-12 { row-gap: 3rem; }
.gap-y-16 { row-gap: 4rem; }

/* Spacing (Padding) */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.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; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.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-8 { padding-left: 2rem; padding-right: 2rem; }
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.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-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-14 { padding-top: 3.5rem; }
.pt-16 { padding-top: 4rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-14 { padding-bottom: 3.5rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }

/* Spacing (Margin) */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.mt-0 { margin-top: 0; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-2\.5 { margin-top: 0.625rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.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; }
.ml-0\.5 { margin-left: 0.125rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-auto { margin-left: auto; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-auto { margin-right: auto; }

.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.375rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.625rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-3 { bottom: 0.75rem; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.right-0 { right: 0; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.-top-0\.5 { top: -0.125rem; }
.-right-0\.5 { right: -0.125rem; }
.-inset-4 { top: -1rem; right: -1rem; bottom: -1rem; left: -1rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }

.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; }
.z-100 { z-index: 100; }
.-z-10 { z-index: -10; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Borders & Radius */
.border { border-width: 1px; border-style: solid; border-color: var(--border); }
.border-0 { border-width: 0px; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: var(--border); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: var(--border); }
.border-l { border-left-width: 1px; border-left-style: solid; border-left-color: var(--border); }
.border-r { border-right-width: 1px; border-right-style: solid; border-right-color: var(--border); }
.border-dashed { border-style: dashed; }
.border-transparent { border-color: transparent; }
.border-border { border-color: var(--border); }
.border-ink { border-color: var(--ink); }
.border-ink\/10 { border-color: rgba(28, 28, 28, 0.1); }
.border-ink\/15 { border-color: rgba(28, 28, 28, 0.15); }
.border-gold { border-color: var(--gold); }
.border-cream\/10 { border-color: rgba(250, 248, 245, 0.1); }
.border-cream\/15 { border-color: rgba(250, 248, 245, 0.15); }
.border-cream\/20 { border-color: rgba(250, 248, 245, 0.2); }

.rounded-none { border-radius: 0; }
.rounded-sm { 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-\[2rem\] { border-radius: 2rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-full { border-radius: 9999px; }

/* Colors & Backgrounds */
.bg-background { background-color: var(--background); }
.bg-background\/85 { background-color: rgba(250, 248, 245, 0.85); }
.bg-background\/90 { background-color: rgba(250, 248, 245, 0.9); }
.bg-background\/95 { background-color: rgba(250, 248, 245, 0.95); }
.bg-card { background-color: var(--card); }
.bg-secondary { background-color: var(--secondary); }
.bg-secondary\/30 { background-color: rgba(244, 241, 234, 0.3); }
.bg-secondary\/40 { background-color: rgba(244, 241, 234, 0.4); }
.bg-secondary\/50 { background-color: rgba(244, 241, 234, 0.5); }
.bg-muted { background-color: var(--muted); }
.bg-ink { background-color: var(--ink); }
.bg-gold { background-color: var(--gold); }
.bg-gold\/10 { background-color: rgba(216, 180, 86, 0.1); }
.bg-gold\/15 { background-color: rgba(216, 180, 86, 0.15); }
.bg-gold\/20 { background-color: rgba(216, 180, 86, 0.2); }
.bg-gold\/30 { background-color: rgba(216, 180, 86, 0.3); }
.bg-gold\/90 { background-color: rgba(216, 180, 86, 0.9); }
.bg-cream { background-color: var(--cream); }
.bg-cream\/5 { background-color: rgba(250, 248, 245, 0.05); }
.bg-cream\/10 { background-color: rgba(250, 248, 245, 0.1); }
.bg-transparent { background-color: transparent; }
.bg-saffron\/30 { background-color: rgba(231, 111, 45, 0.3); }
.bg-coral\/40 { background-color: rgba(242, 106, 92, 0.4); }
.bg-fuchsia-pop\/30 { background-color: rgba(217, 70, 239, 0.3); }

/* Text Colors */
.text-ink { color: var(--ink); }
.text-ink\/60 { color: rgba(28, 28, 28, 0.6); }
.text-ink\/70 { color: rgba(28, 28, 28, 0.7); }
.text-ink\/80 { color: rgba(28, 28, 28, 0.8); }
.text-cream { color: var(--cream); }
.text-cream\/40 { color: rgba(250, 248, 245, 0.4); }
.text-cream\/60 { color: rgba(250, 248, 245, 0.6); }
.text-cream\/70 { color: rgba(250, 248, 245, 0.7); }
.text-cream\/80 { color: rgba(250, 248, 245, 0.8); }
.text-cream\/95 { color: rgba(250, 248, 245, 0.95); }
.text-gold { color: var(--gold); }
.text-gold-deep { color: var(--gold-deep); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-muted-foreground\/40 { color: rgba(115, 112, 105, 0.4); }
.text-muted-foreground\/60 { color: rgba(115, 112, 105, 0.6); }
.text-destructive { color: var(--destructive); }
.text-foreground\/80 { color: rgba(28, 28, 28, 0.8); }
.text-foreground\/90 { color: rgba(28, 28, 28, 0.9); }
.text-madder { color: var(--madder); }
.text-fuchsia-pop { color: var(--fuchsia-pop); }

/* Image fit & effects */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-elegant { box-shadow: var(--shadow-elegant); }
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.blur-2xl { filter: blur(40px); }

/* Transitions & Transforms */
.transition { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-opacity { transition: opacity 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

.hover\:-translate-y-0\.5:hover { transform: translateY(-2px); }
.hover\:-translate-y-1:hover { transform: translateY(-4px); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:bg-background:hover { background-color: var(--background); }
.hover\:bg-secondary:hover { background-color: var(--secondary); }
.hover\:bg-ink:hover { background-color: var(--ink); }
.hover\:text-ink:hover { color: var(--ink); }
.hover\:text-cream:hover { color: var(--cream); }
.hover\:text-gold:hover { color: var(--gold); }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:border-gold:hover { border-color: var(--gold); }

.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:-translate-y-1 { transform: translateY(-4px); }
.group:hover .group-hover\:opacity-0 { opacity: 0; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(4px); }

/* Saware Special Custom Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  box-shadow: var(--shadow-soft);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-elegant);
}
.btn-gold:active {
  transform: translateY(0) scale(0.98);
}

.btn-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  transition: transform 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-ink:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--ink);
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--secondary);
  border-color: var(--ink);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: transparent;
  color: var(--ink);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.icon-btn:hover {
  background: var(--secondary);
}

/* Animations */
.fade-up {
  animation: fadeUp 0.7s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bounce-in {
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes bounceIn {
  0%   { opacity: 0; transform: translateY(20px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Image Slider Component */
.saware-slider, .slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  display: block;
}
.slider-slide, .slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease-in-out;
}
.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}
.slider-dot.active {
  width: 1.5rem;
  background: #ffffff;
}
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background: rgba(250, 248, 245, 0.85);
  color: var(--ink);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 20;
  transition: all 0.2s ease;
}
.slider-nav-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}
.slider-nav-btn.prev {
  left: 0.75rem;
}
.slider-nav-btn.next {
  right: 0.75rem;
}

/* Slide-Over Cart Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #ffffff !important;
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.cart-drawer.active {
  transform: translateX(0);
}
.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-body {
  padding: 1.5rem;
  flex: 1 1 auto;
  overflow-y: auto;
}
.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--secondary);
}

.shipping-progress-box {
  background: var(--secondary);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.shipping-progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.shipping-progress-fill {
  height: 100%;
  background: var(--gold-deep);
  border-radius: 9999px;
  transition: width 0.3s ease;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES (sm, md, lg, xl)
   ============================================================ */

@media (min-width: 640px) {
  .sm\:inline { display: inline; }
  .sm\:hidden { display: none; }
  .sm\:flex-row { flex-direction: row; }
  .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\:gap-x-6 { column-gap: 1.5rem; }
  .sm\:gap-x-8 { column-gap: 2rem; }
  .sm\:h-12 { height: 3rem; }
  .sm\:min-h-12 { min-height: 3rem; }
  .sm\:py-0 { padding-top: 0; padding-bottom: 0; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:h-\[420px\] { height: 420px; }
}

@media (min-width: 768px) {
  .md\:inline { display: inline; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }

  .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-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .md\:grid-cols-\[1\.1fr_1fr\] { grid-template-columns: 1.1fr 1fr; }
  .md\:grid-cols-\[1\.2fr_1fr\] { grid-template-columns: 1.2fr 1fr; }

  .md\:col-span-2 { grid-column: span 2 / span 2; }

  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-12 { gap: 3rem; }

  .md\:gap-x-6 { column-gap: 1.5rem; }
  .md\:gap-x-8 { column-gap: 2rem; }
  .md\:gap-y-8 { row-gap: 2rem; }
  .md\:gap-y-10 { row-gap: 2.5rem; }
  .md\:gap-y-12 { row-gap: 3rem; }

  .md\:p-8 { padding: 2rem; }
  .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }

  .md\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.15; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1.1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1.05; }

  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
  .md\:h-auto { height: auto; }
  .md\:h-14 { height: 3.5rem; }
  .md\:aspect-\[5\/4\] { aspect-ratio: 5 / 4; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-\[1fr_360px\] { grid-template-columns: 1fr 360px; }
  .lg\:grid-cols-\[1fr_380px\] { grid-template-columns: 1fr 380px; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1.05; }
  .lg\:aspect-\[6\/5\] { aspect-ratio: 6 / 5; }
}

/* ============================================================
   Logo Specific Sizing (Ensures clean proportions everywhere)
   ============================================================ */
.site-header-logo {
  height: 48px !important;
  max-height: 48px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block !important;
}
@media (min-width: 768px) {
  .site-header-logo {
    height: 56px !important;
    max-height: 56px !important;
    max-width: 200px !important;
  }
}

.site-footer-logo {
  height: 54px !important;
  max-height: 54px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  display: block !important;
  filter: brightness(0) invert(1) !important;
}
@media (min-width: 768px) {
  .site-footer-logo {
    height: 64px !important;
    max-height: 64px !important;
    max-width: 240px !important;
  }
}

/* ============================================================
   Compact & Responsive Header Search Dropdown (2026 Luxury Style)
   ============================================================ */
.header-search-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9999px;
  box-shadow: 0 16px 36px -8px rgba(28, 28, 28, 0.22);
  z-index: 999;
  min-width: 320px;
  padding: 4px;
  animation: searchPopupIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-popup-arrow {
  position: absolute;
  top: -6px;
  right: 14px;
  width: 12px;
  height: 12px;
  background: var(--card);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
}

@keyframes searchPopupIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile Search Overlay: Positioned cleanly below header with arrow pointing to search icon */
@media (max-width: 767px) {
  .header-search-popup {
    position: fixed !important;
    top: 104px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100vw - 28px) !important;
    box-sizing: border-box !important;
    border-radius: 9999px !important;
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
    z-index: 9999 !important;
  }
  .header-search-popup form {
    width: 100% !important;
    display: flex !important;
  }
  .header-search-popup input {
    flex: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
  }
  .search-popup-arrow {
    display: block !important;
    position: absolute !important;
    top: -6px !important;
    right: 108px !important;
    width: 12px !important;
    height: 12px !important;
    background: #ffffff !important;
    border-left: 1px solid var(--border) !important;
    border-top: 1px solid var(--border) !important;
    transform: rotate(45deg) !important;
    z-index: 10000 !important;
  }
}

/* ============================================================
   Footer Newsletter & Container Mobile Spacing
   ============================================================ */
.footer-saware-wrap .container-saware {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
@media (min-width: 768px) {
  .footer-saware-wrap .container-saware {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

.footer-newsletter-input {
  height: 48px !important;
  min-height: 48px !important;
  box-sizing: border-box !important;
  display: block !important;
  width: 100% !important;
  border-radius: 9999px !important;
  background: rgba(250, 247, 242, 0.08) !important;
  border: 1px solid rgba(250, 247, 242, 0.25) !important;
  color: #faf7f2 !important;
  padding: 0 1.25rem !important;
  font-size: 0.875rem !important;
  outline: none !important;
}
.footer-newsletter-input:focus {
  border-color: var(--gold) !important;
  background: rgba(250, 247, 242, 0.12) !important;
}
.footer-newsletter-input::placeholder {
  color: rgba(250, 247, 242, 0.45) !important;
}

.footer-newsletter-btn {
  height: 48px !important;
  min-height: 48px !important;
  box-sizing: border-box !important;
  border-radius: 9999px !important;
  background: var(--gold) !important;
  color: #1c1917 !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  padding: 0 1.75rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
  white-space: nowrap !important;
}
.footer-newsletter-btn:hover {
  opacity: 0.92 !important;
  transform: scale(1.02) !important;
}

/* ============================================================
   Luxury 2026 Mobile Right-Side Bag-Type Slide-Over Drawer
   ============================================================ */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70vw;
  min-width: 280px;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: #ffffff !important;
  background-color: #ffffff !important;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border);
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}



/* ============================================================
   ImageSlider Styles (Hero, Campaigns, Store Banners)
   ============================================================ */
.saware-slider,
.slider-container {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  display: block !important;
}

.slider-slide,
.slider-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: opacity 0.7s ease-in-out !important;
}

.slider-nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 2.25rem !important;
  height: 2.25rem !important;
  border-radius: 9999px !important;
  background: rgba(253, 246, 237, 0.85) !important;
  color: var(--ink) !important;
  box-shadow: var(--shadow-soft) !important;
  backdrop-filter: blur(4px) !important;
  display: grid !important;
  place-items: center !important;
  border: none !important;
  cursor: pointer !important;
  z-index: 20 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.slider-nav-btn:hover {
  background: #FDF6ED !important;
  transform: translateY(-50%) scale(1.05) !important;
}

.slider-nav-btn.prev,
.slider-prev {
  left: 0.75rem !important;
}

.slider-nav-btn.next,
.slider-next {
  right: 0.75rem !important;
}

.slider-dot {
  height: 0.375rem !important;
  width: 0.375rem !important;
  border-radius: 9999px !important;
  background: rgba(253, 246, 237, 0.6) !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: all 0.3s ease !important;
}

.slider-dot.active {
  width: 1.5rem !important;
  background: #FDF6ED !important;
}

/* ============================================================
   Saware Image Frame Component (Blur Glow Backdrop + Contain)
   Exact match to Source App (Remix of Saware Style Studio)
   ============================================================ */
.saware-img-frame {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  border-radius: inherit !important;
  display: block !important;
}

.saware-img-blur-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.15) !important;
  filter: blur(24px) saturate(1.3) !important;
  -webkit-filter: blur(24px) saturate(1.3) !important;
  opacity: 0.65 !important;
  pointer-events: none !important;
  transition: opacity 0.5s ease !important;
}

.saware-img-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(251, 248, 243, 0.25) !important;
  pointer-events: none !important;
}

.saware-img-main {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease !important;
}

.group:hover .saware-img-main {
  transform: scale(1.03);
}

/* ============================================================
   Contact Page 2-Section Grid (Left Info, Right Form)
   ============================================================ */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .contact-section-grid {
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 2.5rem;
  }
}

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.contact-icon-box {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--secondary);
  color: var(--gold-deep);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-info-card:hover .contact-icon-box {
  background: var(--gold);
  color: var(--ink);
}

.contact-form-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

/* Header Search Input Style Reset */

.header-search-popup input,
#main-search-input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.header-search-popup input:focus,
#main-search-input:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ============================================================
   Product Cards Badge & Wishlist Layering (Guaranteed Visibility)
   ============================================================ */
.wishlist-toggle-btn {
  z-index: 25 !important;
  position: absolute !important;
  pointer-events: auto !important;
}

.product-card-off-badge,
.aspect-\[4\/5\] > span.absolute,
.aspect-\[4\/5\] span[class*="absolute left-3"] {
  z-index: 25 !important;
  position: absolute !important;
  pointer-events: auto !important;
}

/* ============================================================
   Saware Product Image Frame (Dual-layer Blur Glow + Object Contain)
   ============================================================ */
.saware-img-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: block;
  z-index: 1;
}

.saware-img-blur-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  transform: scale(1.15);
  object-fit: cover;
  filter: blur(24px) saturate(1.25);
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

.saware-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.25);
  pointer-events: none;
  z-index: 2;
}

.saware-img-main {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  z-index: 3;
}

/* ============================================================
   Amazon-Style Live Order Delivery Tracker
   ============================================================ */
.order-tracker-timeline {
  position: relative;
  width: 100%;
}

.order-tracker-bar {
  position: absolute;
  top: 14px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--border);
  z-index: 0;
}

.order-tracker-progress {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
}

.order-stages-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  text-align: center;
}

.order-stage-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-stage-dot {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.order-stage-step.is-completed .order-stage-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.order-stage-step.is-current .order-stage-dot {
  background: var(--ink);
  border-color: var(--gold);
  color: var(--cream);
  box-shadow: 0 0 0 4px rgba(216, 180, 86, 0.3);
}

.order-stage-label {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted-foreground);
  line-height: 1.2;
}

.order-stage-step.is-completed .order-stage-label,
.order-stage-step.is-current .order-stage-label {
  color: var(--ink);
  font-weight: 700;
}

/* ============================================================
   Admin Bar Alignment
   ============================================================ */
body.admin-bar {
  /* Let WordPress default handle admin bar positioning */
}

/* ============================================================
   Saware Luxury Auth Card & Form Styles
   ============================================================ */
.saware-auth-container {
  max-width: 460px;
  margin: 0 auto;
  padding: 0 16px;
}

.saware-auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 12px 36px -8px rgba(28, 28, 28, 0.08);
  margin-top: 24px;
}

@media (min-width: 640px) {
  .saware-auth-card {
    padding: 36px 32px;
  }
}

.saware-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 4px;
  margin-top: 24px;
}

.saware-auth-tab-btn {
  height: 42px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saware-auth-tab-btn.is-active {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 2px 8px rgba(28, 28, 28, 0.15);
}

.saware-auth-tab-btn:not(.is-active):hover {
  color: var(--gold-deep);
}

.saware-auth-field {
  position: relative;
  width: 100%;
}

.saware-auth-field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #8c887b;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saware-auth-input {
  width: 100% !important;
  height: 48px !important;
  border-radius: 9999px !important;
  border: 1.5px solid var(--border) !important;
  background-color: var(--background) !important;
  padding-left: 46px !important;
  padding-right: 46px !important;
  font-size: 14px !important;
  color: var(--ink) !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  line-height: 1.5 !important;
  box-sizing: border-box !important;
}

.saware-auth-input::placeholder {
  color: #9c978b !important;
}

.saware-auth-input:focus {
  border-color: var(--gold-deep) !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3.5px rgba(216, 180, 86, 0.18) !important;
}

.saware-auth-toggle-pwd {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #8c887b;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saware-auth-toggle-pwd:hover {
  color: var(--ink);
}

.saware-auth-divider {
  margin-top: 26px !important;
  margin-bottom: 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.16em !important;
  color: #9c978b !important;
}

.saware-auth-divider-line {
  height: 1px !important;
  flex: 1 !important;
  background-color: var(--border) !important;
}

.saware-auth-google-btn {
  height: 50px !important;
  width: 100% !important;
  border-radius: 9999px !important;
  border: 1.5px solid var(--border) !important;
  background: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  cursor: pointer !important;
}

.saware-auth-google-btn:hover {
  background-color: var(--secondary) !important;
  border-color: #d1cbbf !important;
}

.saware-auth-group {
  margin-bottom: 20px !important;
  position: relative !important;
}

.saware-auth-label {
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: rgba(28, 28, 28, 0.85) !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}

.saware-auth-alert-box {
  margin-bottom: 24px !important;
  border-radius: 16px !important;
  padding: 14px 18px !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

/* Saware Notification Bar (Positioned between Tabs and Auth Card) */
.saware-toast-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 480px !important;
  margin: 0 auto !important;
  min-height: 0 !important;
  z-index: 50 !important;
}

.saware-toast-container:not(:empty) {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.saware-toast {
  pointer-events: auto !important;
  background: #1c1917 !important;
  color: #faf7f2 !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18) !important;
  border-radius: 9999px !important;
  padding: 10px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  animation: sawareToastSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  max-width: 100% !important;
}

@keyframes sawareToastSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.saware-toast-fadeout {
  animation: sawareToastFadeOut 0.25s ease forwards !important;
}

@keyframes sawareToastFadeOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
  }
}

/* Saware Clean Luxury Forgot Password & Auth Action Links */
.saware-forgot-link {
  display: inline-block !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 6px 12px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #b89230 !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.saware-forgot-link:hover {
  color: #1c1917 !important;
  text-decoration: underline !important;
}

.saware-forgot-link:focus {
  outline: none !important;
  box-shadow: none !important;
}

.saware-auth-action-link {
  display: inline-flex !important;
  align-items: center !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 4px 6px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #78716c !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.saware-auth-action-link:hover {
  color: #1c1917 !important;
  text-decoration: underline !important;
}

.saware-auth-action-link.is-gold {
  color: #b89230 !important;
  font-weight: 600 !important;
}

.saware-auth-action-link.is-gold:hover {
  color: #8c6d1f !important;
}

/* Hide native Edge/IE password reveal icons */
input::-ms-reveal,
input::-ms-clear {
  display: none !important;
}

/* ============================================================
   Saware Product Image Frame & Backdrop
   ============================================================ */
.saware-img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
}

.saware-img-blur-bg {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: blur(20px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.saware-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: 2;
  pointer-events: none;
}

.saware-img-main {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* ============================================================
   Sticky Header & Fixed Mobile Product Bar
   ============================================================ */
.site-sticky-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100 !important;
  background-color: var(--background);
  transition: box-shadow 0.25s ease;
}
.site-sticky-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.admin-bar .site-sticky-header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-sticky-header {
    top: 46px !important;
  }
}

.mobile-sticky-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 50 !important;
  background: #ffffff !important;
  border-top: 1px solid var(--border) !important;
  padding: 0.75rem 1rem !important;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom)) !important;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08) !important;
}