/* ============================================================
   cp_2505.css — Vitamin Sea Tote Bag Landing Page
   Sections: reset, tokens, navbar, hero, about, designs,
             preorder, thankyou, footer, utilities, animations
   ============================================================ */

/* ── 1. RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  animation: fadeInOverlay 0.3s ease forwards;
}

@keyframes fadeInOverlay {
  to { opacity: 1; }
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── 2. DESIGN TOKENS ────────────────────────────────────── */
:root {
  /* Palette — calm ocean, not rainbow */
  --ocean-deep:   #0a3d62;
  --ocean-mid:    #1e6fa5;
  --ocean-light:  #4fc3f7;
  --ocean-foam:   #b3e5fc;
  --sand:         #fff8f0;
  --sand-dark:    #ffe0b2;
  --coral:        #ff8a65;
  --mint:         #a8edcb;
  --white:        #ffffff;
  --text:         #1a2e3b;
  --text-light:   #5a7a8a;
  --bg:           #f0f9ff;

  /* Gradients */
  --grad-ocean:   linear-gradient(160deg, #0a3d62 0%, #1e6fa5 50%, #4fc3f7 100%);
  --grad-sand:    linear-gradient(160deg, #fff8f0 0%, #b3e5fc 100%);
  --grad-card:    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(179,229,252,0.4));

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(10,61,98,0.10);
  --shadow-md:    0 8px 32px rgba(10,61,98,0.14);
  --shadow-lg:    0 20px 60px rgba(10,61,98,0.18);

  /* Radius */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  28px;
  --r-xl:  48px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-mid:  0.4s ease;
}

/* ── 3. SECTION BASE ─────────────────────────────────────── */
.section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 24px 60px;
  overflow: hidden;
}

/* ── 4. NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 44px;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}

.navbar.scrolled {
  background: rgba(7, 34, 52, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-md);
}

.nav-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav-logo-text {
  color: rgba(255, 255, 255, 0.96);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  justify-self: center;
  gap: 10px;
  align-items: center;
}

.nav-mobile-only { display: none; }

.nav-order-btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.nav-link {
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.84);
  padding: 8px 16px;
  border-radius: var(--r-xl);
  transition: background var(--t-fast), color var(--t-fast), opacity var(--t-fast);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-cta {
  background: linear-gradient(135deg, #1dd6c4, #11b6a8);
  color: #f7ffff !important;
  border-radius: var(--r-xl);
  padding: 11px 24px;
  box-shadow: 0 8px 24px rgba(17, 182, 168, 0.35);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #29dfce, #16b4a5) !important;
}

.nav-hamburger {
  display: none;
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.2s ease;
}

.nav-hamburger:active {
  transform: scale(0.95);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 5. BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--r-xl);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ocean-deep);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10,61,98,0.3);
}

.btn-primary:hover {
  background: var(--ocean-mid);
  box-shadow: 0 8px 28px rgba(10,61,98,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--ocean-deep);
  border: 2px solid var(--ocean-deep);
}

.btn-ghost:hover {
  background: var(--ocean-foam);
}

.btn-full { width: 100%; }

/* ── 6. HERO SECTION ─────────────────────────────────────── */
#hero {
  background: #083f50;
  flex-direction: column;
  text-align: center;
  gap: 38px;
  padding-top: 150px;
  min-height: 100vh;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(4,24,35,0.60) 0%, rgba(2,92,108,0.38) 38%, rgba(2,77,91,0.70) 100%),
    url('images/images_bg/main_page.webp');
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.05);
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  background: linear-gradient(180deg, rgba(239,247,248,0) 0%, rgba(239,247,248,0.96) 100%);
  z-index: 1;
}

/* Sea background bubbles */
.sea-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.sea-bg::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -22%;
  width: 140%;
  height: 110%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(228, 249, 255, 0.40) 0%, rgba(228, 249, 255, 0.10) 34%, rgba(228, 249, 255, 0) 70%),
    repeating-conic-gradient(from 260deg at 50% 0%, rgba(239, 252, 255, 0.12) 0deg, rgba(239, 252, 255, 0.12) 3deg, rgba(239, 252, 255, 0) 7deg, rgba(239, 252, 255, 0) 14deg);
  filter: blur(1px);
  opacity: 0.55;
}

.sea-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 70% at 50% 115%, rgba(255,255,255,0.68) 0%, rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(8, 68, 85, 0.04) 0%, rgba(7, 77, 90, 0.08) 58%, rgba(0, 0, 0, 0.22) 100%);
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(241,255,255,0.08);
  animation: floatBubble linear infinite;
}

.b1 { width: 300px; height: 300px; left: -80px; top: 10%;  animation-duration: 18s; }
.b2 { width: 200px; height: 200px; right: 5%;  top: 60%;  animation-duration: 14s; animation-delay: -4s; }
.b3 { width: 150px; height: 150px; left: 40%;  top: -40px; animation-duration: 20s; animation-delay: -8s; }
.b4 { width: 100px; height: 100px; left: 70%;  top: 30%;  animation-duration: 12s; animation-delay: -2s; }
.b5 { width: 80px;  height: 80px;  left: 20%;  bottom: 10%; animation-duration: 16s; animation-delay: -6s; }

@keyframes floatBubble {
  0%   { transform: translateY(0) scale(1); opacity: 0.5; }
  50%  { transform: translateY(-40px) scale(1.05); opacity: 0.8; }
  100% { transform: translateY(0) scale(1); opacity: 0.5; }
}

.hero-fish {
  position: absolute;
  font-size: 1.4rem;
  animation: driftFish linear infinite;
  opacity: 0.24;
  user-select: none;
}

.f1 { top: 38%; left: 6%;  animation-duration: 24s; }
.f2 { top: 52%; left: 30%; animation-duration: 19s; animation-delay: -3s; }
.f3 { top: 44%; left: 70%; animation-duration: 21s; animation-delay: -7s; }
.f4 { top: 62%; left: 84%; animation-duration: 17s; animation-delay: -4s; }
.f5 { top: 28%; left: 48%; animation-duration: 26s; animation-delay: -10s; }

@keyframes driftFish {
  0% { transform: translateX(-60px) translateY(0); opacity: 0; }
  12% { opacity: 0.45; }
  88% { opacity: 0.45; }
  100% { transform: translateX(120px) translateY(-14px); opacity: 0; }
}

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: min(100%, 900px);
  padding-inline: 8px;
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(223, 244, 247, 0.88);
  margin-bottom: 26px;
  border: 1px solid rgba(220, 247, 248, 0.38);
  border-radius: 999px;
  padding: 9px 24px;
  background: rgba(173, 216, 230, 0.13);
  backdrop-filter: blur(8px);
  opacity: 0;
}

.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4.1rem, 9vw, 7.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  color: #f3fcff;
  text-shadow: 0 12px 26px rgba(6, 28, 38, 0.45);
  opacity: 0;
}

.hero-title .accent {
  font-style: italic;
  font-weight: 500;
  color: #80e6e1;
}

.hero-sub {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: clamp(1.05rem, 2vw, 1.16rem);
  line-height: 1.65;
  color: rgba(230, 245, 249, 0.82);
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
  opacity: 0;
}

.hero-actions .btn {
  min-width: 200px;
  font-weight: 800;
}

.hero-actions .btn-primary {
  color: #eaffff;
  background: linear-gradient(135deg, #20d9c6, #16b8a8);
  box-shadow: 0 12px 34px rgba(22, 184, 168, 0.34);
}

.hero-actions .btn-primary:hover {
  background: linear-gradient(135deg, #26e0cf, #12b4a4);
}

.hero-actions .btn-ghost {
  color: rgba(240, 255, 255, 0.96);
  border-color: rgba(223, 247, 250, 0.36);
  background: rgba(165, 213, 227, 0.16);
}

.hero-actions .btn-ghost:hover { background: rgba(173, 222, 234, 0.22); }

.hero-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0;
}

.hero-chip {
  border: 1px solid rgba(206, 243, 246, 0.28);
  color: rgba(232, 249, 250, 0.85);
  background: rgba(177, 224, 233, 0.13);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 14px;
  backdrop-filter: blur(4px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(227, 248, 251, 0.62);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  animation: bounceArrow 2s ease-in-out infinite;
  transition: color var(--t-fast), opacity var(--t-fast);
}

.hero-scroll-hint:hover { color: rgba(255,255,255,0.92); }

@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── 7. ABOUT SECTION ────────────────────────────────────── */
#about {
  background: #f6f4ef;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: auto;
  padding: 96px 12px 74px;
}

.about-showcase {
  width: min(100%, 1750px);
  margin: 0 auto;
}

.about-showcase-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}

.about-kicker {
  font-size: 1.06rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #14b3ac;
  margin-bottom: 20px;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.3vw, 4.15rem);
  line-height: 1.03;
  color: #27252b;
}

.about-title-accent {
  color: #18bcb4;
  font-style: italic;
  font-weight: 500;
}

.about-head-right {
  text-align: right;
}

.about-lead {
  color: #7d8088;
  font-size: clamp(0.1rem, 1.8vw, 2rem);
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  font-weight: 800;
  color: #0faea4;
}

