/* =========================================================
   BLOOMÉRA FINAL REBUILD CSS
   Theme: maroon + ivory + dusty rose + champagne gold
   Product photos are now edited directly in each category HTML
========================================================= */

:root {
  --ivory: #fffaf4;
  --ivory-2: #f8efe7;
  --cream: #f4e3d8;
  --cream-2: #ead4c6;

  --maroon: #7a173a;
  --maroon-dark: #4e1028;
  --wine: #681331;
  --wine-soft: #9b4a62;

  --dusty-rose: #c98d9f;
  --dusty-rose-soft: #e8c8d1;

  --champagne: #d8b56a;
  --champagne-soft: #f1deaa;
  --gold: #c9a45d;

  --text: #2f1d22;
  --muted: #756062;
  --white: #ffffff;

  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", sans-serif;

  --shadow-soft: 0 18px 45px rgba(80, 42, 48, 0.11);
  --shadow-card: 0 14px 34px rgba(80, 42, 48, 0.10);
  --shadow-strong: 0 26px 64px rgba(80, 42, 48, 0.16);

  --transition: 0.35s ease;
}

/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 141, 159, 0.10), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(216, 181, 106, 0.12), transparent 26%),
    linear-gradient(135deg, var(--ivory) 0%, var(--ivory-2) 48%, var(--cream) 100%);
}

body.no-scroll {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

/* =========================================================
   CLEAN LUXURY BACKGROUND
========================================================= */

.decorative-section {
  position: relative;
  overflow: hidden;
  padding: 68px 8%;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 141, 159, 0.12), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(216, 181, 106, 0.12), transparent 26%),
    radial-gradient(circle at 78% 86%, rgba(201, 141, 159, 0.08), transparent 30%),
    linear-gradient(135deg, #fffaf4 0%, #f8efe7 48%, #f4e3d8 100%);
}

.decorative-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 30%, rgba(201, 141, 159, 0.18) 0 7px, transparent 8px),
    radial-gradient(ellipse at 82% 28%, rgba(216, 181, 106, 0.18) 0 6px, transparent 7px),
    radial-gradient(ellipse at 72% 78%, rgba(201, 141, 159, 0.14) 0 7px, transparent 8px),
    radial-gradient(ellipse at 24% 82%, rgba(216, 181, 106, 0.14) 0 6px, transparent 7px);
  opacity: 0.55;
}

.clean-luxury-bg {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 141, 159, 0.14), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(216, 181, 106, 0.14), transparent 26%),
    radial-gradient(circle at 78% 86%, rgba(201, 141, 159, 0.10), transparent 30%),
    linear-gradient(135deg, #fffaf4 0%, #f8efe7 48%, #f4e3d8 100%);
}

.clean-luxury-bg::after {
  content: "✦";
  position: absolute;
  right: 8%;
  top: 18%;
  color: rgba(216, 181, 106, 0.55);
  font-size: 19px;
  z-index: 0;
  pointer-events: none;
}

.about-wrap,
.section-heading,
.services-grid,
.collections-mosaic,
.gallery-carousel,
.testimonial-slider,
.contact-wrap,
.size-guide-grid,
.product-grid,
.size-note {
  position: relative;
  z-index: 2;
}

/* =========================================================
   PETALS
========================================================= */

.petals-layer {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -50px;
  width: 12px;
  height: 18px;
  border-radius: 80% 20% 80% 20%;
  opacity: 0.36;
  background: linear-gradient(135deg, #b85f78, #e6b6c1);
  animation: petalFall linear infinite;
}

.petal.alt {
  background: linear-gradient(135deg, #a1445f, #d99aaa);
  opacity: 0.30;
}

.petal.gold {
  background: linear-gradient(135deg, #caa45d, #f1d999);
  opacity: 0.24;
}

@keyframes petalFall {
  0% {
    transform: translateY(-70px) translateX(0) rotate(0deg);
  }

  50% {
    transform: translateY(54vh) translateX(22px) rotate(170deg);
  }

  100% {
    transform: translateY(112vh) translateX(-18px) rotate(360deg);
  }
}

/* =========================================================
   NAVBAR
========================================================= */

.site-header {
  width: min(1140px, calc(100% - 44px));
  min-height: 64px;

  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 999;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 10px 15px 10px 22px;
  border-radius: 999px;

  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);

  box-shadow: 0 14px 38px rgba(70, 36, 43, 0.13);
  transition: var(--transition);
}

.site-header.scrolled {
  top: 10px;
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 18px 46px rgba(70, 36, 43, 0.17);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: var(--serif);
  font-size: 33px;
  line-height: 1;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-mark {
  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;
  border-radius: 50%;

  color: var(--maroon);
  background: linear-gradient(135deg, var(--champagne-soft), var(--champagne));
  box-shadow: 0 10px 24px rgba(201, 164, 93, 0.22);

  font-size: 15px;
  flex: 0 0 auto;
}

.logo-text {
  display: inline-block;
  color: var(--maroon);
  font-family: var(--serif);
  line-height: 1;
}

.logo-accent {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  font-style: italic;
  margin-left: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  position: relative;
  color: rgba(47, 29, 34, 0.84);
  font-size: 13px;
  font-weight: 760;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--champagne), var(--dusty-rose));
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--maroon);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-order-btn {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 0 21px;
  border-radius: 999px;

  color: var(--white);
  background: linear-gradient(135deg, var(--maroon) 0%, var(--wine) 58%, var(--dusty-rose) 100%);
  box-shadow: 0 14px 34px rgba(122, 23, 58, 0.25);

  font-size: 13px;
  font-weight: 850;
  transition: var(--transition);
}

.nav-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(122, 23, 58, 0.32);
}

