/* ============================================
   CONSTELLATIONS — Celestial Stationery Shop
   ============================================ */

/* ----- CSS Variables ----- */
:root {
  --midnight-deep: #0a1628;
  --night-sky: #0f2137;
  --twilight: #14324a;
  --navy: #0e2a4e;          /* Deep navy — buttons */
  --navy-deep: #091a33;     /* Deepest navy — buttons */
  --navy-hover: #123b6b;    /* Brighter navy — button hover */
  --emerald: #2d8a6e;
  --teal: #1a6b5a;
  --sapphire: #3d7ea6;
  --moonlight: #f5f0e8;
  --gold: #c9a962;
  --gold-light: #d4b87a;
  --cream: #f8f4eb;
  --pearl: #e8e4dc;
  --jade: #4a9b8c;
  
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Quicksand', sans-serif;
  --font-accent: 'Nothing You Could Do', cursive;
  
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-body);
  background: var(--midnight-deep);
  color: var(--moonlight);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: var(--emerald);
  color: var(--cream);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--midnight-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--twilight);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--emerald);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

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

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.33rem; }

p {
  margin-bottom: 1rem;
}

.accent-text {
  font-family: var(--font-accent);
  font-size: 1.2em;
  color: var(--gold);
}

/* ----- Constellation Text Effect (Logo & Subtitles) ----- */
.constellation-text {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.constellation-text .text {
  position: relative;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.constellation-text .text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.6));
  opacity: 0.5;
  animation: constellationPulse 3s ease-in-out infinite;
}

@keyframes constellationPulse {
  0%, 100% { 
    opacity: 0.4; 
    filter: drop-shadow(0 0 6px rgba(201, 169, 98, 0.4)); 
  }
  50% { 
    opacity: 0.8; 
    filter: drop-shadow(0 0 12px rgba(201, 169, 98, 0.7)); 
  }
}

.constellation-text .star {
  font-size: 1rem;
  color: var(--gold);
  animation: twinkle 3s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.6);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ----- Hero Title Constellation Effect ----- */
.constellation-title {
  position: relative;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.constellation-title::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: 
    radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.3) 0%, transparent 8%),
    radial-gradient(circle at 35% 20%, rgba(201, 169, 98, 0.25) 0%, transparent 6%),
    radial-gradient(circle at 50% 35%, rgba(201, 169, 98, 0.35) 0%, transparent 7%),
    radial-gradient(circle at 65% 25%, rgba(201, 169, 98, 0.2) 0%, transparent 5%),
    radial-gradient(circle at 80% 40%, rgba(201, 169, 98, 0.3) 0%, transparent 8%);
  animation: starsGlow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes starsGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ----- Gold Subtitle Effect ----- */
.gold-subtitle {
  position: relative;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
  text-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
}

.gold-subtitle::before {
  content: '✧';
  position: relative;
  display: inline-block;
  margin-right: 8px;
  animation: twinkle 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.6);
}

.gold-subtitle::after {
  content: '✧';
  position: relative;
  display: inline-block;
  margin-left: 8px;
  animation: twinkle 2s ease-in-out infinite 1s;
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.6);
}

.section-subtitle {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-shadow: 0 0 15px rgba(201, 169, 98, 0.3);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
  text-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
}

/* ----- Watercolour Backgrounds ----- */
.watercolour-bg {
  position: relative;
}

.watercolour-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(45, 138, 110, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(61, 126, 166, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(74, 155, 140, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.watercolour-bg > * {
  position: relative;
  z-index: 1;
}

/* ----- Star Particles ----- */
.star-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--cream);
  border-radius: 50%;
  opacity: 0.4;
  animation: twinkleParticle var(--duration, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.star-particle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}

@keyframes twinkleParticle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(10px, -15px); }
  50% { transform: translate(-5px, -25px); }
  75% { transform: translate(-15px, -10px); }
  100% { transform: translate(0, 0); }
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-logo .logo-text {
  position: relative;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo .logo-text::before {
  content: 'CONSTELLATIONS';
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.6));
  opacity: 0.5;
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { opacity: 0.4; filter: drop-shadow(0 0 6px rgba(201, 169, 98, 0.4)); }
  50% { opacity: 0.8; filter: drop-shadow(0 0 14px rgba(201, 169, 98, 0.7)); }
}

