:root {
  /* Ultra-Premium Champagne & Rose Gold Aesthetic */
  --bg-main: #faf6f0;
  --bg-sub: #f2e9de;
  --bg-card: #ffffff;
  --bg-card-hover: #fffdfa;

  --rose-primary: #e05e68;
  --rose-deep: #c94651;
  --rose-light: #f8c3c7;
  --rose-glow: rgba(224, 94, 104, 0.28);

  --gold-champagne: #c9935a;
  --gold-accent: #b57e45;
  --gold-light: #f6ebd9;
  --gold-glow: rgba(201, 147, 90, 0.22);

  --text-main: #241d1b;
  --text-soft: #5c4f48;
  --text-muted: #968880;

  --border-gold: rgba(201, 147, 90, 0.32);
  --border-rose: rgba(224, 94, 104, 0.25);
  --border-light: rgba(36, 29, 27, 0.07);

  --shadow-sm: 0 4px 18px rgba(160, 125, 100, 0.08);
  --shadow-md: 0 14px 36px rgba(160, 125, 100, 0.14);
  --shadow-lg: 0 28px 60px rgba(140, 95, 75, 0.18);

  --nav-h: 68px;
  --cta-h: 76px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --font-serif: "Cinzel", "Noto Sans TC", serif;
  --font-sans: "Noto Sans TC", system-ui, -apple-system, sans-serif;
  --font-num: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  background-image:
    radial-gradient(circle at 85% 5%, rgba(201, 147, 90, 0.24), transparent 55%),
    radial-gradient(circle at 10% 25%, rgba(224, 94, 104, 0.15), transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(201, 147, 90, 0.18), transparent 55%),
    radial-gradient(circle at 20% 85%, rgba(224, 94, 104, 0.12), transparent 50%),
    linear-gradient(180deg, #faf6f0 0%, #f4eae0 50%, #faf6f0 100%);
  background-attachment: fixed;
  padding-bottom: calc(var(--cta-h) + env(safe-area-inset-bottom, 0px));
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Floating Decorative Mesh Orbs */
body::before {
  content: "";
  position: absolute;
  top: 400px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 147, 90, 0.15), transparent 70%);
  pointer-events: none;
  animation: floatOrb 14s ease-in-out infinite alternate;
  z-index: 0;
}

body::after {
  content: "";
  position: absolute;
  top: 1400px;
  left: -120px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 94, 104, 0.12), transparent 70%);
  pointer-events: none;
  animation: floatOrb 18s ease-in-out infinite alternate-reverse;
  z-index: 0;
}

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

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

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--rose-primary);
  color: #ffffff;
  font-weight: bold;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

/* ==================== Top Announcement Bar ==================== */
.announcement-bar {
  position: relative;
  z-index: 45;
  background: linear-gradient(135deg, #2a2220, #423633);
  color: #ffffff;
  padding: 11px 16px;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.announcement-content {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announce-tag {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-deep));
  color: #ffffff;
  font-family: var(--font-num);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.12em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.announce-link {
  color: #f7dfb3;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.announce-link:hover {
  color: #ffffff;
}

/* ==================== Top Bar ==================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.topbar.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(250, 246, 240, 0.98);
  border-bottom-color: var(--border-gold);
}

.topbar-inner {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), #ffffff);
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(201, 147, 90, 0.2);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.brand-sub {
  color: var(--gold-accent);
  font-family: var(--font-num);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  font-weight: 700;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-deep));
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px var(--rose-glow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(224, 94, 104, 0.45);
}

.line-icon {
  flex-shrink: 0;
}

/* ==================== Hero Section ==================== */
.hero {
  position: relative;
  z-index: 1;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: flex-end;
  overflow: hidden;
  color: var(--text-main);
  padding: 50px 0 40px;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(201, 147, 90, 0.28), transparent 45%),
    radial-gradient(circle at 20% 70%, rgba(224, 94, 104, 0.16), transparent 50%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 246, 240, 0.2) 0%, rgba(250, 246, 240, 0.85) 65%, rgba(250, 246, 240, 0.98) 100%),
    url("assets/p_19.webp") center 30% / cover no-repeat;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
  filter: saturate(1.1) brightness(1.02);
}