.nav-order-btn i {
  font-size: 12px;
  color: var(--white);
}

.hamburger {
  width: 42px;
  height: 42px;
  position: relative;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 181, 106, 0.16);
}

.hamburger span {
  width: 18px;
  height: 2px;
  position: absolute;
  border-radius: 999px;
  background: var(--maroon);
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  transform: translateY(-6px);
}

.hamburger span:nth-child(3) {
  transform: translateY(6px);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

/* =========================================================
   BUTTONS + SHINE
========================================================= */

.btn {
  min-height: 47px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 0 25px;
  border-radius: 999px;

  font-size: 13.5px;
  font-weight: 850;
  transition: var(--transition);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--maroon) 0%, var(--wine) 58%, var(--dusty-rose) 100%);
  box-shadow: 0 16px 36px rgba(122, 23, 58, 0.25);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(122, 23, 58, 0.34);
}

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.17);
}

.btn-gold {
  color: var(--maroon-dark);
  background: linear-gradient(135deg, var(--champagne-soft), var(--champagne));
  box-shadow: 0 16px 34px rgba(201, 164, 93, 0.24);
}

.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(201, 164, 93, 0.34);
}

.shine-card {
  position: relative;
  overflow: hidden;
}

.shine-card::after {
  content: "";
  width: 45%;
  height: 180%;
  position: absolute;
  top: -44%;
  left: -95%;
  z-index: 4;
  transform: rotate(24deg);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.56),
    transparent
  );

  transition: 0.78s ease;
  pointer-events: none;
}

.shine-card:hover::after {
  left: 135%;
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;

  display: grid;
  align-items: center;

  padding: 126px 8% 82px;
}

.hero-bg-slider,
.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  opacity: 0;
  transition: opacity 1.15s ease;
}

.hero-bg.active {
  opacity: 1;
}

.hero-bg img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroBreath 9s ease-in-out infinite alternate;
}

@keyframes heroBreath {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(78, 16, 40, 0.86) 0%, rgba(122, 23, 58, 0.62) 46%, rgba(78, 16, 40, 0.18) 100%),
    linear-gradient(180deg, rgba(47, 29, 34, 0.14), rgba(47, 29, 34, 0.42));
}

.hero-content {
  width: min(960px, 100%);
  position: relative;
  z-index: 3;
  color: var(--white);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-badges span {
  min-height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 15px;
  border-radius: 999px;

  color: var(--champagne-soft);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(216, 181, 106, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 12px;
  font-weight: 850;
}

.hero-content h1 {
  max-width: 800px;
  margin-bottom: 24px;

  font-family: var(--serif);
  font-size: clamp(50px, 6.4vw, 88px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -1.1px;

  color: #fff4e3;
  -webkit-text-fill-color: #fff4e3;
  text-shadow: 0 8px 28px rgba(64, 12, 30, 0.38);
}

.hero-content p {
  max-width: 730px;
  margin-bottom: 28px;

  color: rgba(255, 250, 244, 0.88);
  font-size: 15.5px;
  line-height: 1.82;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-buttons a {
  color: var(--white);
}

.hero-dots {
  position: absolute;
  left: 8%;
  bottom: 30px;
  z-index: 4;

  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: var(--transition);
}

.hero-dot.active {
  width: 32px;
  background: linear-gradient(90deg, var(--champagne), var(--dusty-rose));
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 12px;

  color: #b8893d;
  -webkit-text-fill-color: #b8893d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(216, 181, 106, 0.22);
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  margin: 0 10px;
  display: inline-block;
  vertical-align: middle;
  background: linear-gradient(90deg, transparent, #d8b56a, transparent);
}

.section-heading h2,
.about-text h2,
.contact-info h2 {
  margin: 0 auto 16px;

  font-family: var(--serif);
  color: var(--maroon);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -0.7px;
}

.section-heading p,
.about-text p,
.contact-info p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.72;
}

/* =========================================================
   ABOUT
========================================================= */

.about-section {
  padding-top: 66px;
  padding-bottom: 60px;
}

.soft-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orb-about-1 {
  width: 190px;
  height: 190px;
  left: -65px;
  top: 55px;
  background: radial-gradient(circle, rgba(201, 141, 159, 0.18), transparent 70%);
}

.orb-about-2 {
  width: 210px;
  height: 210px;
  right: -75px;
  bottom: 34px;
  background: radial-gradient(circle, rgba(216, 181, 106, 0.18), transparent 72%);
}

.about-wrap {
  width: min(1080px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;

  padding: 48px 58px;
  border-radius: 38px;

  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.94), rgba(244, 227, 216, 0.88));

  border: 1px solid rgba(216, 181, 106, 0.34);
  box-shadow: var(--shadow-soft);
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-frame {
  width: 318px;
  aspect-ratio: 4 / 5.1;
  position: relative;

  overflow: hidden;
  border-radius: 50% / 38%;

  background: var(--cream);
  border: 1.5px solid rgba(216, 181, 106, 0.58);
  box-shadow:
    0 18px 42px rgba(80, 42, 48, 0.12),
    0 0 0 10px rgba(216, 181, 106, 0.07);
}

.about-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  border-radius: 50% / 38%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  max-width: 560px;
  margin-left: 0;
}

.about-text p {
  max-width: 620px;
  margin-bottom: 13px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.about-tags span {
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 0 16px;
  border-radius: 999px;

  color: var(--maroon);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.95), rgba(232, 200, 209, 0.52));
  border: 1px solid rgba(216, 181, 106, 0.42);
  box-shadow:
    0 12px 25px rgba(80, 42, 48, 0.08),
    0 0 20px rgba(216, 181, 106, 0.10);

  font-size: 12px;
  font-weight: 850;
  transition: var(--transition);
}

.about-tags span:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 32px rgba(80, 42, 48, 0.12),
    0 0 26px rgba(216, 181, 106, 0.18);
}

.about-tags svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  stroke-width: 2.2;
  flex: 0 0 auto;
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
  padding-top: 62px;
  padding-bottom: 64px;
}