.nav-logo:hover .logo-text {
  text-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.nav-logo .star {
  font-size: 1rem;
  color: var(--gold);
  animation: twinkle 3s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.6);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
}

.nav-link.active .nav-star {
  display: inline-block;
}

.nav-star {
  display: none;
  font-size: 0.6rem;
  color: var(--gold);
  animation: twinkle 2s ease-in-out infinite;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--midnight-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-smooth);
  }
  
  .nav-links.open .nav-link {
    opacity: 1;
    transform: translateX(0);
  }
  
  .nav-links.open .nav-link:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open .nav-link:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.open .nav-link:nth-child(3) { transition-delay: 0.3s; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Button label wrapper — the gold text */
.btn .btn-text {
  position: relative;
  display: inline-block;
  line-height: 1.4;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Gold constellation line under the gold text */
.btn .btn-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='8' viewBox='0 0 28 8'%3E%3Cline x1='0' y1='4' x2='28' y2='4' stroke='%23c9a962' stroke-width='1'/%3E%3Ccircle cx='7' cy='4' r='1.8' fill='%23c9a962'/%3E%3Ccircle cx='21' cy='4' r='1.8' fill='%23c9a962'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 28px 7px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
  filter: drop-shadow(0 0 4px rgba(201, 169, 98, 0.6));
  pointer-events: none;
}

/* Constellation line appears when hovered, selected (active) or focused */
.btn:hover .btn-text::after,
.btn:focus-visible .btn-text::after,
.btn:active .btn-text::after,
.btn.active .btn-text::after,
.btn.selected .btn-text::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.4);
}

.btn-primary {
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0) 0%, rgba(201, 169, 98, 0) 100%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  border: 1px solid rgba(201, 169, 98, 0.18);
  box-shadow: 0 4px 20px rgba(4, 10, 22, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible {
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.04) 100%),
    linear-gradient(135deg, var(--navy-hover) 0%, var(--navy-deep) 100%);
  color: var(--gold);
  border-color: rgba(201, 169, 98, 0.5);
  text-shadow: 0 0 12px rgba(201, 169, 98, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(4, 10, 22, 0.6), 0 0 40px rgba(201, 169, 98, 0.25);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 14px rgba(4, 10, 22, 0.5), 0 0 24px rgba(201, 169, 98, 0.18);
}

.btn-secondary {
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0) 0%, rgba(201, 169, 98, 0) 100%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 98, 0.55);
  box-shadow: 0 4px 20px rgba(4, 10, 22, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.04) 100%),
    linear-gradient(135deg, var(--navy-hover) 0%, var(--navy-deep) 100%);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 169, 98, 0.3);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 14px rgba(4, 10, 22, 0.5), 0 0 24px rgba(201, 169, 98, 0.18);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* Smaller buttons get a tighter constellation line so it stays inside the pill */
.btn-small .btn-text::after {
  bottom: -8px;
  height: 6px;
  background-size: 24px 6px;
}

/* ----- Hero Section ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(45, 138, 110, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(61, 126, 166, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(74, 155, 140, 0.15) 0%, transparent 70%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--night-sky) 100%);
}

.hero-constellation {
  position: absolute;
  opacity: 0.15;
  stroke: var(--cream);
  stroke-width: 1;
  fill: none;
}

.hero-constellation-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  animation: drift 60s ease-in-out infinite;
}

.hero-constellation-2 {
  bottom: 20%;
  right: 10%;
  width: 150px;
  animation: drift 45s ease-in-out infinite reverse;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hero-star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: heroTwinkle var(--duration, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes heroTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

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

/* ----- Scroll Indicator (fixed bottom-right, navy badge) ----- */
.scroll-indicator {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  animation: fadeInUp 1s ease-out 1s both;
}