.about-link:hover {
  opacity: 0.84;
}

.print-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(160px, 1fr));
  gap: 14px;
  contain: layout;
}

.print-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  contain: layout style paint;
  content-visibility: auto;
}

.print-item:focus-visible {
  outline: 2px solid #13b9ae;
  outline-offset: 3px;
  border-radius: 8px;
}

.print-art {
  position: relative;
  height: 248px;
  border-radius: 18px;
  margin-bottom: 10px;
  background: linear-gradient(160deg, #f7f3e6, #efebe0);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(31, 45, 53, 0.08);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.print-art::before {
  content: none;
}

.print-art::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16c6b8;
  box-shadow: 0 0 0 3px rgba(8, 20, 30, 0.16);
}

.print-art.whale {
  background-image: url("images/images_product/whale.webp");
}

.print-art.turtle {
  background-image: url("images/images_product/turtle.webp");
}

.print-art.dolphin {
  background-image: url("images/images_product/dolphins.webp");
}

.print-art.starfish {
  background-image: url("images/images_product/shores_starfish.webp");
}

.print-art.manta {
  background-image: url("images/images_product/manta.webp");
}

.print-art.jelly {
  background-image: url("images/images_product/jellyfish.webp");
}

.print-art.palm {
  background-image: url("images/images_product/coconut.webp");
}

.print-art.sunset {
  background-image: url("images/images_product/fish.webp");
}

.print-item h3 {
  color: #2f3742;
  font-size: 1.02rem;
  line-height: 1.15;
  margin-bottom: 4px;
  font-weight: 800;
}

.print-item p {
  color: #9da1a8;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* ── 8.5 PRINT MODAL ─────────────────────────────────────── */
body.modal-open {
  overflow: hidden;
}

/* ── PREORDER SLIDE-IN PANEL FROM RIGHT ──────────────────── */
.preorder-modal {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: none;
}

.preorder-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.preorder-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 32, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.preorder-modal.active .preorder-modal-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Centered Modal Design - Optimized for Performance */
.preorder-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  background: #fafaf7;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(4, 17, 26, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.preorder-modal.active .preorder-modal-dialog {
  opacity: 1;
  transform: scale(1) translateY(0);
}



/* Scrollable content area */
.preorder-modal-dialog > * {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.preorder-modal-close {
  position: absolute;
  top: 20px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #5a6670;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(7, 24, 34, 0.08);
  transition: all 0.2s ease;
  z-index: 20;
  cursor: pointer;
}

.preorder-modal-close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 1);
  color: #1ab8af;
  border-color: rgba(26, 184, 175, 0.2);
  box-shadow: 0 4px 12px rgba(26, 184, 175, 0.15);
}

.preorder-modal-head {
  padding: 28px 60px 16px 24px;
  border-bottom: 1px solid rgba(32, 46, 58, 0.06);
  flex-shrink: 0;
  background: linear-gradient(180deg, #fafaf7 0%, #f8f8f5 100%);
}

.preorder-modal-kicker {
  color: #1ab3a7;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.preorder-modal-title {
  font-family: 'Playfair Display', serif;
  color: #232d38;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  line-height: 1.1;
}

.preorder-modal-sub {
  margin-top: 10px;
  color: #7a838c;
  font-size: 0.96rem;
}

.preorder-modal-form {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
}

.preorder-modal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}

.preorder-modal-left {
  display: grid;
  gap: 0;
}

.preorder-modal-sidebar {
  display: grid;
  gap: 12px;
  padding: 16px 20px 28px;
  background: #f0f1ec;
}

.preorder-modal-block {
  padding: 20px;
  border-bottom: 1px solid rgba(32, 46, 58, 0.05);
}

.preorder-summary-panel,
.preorder-price-panel,
.preorder-contact-panel {
  background: #fff;
  border: 1px solid rgba(32, 46, 58, 0.08);
  border-radius: 12px;
}

.preorder-modal-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.preorder-modal-section-kicker {
  color: #21313d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.preorder-modal-block-head span {
  color: #7b838b;
  font-size: 0.74rem;
  font-weight: 700;
}

.preorder-artwork-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.preorder-artwork-card {
  position: relative;
  display: grid;
  gap: 8px;
  border: 1.5px solid rgba(33, 46, 58, 0.09);
  border-radius: 12px;
  background: #fffdf9;
  padding: 10px;
  cursor: pointer;
}

.preorder-artwork-card input {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  accent-color: #1ab8af;
}

.preorder-artwork-card:has(input:checked),
.preorder-artwork-card.is-selected {
  border-color: #1ab8af;
  background: rgba(26, 184, 175, 0.07);
}

.preorder-artwork-thumb {
  aspect-ratio: 0.82;
  border-radius: 10px;
  /* Tối ưu: Placeholder gradient khi chưa load image */
  background: linear-gradient(135deg, #edf2f0 25%, #dde7e5 25%, #dde7e5 50%, #edf2f0 50%, #edf2f0 75%, #dde7e5 75%, #dde7e5);
  background-size: 40px 40px;
  background-position: center;
  /* Tối ưu: Lazy load với content-visibility */
  content-visibility: auto;
  will-change: auto;
}

/* Tối ưu: Image URLs sẽ được load bởi JS Intersection Observer */
.preorder-artwork-thumb.loaded.whale { background-image: url("images/images_product/whale.webp"); background-size: cover; }
.preorder-artwork-thumb.loaded.turtle { background-image: url("images/images_product/turtle.webp"); background-size: cover; }
.preorder-artwork-thumb.loaded.dolphin { background-image: url("images/images_product/dolphins.webp"); background-size: cover; }
.preorder-artwork-thumb.loaded.starfish { background-image: url("images/images_product/shores_starfish.webp"); background-size: cover; }
.preorder-artwork-thumb.loaded.fish { background-image: url("images/images_product/manta.webp"); background-size: cover; }
.preorder-artwork-thumb.loaded.jelly { background-image: url("images/images_product/jellyfish.webp"); background-size: cover; }
.preorder-artwork-thumb.loaded.palm { background-image: url("images/images_product/coconut.webp"); background-size: cover; }
.preorder-artwork-thumb.loaded.sunset { background-image: url("images/images_product/fish.webp"); background-size: cover; }

.preorder-artwork-copy {
  display: grid;
  gap: 2px;
}

.preorder-artwork-copy strong {
  color: #28333d;
  font-size: 0.83rem;
  line-height: 1.2;
}

.preorder-artwork-copy small {
  color: #8b949d;
  font-size: 0.7rem;
  line-height: 1.3;
}

.preorder-choice-list {
  display: grid;
  gap: 10px;
  /* Tối ưu: Isolate layout */
  contain: layout style;
}

.preorder-choice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1.5px solid rgba(33, 46, 58, 0.08);
  border-radius: 12px;
  background: #fffdf9;
  padding: 11px 13px;
  cursor: pointer;
}

.preorder-choice-row:has(input:checked),
.preorder-choice-row.is-selected {
  border-color: #1ab8af;
  background: rgba(26, 184, 175, 0.05);
}

.preorder-choice-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.choice-swatch {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex: none;
}