.services-grid {
  width: min(1040px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 205px;

  padding: 30px 30px;
  border-radius: 30px;

  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(244, 227, 216, 0.88));

  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);

  cursor: pointer;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 24px 55px rgba(80, 42, 48, 0.15),
    0 0 28px rgba(216, 181, 106, 0.17);
}

.service-card:active {
  transform: translateY(-3px) scale(0.985);
}

.service-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 20px;

  color: var(--gold);
  stroke-width: 1.9;

  transition: var(--transition);
}

.service-card:hover svg {
  transform: translateY(-4px) rotate(-5deg) scale(1.08);
}

.service-card h3 {
  margin-bottom: 12px;

  color: var(--maroon);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.service-card p {
  max-width: 310px;

  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================
   COLLECTIONS
========================================================= */

.collections-section {
  position: relative;
  overflow: hidden;

  padding: 74px 8% 76px;

  background:
    radial-gradient(ellipse at 10% 16%, rgba(201, 141, 159, 0.13), transparent 34%),
    radial-gradient(ellipse at 88% 20%, rgba(216, 181, 106, 0.14), transparent 32%),
    linear-gradient(135deg, var(--ivory) 0%, var(--ivory-2) 50%, var(--cream) 100%);
}

.collections-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 16% 30%, rgba(201, 141, 159, 0.18) 0 7px, transparent 8px),
    radial-gradient(ellipse at 86% 24%, rgba(216, 181, 106, 0.20) 0 6px, transparent 7px),
    radial-gradient(ellipse at 24% 82%, rgba(216, 181, 106, 0.15) 0 6px, transparent 7px);
  opacity: 0.55;
  z-index: 0;
}

.collection-soft-flower {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
  border-radius: 50%;
}

.flower-left {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 95px;
  background: radial-gradient(circle, rgba(201, 141, 159, 0.55), transparent 70%);
}

.flower-right {
  width: 290px;
  height: 290px;
  right: -105px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(216, 181, 106, 0.50), transparent 72%);
}

.collections-heading h2 {
  color: var(--maroon);
}

.collections-heading p {
  color: var(--muted);
}

.collections-mosaic {
  width: min(1080px, 100%);
  height: 640px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 16px;
}

.collection-card {
  position: relative;
  overflow: hidden;

  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 22px 55px rgba(80, 42, 48, 0.14);

  isolation: isolate;
  transition: var(--transition);
}

.collection-wedding {
  grid-column: 1 / span 3;
  grid-row: 1 / span 5;
}

.collection-graduation {
  grid-column: 4 / span 3;
  grid-row: 1 / span 2;
}

.collection-flower-box {
  grid-column: 7 / span 3;
  grid-row: 1 / span 2;
}

.collection-standing {
  grid-column: 10 / span 3;
  grid-row: 1 / span 5;
}

.collection-anniversary {
  grid-column: 4 / span 6;
  grid-row: 3 / span 3;
}

.collection-custom {
  grid-column: 1 / span 6;
  grid-row: 6 / span 3;
}

.collection-money {
  grid-column: 7 / span 2;
  grid-row: 6 / span 3;
}

.collection-snack {
  grid-column: 9 / span 4;
  grid-row: 6 / span 3;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.05);
  filter: saturate(1) brightness(1);
  transition: 0.65s ease;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(180deg, rgba(35, 10, 18, 0.02) 0%, rgba(35, 10, 18, 0.52) 100%);

  opacity: 0;
  transition: var(--transition);
}

.collection-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;

  color: #fff4e3;

  opacity: 0;
  transform: translateY(14px);
  transition: var(--transition);
}

.collection-content svg {
  width: 30px;
  height: 24px;
  color: #fff4e3;
  stroke-width: 1.8;
  filter: drop-shadow(0 6px 16px rgba(35, 10, 18, 0.28));
}

.collection-content h3 {
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 0.96;
  font-weight: 700;
  color: #fff4e3;
  text-shadow: 0 6px 20px rgba(35, 10, 18, 0.45);
}

.collection-content span {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;
  border-radius: 50%;

  color: var(--maroon);
  background: var(--champagne-soft);

  font-size: 17px;
  font-weight: 900;
}

.collection-graduation .collection-content,
.collection-flower-box .collection-content {
  gap: 15px;
}

.collection-graduation .collection-content svg,
.collection-flower-box .collection-content svg {
  transform: translateY(7px);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 72px rgba(80, 42, 48, 0.20);
}

.collection-card:hover img {
  transform: scale(1.01);
  filter: saturate(1) brightness(0.92);
}