.scroll-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.scroll-badge {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0) 0%, rgba(201, 169, 98, 0) 100%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(201, 169, 98, 0.25);
  color: var(--moonlight);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(4, 10, 22, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.scroll-badge svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.scroll-indicator:hover .scroll-badge,
.scroll-indicator:active .scroll-badge,
.scroll-indicator:focus-visible .scroll-badge {
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.04) 100%),
    linear-gradient(135deg, var(--navy-hover) 0%, var(--navy-deep) 100%);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 8px 20px rgba(4, 10, 22, 0.5), 0 0 24px rgba(201, 169, 98, 0.25);
  transform: translateY(-3px);
}

.scroll-indicator:focus-visible {
  outline: none;
}

.scroll-indicator:focus-visible .scroll-badge {
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.4);
}

.scroll-indicator:hover .scroll-label,
.scroll-indicator:focus-visible .scroll-label {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.5);
}

/* ----- Section Headers ----- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .star-divider {
  margin: 20px auto;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(245, 240, 232, 0.8);
}

.star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.star-divider .line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.star-divider .star {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ----- Featured Products ----- */
.featured-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

/* Cards size up to 3-across but the row stays centred no matter how many are shown */
.featured-grid .product-card {
  width: calc((100% - 64px) / 3);
}

@media (max-width: 992px) {
  .featured-grid .product-card {
    width: calc((100% - 32px) / 2);
  }
}

@media (max-width: 600px) {
  .featured-grid .product-card {
    width: 100%;
  }
}

/* ----- Category Cards (Home) ----- */
.category-header {
  text-align: center;
  margin: 90px 0 44px;
}

.category-header h3 {
  margin-bottom: 16px;
}

.category-header .star-divider {
  margin: 0 auto;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(25% - 24px);
  background: rgba(20, 50, 74, 0.45);
  border: 1px solid rgba(74, 155, 140, 0.15);
  border-radius: 24px;
  padding: 34px 26px;
  text-align: center;
  transition: var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 169, 98, 0.08);
}

@media (max-width: 992px) {
  .category-card {
    width: calc(50% - 16px);
  }
}

@media (max-width: 600px) {
  .category-card {
    width: 100%;
  }
}

.category-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0) 0%, rgba(201, 169, 98, 0) 100%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(201, 169, 98, 0.25);
  box-shadow: 0 4px 16px rgba(4, 10, 22, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.category-icon svg {
  width: 36px;
  height: 36px;
}

.category-card:hover .category-icon,
.category-card:focus-within .category-icon {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 169, 98, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.category-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--cream);
  margin-bottom: 10px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.category-name:hover,
.category-name:focus-visible {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201, 169, 98, 0.45);
}

.category-desc {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.6;
  margin-bottom: 22px;
  min-height: 2.8em;
}

.category-products {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.category-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid rgba(74, 155, 140, 0.12);
  transition: var(--transition-smooth);
}

.category-product:hover,
.category-product:focus-visible {
  border-color: rgba(201, 169, 98, 0.45);
  background: rgba(14, 42, 78, 0.55);
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(4, 10, 22, 0.4);
}

.category-product .fp-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--moonlight);
  transition: color 0.3s ease;
}

.category-product:hover .fp-name {
  color: var(--gold);
}

.category-product .fp-price {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--gold);
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(201, 169, 98, 0.3);
}

.category-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  transition: opacity 0.3s ease, text-shadow 0.3s ease;
}

.category-link:hover,
.category-link:focus-visible {
  opacity: 1;
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.55);
}

.category-link .cat-arrow {
  transition: transform 0.3s ease;
}

.category-link:hover .cat-arrow {
  transform: translateX(4px);
}

/* ----- Product Card ----- */
.product-card {
  background: rgba(20, 50, 74, 0.5);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(74, 155, 140, 0.15);
  transition: var(--transition-smooth);
  position: relative;
  cursor: pointer;
}

.product-card:focus-visible {
  outline: 2px solid rgba(201, 169, 98, 0.6);
  outline-offset: 4px;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(45, 138, 110, 0.1);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(45, 138, 110, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--twilight) 0%, var(--night-sky) 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--midnight-deep);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-content {
  padding: 24px;
}