.choice-swatch.sand { background: #eadfcb; }
.choice-swatch.mist { background: #9dcdd7; }
.choice-swatch.reef { background: #243d52; }
.choice-swatch.coral { background: #f0b39f; }
.choice-swatch.sage { background: #bdd9b3; }

.preorder-choice-main strong {
  display: block;
  color: #28333d;
  font-size: 0.83rem;
}

.preorder-choice-main small {
  display: block;
  color: #8b949d;
  font-size: 0.7rem;
}

.preorder-choice-row input {
  width: 18px;
  height: 18px;
  accent-color: #1ab8af;
  flex: none;
}

/* Tối ưu mobile: Disable hover khi ở mobile */
.is-mobile .preorder-artwork-card:hover,
.is-mobile .preorder-choice-row:hover,
.is-mobile .preorder-size-card:hover,
.is-mobile .btn:hover {
  transform: none;
}

/* Tối ưu mobile: Touch feedback */
.is-mobile .preorder-artwork-card:active,
.is-mobile .preorder-choice-row:active,
.is-mobile .preorder-size-card:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.preorder-size-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.preorder-size-card {
  position: relative;
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 12px 8px;
  border-radius: 12px;
  border: 1.5px solid rgba(33, 46, 58, 0.09);
  background: #fffdf9;
  cursor: pointer;
  text-align: center;
}

.preorder-size-card:has(input:checked),
.preorder-size-card.is-selected {
  border-color: #1ab8af;
  background: rgba(26, 184, 175, 0.05);
}

.preorder-size-card.is-popular::before {
  content: 'Hot nhất';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  border-radius: 999px;
  background: #1bbcb0;
  color: #f5fffe;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preorder-size-card input {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 16px;
  height: 16px;
  accent-color: #1ab8af;
}

.preorder-size-card strong {
  color: #27313b;
  font-size: 0.92rem;
  line-height: 1.2;
  margin-top: 8px;
}

.preorder-size-card span {
  color: #64717c;
  font-size: 0.82rem;
}

.preorder-size-card small {
  color: #8b949d;
  font-size: 0.72rem;
}

/* Quantity Multiplier Input */
.preorder-quantity-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 184, 175, 0.04), rgba(26, 184, 175, 0.08));
  border: 1px solid rgba(26, 184, 175, 0.15);
}

.preorder-quantity-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.preorder-quantity-label > span {
  color: #27313b;
  font-weight: 700;
  font-size: 0.92rem;
  min-width: 60px;
}

.preorder-quantity-input {
  flex: 0 0 80px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(33, 46, 58, 0.12);
  background: #ffffff;
  color: #27313b;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.preorder-quantity-input:focus {
  outline: none;
  border-color: #1ab8af;
  box-shadow: 0 0 0 3px rgba(26, 184, 175, 0.12);
}

.preorder-quantity-hint {
  color: #5a7a8a;
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

.preorder-quantity-hint strong {
  color: #1ab8af;
  font-weight: 800;
}

.preorder-summary-panel,
.preorder-price-panel,
.preorder-contact-panel {
  padding: 16px;
}

.preorder-summary-panel {
  display: grid;
  gap: 10px;
}

.preorder-summary-eyebrow {
  color: #1ab3a7;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preorder-summary-row {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid rgba(33, 46, 58, 0.08);
}

.preorder-summary-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.preorder-summary-row span,
.preorder-price-panel p,
.preorder-contact-panel .preorder-modal-section-kicker {
  color: #7b838b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preorder-summary-row strong {
  color: #26333d;
  font-size: 0.92rem;
  line-height: 1.35;
}

.preorder-price-panel {
  display: grid;
  gap: 8px;
  background: linear-gradient(160deg, rgba(26, 184, 175, 0.1), rgba(255, 255, 255, 0.96));
}

.preorder-price-panel strong {
  color: #18323d;
  font-size: 1.8rem;
  line-height: 1;
}

.preorder-price-panel span {
  color: #8b949d;
  font-size: 0.78rem;
}

.preorder-price-panel .preorder-freeship {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(26, 184, 175, 0.14);
  color: #169e94;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.preorder-price-breakdown {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(33, 46, 58, 0.08);
}

.preorder-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preorder-price-row span {
  color: #64717c;
  font-size: 0.78rem;
}

.preorder-price-row strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.preorder-price-row-discount strong {
  color: #1aa397;
}

.preorder-contact-panel {
  display: grid;
  gap: 12px;
}

.preorder-contact-panel .form-group {
  gap: 6px;
}

.preorder-contact-panel .form-group label {
  color: #4f5a66;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.preorder-contact-panel .form-group input {
  background: #fbfcfb;
}

.preorder-contact-panel .form-group textarea {
  background: #fbfcfb;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(33, 46, 58, 0.09);
  font-family: inherit;
  font-size: 0.88rem;
  color: #27313b;
  line-height: 1.5;
  resize: vertical;
  min-height: 70px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.preorder-contact-panel .form-group textarea:focus {
  outline: none;
  border-color: #1ab8af;
  box-shadow: 0 0 0 3px rgba(26, 184, 175, 0.08);
}

.preorder-contact-panel .form-group textarea::placeholder {
  color: #9ca8b3;
  font-size: 0.84rem;
}

/* Payment Panel */
.preorder-payment-panel {
  padding: 16px;
  display: grid;
  gap: 12px;
  background: rgba(255, 252, 247, 0.5);
  border-radius: 12px;
}

.preorder-payment-options {
  display: grid;
  gap: 10px;
}

.preorder-payment-card {
  position: relative;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid rgba(33, 46, 58, 0.08);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preorder-payment-card:hover {
  border-color: rgba(26, 184, 175, 0.3);
  background: rgba(26, 184, 175, 0.02);
}

.preorder-payment-card:has(input:checked) {
  border-color: #1ab8af;
  background: rgba(26, 184, 175, 0.06);
  box-shadow: 0 4px 12px rgba(26, 184, 175, 0.15);
}

.preorder-payment-card input[type="radio"] {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  accent-color: #1ab8af;
  cursor: pointer;
}

.payment-card-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.payment-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-info strong {
  color: #27313b;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.payment-info span {
  color: #64717c;
  font-size: 0.78rem;
  line-height: 1.3;
}

.payment-note {
  color: #5a7a8a;
  font-size: 0.78rem;
  line-height: 1.4;
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(26, 184, 175, 0.05);
}

/* ── QR CODE DISPLAY (shown when QR payment selected) ────────── */
.preorder-qr-display {
  margin-top: 16px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 184, 175, 0.08) 0%, rgba(26, 184, 175, 0.03) 100%);
  border: 2px solid rgba(26, 184, 175, 0.2);
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
}

.preorder-qr-display.show {
  max-height: 800px;
  opacity: 1;
  transform: translateY(0);
}

.qr-display-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 184, 175, 0.15);
}

.qr-display-header .qr-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.qr-display-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #27313b;
  line-height: 1.2;
}

.qr-display-content {
  display: grid;
  gap: 16px;
}

.qr-code-wrapper {
  display: flex;
  justify-content: center;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.qr-code-image {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.qr-bank-info {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 1px solid rgba(26, 184, 175, 0.1);
}

.bank-info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
}

.bank-info-row:not(:last-child) {
  border-bottom: 1px dashed rgba(33, 46, 58, 0.08);
}

.bank-label {
  font-size: 0.82rem;
  color: #64717c;
  font-weight: 500;
  flex-shrink: 0;
}

.bank-value {
  font-size: 0.88rem;
  color: #27313b;
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}

.qr-transfer-note {
  color: #1ab8af;
  font-weight: 700;
}

.qr-instructions {
  padding: 14px;
  background: rgba(255, 249, 230, 0.9);
  border-radius: 10px;
  border-left: 3px solid #ffa726;
}

.qr-instructions p {
  margin: 0 0 8px 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e67700;
}

.qr-instructions ul {
  margin: 0;
  padding-left: 20px;
}

.qr-instructions li {
  font-size: 0.8rem;
  color: #5a4a00;
  line-height: 1.6;
  margin-bottom: 4px;
}

.qr-instructions li:last-child {
  margin-bottom: 0;
}

.qr-instructions strong {
  color: #d66a00;
}

.preorder-modal-sidebar .preorder-submit {
  width: 100%;
}

.preorder-modal-sidebar .preorder-note {
  text-align: center;
  padding-inline: 2px;
}

.preorder-form-error {
  margin-top: 8px;
}

/* ── ANTI-BOT HONEYPOT FIELD (hidden from humans) ──────────── */
.preorder-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ── DESIGN VIEWER MODAL ──────────────────────────────────────── */
.design-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
}

.design-modal.active {
  display: flex;
}

.design-modal-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.design-modal-dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  width: min(100%, 900px);
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: designModalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes designModalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.design-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  font-size: 24px;
  color: #3f474d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all var(--t-fast);
}

.design-modal-close:hover {
  background: #1dcfbf;
  color: #fff;
  transform: rotate(90deg);
}

.design-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.design-modal-image {
  background: linear-gradient(135deg, #f0ebe0 0%, #e9e3ce 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  aspect-ratio: 1 / 1;
}

.design-modal-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(29, 207, 191, 0.08) 0%, transparent 60%);
}

#designModalImg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.design-modal-info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.design-modal-kicker {
  color: #138f94;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.design-modal-title {
  font-family: 'playfair display', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: #1f2532;
  margin-bottom: 8px;
}

.design-modal-subtitle {
  color: #6a7278;
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.design-modal-colorway-section {
  margin-bottom: 40px;
}

.design-modal-colorway-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #3f474d;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.design-modal-colorways {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.design-modal-colorway {
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid rgba(75, 84, 90, 0.2);
  background: #ffffff;
  color: #4a5359;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
}

.design-modal-colorway:hover {
  border-color: #1dcfbf;
  background: rgba(29, 207, 191, 0.08);
  color: #1a8086;
  transform: translateY(-2px);
}

.design-modal-colorway.active {
  border-color: #1dcfbf;
  background: #1dcfbf;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(29, 207, 191, 0.35);
}

.design-modal-colorway.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f5f5f5;
  border-color: rgba(75, 84, 90, 0.12);
  color: #9ca8b3;
  pointer-events: none;
}

.design-modal-colorway.disabled:hover {
  transform: none;
  border-color: rgba(75, 84, 90, 0.12);
  background: #f5f5f5;
}

.design-modal-colorway .unavailable-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 152, 0, 0.15);
  color: #e67700;
  border-radius: 4px;
  vertical-align: middle;
}

.design-modal-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.design-modal-btn {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.96rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
}

.design-modal-btn-story {
  background: #f0ebe0;
  color: #3f474d;
  border: 2px solid rgba(75, 84, 90, 0.15);
}

.design-modal-btn-story:hover {
  background: #e9e3ce;
  border-color: #1dcfbf;
  color: #1a8086;
}

.design-modal-btn-preorder {
  background: linear-gradient(135deg, #1dcfbf, #11b5a5);
  color: #f7ffff;
  box-shadow: 0 10px 24px rgba(17, 181, 165, 0.35);
}

.design-modal-btn-preorder:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 181, 165, 0.45);
}