.collection-card:hover::before,
.collection-card:hover .collection-content {
  opacity: 1;
}

.collection-card:hover .collection-content {
  transform: translateY(0);
}

/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.gallery-carousel {
  width: min(920px, 100%);
  position: relative;
  margin: 0 auto;
  padding: 6px 0 48px;
}

.gallery-stage {
  height: 330px;
  position: relative;

  display: grid;
  place-items: center;
}

.gallery-item {
  position: absolute;
  overflow: hidden;

  background: var(--cream);
  border: 1px solid rgba(216, 181, 106, 0.38);
  box-shadow: var(--shadow-soft);

  transition: 0.55s ease;
  isolation: isolate;
}

.gallery-item::after {
  content: "";
  width: 45%;
  height: 180%;
  position: absolute;
  top: -44%;
  left: -95%;
  z-index: 5;
  transform: rotate(24deg);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );

  transition: 0.78s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  left: 135%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  width: min(345px, 70vw);
  height: 330px;
  z-index: 3;
  border-radius: 32px;
}

.gallery-side {
  width: 230px;
  height: 262px;
  z-index: 2;
  opacity: 0.45;
  filter: blur(1.3px) saturate(0.88);
  border-radius: 28px;
}

.gallery-left-card {
  transform: translateX(-258px) scale(0.86) rotate(-2deg);
}

.gallery-right-card {
  transform: translateX(258px) scale(0.86) rotate(2deg);
}

.gallery-carousel:hover .gallery-left-card {
  transform: translateX(-274px) scale(0.88) rotate(-2deg);
}

.gallery-carousel:hover .gallery-right-card {
  transform: translateX(274px) scale(0.88) rotate(2deg);
}

.gallery-arrow {
  width: 46px;
  height: 46px;

  position: absolute;
  top: 42%;
  z-index: 8;

  display: grid;
  place-items: center;
  border-radius: 50%;

  color: var(--maroon);
  background: rgba(255, 250, 244, 0.94);
  border: 1px solid rgba(216, 181, 106, 0.45);
  box-shadow: 0 12px 28px rgba(80, 42, 48, 0.12);

  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.gallery-carousel:hover .gallery-arrow {
  opacity: 1;
  pointer-events: auto;
}

.gallery-arrow:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--maroon), var(--dusty-rose));
  transform: translateY(-2px) scale(1.06);
}

.gallery-arrow i {
  font-size: 16px;
  line-height: 1;
}

.gallery-prev {
  left: 26px;
}

.gallery-next {
  right: 26px;
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  display: flex;
  gap: 9px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(122, 23, 58, 0.24);
  transition: var(--transition);
}

.gallery-dot.active {
  width: 30px;
  background: linear-gradient(90deg, var(--maroon), var(--dusty-rose));
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.testimonial-slider {
  width: min(1080px, 100%);
  position: relative;
  margin: 0 auto;
}

.testimonial-window {
  overflow: hidden;
  padding: 8px 8px 12px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.48s ease;
}

.testimonial-page {
  min-width: 100%;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 4px 6px 18px;
}

.testimonial-card {
  min-height: 216px;

  padding: 24px 25px;
  border-radius: 30px;

  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(244, 227, 216, 0.88));

  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 15px 34px rgba(80, 42, 48, 0.10);

  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 46px rgba(80, 42, 48, 0.14),
    0 0 26px rgba(216, 181, 106, 0.14);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.testimonial-head img {
  width: 50px;
  height: 50px;

  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(216, 181, 106, 0.55);
  flex: 0 0 auto;
}

.testimonial-head h3 {
  margin-bottom: 3px;

  color: var(--maroon);
  font-size: 15.5px;
  line-height: 1.1;
  font-weight: 850;
}

.testimonial-head span {
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 1.1px;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 13.4px;
  line-height: 1.64;
}

.testimonial-arrow {
  width: 46px;
  height: 46px;

  position: absolute;
  top: 50%;
  z-index: 8;

  display: grid;
  place-items: center;
  border-radius: 50%;

  color: var(--maroon);
  background: rgba(255, 250, 244, 0.94);
  border: 1px solid rgba(216, 181, 106, 0.45);
  box-shadow: 0 12px 28px rgba(80, 42, 48, 0.12);

  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.testimonial-slider:hover .testimonial-arrow {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-arrow:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--maroon), var(--dusty-rose));
}

.testimonial-prev {
  left: -18px;
  transform: translateY(-50%);
}

.testimonial-prev:hover {
  transform: translateY(-50%) scale(1.06);
}

.testimonial-next {
  right: -18px;
  transform: translateY(-50%);
}

.testimonial-next:hover {
  transform: translateY(-50%) scale(1.06);
}

.testimonial-arrow i {
  font-size: 16px;
  line-height: 1;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  padding-top: 66px;
  padding-bottom: 66px;
}

.contact-wrap {
  width: min(1080px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 32px;
  align-items: center;

  padding: 34px;
  border-radius: 38px;

  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.95), rgba(244, 227, 216, 0.88));

  border: 1px solid rgba(216, 181, 106, 0.34);
  box-shadow: var(--shadow-soft);
}

.contact-info {
  padding: 12px;
}

.contact-info h2 {
  max-width: 440px;
  margin-left: 0;
}

.contact-info > p {
  max-width: 470px;
  margin-bottom: 22px;
}

.contact-pills {
  display: grid;
  gap: 12px;
}

