/* ================= ROOT / GLOBAL ================= */

:root {
  --color-bg: #050505;
  --color-card: #141010;
  --color-gold: #e0b96a;
  --color-gold-soft: #f2d6a2;
  --color-red: #b01624;
  --color-text: #f7f3ea;
  --color-muted: #b39a73;

  --font-heading: "Playfair Display", "Times New Roman", serif;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  background-color: #050505; /* keep overscroll / page background black */
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #2a1810 0, #050505 55%);
  color: var(--color-text);
  font-family: var(--font-body);
  transition: background 0.5s ease, background-image 0.5s ease;
}

body.bg-dark {
  background-image: none !important;
  background: #050505;
}

/* Simple layout helper */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Basic section spacing (we’ll reuse later) */
.section {
  padding: 5rem 0;
}

/* ================= NAVBAR ================= */

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 1000;
  background: transparent;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
  pointer-events: none; /* lets the nav feel like it floats above */
}

.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(224, 185, 106, 0.18), rgba(176, 22, 36, 0.35));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  pointer-events: auto; /* re-enable interaction inside bar */
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  margin-right: 0.75rem;
  box-shadow: 0 0 0 1px rgba(224, 185, 106, 0.9);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(224, 185, 106, 0.85);
  background: radial-gradient(circle at 20% 0, #ff3747 0, #5b020d 48%, #050505 100%);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text);
  transition: color 0.2s ease;
}

/* Gold underline hover effect */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-soft));
  transition: width 0.22s ease-out;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle (hamburger) */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-gold);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ========== MOBILE STYLES ========== */

@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    inset: var(--nav-height) 0 auto 0;
    padding: 1.25rem 1.5rem 1.75rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(224, 185, 106, 0.35);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  }

  .nav-links.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  /* Toggle animation (simple X) */
  .nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
  }
  .nav-toggle.active .nav-toggle-line:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }
}

/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0 5rem;
  background: transparent; /* body handles background image */
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  max-width: 640px;
  width: 100%;
  padding: 2.8rem 2.4rem 2.4rem;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(224, 185, 106, 0.16), transparent 60%),
              rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(224, 185, 106, 0.55);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  text-align: center;
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hero-title {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  line-height: 1.12;
  color: var(--color-gold);
}

.hero-title-line {
  display: block;
  color: var(--color-text);
}

.hero-subtitle {
  margin: 0 0 1.8rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.hero-note {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ================= BUTTONS ================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at top, #ff4155 0, var(--color-red) 50%, #3a020a 100%);
  color: var(--color-text);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid rgba(224, 185, 106, 0.75);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
}

.btn-outline:hover {
  background: rgba(224, 185, 106, 0.09);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.85);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 5.2rem 0 4rem;
  }

  .hero-card {
    padding: 2.2rem 1.8rem 2.2rem;
    border-radius: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }
}
/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 6rem 0 6rem;
  background: #050505;
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.section-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-gold);
  margin: 0 0 1rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.about-highlights {
  display: grid;
  gap: 1.4rem;
}

.about-card {
  padding: 1.4rem 1.6rem;
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.65);
  border: 1px solid rgba(224, 185, 106, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
}

.about-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-gold);
  margin: 0 0 0.5rem;
}

.about-card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
}

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

  .section-eyebrow,
  .section-title {
    text-align: center;
  }
}

/* About section QR/business card image */
.about-card-image {
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(224, 185, 106, 0.45);
  background: #050505;
}

.about-card-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .about-card-image {
    display: none;
  }
}

/* ================= BOUQUETS SECTION ================= */

.bouquets-section {
  position: relative;
  padding: 6rem 0 6rem;
  /* blend from matte black back into the rose background */
  background:
    linear-gradient(
      to bottom,
      #050505 0%,
      rgba(5, 5, 5, 0.92) 12%,
      rgba(5, 5, 5, 0.75) 26%,
      rgba(5, 5, 5, 0.4) 52%,
      rgba(5, 5, 5, 0.12) 78%,
      transparent 100%
    );
}