.product-zodiac {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.3);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--cream);
}

.product-description {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 500;
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.3);
}

.product-rating {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ----- Zodiac Constellation Collection ----- */
.zodiac-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 30px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.zodiac-scroll::-webkit-scrollbar {
  display: none;
}

.zodiac-item {
  flex-shrink: 0;
  width: 130px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.zodiac-item:hover {
  transform: translateY(-10px);
}

.zodiac-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  overflow: visible;
}

.zodiac-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.25;
  transition: var(--transition-smooth);
}

.zodiac-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 169, 98, 0.3);
  transition: var(--transition-smooth);
}

.zodiac-item:hover .zodiac-icon::after {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 169, 98, 0.4);
}

.zodiac-item[data-category="aries"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(180, 80, 60, 0.5) 0%, transparent 70%); }
.zodiac-item[data-category="taurus"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(80, 130, 90, 0.45) 0%, transparent 70%); }
.zodiac-item[data-category="gemini"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(80, 120, 180, 0.5) 0%, transparent 70%); }
.zodiac-item[data-category="cancer"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(140, 120, 170, 0.5) 0%, transparent 70%); }
.zodiac-item[data-category="leo"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(200, 150, 60, 0.5) 0%, transparent 70%); }
.zodiac-item[data-category="virgo"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(130, 110, 80, 0.45) 0%, transparent 70%); }
.zodiac-item[data-category="libra"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(180, 140, 160, 0.5) 0%, transparent 70%); }
.zodiac-item[data-category="scorpio"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(130, 50, 80, 0.5) 0%, transparent 70%); }
.zodiac-item[data-category="sagittarius"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(180, 100, 60, 0.5) 0%, transparent 70%); }
.zodiac-item[data-category="capricorn"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(40, 90, 110, 0.5) 0%, transparent 70%); }
.zodiac-item[data-category="aquarius"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(50, 140, 165, 0.5) 0%, transparent 70%); }
.zodiac-item[data-category="pisces"] .zodiac-icon::before { background: radial-gradient(ellipse at 50% 50%, rgba(70, 100, 140, 0.5) 0%, transparent 70%); }

.zodiac-icon svg {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 90px;
}

.zodiac-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 232, 0.85);
  transition: color 0.3s ease;
  font-weight: 400;
}

.zodiac-item:hover .zodiac-name {
  color: var(--gold);
}

/* ----- Story Section ----- */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.story-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 138, 110, 0.15) 0%, rgba(61, 126, 166, 0.15) 100%);
  z-index: 1;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.story-image .corner-star {
  position: absolute;
  color: var(--gold);
  font-size: 1.5rem;
  animation: twinkle 3s ease-in-out infinite;
}

.story-image .corner-star.top-left { top: 16px; left: 16px; }
.story-image .corner-star.top-right { top: 16px; right: 16px; animation-delay: 0.5s; }
.story-image .corner-star.bottom-left { bottom: 16px; left: 16px; animation-delay: 1s; }
.story-image .corner-star.bottom-right { bottom: 16px; right: 16px; animation-delay: 1.5s; }

.story-content h2 {
  margin-bottom: 24px;
}

.story-content p {
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 20px;
}

.story-content .btn {
  display: flex;
  width: fit-content;
  margin: 20px auto 0;
}

/* ----- Newsletter ----- */
.newsletter-section {
  background: linear-gradient(135deg, var(--twilight) 0%, var(--night-sky) 100%);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 24px;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 70% 50%, rgba(45, 138, 110, 0.1) 0%, transparent 30%);
  animation: drift 30s ease-in-out infinite;
  pointer-events: none;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 500px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid rgba(74, 155, 140, 0.3);
  background: rgba(10, 22, 40, 0.6);
  color: var(--moonlight);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.newsletter-form input::placeholder {
  color: rgba(245, 240, 232, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
}

/* ----- Page Hero (Inner Pages) ----- */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 60px;
  background: 
    radial-gradient(ellipse at 50% 100%, rgba(45, 138, 110, 0.2) 0%, transparent 60%),
    var(--midnight-deep);
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, var(--midnight-deep) 0%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.75);
  max-width: 500px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ----- Shop Page ----- */