.contact-pill {
  width: fit-content;
  max-width: 100%;

  display: inline-flex;
  align-items: center;
  gap: 11px;

  padding: 12px 16px;
  border-radius: 999px;

  color: var(--maroon);
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(216, 181, 106, 0.34);
  box-shadow: 0 12px 28px rgba(80, 42, 48, 0.08);

  font-size: 13.4px;
  font-weight: 760;
  transition: var(--transition);
}

.contact-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(80, 42, 48, 0.12);
}

.contact-pill svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: 0 0 auto;
}

.contact-form {
  display: grid;
  gap: 12px;

  padding: 23px;
  border-radius: 30px;

  background:
    linear-gradient(135deg, #6a1634 0%, #7a173a 55%, #9b4a62 100%);

  border: 1px solid rgba(216, 181, 106, 0.28);
  box-shadow:
    0 18px 42px rgba(122, 23, 58, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  outline: none;
  border-radius: 15px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.10);

  font-size: 13.4px;
  transition: var(--transition);
}

.contact-form input,
.contact-form select {
  height: 47px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 122px;
  resize: vertical;
  padding: 13px 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.contact-form select {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form option {
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(216, 181, 106, 0.88);
  box-shadow:
    0 0 0 4px rgba(216, 181, 106, 0.12),
    0 10px 24px rgba(216, 181, 106, 0.08);
}

.form-btn {
  width: fit-content;
  min-width: 160px;
  min-height: 44px;
  justify-self: start;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  margin-top: 0;

  background:
    linear-gradient(135deg, #4e1028 0%, #5e1530 48%, #3b0c1d 100%);
}

.footer-wave {
  height: 36px;
  margin-top: -1px;

  background:
    radial-gradient(20px 20px at 20px 0, transparent 19px, #f3dfd2 20px) 0 0 / 40px 36px repeat-x;

  transform: rotate(180deg);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.28fr 0.72fr 0.72fr 1.05fr;
  gap: 28px;

  padding: 40px 6% 26px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 10px;

  color: var(--champagne);
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
}

.footer-logo i {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;
  border-radius: 50%;

  color: var(--maroon);
  background: linear-gradient(135deg, var(--champagne-soft), var(--champagne));

  font-size: 15px;
}

.footer-brand p,
.footer-links a,
.footer-contact p {
  color: rgba(255, 250, 244, 0.76);
  font-size: 13.5px;
  line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 12px;

  color: var(--ivory);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 850;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-links a {
  width: fit-content;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--champagne);
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-contact p i {
  width: 18px;
  color: var(--champagne);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
}

.social-icons a {
  width: 41px;
  height: 41px;

  display: grid;
  place-items: center;
  border-radius: 50%;

  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 181, 106, 0.40);

  font-size: 18px;
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--maroon);
  background: var(--champagne);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(216, 181, 106, 0.18);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 15px 8%;
}

.footer-bottom span {
  width: min(180px, 22vw);
  height: 1px;
  background: rgba(216, 181, 106, 0.34);
}

.footer-bottom p {
  color: rgba(255, 250, 244, 0.68);
  font-size: 12.5px;
  text-align: center;
}

/* =========================================================
   CATEGORY PAGE HERO
========================================================= */

.category-hero {
  min-height: 58vh;
  position: relative;
  overflow: hidden;

  display: grid;
  place-items: center;

  padding: 124px 8% 72px;
}

.category-hero-bg,
.category-hero-bg img,
.category-hero-overlay {
  position: absolute;
  inset: 0;
}

.category-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1) brightness(0.92);
}

.category-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(78, 16, 40, 0.86), rgba(122, 23, 58, 0.48)),
    linear-gradient(180deg, rgba(47, 29, 34, 0.15), rgba(47, 29, 34, 0.40));
}

.category-hero-content {
  width: min(850px, 100%);
  position: relative;
  z-index: 2;

  text-align: center;
  color: var(--white);
}

.category-hero-content .section-kicker {
  color: var(--champagne);
  -webkit-text-fill-color: var(--champagne);
}

.category-hero-content h1 {
  margin-bottom: 18px;

  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.96;
  font-weight: 650;
  letter-spacing: -1px;

  color: #fff4e3;
  -webkit-text-fill-color: #fff4e3;
  text-shadow: 0 8px 28px rgba(64, 12, 30, 0.38);
}

.category-hero-content p {
  max-width: 680px;
  margin: 0 auto 24px;

  color: rgba(255, 250, 244, 0.86);
  font-size: 15px;
  line-height: 1.72;
}

.back-btn {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 22px;
  border-radius: 999px;

  color: #4e1028;
  background: linear-gradient(135deg, #f1deaa 0%, #d8b56a 45%, #c98d9f 100%);
  box-shadow: 0 14px 32px rgba(216, 181, 106, 0.22);

  font-size: 13px;
  font-weight: 850;
  transition: var(--transition);
}

.back-btn:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--maroon) 0%, var(--wine) 55%, var(--dusty-rose) 100%);
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(122, 23, 58, 0.34);
}

/* =========================================================
   SIZE GUIDE
========================================================= */

.size-guide-section {
  padding-top: 66px;
  padding-bottom: 58px;
}

.size-guide-grid {
  width: min(1040px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.size-card {
  position: relative;

  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 17px;
  align-items: center;

  padding: 18px;
  border-radius: 28px;

  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(244, 227, 216, 0.88));

  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 15px 34px rgba(80, 42, 48, 0.10);

  transition: var(--transition);
}

.size-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 22px 48px rgba(80, 42, 48, 0.14),
    0 0 24px rgba(216, 181, 106, 0.14);
}