.bouquets-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.bouquets-intro {
  max-width: 620px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 2rem;
}

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

.bouquet-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.85);
  border: 1px solid rgba(224, 185, 106, 0.35);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}

.bouquet-image {
  position: relative;
  overflow: hidden;
}

.bouquet-image img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease-out;
}

/* Nudge the third bouquet image down slightly so more of the bouquet is visible */
.bouquet-card:nth-child(3) .bouquet-image img {
  object-position: center 20%;
}

.bouquet-card:hover .bouquet-image img {
  transform: scale(1.06);
}

.bouquet-body {
  padding: 1.6rem 1.6rem 1.8rem;
}

.bouquet-tag {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.bouquet-name {
  margin: 0 0 0.7rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-gold-soft);
}

.bouquet-story {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* Bouquets responsive layout */
@media (max-width: 992px) {
  .bouquet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .bouquets-section {
    padding: 4.5rem 0 4.5rem;
  }

  .bouquets-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .bouquet-grid {
    grid-template-columns: 1fr;
  }

  .bouquet-body {
    text-align: left;
  }
}

/* ================= PRICING SECTION ================= */

.pricing-section {
  position: relative;
  padding: 6rem 0 6rem;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(14px);
}

.pricing-inner {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.pricing-heading {
  max-width: 560px;
}

.pricing-note {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

.pricing-sticker-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-sticker {
  width: 140px;
  max-width: 38vw;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.85));
  transform-origin: center center;
  transform: translateZ(0);
}

/* Spin animation is only active when .spin-active is applied via JS */
@keyframes pricing-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pricing-sticker.spin-active {
  animation: pricing-spin 16s linear infinite;
}

/* Pricing grid layout */

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

.pricing-column {
  padding: 1.8rem 1.8rem 2.1rem;
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.88);
  border: 1px solid rgba(224, 185, 106, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.9);
}

.pricing-subtitle {
  margin: 0 0 1.1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-gold-soft);
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 0.35rem 0;
}

.pricing-item-name {
  white-space: nowrap;
}

.pricing-item-dots {
  border-bottom: 1px dotted rgba(179, 154, 115, 0.7);
  margin: 0 0.25rem;
}

.pricing-item-price {
  white-space: nowrap;
  color: var(--color-gold-soft);
}

.pricing-footnote {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.pricing-small-print {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: right;
  opacity: 0.9;
}

/* Responsive styles for Pricing */

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

  .pricing-small-print {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 4.5rem 0 4.5rem;
  }

  .pricing-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pricing-heading {
    max-width: 100%;
  }

  .pricing-sticker {
    width: 120px;
  }

  .pricing-footnote {
    text-align: center;
  }
}

/* ================= CUSTOM ORDERS SECTION ================= */

.custom-orders-section {
  position: relative;
  padding: 6rem 0 6rem;
  background: radial-gradient(circle at top, rgba(224, 185, 106, 0.09), transparent 52%),
    rgba(5, 5, 5, 0.9);
}

.custom-orders-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.custom-orders-intro {
  max-width: 640px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 1.5rem;
}

.custom-order-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.order-panel {
  padding: 1.8rem 1.7rem 1.9rem;
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.9);
  border: 1px solid rgba(224, 185, 106, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.9);
}

.order-panel-header {
  margin-bottom: 1.4rem;
}

.order-panel-title {
  margin: 0 0 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-gold-soft);
}

.order-panel-subtitle {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.optional-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

/* Ribbon grids */

.ribbon-grid {
  display: grid;
  gap: 1rem;
}

.ribbon-grid-primary {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ribbon-grid-secondary {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ribbon-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.5rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(224, 185, 106, 0.45);
  background: radial-gradient(circle at top, rgba(224, 185, 106, 0.18), transparent 60%),
    rgba(5, 5, 5, 0.9);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.16s ease,
    background 0.18s ease;
}

.ribbon-option-secondary {
  background: rgba(5, 5, 5, 0.92);
}

.ribbon-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.8);
}