.shop-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 30px;
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0) 0%, rgba(201, 169, 98, 0) 100%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(201, 169, 98, 0.2);
  color: var(--moonlight);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(4, 10, 22, 0.4);
}

/* Hand-drawn gold constellation icon on the star-sign filter buttons */
.zodiac-btn-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.filter-btn:hover .zodiac-btn-icon,
.filter-btn.active .zodiac-btn-icon {
  filter: drop-shadow(0 0 6px rgba(201, 169, 98, 0.8));
  animation: iconTwinkle 2.2s ease-in-out infinite;
}

@keyframes iconTwinkle {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.12); opacity: 1; }
}

.filter-btn .btn-text {
  position: relative;
  display: inline-block;
  line-height: 1.4;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.filter-btn .btn-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='8' viewBox='0 0 28 8'%3E%3Cline x1='0' y1='4' x2='28' y2='4' stroke='%23c9a962' stroke-width='1'/%3E%3Ccircle cx='7' cy='4' r='1.8' fill='%23c9a962'/%3E%3Ccircle cx='21' cy='4' r='1.8' fill='%23c9a962'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 28px 7px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
  filter: drop-shadow(0 0 4px rgba(201, 169, 98, 0.6));
  pointer-events: none;
}

.filter-btn:hover .btn-text::after,
.filter-btn:focus-visible .btn-text::after,
.filter-btn.active .btn-text::after {
  opacity: 1;
  transform: scaleX(1);
}

.filter-btn:hover {
  border-color: rgba(201, 169, 98, 0.55);
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.03) 100%),
    linear-gradient(135deg, var(--navy-hover) 0%, var(--navy-deep) 100%);
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.4);
  transform: translateY(-2px);
}

.filter-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.4);
}

.filter-btn.active {
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.04) 100%),
    linear-gradient(135deg, var(--navy-hover) 0%, var(--navy-deep) 100%);
  border-color: var(--gold);
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.4);
  box-shadow: 0 4px 20px rgba(4, 10, 22, 0.5), 0 0 24px rgba(201, 169, 98, 0.2);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.load-more {
  text-align: center;
  margin-top: 60px;
}

/* ----- About Page ----- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro {
  font-size: 1.2rem;
  color: rgba(245, 240, 232, 0.9);
  text-align: center;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 80px 0;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(20, 50, 74, 0.4);
  border-radius: 20px;
  border: 1px solid rgba(74, 155, 140, 0.12);
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 169, 98, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--twilight) 0%, var(--emerald) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.value-card h4 {
  margin-bottom: 12px;
  color: var(--cream);
}

.value-card p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 0;
}

.founder-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
  padding: 60px;
  background: rgba(20, 50, 74, 0.4);
  border-radius: 30px;
  border: 1px solid rgba(74, 155, 140, 0.12);
}

@media (max-width: 768px) {
  .founder-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 30px;
  }
}

.founder-image {
  position: relative;
}

.founder-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(201, 169, 98, 0.3);
}

.founder-image::before,
.founder-image::after {
  content: '✧';
  position: absolute;
  color: var(--gold);
  font-size: 1.5rem;
  animation: twinkle 3s ease-in-out infinite;
}

.founder-image::before {
  top: -10px;
  left: -10px;
}

.founder-image::after {
  bottom: -10px;
  right: -10px;
  animation-delay: 1s;
}

.founder-content h3 {
  margin-bottom: 8px;
}

.founder-title {
  font-family: var(--font-accent);
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.3);
}

.founder-content p {
  color: rgba(245, 240, 232, 0.85);
}

/* ----- Contact Page ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-form {
  background: rgba(20, 50, 74, 0.5);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(74, 155, 140, 0.15);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--moonlight);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(74, 155, 140, 0.25);
  background: rgba(10, 22, 40, 0.6);
  color: var(--moonlight);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 232, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--jade);
  animation: shake 0.5s ease;
}

.form-error {
  color: var(--jade);
  font-size: 0.8rem;
  margin-top: 8px;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.form-success {
  text-align: center;
  padding: 60px 40px;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.form-success h3 {
  margin-bottom: 12px;
  color: var(--gold);
}

.contact-info {
  padding: 20px 0;
}

.contact-info h3 {
  margin-bottom: 30px;
  color: var(--gold);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(20, 50, 74, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--cream);
}

.contact-item p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

/* ----- Social / Connect Buttons (deep navy, like the other buttons) ----- */
.social-link {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0) 0%, rgba(201, 169, 98, 0) 100%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--moonlight);
  border: 1px solid rgba(201, 169, 98, 0.25);
  box-shadow: 0 4px 16px rgba(4, 10, 22, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.social-link:hover,
.social-link:active,
.social-link:focus-visible {
  background-image:
    linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.04) 100%),
    linear-gradient(135deg, var(--navy-hover) 0%, var(--navy-deep) 100%);
  color: var(--gold);
  border-color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(4, 10, 22, 0.5), 0 0 24px rgba(201, 169, 98, 0.25);
}