.size-badge {
  position: absolute;
  top: 15px;
  left: 15px;

  width: 31px;
  height: 31px;

  display: grid;
  place-items: center;
  border-radius: 50%;

  color: var(--maroon);
  background: var(--champagne);
  box-shadow: 0 10px 20px rgba(216, 181, 106, 0.22);

  font-size: 12px;
  font-weight: 900;
  z-index: 4;
}

.size-image {
  width: 118px;
  height: 142px;
  overflow: hidden;

  border-radius: 70px 70px 20px 20px;
  border: 1px solid rgba(216, 181, 106, 0.48);
  background: var(--cream);
}

.size-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.size-text h3 {
  margin-bottom: 8px;

  color: var(--maroon);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
}

.size-text p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12.8px;
  line-height: 1.55;
}

.size-text span {
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.size-note {
  width: fit-content;
  max-width: 720px;
  margin: 25px auto 0;

  padding: 12px 18px;
  border-radius: 999px;

  color: var(--wine);
  background: rgba(216, 181, 106, 0.16);
  border: 1px solid rgba(216, 181, 106, 0.34);

  text-align: center;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 760;
}

/* =========================================================
   PRODUCT CARDS
========================================================= */

.product-section {
  padding-top: 66px;
  padding-bottom: 72px;
}

.product-grid {
  width: min(1080px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 22px;
}

.product-card {
  min-height: 438px;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 16px 14px 18px;
  border-radius: 150px 150px 28px 28px;

  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(244, 227, 216, 0.90));

  border: 1px solid rgba(216, 181, 106, 0.52);
  box-shadow: 0 18px 44px rgba(80, 42, 48, 0.11);

  transition: var(--transition);
}

.product-card::before {
  content: "✦";
  position: absolute;
  top: 22px;
  right: 24px;

  color: rgba(216, 181, 106, 0.68);
  font-size: 14px;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 58px rgba(80, 42, 48, 0.15),
    0 0 26px rgba(216, 181, 106, 0.16);
}

.product-image {
  width: 100%;
  height: 248px;
  overflow: hidden;
  margin-bottom: 16px;

  border-radius: 136px 136px 22px 22px;
  background: var(--cream);
  border: 1px solid rgba(216, 181, 106, 0.42);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-card h3 {
  margin-bottom: 8px;

  color: var(--maroon);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.05;
  font-weight: 700;
}

.product-card p {
  max-width: 220px;
  min-height: 42px;
  margin-bottom: 10px;

  color: var(--muted);
  font-size: 12.8px;
  line-height: 1.5;
}

.product-card strong {
  display: block;
  margin-top: auto;
  margin-bottom: 13px;

  color: var(--wine);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.product-order-btn {
  min-height: 39px;
  min-width: 125px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 22px;
  border-radius: 999px;

  color: var(--white);
  background: linear-gradient(135deg, var(--maroon) 0%, var(--wine) 58%, var(--dusty-rose) 100%);
  box-shadow: 0 13px 30px rgba(122, 23, 58, 0.24);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;

  transition: var(--transition);
}

.product-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(122, 23, 58, 0.32);
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float {
  width: 54px;
  height: 54px;

  position: fixed;
  right: 22px;
  bottom: 22px;
  left: auto;
  top: auto;

  z-index: 9999;

  display: grid;
  place-items: center;
  border-radius: 50%;

  color: var(--white);
  background: linear-gradient(135deg, var(--maroon) 0%, var(--wine) 58%, var(--dusty-rose) 100%);
  box-shadow: 0 16px 38px rgba(122, 23, 58, 0.28);

  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 22px 48px rgba(122, 23, 58, 0.34);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  stroke: var(--white);
  color: var(--white);
}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
  opacity: 0;
  transition:
    opacity 0.78s ease,
    transform 0.78s ease;
}

.fade-up {
  transform: translateY(34px);
}

.slide-left {
  transform: translateX(38px);
}

.slide-right {
  transform: translateX(-38px);
}

.scale-in {
  transform: scale(0.94) translateY(20px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.services-grid .reveal:nth-child(2),
.collections-mosaic .reveal:nth-child(2),
.testimonial-page .testimonial-card:nth-child(2),
.product-grid .product-card:nth-child(2) {
  transition-delay: 0.06s;
}

.services-grid .reveal:nth-child(3),
.collections-mosaic .reveal:nth-child(3),
.testimonial-page .testimonial-card:nth-child(3),
.product-grid .product-card:nth-child(3) {
  transition-delay: 0.12s;
}

.services-grid .reveal:nth-child(4),
.collections-mosaic .reveal:nth-child(4),
.testimonial-page .testimonial-card:nth-child(4),
.product-grid .product-card:nth-child(4) {
  transition-delay: 0.04s;
}

.services-grid .reveal:nth-child(5),
.collections-mosaic .reveal:nth-child(5),
.testimonial-page .testimonial-card:nth-child(5),
.product-grid .product-card:nth-child(5) {
  transition-delay: 0.10s;
}

.services-grid .reveal:nth-child(6),
.collections-mosaic .reveal:nth-child(6),
.testimonial-page .testimonial-card:nth-child(6),
.product-grid .product-card:nth-child(6) {
  transition-delay: 0.16s;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .site-header {
    width: calc(100% - 34px);
  }

  .nav-menu {
    gap: 14px;
  }

  .nav-link {
    font-size: 12.4px;
  }

  .collections-mosaic {
    width: min(980px, 100%);
    height: 600px;
  }

  .gallery-left-card {
    transform: translateX(-230px) scale(0.84) rotate(-2deg);
  }

  .gallery-right-card {
    transform: translateX(230px) scale(0.84) rotate(2deg);
  }

  .gallery-carousel:hover .gallery-left-card {
    transform: translateX(-244px) scale(0.86) rotate(-2deg);
  }

  .gallery-carousel:hover .gallery-right-card {
    transform: translateX(244px) scale(0.86) rotate(2deg);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1020px) {
  .decorative-section {
    padding: 62px 6%;
  }

  .site-header {
    padding: 10px 14px 10px 20px;
  }

  .logo {
    font-size: 30px;
  }

  .hamburger {
    display: grid;
  }

  .nav-menu {
    width: calc(100% - 34px);

    position: fixed;
    top: 76px;
    left: 50%;
    transform: translateX(-50%) translateY(-16px);

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    padding: 14px;
    border-radius: 24px;

    background: rgba(255, 250, 244, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);

    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-link {
    padding: 13px 12px;
    border-radius: 14px;
    font-size: 13px;
  }

  .nav-link:hover {
    background: rgba(216, 181, 106, 0.15);
  }

  .nav-link::after {
    display: none;
  }

  .nav-order-btn {
    min-height: 40px;
    padding: 0 18px;
  }

  .hero-section {
    padding: 124px 6% 78px;
  }

  .hero-dots {
    left: 6%;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 40px 36px;
    text-align: center;
  }

  .about-text h2,
  .about-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-tags {
    justify-content: center;
  }

  .services-grid {
    width: min(760px, 100%);
    grid-template-columns: repeat(2, 1fr);
  }

  .collections-mosaic {
    width: min(760px, 100%);
    height: auto;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(10, 82px);
  }

  .collection-wedding {
    grid-column: 1 / span 3;
    grid-row: 1 / span 4;
  }

  .collection-graduation {
    grid-column: 4 / span 3;
    grid-row: 1 / span 2;
  }

  .collection-flower-box {
    grid-column: 4 / span 3;
    grid-row: 3 / span 2;
  }

  .collection-standing {
    grid-column: 1 / span 3;
    grid-row: 5 / span 4;
  }

  .collection-anniversary {
    grid-column: 4 / span 3;
    grid-row: 5 / span 2;
  }

  .collection-custom {
    grid-column: 4 / span 3;
    grid-row: 7 / span 2;
  }

  .collection-money {
    grid-column: 1 / span 3;
    grid-row: 9 / span 2;
  }

  .collection-snack {
    grid-column: 4 / span 3;
    grid-row: 9 / span 2;
  }

  .gallery-stage {
    height: 320px;
  }

  .gallery-main {
    width: min(320px, 68vw);
    height: 320px;
  }

  .gallery-side {
    width: 205px;
    height: 248px;
  }

  .gallery-left-card {
    transform: translateX(-198px) scale(0.82) rotate(-2deg);
  }

  .gallery-right-card {
    transform: translateX(198px) scale(0.82) rotate(2deg);
  }

  .gallery-carousel:hover .gallery-left-card {
    transform: translateX(-210px) scale(0.84) rotate(-2deg);
  }

  .gallery-carousel:hover .gallery-right-card {
    transform: translateX(210px) scale(0.84) rotate(2deg);
  }

  .testimonial-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info h2,
  .contact-info > p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-pills {
    justify-items: center;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .size-guide-grid {
    width: min(760px, 100%);
    grid-template-columns: 1fr;
  }

  .size-card {
    grid-template-columns: 128px 1fr;
  }

  .size-image {
    width: 128px;
    height: 150px;
  }

  .product-grid {
    width: min(760px, 100%);
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .decorative-section {
    padding: 56px 5%;
  }

  .site-header {
    width: calc(100% - 24px);
    min-height: 62px;
    top: 14px;
    border-radius: 24px;
  }

  .site-header.scrolled {
    top: 9px;
  }

  .logo {
    font-size: 28px;
  }

  .nav-order-btn {
    display: none;
  }

  .hero-section {
    min-height: 94vh;
    padding: 118px 5% 74px;
    align-items: end;
  }

  .hero-content h1 {
    font-size: clamp(42px, 13vw, 62px);
    letter-spacing: -0.8px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-dots {
    left: 5%;
    bottom: 24px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .about-text h2,
  .contact-info h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .about-section,
  .services-section,
  .gallery-section,
  .testimonials-section,
  .contact-section,
  .size-guide-section,
  .product-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-wrap {
    padding: 30px 22px;
    border-radius: 30px;
  }

  .about-frame {
    width: 250px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    width: min(430px, 100%);
  }

  .service-card {
    min-height: 182px;
    padding: 28px 28px;
  }

  .collections-section {
    padding: 60px 5%;
  }

  .collections-mosaic {
    width: min(430px, 100%);
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    height: auto;
  }

  .collection-wedding,
  .collection-graduation,
  .collection-flower-box,
  .collection-standing,
  .collection-anniversary,
  .collection-custom,
  .collection-money,
  .collection-snack {
    grid-column: auto;
    grid-row: auto;
  }

  .collection-card::before,
  .collection-content {
    opacity: 1;
  }

  .collection-content {
    transform: translateY(0);
  }

  .gallery-stage {
    height: 296px;
  }

  .gallery-main {
    width: min(285px, 76vw);
    height: 296px;
  }

  .gallery-side {
    width: 160px;
    height: 214px;
    opacity: 0.30;
    filter: blur(1.6px) saturate(0.82);
  }

  .gallery-left-card {
    transform: translateX(-130px) scale(0.8) rotate(-2deg);
  }

  .gallery-right-card {
    transform: translateX(130px) scale(0.8) rotate(2deg);
  }

  .gallery-carousel:hover .gallery-left-card {
    transform: translateX(-138px) scale(0.82) rotate(-2deg);
  }

  .gallery-carousel:hover .gallery-right-card {
    transform: translateX(138px) scale(0.82) rotate(2deg);
  }

  .gallery-arrow,
  .testimonial-arrow {
    opacity: 1;
    pointer-events: auto;
  }

  .gallery-prev {
    left: 2px;
  }

  .gallery-next {
    right: 2px;
  }

  .testimonial-page {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-prev {
    left: 4px;
  }

  .testimonial-next {
    right: 4px;
  }

  .contact-wrap {
    padding: 22px;
    border-radius: 28px;
  }

  .contact-form,
  .contact-info {
    padding: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-btn {
    width: 100%;
  }

  .footer-wave {
    height: 36px;
    background:
      radial-gradient(20px 20px at 20px 0, transparent 19px, var(--ivory) 20px) 0 0 / 40px 36px repeat-x;
    transform: rotate(180deg);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 34px 6% 24px;
  }

  .footer-logo {
    font-size: 36px;
  }

  .category-hero {
    min-height: 56vh;
    padding: 116px 5% 64px;
  }

  .category-hero-content h1 {
    font-size: clamp(40px, 12vw, 60px);
  }

  .category-hero-content p {
    font-size: 14px;
  }

  .size-guide-grid {
    width: min(430px, 100%);
  }

  .size-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .size-image {
    width: 145px;
    height: 165px;
  }

  .size-note {
    border-radius: 18px;
  }

  .product-grid {
    width: min(430px, 100%);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    min-height: auto;
    max-width: 330px;
    margin: 0 auto;
  }

  .product-image {
    height: 268px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 430px) {
  .nav-menu {
    top: 70px;
  }

  .hero-content h1 {
    font-size: 41px;
  }

  .hero-badges span {
    min-height: 32px;
    font-size: 11.3px;
  }

  .about-frame {
    width: 235px;
  }

  .gallery-stage {
    height: 268px;
  }

  .gallery-main {
    height: 268px;
  }

  .gallery-side {
    display: none;
  }

  .collections-mosaic {
    grid-auto-rows: 214px;
  }

  .product-card {
    max-width: 310px;
  }

  .product-image {
    height: 255px;
  }
}

/* CLEAN BACKGROUND FINAL - SAME THEME, NOT PLAIN */
.about-section,
.services-section,
.collections-section,
.gallery-section,
.testimonials-section,
.contact-section,
.size-guide-section,
.product-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 141, 159, 0.10), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(216, 181, 106, 0.11), transparent 28%),
    radial-gradient(circle at 76% 86%, rgba(122, 23, 58, 0.035), transparent 30%),
    linear-gradient(135deg, #fffaf4 0%, #f8efe7 52%, #f3dfd2 100%) !important;
}

/* Biar section tetap ada variasi tapi nggak norak */
.services-section,
.testimonials-section,
.size-guide-section {
  background:
    radial-gradient(circle at 16% 22%, rgba(216, 181, 106, 0.12), transparent 30%),
    radial-gradient(circle at 84% 78%, rgba(201, 141, 159, 0.09), transparent 30%),
    linear-gradient(135deg, #fffaf4 0%, #f7ecdf 52%, #f2ddcf 100%) !important;
}

.collections-section,
.product-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 141, 159, 0.12), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(216, 181, 106, 0.10), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #f8ebe3 52%, #f2ddd6 100%) !important;
}

/* Dekor tetap halus, bukan coretan daun */
.decorative-section::before,
.collections-section::before {
  opacity: 0.42 !important;
}

/* FIX FOOTER WAVE COLOR BIAR NYATU */
.contact-section,
.product-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 141, 159, 0.10), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(216, 181, 106, 0.11), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #f8efe7 52%, #f8efe7 100%) !important;
}

.footer-wave {
  height: 36px;
  margin-top: -1px;

  background:
    radial-gradient(20px 20px at 20px 0, transparent 19px, #f8efe7 20px) 0 0 / 40px 36px repeat-x !important;

  transform: rotate(180deg);
}

/* REMOVE COLLECTION ICONS */
.collection-content svg,
.collection-content i {
  display: none !important;
}

/* COLLECTION TEXT CLEAN */
.collection-content {
  gap: 10px !important;
}

.collection-content h3 {
  color: #FFF4E3 !important;
  -webkit-text-fill-color: #FFF4E3 !important;
  text-shadow: 0 6px 20px rgba(35, 10, 18, 0.48);
}

/* ARROW ONLY, NO CIRCLE */
.collection-content span {
  width: auto !important;
  height: auto !important;

  display: inline-block !important;
  border-radius: 0 !important;

  background: transparent !important;
  box-shadow: none !important;

  color: var(--maroon) !important;
  font-size: 25px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}