.ribbon-option.is-selected {
  border-color: rgba(242, 214, 162, 0.95);
  box-shadow: 0 0 0 1px rgba(242, 214, 162, 0.65), 0 20px 44px rgba(0, 0, 0, 0.95);
}

.ribbon-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1; /* make the image area a square */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
}

.ribbon-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the square nicely */
}

.ribbon-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: center;
}

/* Add-ons */

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.4rem;
}

.addon-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.addon-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-gold-soft);
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.addon-option input[type="checkbox"]:checked {
  background: var(--color-gold-soft);
  border-color: var(--color-gold);
}
.addon-option input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}

.addon-label-main {
  font-weight: 500;
}

.addon-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.addons-quantity-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.addon-quantity {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.addon-quantity input[type="number"] {
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(224, 185, 106, 0.5);
  background: #050505;
  color: var(--color-text);
  font-family: var(--font-body);
}


.addon-quantity input[type="number"]:focus {
  outline: none;
  border-color: rgba(242, 214, 162, 0.9);
  box-shadow: 0 0 0 1px rgba(242, 214, 162, 0.6);
}

/* Rose count slider */

.rose-slider-row {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
}

.rose-slider-wrapper {
  width: 100%;
  max-width: 640px;
  padding: 0.85rem 1.3rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 185, 106, 0.55);
  background: radial-gradient(circle at top, rgba(224, 185, 106, 0.12), transparent 55%),
    rgba(5, 5, 5, 0.96);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.rose-slider-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.rose-slider-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.rose-slider-count {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-gold-soft);
}

/* Slider track + thumb */

.rose-slider-input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(224, 185, 106, 0.25), rgba(176, 22, 36, 0.45));
  outline: none;
}

.rose-slider-input::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-soft));
}
.rose-slider-input::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-soft));
}

/* WebKit (Chrome / Safari) thumb */
.rose-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 0, #ff4155 0, var(--color-red) 55%, #050505 100%);
  border: 2px solid #050505;
  box-shadow: 0 0 0 1px rgba(224, 185, 106, 0.8), 0 10px 22px rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

/* Firefox thumb */
.rose-slider-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 0, #ff4155 0, var(--color-red) 55%, #050505 100%);
  border: 2px solid #050505;
  box-shadow: 0 0 0 1px rgba(224, 185, 106, 0.8), 0 10px 22px rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.rose-slider-input::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(224, 185, 106, 0.25), rgba(176, 22, 36, 0.45));
}

/* Flower Count Panel */
.flower-count-panel {
  margin-top: 1.25rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 185, 106, 0.55);
  background: radial-gradient(circle at top, rgba(224, 185, 106, 0.12), transparent 55%),
    rgba(5, 5, 5, 0.95);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.55rem;
  color: var(--color-text);
}

.flower-count-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}


.flower-count-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-gold-soft);
  min-width: 2ch;
  text-align: center;
}

/* Cost summary panel */

.order-panel-cost {
  margin-top: 0.5rem;
}

.cost-panel-body {
  margin-top: 1.25rem;
}

.cost-breakdown-list {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
}

.cost-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.cost-row:last-child {
  border-bottom: none;
}

.cost-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.78);
}

.cost-amount {
  font-variant-numeric: tabular-nums;
  color: var(--color-gold-soft);
}

.cost-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-total-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
}

.cost-total-amount {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
}

.cost-note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-muted);
  opacity: 0.8;
}

/* Details & contact */

.order-details-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  gap: 1.75rem;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.required-indicator {
  color: var(--color-gold-soft);
}

.order-details-field textarea {
  width: 100%;
  min-height: 140px;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(224, 185, 106, 0.5);
  background: #050505;
  color: var(--color-text);
  font-family: var(--font-body);
  resize: vertical;
}