.social-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.4);
}

/* Shooting star that circles the icon on hover (instead of an underline) */
.social-link .shooting-star,
.scroll-badge .shooting-star {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover .shooting-star,
.social-link:active .shooting-star,
.social-link:focus-visible .shooting-star,
.scroll-indicator:hover .shooting-star,
.scroll-indicator:active .shooting-star,
.scroll-indicator:focus-visible .shooting-star {
  opacity: 1;
  animation: orbitStar 1.8s linear infinite;
}

/* Faint dashed orbit ring the star rides along */
.social-link .shooting-star::after,
.scroll-badge .shooting-star::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 169, 98, 0.4);
}

/* The shooting star itself (gold sparkle + comet tail), sitting on top of the ring */
.social-link .shooting-star::before,
.scroll-badge .shooting-star::before {
  content: '';
  position: absolute;
  top: -19px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Cpath%20d='M10%202.5%20L11.6%208.4%20L17.5%2010%20L11.6%2011.6%20L10%2017.5%20L8.4%2011.6%20L2.5%2010%20L8.4%208.4%20Z'%20fill='%23c9a962'/%3E%3Cpath%20d='M12%207%20Q%2015.5%205.5%2018.5%206.5'%20stroke='%23c9a962'%20stroke-width='1.3'%20stroke-linecap='round'%20fill='none'%20opacity='0.8'/%3E%3Cpath%20d='M11.5%209%20Q%2014.5%208.5%2017.5%2010'%20stroke='%23c9a962'%20stroke-width='1'%20stroke-linecap='round'%20fill='none'%20opacity='0.35'/%3E%3C/svg%3E") no-repeat center / contain;
  filter: drop-shadow(0 0 5px rgba(201, 169, 98, 0.9));
}

@keyframes orbitStar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ----- FAQ Accordion ----- */
.faq-section {
  margin-top: 80px;
}

.faq-item {
  border-bottom: 1px solid rgba(74, 155, 140, 0.15);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--moonlight);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.8;
}