@media (max-width: 700px) {
  .design-modal-content {
    grid-template-columns: 1fr;
  }
  
  .design-modal-image {
    min-height: 300px;
    padding: 30px;
    aspect-ratio: auto;
  }
  
  .design-modal-info {
    padding: 30px 24px;
  }
}

/* ── PRINT/ABOUT MODAL ──────────────────────────────────────── */
.print-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.print-modal.active {
  display: flex;
}

.print-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 17, 25, 0.62);
}

.print-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  background: #f1f1ef;
  border-radius: 18px;
  box-shadow: 0 32px 60px rgba(6, 19, 31, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.42);
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  overflow: hidden;
  max-height: min(92vh, 760px);
}

.print-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6d7279;
  background: #e6e8ea;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}

.print-modal-close:hover {
  background: #d7e4e8;
  color: #344049;
  transform: scale(1.04);
}

.print-modal-media {
  position: relative;
  min-height: 100%;
  background-color: #dddaca;
  background-size: cover;
  background-position: center;
}

.print-modal-media[data-print-key="turtle"] {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.print-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(223, 217, 196, 0.18) 14%, rgba(223, 217, 196, 0.42) 100%);
}

.print-modal-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  border-radius: 999px;
  background: #1abfae;
  color: #efffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 10px;
  text-transform: capitalize;
}

.print-modal-copy {
  padding: 24px 22px 22px;
  overflow: auto;
}

.print-modal-kicker {
  color: #138f94;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.print-modal-title {
  margin-top: 2px;
  margin-bottom: 4px;
  color: #353738;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.print-modal-subtitle {
  color: #6a7278;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.print-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.print-modal-tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: #dff2ef;
  color: #1a8086;
  font-size: 0.74rem;
  font-weight: 700;
}

.print-modal-section {
  border-top: 1px solid rgba(75, 84, 90, 0.18);
  padding-top: 14px;
  margin-top: 12px;
}

.print-modal-section h4 {
  color: #3f474d;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.print-modal-section p {
  color: #5d6468;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 64ch;
}

.print-modal-available {
  border-top: 1px solid rgba(75, 84, 90, 0.18);
  padding-top: 16px;
  margin-top: 16px;
}

.print-modal-available-label {
  font-size: 0.86rem;
  color: #6a7278;
  margin-bottom: 10px;
  font-weight: 700;
}

.print-modal-colorways {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.print-modal-colorway {
  padding: 9px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(75, 84, 90, 0.2);
  background: #ffffff;
  color: #4a5359;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t-fast);
}

.print-modal-colorway:hover {
  border-color: #1dcfbf;
  background: rgba(29, 207, 191, 0.05);
  color: #1a8086;
}

.print-modal-colorway.active {
  border-color: #1dcfbf;
  background: #1dcfbf;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(29, 207, 191, 0.3);
}

.print-modal-footer {
  border-top: 1px solid rgba(75, 84, 90, 0.18);
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.print-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  font-size: 0.96rem;
  color: #f7ffff;
  background: linear-gradient(135deg, #1dcfbf, #11b5a5);
  box-shadow: 0 10px 20px rgba(17, 181, 165, 0.35);
  transition: all var(--t-fast);
}

.print-modal-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 181, 165, 0.4);
}

/* ── 8. FEATURED DROP SECTION ───────────────────────────── */
#featured-drop {
  background: #f6f4ef;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: auto;
  padding: 70px 20px 54px;
}

.drop-wrap {
  width: min(100%, 1880px);
  margin: 0 auto;
}

.drop-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 24px;
  align-items: start;
  margin-bottom: 20px;
}

.drop-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.1vw, 4rem);
  line-height: 0.95;
  color: #1f2532;
}

.drop-title span {
  color: #18bcb4;
  font-style: italic;
  font-weight: 500;
}

.drop-lead {
  color: #7d8088;
  font-size: clamp(1.02rem, 1.45vw, 1.3rem);
  line-height: 1.5;
}

.drop-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  height: 560px;
  grid-template-rows: 360px 188px;
  gap: 12px;
  margin-bottom: 14px;
}

.drop-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 61, 98, 0.08);
  box-shadow: 0 10px 24px rgba(34, 47, 56, 0.06);
  overflow: hidden;
}

.drop-product {
  grid-column: 1;
  grid-row: 1 / 3;
  background: linear-gradient(160deg, #0f5d5a, #1a7d79 48%, #74b9b2 100%);
  color: #ecfffa;
  display: grid;
  grid-template-rows: auto minmax(112px, 1fr);
}

.drop-product-copy {
  padding: 18px 18px 12px;
}

.drop-badge,
.drop-mini-title {
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #11b4aa;
}

.drop-mini-title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.drop-mini-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(6764%) hue-rotate(132deg) brightness(99%) contrast(90%);
}

.drop-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 11px;
  margin-bottom: 16px;
  background: rgba(176, 243, 238, 0.18);
  color: #9af0e8;
}

.drop-product h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1;
  margin-bottom: 8px;
}

.drop-product p {
  color: rgba(230, 253, 248, 0.9);
}

.drop-product-visual {
  min-height: 128px;
}

.drop-product-visual img,
.drop-closeup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.drop-closeup {
  position: relative;
  grid-column: 2;
  grid-row: 1;
}

.drop-note {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  color: #58616b;
}

.drop-note strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
  color: #354250;
}

.drop-note span {
  font-size: 0.8rem;
}

.drop-colorways {
  grid-column: 3;
  grid-row: 1;
  padding: 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drop-colorways h4 {
  font-size: 1.1rem;
  color: #283547;
  margin: 0;
}

.drop-colorways-sub {
  color: #8c96a1;
  font-size: 0.86rem;
  line-height: 1.45;
}

.drop-swatches {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.drop-swatch-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5f6c78;
  font-size: 0.86rem;
  font-weight: 700;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 14px rgba(25, 38, 46, 0.15);
}

.swatch.sand { background: #d4c9b3; }
.swatch.mint { background: #7ad8cf; }
.swatch.reef { background: #34485e; }

.drop-colorways-meta {
  margin-top: 2px;
  border-top: 1px solid rgba(43, 58, 73, 0.1);
  padding-top: 8px;
  display: grid;
  gap: 4px;
}

.drop-colorways-meta p {
  color: #7a8591;
  font-size: 0.75rem;
  line-height: 1.35;
}

.drop-colorways-meta strong {
  color: #51606e;
}

.drop-colorways-foot {
  margin-top: auto;
}

.drop-pick-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(27, 182, 170, 0.14);
  color: #1b8f86;
  font-size: 0.75rem;
  font-weight: 800;
}

.drop-price {
  grid-column: 2;
  grid-row: 2;
  background: #deecec;
  padding: 12px 14px;
}

.drop-price-main {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: #1f2a37;
  margin: 4px 0;
}

.drop-price-old {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: #8d969e;
  margin-bottom: 8px;
}

.drop-price-old-value {
  font-weight: 800;
  color: #5f6974;
}

.drop-price-discount {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 8px;
  background: rgba(20, 179, 172, 0.14);
  color: #14b3ac;
  font-weight: 800;
}

.drop-price-note {
  color: #8d969e;
}

.drop-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  width: 100%;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #f2ffff;
  background: linear-gradient(135deg, #24ccbd, #13af9f);
}

.drop-cta:hover {
  background: linear-gradient(135deg, #2fd8ca, #16b8a8);
}

.drop-shipping {
  grid-column: 3;
  grid-row: 2;
  padding: 12px 14px;
}

.drop-shipping ul {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding-left: 8px;
}

.drop-shipping .drop-mini-title {
  color: #111111;
}

.drop-shipping li {
  color: #697480;
  font-size: 0.86rem;
  line-height: 1.3;
}

.drop-shipping li.with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shipping-line-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(6764%) hue-rotate(132deg) brightness(99%) contrast(90%);
}

.drop-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 10px;
}

.drop-benefit {
  background: #f0f3f4;
  border-radius: 14px;
  border: 1px solid rgba(10, 61, 98, 0.08);
  padding: 12px;
}

.drop-benefit .drop-mini-title {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.drop-benefit .drop-mini-title.has-top-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.benefit-icon-box {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid rgba(17, 180, 170, 0.35);
  background: rgba(17, 180, 170, 0.12);
}

.benefit-reliability-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(6764%) hue-rotate(132deg) brightness(99%) contrast(90%);
}

.drop-benefit p {
  color: #75808c;
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Shared section heading styles */
.section-tag {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean-mid);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ocean-deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title .accent { color: var(--ocean-mid); }

/* ── 8.5. COLLECTION HERO SECTION ──────────────────────────── */
.collection-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 75, 95, 0.75), rgba(10, 40, 55, 0.85)),
              url('images/images_bg/collection_hero.webp') center center / cover no-repeat;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 28px 40px;
  overflow: hidden;
}

.collection-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(29, 207, 191, 0.12), transparent 70%);
  pointer-events: none;
}

.collection-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.collection-hero-kicker {
  display: inline-block;
  color: #1dcfbf;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 2px solid rgba(29, 207, 191, 0.4);
  border-radius: 999px;
  background: rgba(29, 207, 191, 0.08);
}