.order-contact-fields {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.order-contact-field input[type="text"],
.order-contact-field input[type="tel"] {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(224, 185, 106, 0.5);
  background: #050505;
  color: var(--color-text);
  font-family: var(--font-body);
}

.order-contact-field input:focus,
.order-details-field textarea:focus {
  outline: none;
  border-color: rgba(242, 214, 162, 0.9);
  box-shadow: 0 0 0 1px rgba(242, 214, 162, 0.6);
}

/* Submit row */

.order-submit-row {
  margin-top: 0.5rem;
  display: flex;
  justify-content: flex-end;
}

.btn-full {
  width: 100%;
  max-width: 320px;
}

/* ================= ORDER MODAL ================= */

.order-modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
  z-index: 1200;
}

.order-modal-overlay--open {
  opacity: 1;
  pointer-events: auto;
}

.order-modal {
  max-width: 420px;
  width: calc(100% - 3rem);
  background: #050505;
  border-radius: 20px;
  border: 1px solid rgba(224, 185, 106, 0.6);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.95);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  position: relative;
}

.order-modal--open {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.order-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  border: none;
  background: transparent;
  color: var(--color-gold-soft);
  font-size: 1.4rem;
  cursor: pointer;
}

.order-modal-body {
  padding: 1.9rem 1.7rem 1.7rem;
  text-align: center;
}

.order-modal-title {
  margin: 0 0 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold-soft);
}

.order-modal-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* Responsive: Custom Orders */

@media (max-width: 992px) {
  .ribbon-grid-primary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ribbon-grid-secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .custom-orders-section {
    padding: 4.5rem 0 4.5rem;
  }

  .custom-orders-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .ribbon-grid-primary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ribbon-grid-secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rose-slider-wrapper {
    border-radius: 18px;
    padding: 0.8rem 1.1rem 0.95rem;
  }

  .rose-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .flower-count-panel {
    margin-top: 1rem;
  }

  .order-submit-row {
    justify-content: center;
  }
}

/* ================= POLICY SECTION ================= */

.policy-section {
  position: relative;
  padding: 6rem 0 6rem;
  background: #050505;
}

.policy-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: flex-start;
}

.policy-main {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.policy-lead {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--color-text);
  margin: 0;
}

.policy-points-card {
  padding: 1.7rem 1.6rem 1.8rem;
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.9);
  border: 1px solid rgba(224, 185, 106, 0.45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.9);
}

.policy-card-title {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-gold-soft);
}