.hero-moon {
  position: absolute;
  top: 6%;
  right: 7%;
  width: clamp(110px, 22vw, 180px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, #fdf5e6 40%, var(--gold-champagne) 70%, rgba(201, 147, 90, 0.2) 85%, transparent 88%);
  box-shadow: 0 0 90px rgba(201, 147, 90, 0.45), 0 0 35px rgba(224, 94, 104, 0.22);
  animation: moonGlow 5s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 50px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  animation: riseIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  font-family: var(--font-num);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--gold-accent);
  margin-bottom: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.sparkle {
  color: var(--rose-primary);
  animation: pulseSparkle 2s infinite alternate;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 8.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--text-main);
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--gold-accent) 60%, var(--rose-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  margin: 22px 0 0;
  max-width: 35em;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-soft);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-gold);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 500;
}

.trust-icon {
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-deep));
  color: #ffffff;
  box-shadow: 0 6px 24px var(--rose-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(224, 94, 104, 0.45);
}

.btn-ghost {
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: var(--gold-accent);
  color: var(--rose-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-block {
  width: 100%;
}

/* ==================== Service Features Bar ==================== */
.features-bar {
  max-width: 1240px;
  margin: -20px auto 40px;
  padding: 0 22px;
  position: relative;
  z-index: 10;
}

.features-inner {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .features-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(250, 246, 240, 0.7);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  background: var(--gold-light);
}

.feature-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-light), #ffffff);
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-text h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.feature-text p {
  margin: 4px 0 0;
  font-size: 0.84rem;
  color: var(--text-soft);
}

/* ==================== Main Section & Controls ==================== */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 22px 20px;
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: 36px;
  animation: riseIn 0.7s ease both;
}

.section-subtitle {
  font-family: var(--font-num);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  color: var(--gold-accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

.section-head p {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.02rem;
}

/* Catalog Controls: Tabs + Search */
.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 44px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-gold);
}

@media (min-width: 800px) {
  .catalog-controls {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.cat-tab:hover {
  border-color: var(--border-gold);
  color: var(--text-main);
  background: var(--bg-card-hover);
}

.cat-tab.is-active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
  box-shadow: var(--shadow-md);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-family: var(--font-num);
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.07);
  color: var(--text-muted);
}

.cat-tab.is-active .badge {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

/* Search Box */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 290px;
}

.search-icon {
  position: absolute;
  left: 16px;
  font-size: 0.95rem;
  pointer-events: none;
  opacity: 0.5;
}

.search-box input {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.search-box input:focus {
  outline: none;
  border-color: var(--rose-primary);
  box-shadow: 0 0 0 3px var(--rose-glow);
}

.search-clear {
  position: absolute;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* ==================== Grid & Product Cards ==================== */
.catalog-root {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.category-group {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.category-title-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-gold);
}

.category-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-main);
}

.category-count {
  font-family: var(--font-num);
  font-size: 0.82rem;
  color: var(--rose-deep);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (min-width: 680px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
  }
}

.card {
  appearance: none;
  border: 1px solid rgba(201, 147, 90, 0.25);
  padding: 0;
  text-align: left;
  background: var(--bg-card);
  cursor: pointer;
  color: inherit;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  animation: riseIn 0.6s ease both;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-champagne);
  background: var(--bg-card-hover);
}

.card:focus-visible {
  outline: 2px solid var(--rose-primary);
  outline-offset: 3px;
}

.card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ede6da;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-media img {
  transform: scale(1.07);
}

.card-num {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: rgba(36, 29, 27, 0.88);
  color: #ffffff;
  font-family: var(--font-num);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card-alcohol-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  background: var(--rose-primary);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.card-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-brand {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold-accent);
  font-weight: 700;
}