.collection-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  line-height: 1.15;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.collection-hero-accent {
  font-family: 'Pacifico', cursive;
  font-size: clamp(3rem, 7.5vw, 5.2rem);
  color: #1dcfbf;
  font-weight: 400;
  font-style: italic;
  display: inline-block;
  line-height: 1.3;
}

.collection-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 620px;
  margin: 0 auto;
}

/* ── 9. DESIGNS SECTION ──────────────────────────────────── */
#designs {
  background: #ecebe6;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: auto;
  padding: 84px 24px 70px;
}

.collection-wrap {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.collection-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 26px;
  align-items: start;
  margin-bottom: 24px;
}

.collection-kicker {
  color: #19b8ac;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin-bottom: 10px;
}

.collection-title {
  color: #212733;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 5.2vw, 4.55rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.collection-title span {
  color: #22bbb1;
  font-style: italic;
  font-weight: 500;
}

.collection-lead {
  color: #6f7781;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  max-width: 38ch;
  justify-self: end;
  padding-top: 12px;
}

.collection-hook {
  margin-top: 48px;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26, 184, 175, 0.08), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(26, 184, 175, 0.18);
  text-align: center;
}

.collection-hook-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #212733;
  margin: 0 0 8px;
}

.collection-hook-sub {
  font-size: 1rem;
  color: #6f7781;
  margin: 0 0 20px;
}

.collection-hook-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #24ccbd, #16b8a8);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 20px rgba(26, 184, 175, 0.25);
}

.collection-hook-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 184, 175, 0.35);
}

.collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.collection-filter {
  border: 1px solid rgba(55, 67, 78, 0.12);
  border-radius: 999px;
  background: #f7f7f4;
  color: #7a8088;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.collection-filter:hover {
  border-color: rgba(28, 176, 167, 0.45);
  color: #24656a;
  transform: translateY(-1px);
}

.collection-filter.is-active {
  background: #22bbb1;
  border-color: #22bbb1;
  color: #f6ffff;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 14px;
}

.collection-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f6f4;
  border: 1px solid rgba(75, 89, 98, 0.1);
  box-shadow: 0 12px 30px rgba(33, 39, 51, 0.06);
  transition: transform var(--t-fast), border-color var(--t-fast), opacity var(--t-fast);
  display: grid;
  grid-template-rows: minmax(188px, 225px) 1fr;
  contain: layout style paint;
  content-visibility: auto;
  contain-intrinsic-size: 420px;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(25, 34, 46, 0.12);
  border-color: rgba(37, 182, 173, 0.4);
}

.collection-card:focus-visible {
  outline: 3px solid rgba(36, 189, 179, 0.5);
  outline-offset: 2px;
}

.collection-card.is-hidden {
  display: none;
}

.collection-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
}

.badge-mint { background: #18bdaa; }
.badge-emerald { background: #17bd95; }
.badge-sky { background: #29a7e3; }
.badge-sun { background: #efbe37; }
.badge-pink { background: #f48ba3; }
.badge-lilac { background: #9b8ee8; }
.badge-orange { background: #f39a3d; }
.badge-teal { background: #16ad9f; }

.collection-art {
  position: relative;
  overflow: hidden;
  background: #eef2ed;
  isolation: isolate;
}

.collection-art::before {
  content: none;
}

.collection-art::after {
  content: none;
}

.collection-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.collection-art.whale {
  background-image: none;
}

.collection-art.turtle {
  background-image: none;
}

.collection-art.dolphin {
  background-image: none;
}

.collection-art.starfish {
  background-image: none;
}

.collection-art.fish {
  background-image: none;
}

.collection-art.jelly {
  background-image: none;
}

.collection-art.palm {
  background-image: none;
}

.collection-art.sunset {
  background-image: none;
}

.collection-copy {
  padding: 10px 12px 12px;
}

.collection-row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.collection-row h3 {
  color: #28303a;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 800;
}

.collection-chip {
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(45, 59, 69, 0.14);
  background: #efefec;
  color: #8a8f95;
  font-size: 0.7rem;
  padding: 3px 8px;
  font-weight: 700;
}

.collection-kind {
  margin-top: 3px;
  color: #8f949a;
  font-size: 0.88rem;
  font-weight: 700;
}

.collection-desc {
  margin-top: 8px;
  color: #6f757d;
  font-size: 0.84rem;
  line-height: 1.45;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.collection-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.collection-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(36, 47, 56, 0.18);
}

.dot.sand { background: #d5cebc; }
.dot.mint { background: #73c8bb; }
.dot.reef { background: #355b77; }
.dot.lilac { background: #9da8d8; }
.dot.coral { background: #e6a181; }

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #18ab9f;
  font-size: 0.82rem;
  font-weight: 800;
}

.collection-link:hover {
  color: #129488;
}

/* ── 10. ORIGIN STORY SECTION ───────────────────────────── */
#origin-story {
  background: #f4f3ef;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: auto;
  padding: 50px 24px 50px;
}

.origin-wrap {
  width: min(80%, 1640px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) 1fr;
  gap: 48px;
  align-items: center;
}

.origin-media {
  position: relative;
  min-height: 380px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(31, 43, 52, 0.14);
}

.origin-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(22deg, rgba(18, 25, 31, 0.30) 0%, rgba(18, 25, 31, 0.08) 35%, rgba(234, 178, 98, 0.24) 100%);
}

.origin-media img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.origin-badge {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  border-radius: 16px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #25c7bb, #15b2a4);
  box-shadow: 0 14px 28px rgba(21, 178, 164, 0.32);
  color: #f4ffff;
}

.origin-badge strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.15;
}

.origin-badge span {
  display: block;
  font-size: 0.9rem;
  color: rgba(239, 255, 253, 0.92);
}

.origin-kicker {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #0ea59f;
  margin-bottom: 18px;
}

.origin-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.05;
  color: #1f2631;
  margin-bottom: 24px;
}

.origin-title span {
  color: #14b8b0;
  font-style: italic;
  font-weight: 500;
}

.origin-text {
  color: #636b74;
  font-size: clamp(1rem, 1.2vw, 1.24rem);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 900px;
}

.origin-text:last-child {
  margin-bottom: 0;
}

/* ── 11. JOURNEY SECTION ─────────────────────────────────── */
#journey {
  background: #f4f5f6;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: auto;
  padding: 18px 24px 66px;
}

.journey-wrap {
  width: min(100%, 1240px);
  padding-top: 2.5%;
  padding-bottom: 2.5%;
  margin: 0 auto;
}

.journey-head {
  text-align: center;
  margin-bottom: 30px;
}

.journey-kicker {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0ca8a0;
  margin-bottom: 12px;
}

.journey-title {
  font-family: 'playfair display', serif;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1.05;
  color: #1f2733;
}

.journey-title span {
  color: #16b6ad;
  font-style: italic;
  font-weight: 500;
}

.journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(22, 182, 173, 0.2), rgba(22, 182, 173, 0.6), rgba(22, 182, 173, 0.2));
}

.journey-item {
  background: #fdfdfb;
  border: 1.5px solid #e0ecec;
  border-radius: 22px;
  padding: 36px 32px 28px 32px;
  position: relative;
  box-shadow: 0 8px 32px rgba(44, 205, 194, 0.10), 0 1.5px 0 #e0ecec;
  min-height: 180px;
  transition: box-shadow 0.2s;
}

.journey-item.left {
  grid-column: 1;
  justify-self: end;
  text-align: right;
  width: min(100%, 500px);
  min-height: 80px;
}

.journey-item.right {
  grid-column: 2;
  grid-row: 6 ;
  justify-self: start;
  text-align: left;
  width: min(100%, 620px);
  
  min-height: 80px;
}


.journey-item.left::before,
.journey-item.right::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2ccdc2;
  border: 3px solid #daf5f3;
  box-shadow: 0 0 0 4px rgba(44, 205, 194, 0.16);
  z-index: 2;
  pointer-events: none;
}

.journey-item.left::before {
  left: 106%;
  transform: translate(-50%, -50%);
}

.journey-item.right::before {
  right: 105%;
  transform: translate(50%, -50%);
}

.journey-chip {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(32, 200, 191, 0.18);
  color: #0ea59f;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.journey-item h3 {
  font-family: 'playfair display', serif;
  font-size: clamp(1.75rem, 3vw, 1.72rem);
  line-height: 1.18;
  color: #1f2733;
  margin-bottom: 8px;
}

.journey-item p {
  color: #68717b;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.58;
}

/* Journey decorative elements */
.journey-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: float 3s ease-in-out infinite;
}

/* Jellyfish image - covers full empty space */
.journey-deco-jellyfish {
  top: -700px;
  left: -750px;
  width: 1200px;
  height: 2400px;
  opacity: 0.72;
  object-fit: contain;
  animation-delay: 0s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── 11.5 OUR STORY SECTION ──────────────────────────────── */
#our-story {
  background: linear-gradient(160deg, #fdfbf7 0%, #f8fcfd 100%);
  padding: 88px 28px 92px;
}

.story-container {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-content {
  display: grid;
  gap: 18px;
}

.story-kicker {
  color: #16b6ad;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 8px;
}

.story-accent {
  color: #16b6ad;
  font-style: italic;
}

.story-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 600;
}

.story-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 12px;
}

.story-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #16b6ad;
  color: white;
  font-size: 0.96rem;
  font-weight: 800;
  border-radius: 999px;
  transition: all var(--t-fast);
  box-shadow: 0 8px 20px rgba(30, 111, 165, 0.24);
  width: fit-content;
  margin-bottom: 32px;
}

.story-btn:hover {
  background: var(--ocean-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 111, 165, 0.32);
}

.story-stats-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-top: 40px;
  margin-bottom: 0;
  line-height: 1.3;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 2px solid rgba(30, 111, 165, 0.12);
}

.story-stat {
  display: grid;
  gap: 6px;
}

.story-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  line-height: 1;
  color: #16b6ad;
  font-weight: 700;
}