/* ----- Footer ----- */
.footer {
  background: var(--night-sky);
  padding: 80px 0 40px;
  margin-top: 120px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-social .social-links {
  margin-top: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(74, 155, 140, 0.1);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
}

.footer-bottom .heart {
  color: var(--gold);
  animation: twinkle 2s ease-in-out infinite;
}

/* ----- Animations for Scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ----- Cart Sidebar ----- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: var(--night-sky);
  z-index: 2001;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(74, 155, 140, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.cart-close {
  font-size: 1.5rem;
  color: var(--moonlight);
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-close:hover {
  color: var(--gold);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(245, 240, 232, 0.65);
}

.cart-empty .icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
  color: var(--gold);
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(74, 155, 140, 0.1);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--twilight);
}

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

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.cart-item-zodiac {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.3);
}

.cart-item-price {
  color: var(--gold);
  font-weight: 500;
}

.cart-item-remove {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-item-remove:hover {
  color: var(--gold);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(74, 155, 140, 0.15);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.cart-total span:last-child {
  font-family: var(--font-display);
  color: var(--gold);
}

/* ----- Toast Notification ----- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--twilight);
  color: var(--cream);
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 3000;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast .icon {
  font-size: 1.2rem;
  color: var(--gold);
}

/* ----- Product Detail Modal ----- */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(6, 12, 24, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.product-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  background: linear-gradient(135deg, var(--twilight) 0%, var(--night-sky) 100%);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.product-modal-overlay.open .product-modal {
  transform: translateY(0) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.75);
  border: 1px solid rgba(201, 169, 98, 0.4);
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.product-modal-close:hover,
.product-modal-close:focus-visible {
  background: var(--gold);
  color: var(--midnight-deep);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.product-modal-close:focus-visible {
  outline: none;
}

.product-modal-image {
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, var(--twilight) 0%, var(--midnight-deep) 100%);
  overflow: hidden;
}

.product-modal-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-content {
  padding: 44px 40px 36px;
}

.product-modal-content .product-zodiac {
  margin-bottom: 6px;
}

.product-modal-content .product-name {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.product-modal-content .product-rating {
  margin-bottom: 12px;
}

.product-modal-content .product-price {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.product-modal-desc {
  color: rgba(245, 240, 232, 0.85);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-modal-facts {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 18px 20px;
  background: rgba(10, 22, 40, 0.45);
  border: 1px solid rgba(74, 155, 140, 0.15);
  border-radius: 14px;
}

.product-modal-facts li {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
}

.product-modal-facts .fact-label {
  min-width: 88px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding-top: 2px;
}

.product-modal-facts .fact-value {
  color: rgba(245, 240, 232, 0.85);
}

.product-modal-buy {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 50px;
  background: rgba(10, 22, 40, 0.5);
  overflow: hidden;
}

.qty-btn {
  width: 42px;
  height: 46px;
  background: none;
  color: var(--gold);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.qty-btn:hover {
  background: rgba(201, 169, 98, 0.15);
  color: var(--gold-light);
}

.qty-value {
  min-width: 46px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
}

.product-modal-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .product-modal {
    grid-template-columns: 1fr;
    max-height: 88vh;
  }
  
  .product-modal-image {
    min-height: 0;
    height: 240px;
  }
  
  .product-modal-content {
    padding: 30px 22px 28px;
  }
  
  .product-modal-content .product-name {
    font-size: 1.5rem;
  }
  
  .product-modal-buy {
    flex-direction: column;
    align-items: stretch;
  }
  
  .qty-stepper {
    justify-content: center;
  }
}

/* ----- Checkout Modal ----- */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(6, 12, 24, 0.88);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.checkout-overlay.open {
  opacity: 1;
  visibility: visible;
}

.checkout-modal {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(135deg, var(--twilight) 0%, var(--night-sky) 100%);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.checkout-overlay.open .checkout-modal {
  transform: translateY(0) scale(1);
}

.checkout-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.75);
  border: 1px solid rgba(201, 169, 98, 0.4);
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.checkout-close:hover,
.checkout-close:focus-visible {
  background: var(--gold);
  color: var(--midnight-deep);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.checkout-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  padding: 44px 40px 40px;
}

.checkout-body fieldset {
  border: none;
  margin: 0 0 30px;
  padding: 0;
}

.checkout-body legend {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid rgba(201, 169, 98, 0.25);
  padding-bottom: 10px;
}

.co-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-body .form-group {
  margin-bottom: 18px;
}

.checkout-body .form-group input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(74, 155, 140, 0.25);
  background: rgba(10, 22, 40, 0.6);
  color: var(--moonlight);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.checkout-body .form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
}

.co-error {
  color: #e08a7a;
  font-size: 0.75rem;
  margin-top: 6px;
  min-height: 1em;
}

.co-brand {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.co-paymethods {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.co-paymethod {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(74, 155, 140, 0.2);
  background: rgba(10, 22, 40, 0.45);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.co-paymethod:hover {
  border-color: rgba(201, 169, 98, 0.4);
}

.co-paymethod.selected {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(201, 169, 98, 0.15);
}

.co-paymethod input[type="radio"],
.co-saved-use input[type="radio"],
.co-save-card input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.co-pay-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.co-pay-label {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.co-pay-label strong {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
}

.co-pay-label small {
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.75rem;
}

.co-saved {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 98, 0.45);
  background: rgba(201, 169, 98, 0.08);
  margin-bottom: 14px;
}

.co-saved-use {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--gold-light);
}

.co-saved-remove {
  background: none;
  border: 1px solid rgba(224, 138, 122, 0.5);
  color: #e08a7a;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.co-saved-remove:hover {
  background: rgba(224, 138, 122, 0.15);
}

.co-save-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.7);
}

.co-demo-note {
  margin-top: 14px;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.03em;
}

.co-place {
  width: 100%;
  margin-top: 6px;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(201, 169, 98, 0.35);
  border-top-color: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.checkout-summary {
  background: rgba(10, 22, 40, 0.45);
  border: 1px solid rgba(74, 155, 140, 0.15);
  border-radius: 18px;
  padding: 26px 22px;
  align-self: start;
  position: sticky;
  top: 0;
}

.checkout-summary h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.co-items {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.co-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.co-item-qty {
  color: var(--gold);
  font-weight: 600;
  min-width: 26px;
}

.co-item-name {
  flex: 1;
  color: var(--moonlight);
}

.co-item-price {
  color: var(--gold-light);
  font-family: var(--font-display);
}

.co-totals {
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  padding-top: 14px;
  display: grid;
  gap: 8px;
}

.co-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.85);
}

.co-grand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  border-top: 1px dashed rgba(201, 169, 98, 0.3);
  padding-top: 10px;
  margin-top: 4px;
}

.co-secure {
  margin-top: 16px;
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.5;
}

/* Success view */
.checkout-success {
  padding: 70px 40px 60px;
  text-align: center;
}

.co-success-icon {
  font-size: 3.6rem;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(201, 169, 98, 0.6);
  animation: twinkle 2.4s ease-in-out infinite;
  margin-bottom: 14px;
}

.checkout-success h3 {
  color: var(--gold);
  margin-bottom: 8px;
}

.co-order-number {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.co-success-msg {
  color: rgba(245, 240, 232, 0.8);
  max-width: 460px;
  margin: 0 auto 26px;
  font-size: 0.92rem;
}

.co-success-msg code {
  color: var(--gold-light);
  background: rgba(201, 169, 98, 0.12);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 0.85em;
}

.co-success-summary {
  max-width: 480px;
  margin: 0 auto 30px;
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 16px;
  padding: 18px 22px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.co-success-line {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  font-size: 0.85rem;
}

.co-success-line span:first-child {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding-top: 2px;
}

.co-success-line span:last-child {
  color: rgba(245, 240, 232, 0.85);
}

@media (max-width: 820px) {
  .checkout-body {
    grid-template-columns: 1fr;
    padding: 40px 22px 30px;
  }
  
  .checkout-summary {
    position: static;
    order: -1;
  }
  
  .co-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .checkout-success {
    padding: 50px 22px 40px;
  }
}

/* ----- Responsive Adjustments ----- */
@media (max-width: 600px) {
  html {
    font-size: 16px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .hero {
    min-height: 90vh;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .founder-section {
    padding: 30px 20px;
  }
  
  .newsletter-section {
    padding: 50px 24px;
    margin: 0;
    border-radius: 20px;
  }
  
  .zodiac-icon {
    width: 100px;
    height: 100px;
  }
  
  .zodiac-icon svg {
    width: 75px;
    height: 75px;
  }
  
  .zodiac-item {
    width: 110px;
  }
  
  .scroll-indicator {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }
  
  .scroll-badge {
    width: 46px;
    height: 46px;
  }
  
  .scroll-badge svg {
    width: 19px;
    height: 19px;
  }
}