.policy-points-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.policy-point {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.policy-point-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.policy-point-text {
  font-size: 0.92rem;
  color: var(--color-text);
}

.policy-detail {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.policy-subheading {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-gold-soft);
}

.policy-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* Policy FAQ */

.policy-faq {
  margin-top: 3.2rem;
  padding-top: 2.3rem;
  border-top: 1px solid rgba(224, 185, 106, 0.3);
}

.policy-faq .policy-subheading {
  margin-bottom: 1.2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 1.1rem;
  color: var(--color-gold-soft);
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq-answer p {
  margin: 0.1rem 0 0.4rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text);
}

.faq-item.is-open .faq-answer {
  max-height: 400px; /* enough for 3–5 sentences */
  opacity: 1;
  transform: translateY(0);
}

.faq-item.is-open .faq-toggle-icon {
  transform: rotate(45deg); /* + becomes x-ish */
}

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

@media (max-width: 768px) {
  .policy-section {
    padding: 4.5rem 0 4.5rem;
  }

  .policy-grid {
    gap: 2.25rem;
  }

  .policy-main,
  .policy-detail {
    text-align: left;
  }
}

/* ================= GALLERY SECTION ================= */

.gallery-section {
  position: relative;
  padding: 6rem 0 6rem;
  background: #050505;
}

.gallery-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.gallery-header {
  max-width: 640px;
  margin: 0 auto 0;
  text-align: center;
}

.gallery-intro {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* Rows */

.gallery-rows {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gallery-row {
  position: relative;
  padding: 2.4rem 0; /* slightly shorter so the whole row fits on screen */
  border-radius: 20px;
  background: radial-gradient(circle at top, rgba(224, 185, 106, 0.06), transparent 55%),
    rgba(5, 5, 5, 0.96);
  border: 1px solid rgba(224, 185, 106, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  overflow: hidden; /* keep the rounded rectangle clean */
}

/* Track that scrolls horizontally */

.gallery-track {
  display: flex;
  gap: 1.25rem;
  padding: 0 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbars (Chrome / Safari / Edge) */
.gallery-track::-webkit-scrollbar {
  height: 0;
}

/* Firefox */
.gallery-track {
  scrollbar-width: none;
}

/* Individual image cards */

.gallery-item {
  flex: 0 0 190px;
  max-width: 190px;
  height: 230px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition: transform 0.25s ease-out, filter 0.25s ease-out, box-shadow 0.25s ease-out,
    opacity 0.25s ease-out;
  filter: grayscale(0.2) brightness(0.45);
  opacity: 0.45;
  transform: scale(0.9);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.75);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop instead of squeezing */
  object-position: center;
}

/* Active (centered / focused) item — JS adds .is-active */

.gallery-item.is-active,
.gallery-item.is-centered {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(224, 185, 106, 0.7);
}

/* Soft gradient fade on the left / right edges */

.gallery-row::before,
.gallery-row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  pointer-events: none;
  z-index: 2;
}

.gallery-row::before {
  left: 0;
  background: linear-gradient(to right, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0));
}

.gallery-row::after {
  right: 0;
  background: linear-gradient(to left, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0));
}

/* Responsive tweaks for Gallery */

@media (max-width: 992px) {
  .gallery-row {
    padding-inline: 0.5rem;
  }

  .gallery-track {
    padding-inline: 1.5rem;
  }

  .gallery-item {
    flex-basis: 170px;
    max-width: 170px;
    height: 210px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 4.5rem 0 4.5rem;
  }

  .gallery-header {
    text-align: center;
  }

  .gallery-track {
    padding-inline: 1.2rem;
  }

  .gallery-item {
    flex-basis: 150px;
    max-width: 150px;
    height: 190px;
  }
}

/* ================= CONTACT SECTION ================= */

.contact-section {
  position: relative;
  padding: 6rem 0 6rem;
  background: #050505;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 640px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: stretch;
}

.contact-card {
  padding: 1.8rem 1.6rem 1.9rem;
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.9);
  border: 1px solid rgba(224, 185, 106, 0.45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.9);
}

.contact-subheading {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-gold-soft);
}

.contact-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.contact-value {
  font-size: 0.95rem;
  color: var(--color-text);
  text-decoration: none;
}

.contact-value:hover {
  color: var(--color-gold-soft);
}

.contact-note {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
}

.contact-map-text {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
}

.contact-map-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(224, 185, 106, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

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

@media (max-width: 768px) {
  .contact-section {
    padding: 4.5rem 0 4.5rem;
  }

  .contact-map-embed iframe {
    height: 220px;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  padding: 2.8rem 0 2.4rem;
  background: radial-gradient(circle at top, rgba(224, 185, 106, 0.08), transparent 55%),
    #050505;
  border-top: 1px solid rgba(224, 185, 106, 0.45);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
}

.footer-brand-row {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.4rem;
}

.footer-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-gold-soft);
  transform: translateY(-1px);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(224, 185, 106, 0.5);
  background: radial-gradient(circle at top, rgba(224, 185, 106, 0.18), transparent 60%),
    rgba(5, 5, 5, 0.95);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.8);
  color: var(--color-gold-soft);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 241, 208, 0.9);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-icon img {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
  display: block;
}

.footer-social-link img {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
  display: block;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2.4rem 0 2rem;
  }

  .footer-nav {
    gap: 0.7rem 1rem;
  }
}