.story-stat strong sup {
  font-size: 1.4rem;
  margin-left: 2px;
}

.story-stat span {
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.story-visual {
  position: relative;
}

.story-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(10, 61, 98, 0.18);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.story-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(10, 61, 98, 0.14);
  line-height: 1.4;
  z-index: 2;
}

.story-badge-top {
  top: 18px;
  left: 18px;
  background: rgba(179, 229, 252, 0.96);
  color: var(--ocean-deep);
}

.story-badge-middle {
  left: 18px;
  bottom: 48%;
  font-size: 0.74rem;
  line-height: 1.5;
  max-width: 160px;
}

.story-badge-bottom {
  right: 18px;
  bottom: 18px;
  background: linear-gradient(135deg, rgba(168, 237, 203, 0.98), rgba(179, 229, 252, 0.96));
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--ocean-mid);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

.story-badge-bottom small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.82;
  margin-top: 2px;
}

/* ── 12. SHORELINE CTA SECTION ───────────────────────────── */
#shoreline-cta {
  background: #f4f5f6;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: auto;
  padding: 34px 0 84px;
}

.shoreline-wrap {
  width: min(100%, 2280px);
  margin: 0 auto;
}

.shoreline-hero {
  
  min-height: 290px;
  overflow: hidden;
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(14, 23, 31, 0.42) 0%, rgba(19, 31, 39, 0.28) 45%, rgba(5, 48, 54, 0.50) 100%),
    url('images/images_bg/main_page.png');
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(24, 39, 48, 0.14);
}

.shoreline-hero-content {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
}

.shoreline-hero h2 {
  font-family: Georgia, 'Times New Roman', serif;
  color: #f5fbff;
  font-size: clamp(2.4rem, 4.9vw, 4.25rem);
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 8px 18px rgba(10, 22, 29, 0.34);
}

.shoreline-hero h2 span {
  color: #74ece4;
  font-style: italic;
  font-weight: 500;
}

.shoreline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 1.04rem;
  font-weight: 800;
  color: #efffff;
  background: linear-gradient(135deg, #25cabf, #13b5a8);
  box-shadow: 0 10px 24px rgba(19, 181, 168, 0.34);
}

.shoreline-btn:hover {
  background: linear-gradient(135deg, #35d8cd, #1bbdb0);
}

.shoreline-cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
}

.shoreline-card {
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(10, 61, 98, 0.06);
}

.shoreline-card.tone-sky { background: #dce8ec; }
.shoreline-card.tone-mint { background: #e2e8e3; }
.shoreline-card.tone-sand { background: #ede8e3; }

.shoreline-icon-box {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 14px rgba(33, 45, 57, 0.08);
  margin-bottom: 12px;
}

.shoreline-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(6764%) hue-rotate(132deg) brightness(99%) contrast(90%);
}

.shoreline-card h3 {
  font-family: 'playfair display', serif;
  font-size: 2.1rem;
  line-height: 1.2;
  color: #233243;
  margin-bottom: 6px;
}

.shoreline-card p {
  font-size: 1rem;
  color: #7f8892;
  line-height: 1.5;
  margin-bottom: 12px;
}

.shoreline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #099f95;
}

.shoreline-link:hover {
  opacity: 0.82;
}

/* ── 13. PRE-ORDER SECTION ───────────────────────────────── */
#preorder {
  background: #eeede8;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: auto;
  padding: 78px 24px 84px;
}

.preorder-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.preorder-header {
  text-align: center;
  margin-bottom: 26px;
}

.preorder-kicker {
  color: #1bb7ab;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.preorder-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  color: #212532;
  line-height: 0.9;
}

.preorder-title span {
  color: #1dbcb2;
  font-style: italic;
  font-weight: 500;
}

.preorder-sub {
  margin-top: 10px;
  color: #7f8690;
  font-size: 0.95rem;
}

.preorder-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.preorder-pill {
  border: 1px solid rgba(58, 66, 78, 0.1);
  border-radius: 12px;
  background: #f5f5f3;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.preorder-pill strong {
  color: #2a313c;
  font-size: 0.78rem;
  font-weight: 800;
}

.preorder-pill span {
  color: #8e949d;
  font-size: 0.72rem;
}

.preorder-main {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(310px, 410px);
  gap: 18px;
  align-items: start;
}

.preorder-showcase {
  display: grid;
  gap: 12px;
}

.showcase-hero-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(52, 63, 73, 0.12);
  background: #f8faf9;
}

.showcase-hero-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.showcase-hero-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(244, 246, 247, 0.92);
}

.showcase-hero-meta strong {
  display: block;
  color: #2e3540;
  font-size: 0.84rem;
}

.showcase-hero-meta span {
  display: block;
  color: #8a9098;
  font-size: 0.7rem;
}

.showcase-hero-meta p {
  color: #2d333d;
  font-size: 1.03rem;
  font-weight: 800;
}

.showcase-prints-card {
  border: 1px solid rgba(52, 63, 73, 0.12);
  border-radius: 14px;
  background: #f4f5f5;
  padding: 12px;
}

.showcase-mini-title {
  text-transform: uppercase;
  color: #7b8189;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 900;
  margin-bottom: 10px;
}

.showcase-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(62px, 1fr));
  gap: 10px;
}

.showcase-thumb {
  aspect-ratio: 0.74;
  border-radius: 10px;
  background-image:
    linear-gradient(165deg, rgba(249, 246, 236, 0.95), rgba(241, 233, 214, 0.94)),
    url("images/images_bg/main_page.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(187, 176, 157, 0.6);
  box-shadow: 0 8px 14px rgba(52, 58, 65, 0.1);
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #1bafa4;
  font-size: 0.75rem;
  font-weight: 800;
}

.preorder-form {
  background: #f6f6f4;
  border: 1px solid rgba(52, 63, 73, 0.12);
  border-radius: 18px;
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preorder-form h3 {
  color: #212a34;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.7rem;
  line-height: 1;
}

.preorder-form-sub {
  color: #7f8690;
  font-size: 0.8rem;
  line-height: 1.45;
  margin-bottom: 2px;
}

.form-section {
  border: 1px solid #dde2e5;
  border-radius: 12px;
  background: #f0f1f0;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.form-section-title {
  color: #3b4550;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-row {
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-weight: 700;
  font-size: 0.74rem;
  color: #56606c;
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 42px;
  padding: 12px 16px;
  border: 1.5px solid rgba(33, 46, 58, 0.12);
  border-radius: 10px;
  font-size: 0.95rem;
  color: #27313b;
  background: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca8b3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1ab8af;
  box-shadow: 0 0 0 4px rgba(26, 184, 175, 0.08);
  background: #ffffff;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e26868;
  box-shadow: 0 0 0 3px rgba(226, 104, 104, 0.15);
}

.form-error {
  font-size: 0.72rem;
  color: #de6767;
  font-weight: 600;
  min-height: 12px;
}

.variant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.variant-card {
  border: 1px solid #d0d6db;
  border-radius: 12px;
  background: #f7f8f8;
  padding: 12px;
  display: grid;
  gap: 9px;
}

.variant-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3f4751;
  font-size: 0.78rem;
  font-weight: 800;
}

.variant-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.variant-row > span {
  color: #67707a;
  font-size: 0.78rem;
  font-weight: 700;
}

 qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfd4d8;
  border-radius: 999px;
  background: #f7f8f8;
  padding: 2px;
}

 qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #3f4a54;
  background: #e9ecec;
  line-height: 1;
}

 qty-btn:hover {
  background: #dfe4e4;
}

.variant-qty {
  width: 52px;
  min-height: 26px;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2f3843;
  padding: 0;
}

.variant-qty:focus {
  outline: none;
}

.variant-qty::-webkit-outer-spin-button,
.variant-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.order-summary {
  border: 1px dashed #aeb8bf;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8f9f8, #eef2f2);
  padding: 12px;
}

.order-summary-top {
  color: #414a55;
  font-size: 0.8rem;
  font-weight: 700;
}

.order-summary-top strong {
  color: #179f95;
  font-weight: 900;
}

.order-summary-list {
  margin-top: 4px;
  color: #6f7883;
  font-size: 0.77rem;
  line-height: 1.45;
}

