/* ==========================================================================
   COA Theme — Base Styles
   ========================================================================== */

:root {
  --coa-cream: #FEFAF6;
  --coa-gold: #c9a87c;
  --coa-gold-dark: #b8926a;
  --coa-pink: #F7D1D1;
  --coa-pink-deep: #f0b8b8;
  --coa-lavender: #E0BBE4;
  --coa-lavender-deep: #c8a0d0;
  --coa-plum: #5c3d4a;
  --coa-plum-dark: #4a2f3c;
  --coa-mauve: #9b6e80;
  --coa-blush: #b896b0;
  --coa-rose-muted: #7a5468;
  --coa-mist: #cbb0b8;
  --coa-white: #FFFFFF;
  --coa-divider: rgba(200,160,180,0.18);
  --coa-gradient-hero: linear-gradient(135deg, #F7D1D1 0%, #E0BBE4 60%, #F7D1D1 100%);
  --coa-gradient-banner: linear-gradient(120deg, #E0BBE4 0%, #F7D1D1 100%);
  --coa-font-serif: 'Georgia', 'Times New Roman', serif;
  --coa-font-sans: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --coa-radius-sm: 10px;
  --coa-radius-md: 14px;
  --coa-radius-lg: 20px;
  --coa-radius-pill: 30px;
  --coa-shadow-card: 0 8px 28px rgba(180,130,150,0.08), 0 2px 6px rgba(180,130,150,0.05);
  --coa-shadow-product: 0 14px 28px rgba(180,120,150,0.20);
  --coa-shadow-hero: 0 18px 40px rgba(180,120,140,0.22);
  --coa-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--coa-font-serif); background: var(--coa-cream); color: var(--coa-plum); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--coa-transition); }
a:hover { color: var(--coa-gold); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--coa-font-serif); font-weight: 300; color: var(--coa-plum); line-height: 1.3; }
h1 { font-size: 2rem; }
h2 { font-size: 1.375rem; }
h3 { font-size: 1.25rem; }
p { color: var(--coa-rose-muted); font-size: 0.875rem; line-height: 1.6; }
em { font-style: italic; color: var(--coa-mauve); }

.coa-eyebrow { font-size: 0.625rem; letter-spacing: 4px; text-transform: uppercase; color: var(--coa-gold); margin-bottom: 6px; font-family: var(--coa-font-sans); }
.coa-section-title { text-align: center; margin-bottom: 32px; }
.coa-section-title h2 { font-size: 1.375rem; font-weight: 300; }
.coa-divider { height: 0.5px; background: var(--coa-divider); margin: 0 36px; border: none; }
.coa-section { padding: 44px 36px; }

.screen-reader-text {
  clip: rect(1px,1px,1px,1px); position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
}