.card-name {
  margin: 6px 0 0;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
}

.card-footer {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.card-price .label {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.card-price .val {
  font-family: var(--font-num);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--rose-deep);
  letter-spacing: 0.02em;
}

.card-action-hint {
  font-size: 0.78rem;
  color: var(--gold-champagne);
  font-weight: 700;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 70px 20px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-gold);
  margin: 40px 0;
}

.empty-icon {
  font-size: 3.8rem;
  margin-bottom: 14px;
}

.empty-state h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text-main);
}

.empty-state p {
  color: var(--text-soft);
  margin: 10px 0 24px;
}

/* FAQ Section */
.faq-section {
  margin: 60px 0 20px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.faq-head h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-head p {
  margin: 8px 0 24px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}

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

.faq-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(250, 246, 240, 0.7);
  border: 1px solid var(--border-light);
}

.faq-q {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.faq-a {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* Note Callout */
.note {
  margin: 36px 0 20px;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-champagne);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.note-icon {
  font-size: 1.4rem;
  color: var(--gold-champagne);
  flex-shrink: 0;
}

.note-content {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.alcohol-warning {
  display: block;
  margin-top: 8px;
  color: var(--rose-deep);
}

/* ==================== Footer ==================== */
.footer {
  max-width: 1240px;
  margin: 50px auto 0;
  padding: 34px 22px calc(var(--cta-h) + 50px);
  border-top: 1px solid var(--border-gold);
  color: var(--text-muted);
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-main);
  font-weight: 700;
}

.brand-sparkle {
  color: var(--rose-primary);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--rose-deep);
  font-weight: 600;
  cursor: pointer;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ==================== Floating Sticky CTA ==================== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  box-shadow: 0 -10px 30px rgba(160, 125, 100, 0.14);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.sticky-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-top-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: #ffffff;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.floating-top-btn:hover {
  background: var(--rose-primary);
  color: #ffffff;
  border-color: var(--rose-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.online-status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 10px #34c759;
  animation: pulseDot 2s infinite;
}

.sticky-status-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-deep));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px var(--rose-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 94, 104, 0.45);
}

/* ==================== Lightbox Modal ==================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 29, 27, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-panel {
  position: relative;
  z-index: 2;
  width: min(580px, 100%);
  max-height: min(90vh, 890px);
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.lightbox.is-open .lightbox-panel {
  transform: scale(1) translateY(0);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(36, 29, 27, 0.78);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}

.lightbox-close:hover {
  background: var(--rose-primary);
  transform: rotate(90deg);
}

.lightbox-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4;
  background: #ede6da;
  overflow: hidden;
}

@media (min-height: 700px) {
  .lightbox-media {
    aspect-ratio: 3 / 3.4;
  }
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lightbox-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(36, 29, 27, 0.88);
  color: #ffffff;
  font-family: var(--font-num);
  font-size: 0.84rem;
  font-weight: 700;
}

.lightbox-meta {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lightbox-brand {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  color: var(--gold-accent);
  font-weight: 700;
  text-transform: uppercase;
}

.lightbox-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.4;
  color: var(--text-main);
  font-weight: 700;
}

.lightbox-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.price-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-val {
  font-family: var(--font-num);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--rose-deep);
}

.lightbox-notice {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(224, 94, 104, 0.1);
  border: 1px solid var(--border-rose);
  color: var(--rose-deep);
  font-size: 0.88rem;
  line-height: 1.55;
}

.lightbox-actions {
  margin-top: 10px;
}

/* ==================== Keyframe Animations ==================== */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.07) translateY(-2%); }
}

@keyframes moonGlow {
  from { opacity: 0.85; filter: drop-shadow(0 0 30px rgba(201, 147, 90, 0.3)); }
  to { opacity: 1; filter: drop-shadow(0 0 50px rgba(224, 94, 104, 0.4)); }
}

@keyframes pulseSparkle {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes floatOrb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-30px, 40px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