.bundle-offer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid #d4d8dc;
  border-radius: 8px;
  background: #ededeb;
  padding: 8px 10px;
  cursor: pointer;
}

.bundle-offer input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #1fb9af;
}

.bundle-offer strong {
  display: block;
  color: #4c5560;
  font-size: 0.74rem;
}

.bundle-offer small {
  color: #9097a0;
  font-size: 0.68rem;
}

.preorder-submit {
  position: sticky;
  bottom: 12px;
  z-index: 2;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #1dd6c4 0%, #11b6a8 100%);
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 800;
  padding: 14px 24px;
  margin-top: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(17, 182, 168, 0.35), 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.preorder-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(17, 182, 168, 0.45), 0 4px 12px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #29dfce 0%, #16b4a5 100%);
}

.preorder-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(17, 182, 168, 0.3);
}

.preorder-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 6px 16px rgba(17, 182, 168, 0.2);
}

.preorder-note {
  text-align: center;
  color: #8e959e;
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Submit button states */
.btn-loading { display: none; }
.preorder-submit.loading .btn-text { display: none; }
.preorder-submit.loading .btn-loading { display: inline; }

/* ── 14. THANK YOU SECTION ───────────────────────────────── */
#thankyou {
  background: var(--grad-ocean);
  flex-direction: column;
  text-align: center;
  display: none;
}

#thankyou.active { display: flex; }

.thankyou-container { max-width: 600px; }

.ty-icon {
  font-size: 5rem;
  margin-bottom: 24px;
  animation: tyBounce 1s ease forwards;
}

@keyframes tyBounce {
  0%   { transform: scale(0) rotate(-30deg); opacity: 0; }
  60%  { transform: scale(1.2) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.ty-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.ty-title .accent { color: var(--ocean-light); }

.ty-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.ty-creatures {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 2.5rem;
  margin-bottom: 28px;
}

.ty-creatures span { animation: floatEmoji ease-in-out infinite; }
.ty-creatures span:nth-child(1) { animation-duration: 5s; }
.ty-creatures span:nth-child(2) { animation-duration: 6s; animation-delay: -1s; }
.ty-creatures span:nth-child(3) { animation-duration: 7s; animation-delay: -2s; }
.ty-creatures span:nth-child(4) { animation-duration: 4.5s; animation-delay: -0.5s; }
.ty-creatures span:nth-child(5) { animation-duration: 5.5s; animation-delay: -3s; }
.ty-creatures span:nth-child(6) { animation-duration: 6.5s; animation-delay: -1.5s; }

.ty-order {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-weight: 600;
}

#thankyou .btn-ghost {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

#thankyou .btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ── 15. FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--ocean-deep);
  padding: 48px 24px;
}

.footer-inner { 
  max-width: 1000px; 
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-col-left {
  text-align: left;
}

.footer-col-right {
  text-align: left;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--white);
}

.footer-copy {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-eco {
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.footer-contact-icon {
  font-size: 1.2rem;
}

.footer-contact-label {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.footer-contact-link {
  color: var(--mint);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-contact-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ── 16. REVEAL ANIMATIONS ───────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for collection cards */
.collection-grid .collection-card:nth-child(2) { transition-delay: 0.06s; }
.collection-grid .collection-card:nth-child(3) { transition-delay: 0.12s; }
.collection-grid .collection-card:nth-child(4) { transition-delay: 0.18s; }
.collection-grid .collection-card:nth-child(5) { transition-delay: 0.24s; }
.collection-grid .collection-card:nth-child(6) { transition-delay: 0.30s; }
.collection-grid .collection-card:nth-child(7) { transition-delay: 0.36s; }
.collection-grid .collection-card:nth-child(8) { transition-delay: 0.42s; }

/* ── 17. RESPONSIVE ──────────────────────────────────────── */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
  .section {
    padding: 80px 24px 52px;
  }

  #hero {
    padding-top: 120px;
    gap: 28px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 9vw, 5rem);
  }

  #about {
    padding: 84px 20px 64px;
  }

  .about-showcase-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .about-head-right {
    text-align: left;
    max-width: 640px;
  }

  .print-strip {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    gap: 12px;
  }

  .print-art {
    height: 210px;
  }



  #featured-drop {
    padding: 64px 18px 48px;
  }

  .drop-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .drop-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    grid-template-rows: auto;
  }

  .drop-product {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 290px;
  }

  .drop-product-copy {
    align-self: center;
  }

  .drop-closeup,
  .drop-colorways,
  .drop-price,
  .drop-shipping {
    grid-column: auto;
    grid-row: auto;
  }

  .drop-benefits {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .collection-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .collection-lead {
    justify-self: start;
    max-width: 62ch;
    padding-top: 0;
  }

  .collection-grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 14px;
  }

  #origin-story {
    padding: 72px 24px 60px;
  }
}

/* Tablet portrait / Mobile landscape (768px and below) */
@media (max-width: 768px) {
  .section {
    padding: 70px 20px 48px;
  }
  
  #hero {
    padding-top: 110px;
  }
  
  .hero-title {
    font-size: clamp(2.8rem, 11vw, 3.8rem);
  }
  
  .collection-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 12px;
  }
  
  .print-strip {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
  .origin-wrap {
    width: min(100%, 1640px);
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .origin-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .origin-media img {
    height: 100%;
  }

  .origin-copy {
    max-width: 760px;
  }

  .origin-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }

  #journey {
    padding: 12px 20px 56px;
  }

  .journey-item h3 {
    font-size: 1.45rem;
  }

  .journey-item p {
    font-size: 0.94rem;
  }

  #shoreline-cta {
    padding: 26px 20px 64px;
  }

  .shoreline-hero {
    min-height: 250px;
  }

  .shoreline-hero-content {
    min-height: 250px;
  }

  .shoreline-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shoreline-card h3 {
    font-size: 1.45rem;
  }

  .preorder-main {
    grid-template-columns: 1fr;
  }

  .variant-grid {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .preorder-form {
    max-width: 620px;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .about-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .print-strip {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .print-modal {
    padding: 12px;
  }

  .print-modal-dialog {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }

  .print-modal-media {
    min-height: 260px;
    background-position: center 24%;
  }

  .print-modal-copy {
    padding: 18px 16px 16px;
  }

  .print-modal-title {
    font-size: clamp(1.45rem, 7.6vw, 2rem);
  }

  .print-modal-section p {
    font-size: 0.95rem;
  }

  .print-modal-cta {
    width: 100%;
  }

  .preorder-artwork-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preorder-size-grid {
    grid-template-columns: 1fr;
  }
  
  /* Tối ưu modal cho mobile */
  .preorder-modal.active {
    padding: 12px;
  }
  
  .preorder-modal-dialog {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 20px;
  }
  
  .preorder-modal-head {
    padding: 24px 56px 16px 20px;
  }
  
  .preorder-modal-close {
    top: 18px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
  
  .preorder-artwork-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  
  .preorder-size-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .preorder-choice-list {
    gap: 10px;
  }
  
  .collection-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 10px;
  }
}

@media (max-width: 600px) {
  #featured-drop {
    padding: 54px 14px 40px;
  }

  .drop-head {
    margin-bottom: 16px;
  }

  .drop-title {
    font-size: clamp(1.95rem, 11vw, 2.6rem);
  }

  .drop-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .drop-product {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .drop-product-copy {
    padding: 16px 16px 10px;
  }

  .drop-badge {
    margin-bottom: 12px;
    padding: 4px 10px;
    font-size: 0.76rem;
  }

  .drop-product h3 {
    font-size: clamp(1.65rem, 8.5vw, 2.2rem);
  }

  .drop-product-visual {
    min-height: 220px;
    max-height: 220px;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(7, 34, 52, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .navbar.scrolled {
    background: rgba(7, 34, 52, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  }

  .nav-logo-img {
    height: 40px;
    max-width: 170px;
  }

  .nav-logo-text {
    font-size: 1.05rem;
  }

  .nav-order-btn { display: none; }
  .nav-mobile-only { display: block; width: 100%; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 10px;
    gap: 4px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 999;
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  .nav-links.open li {
    animation: slideInMenuItem 0.3s cubic-bezier(0.4, 0, 0.2, 1) backwards;
  }
  
  .nav-links.open li:nth-child(1) { animation-delay: 0.05s; }
  .nav-links.open li:nth-child(2) { animation-delay: 0.1s; }
  .nav-links.open li:nth-child(3) { animation-delay: 0.15s; }
  .nav-links.open li:nth-child(4) { animation-delay: 0.2s; }
  .nav-links.open li:nth-child(5) { animation-delay: 0.25s; }
  
  @keyframes slideInMenuItem {
    from {
      opacity: 0;
      transform: translateX(-12px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .nav-link {
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    text-align: left;
    font-size: 0.96rem;
    font-weight: 700;
    color: #1a2530;
    background: transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .nav-link::before {
    content: '';
    position: absolute;
    left: 8px;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #1dd6c4, #11b6a8);
    border-radius: 2px;
    transition: height 0.2s ease;
  }
  
  .nav-link:hover {
    background: rgba(26, 184, 175, 0.08);
    color: #11b6a8;
    transform: translateX(4px);
  }
  
  .nav-link:hover::before {
    height: 24px;
  }
  
  .nav-link:active {
    transform: translateX(2px) scale(0.98);
  }
  .nav-hamburger { display: flex; }
  
  .nav-mobile-only {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  
  .nav-cta {
    color: #ffffff !important;
    background: linear-gradient(135deg, #1dd6c4, #11b6a8);
    padding: 13px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(17, 182, 168, 0.35);
    font-size: 0.98rem;
    letter-spacing: 0.02em;
  }
  
  .nav-cta::before {
    display: none;
  }
  
  .nav-cta:hover {
    background: linear-gradient(135deg, #29dfce, #16b4a5);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(17, 182, 168, 0.45);
  }
  
  .nav-cta:active {
    transform: translateY(0) scale(0.98);
  }

  #hero { 
    padding-top: 100px;
    gap: 20px;
  }
  
  #hero::after { 
    height: 100px; 
  }

  .hero-title {
    font-size: clamp(2.6rem, 12vw, 3.2rem);
    margin-bottom: 14px;
  }
  .hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
    max-width: min(94vw, 340px);
    padding: 8px 12px;
    margin-bottom: 16px;
    white-space: normal;
  }
  
  .hero-sub {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.5;
    margin-bottom: 18px;
    padding-inline: 6px;
  }
  
  .hero-actions .btn {
    min-width: 160px;
    padding: 13px 18px;
    font-size: 0.9rem;
  }
  
  .hero-chip {
    font-size: 0.76rem;
    white-space: nowrap;
    padding: 5px 9px;
  }
  
  .hero-scroll-hint {
    bottom: 26px;
    font-size: 0.84rem;
  }

  #about {
    padding: 68px 16px 54px;
  }

  .about-kicker {
    font-size: 0.74rem;
    margin-bottom: 10px;
  }

  .about-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
    margin-bottom: 12px;
  }

  .about-lead {
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .about-link {
    font-size: 0.96rem;
  }

  .collection-hero {
    min-height: 70vh;
    padding: 80px 20px 60px;
  }

  .collection-hero-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    padding: 6px 12px;
  }

  .collection-hero-title {
    font-size: clamp(2.6rem, 12vw, 3.2rem);
    margin-bottom: 16px;
  }

  .collection-hero-accent {
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .collection-hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    line-height: 1.5;
  }

  .print-strip {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .print-item {
    flex: 0 0 168px;
  }

  .print-art {
    height: 186px;
    border-radius: 16px;
    font-size: 2.9rem;
    margin-bottom: 8px;
  }



  .print-item h3 {
    font-size: 0.92rem;
  }

  .print-item p {
    font-size: 0.82rem;
  }

  #featured-drop {
    padding: 58px 14px 42px;
  }

  .drop-title {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }

  .drop-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .drop-product {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .drop-product-visual {
    max-height: 200px;
  }

  .drop-closeup {
    min-height: 180px;
  }

  .drop-note {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .drop-benefits {
    grid-template-columns: 1fr;
  }

  #origin-story {
    padding: 68px 16px 56px;
  }

  .origin-wrap {
    gap: 16px;
  }

  .origin-media {
    aspect-ratio: 16 / 11;
    border-radius: 18px;
  }

  .origin-media img {
    height: 100%;
  }

  .origin-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
    margin-bottom: 14px;
  }

  .origin-kicker {
    margin-bottom: 12px;
  }

  .origin-badge {
    right: 10px;
    left: 10px;
    bottom: 10px;
    border-radius: 12px;
    padding: 10px 14px;
  }

  .origin-badge strong {
    font-size: 0.96rem;
  }

  .origin-badge span {
    font-size: 0.82rem;
  }

  #journey {
    padding: 14px 16px 50px;
  }

  .journey-head {
    text-align: left;
    margin-bottom: 16px;
  }

  .journey-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .journey-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 22px;
  }

  .journey-timeline::before {
    left: 6px;
    width: 3px;
    border-radius: 999px;
    transform: none;
  }

  .journey-deco-jellyfish {
    display: none;
  }

  .journey-item.left,
  .journey-item.right {
    grid-column: 1;
    grid-row: auto !important;
    justify-self: stretch;
    text-align: left;
    width: 100%;
    min-height: 0;
    padding: 18px 16px 14px;
    border-radius: 14px;
    border-width: 1px;
    box-shadow: 0 8px 18px rgba(31, 63, 74, 0.1);
  }

  .journey-item.left::before{
    left: -12px;
    top: 20px;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 2px rgba(44, 205, 194, 0.16);
  }
  .journey-item.right::before {
    left: -21px;
    top: 20px;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 2px rgba(44, 205, 194, 0.16);
  }

  .journey-chip {
    font-size: 0.72rem;
    padding: 4px 9px;
    margin-bottom: 7px;
  }

  .journey-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.28;
  }

  .journey-item p {
    font-size: 0.86rem;
    line-height: 1.48;
  }

  #our-story {
    padding: 56px 16px 64px;
  }

  .story-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
    margin-bottom: 12px;
  }

  .story-lead {
    font-size: 1rem;
  }

  .story-body {
    font-size: 0.92rem;
  }

  .story-btn {
    padding: 12px 24px;
    font-size: 0.92rem;
    margin-bottom: 28px;
  }

  .story-stats-heading {
    font-size: 1.2rem;
    margin-top: 28px;
  }

  .story-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 20px;
  }

  .story-stat strong {
    font-size: 2rem;
  }

  .story-stat strong sup {
    font-size: 1.2rem;
  }

  .story-badge {
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  .story-badge-top {
    top: 12px;
    left: 12px;
  }

  .story-badge-middle {
    left: 12px;
    bottom: 46%;
    max-width: 140px;
    font-size: 0.7rem;
  }

  .story-badge-bottom {
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }

  .badge-icon {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }

  .story-badge-bottom small {
    font-size: 0.64rem;
  }

  #shoreline-cta {
    padding: 18px 16px 54px;
  }

  .shoreline-hero {
    border-radius: 18px;
    min-height: 220px;
  }

  .shoreline-hero-content {
    min-height: 220px;
  }

  .shoreline-hero h2 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .shoreline-btn {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .preorder-highlights {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .showcase-hero-card img {
    height: 280px;
  }

  .form-row { grid-template-columns: 1fr; }
  .preorder-form { padding: 16px 14px 14px; }

  .collection-grid { grid-template-columns: repeat(2, minmax(160px, 1fr)); }

  .collection-card {
    box-shadow: 0 8px 18px rgba(33, 39, 51, 0.08);
    transition: opacity var(--t-fast), border-color var(--t-fast);
  }

  .print-modal-backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .preorder-modal-dialog {
    width: 100%;
    border-radius: 0;
  }

  .preorder-artwork-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preorder-choice-row {
    padding: 10px 12px;
  }

  .ty-creatures { font-size: 2rem; gap: 10px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-col-left,
  .footer-col-right {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo-img {
    height: 40px;
  }

  .footer-logo-text {
    font-size: 1.3rem;
  }

  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .footer-contact-item {
    justify-content: center;
    font-size: 0.88rem;
  }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
  .section {
    padding: 76px 16px 40px;
  }

  .navbar {
    padding: 12px 16px;
  }

  .nav-logo-img {
    height: 36px;
    max-width: 140px;
  }

  .nav-logo {
    gap: 8px;
  }

  .nav-logo-text {
    font-size: 0.98rem;
  }

  .nav-links {
    top: 60px;
    left: 10px;
    right: 10px;
    padding: 10px;
  }

  .nav-link {
    font-size: 0.94rem;
    padding: 12px 16px;
  }

  #hero {
    min-height: 100svh;
    padding-top: 86px;
    gap: 18px;
  }

  #hero::before {
    background-position: center 30%;
  }

  #hero::after {
    height: 70px;
  }

  .hero-eyebrow {
    display: inline-block;
    max-width: min(92vw, 300px);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 2.8rem);
    margin-bottom: 10px;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 16px;
    padding-inline: 4px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: min(100%, 340px);
    margin: 0 auto 24px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.9rem;
    line-height: 1.25;
    white-space: normal;
  }

  .hero-actions .btn span {
    white-space: nowrap;
  }

  .hero-chip {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .btn {
    padding: 12px 16px;
    font-size: 0.88rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .collection-card:hover {
    transform: none;
    box-shadow: none;
  }
}


/* ----------------------------------------------------------
   DESKTOP OPTIMIZATION - Centered Modal Better Layout
   ---------------------------------------------------------- */

@media (min-width: 768px) {
  /* Desktop/Tablet: Centered modal with larger dimensions */
  .preorder-modal.active {
    padding: 24px;
  }
  
  .preorder-modal-dialog {
    max-width: 720px;
    max-height: 85vh;
    border-radius: 24px;
  }
  
  .preorder-modal-head {
    padding: 36px 70px 20px 28px;
  }
  
  .preorder-modal-close {
    top: 28px;
    right: 24px;
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  /* Desktop large: Wider centered modal */
  .preorder-modal-dialog {
    max-width: 800px;
    max-height: 80vh;
  }
}
