/* ==========================================================================
   RESINCRAFT LUXURY ULTRA-ENHANCED STYLESHEET
   Features: Hyper-Realistic Resin Shimmer, Optical Glare, 3D Skeuomorphic Depth
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --primary-navy: #192038;
  --accent-gold: #d4af37;
  --resin-gloss: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.45);
  --luxury-shadow: 0 20px 45px rgba(25, 32, 56, 0.08);
  --ambient-gold-glow: drop-shadow(0 0 16px rgba(212, 175, 55, 0.45));
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: #f7f9fc;
  color: #1f2438;
}

/* ==========================================================================
   AMBIENT BACKGROUND FX
   ========================================================================== */
.star-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  background: radial-gradient(circle, #a78bfa 0%, #7c3aed 70%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 8px #7c3aed, 0 0 16px #c4b5fd;
  opacity: 0.55;
  animation: floatDown linear infinite, twinkle ease-in-out infinite alternate;
}

@keyframes floatDown {
  0% { transform: translateY(-20px) scale(0.7); }
  100% { transform: translateY(105vh) scale(1.15); }
}

@keyframes twinkle {
  0% { opacity: 0.2; transform: scale(0.7); filter: blur(0.5px); }
  100% { opacity: 0.95; transform: scale(1.3); filter: blur(0px); }
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.logo {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-navy);
  display: flex;
  flex-direction: column;
}

.logo i {
  color: #f43f5e;
  filter: drop-shadow(0 2px 4px rgba(244, 63, 94, 0.35));
}

.logo span {
  font-size: 8.5px;
  letter-spacing: 2px;
  color: #7b809a;
  font-weight: 700;
  margin-top: -2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--primary-navy);
  cursor: pointer;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 6px 12px;
  text-decoration: none;
  font-size: 13px;
  color: #555c77;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.25s ease;
}

nav a:hover, nav a.active {
  color: var(--primary-navy);
  background: rgba(25, 32, 56, 0.05);
  font-weight: 600;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 8%;
  background: 
    linear-gradient(95deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.2) 100%),
    url('images/hero.png') no-repeat center right / cover;
  z-index: 1;
}

.hero-content {
  max-width: 620px;
}

.sub-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #4b5563;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding: 4px 10px;
  background: rgba(226, 232, 240, 0.6);
  border-radius: 6px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  color: var(--primary-navy);
  line-height: 1.12;
  margin: 10px 0 16px;
}

.cursive {
  font-family: 'Great Vibes', cursive;
  font-size: 78px;
  color: #232b5d;
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn {
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.btn-dark {
  background: linear-gradient(135deg, #192038 0%, #2b3566 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 32, 56, 0.25);
}

.btn-outline {
  border: 1.5px solid #232b5d;
  color: #232b5d;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: #232b5d;
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.f-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #1e293b;
  font-weight: 600;
}

.f-item i {
  font-size: 17px;
  color: #232b5d;
}

/* ==========================================================================
   PRODUCTS & FEATURE GRIDS
   ========================================================================== */
.section {
  padding: 75px 8%;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 35px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--primary-navy);
  margin-top: 4px;
}

.section-subtext {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.p-card {
  background: #ffffff;
  border: 1px solid rgba(230, 235, 245, 0.9);
  border-radius: 18px;
  padding: 14px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(25, 32, 56, 0.08);
  border-color: #cbd5e1;
}

.p-img img {
  width: 100%;
  height: 210px;
  border-radius: 12px;
  object-fit: cover;
}

.p-card h5 {
  font-size: 14px;
  margin: 14px 0 6px;
  color: var(--primary-navy);
  font-weight: 700;
}

.price-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  margin-top: auto;
}

.price-rating .price {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.price-rating .rating {
  font-size: 11px;
  color: #f59e0b;
}

.add-btn {
  width: 100%;
  padding: 11px;
  border: none;
  background: var(--primary-navy);
  color: #ffffff;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.add-btn:hover {
  background: #11162b;
  box-shadow: 0 4px 12px rgba(25, 32, 56, 0.2);
}

/* Why Choose Us */
.why-choose {
  background: #fdfefe;
  text-align: center;
}

.why-choose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 40px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reason-card {
  padding: 28px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #edf2f7;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-4px);
}

.reason-card i {
  font-size: 26px;
  color: var(--primary-navy);
  margin-bottom: 14px;
}

.reason-card h4 {
  font-size: 14.5px;
  margin-bottom: 6px;
  font-weight: 700;
}

.reason-card p {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.6;
}

/* ==========================================================================
   CUSTOM STUDIO SHELL (MODERN NEOMORPHIC/GLASS)
   ========================================================================== */
.custom-studio-section {
  padding: 85px 8%;
  background: #f8fafc;
  border-top: 1px solid #eef2f6;
  position: relative;
  z-index: 1;
}

.duo-section {
  background: radial-gradient(circle at top right, #f1f5f9 0%, #e2e8f0 100%);
}

.studio-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.studio-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--primary-navy);
  margin-top: 6px;
}

.studio-header p {
  font-size: 13px;
  color: #64748b;
}

.custom-studio-card {
  max-width: 1040px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 50px rgba(35, 43, 93, 0.06);
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  overflow: hidden;
}

.preview-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  border-right: 1px solid #f1f5f9;
  min-height: 480px;
}

.mockup-scaler {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.botanical-bg {
  background: radial-gradient(circle at 45% 45%, #ffffff 0%, #f7f3ee 100%);
}

.realistic-surface-bg {
  background: 
    radial-gradient(circle at 50% 30%, #ffffff 0%, #edf2f7 65%, #e2e8f0 100%);
}

.preview-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  padding: 12px 14px 0;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  margin-top: auto;
}

.badge-price {
  background: linear-gradient(135deg, #192038 0%, #2b3566 100%);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(25, 32, 56, 0.2);
}

/* ==========================================================================
   STUDIO 1: "M" STYLE REALISTIC DRY FLOWER GLASS ALPHABET
   ========================================================================== */
.keychain-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

.ring-hardware {
  width: 52px;
  height: 52px;
  border: 4.5px solid #d4af37;
  border-radius: 50%;
  box-shadow: 
    0 5px 12px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.9),
    inset 0 -2px 4px rgba(138, 108, 23, 0.8);
  background: transparent;
  z-index: 4;
}

.connector-chain {
  width: 4px;
  background: linear-gradient(to bottom, #d4af37 0%, #8a6c17 100%);
  margin-top: -3px;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.chain-long {
  height: 26px;
}

.botanical-letter-wrap {
  position: relative;
  width: 175px;
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.16));
}

.resin-glass-char {
  font-family: 'Poppins', sans-serif;
  font-size: 175px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  user-select: none;
  color: rgba(255, 255, 255, 0.28);
  -webkit-text-stroke: 4.5px rgba(212, 175, 55, 0.45);
  text-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.12),
    inset 0 0 14px rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

/* Botanical Skeleton Petal Layering */
.petal {
  position: absolute;
  border-radius: 50% 12% 50% 50%;
  opacity: 0.82;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}

.p1 { width: 44px; height: 48px; top: 38px; left: 16px; transform: rotate(28deg); }
.p2 { width: 46px; height: 50px; top: 32px; right: 18px; transform: rotate(-32deg); }
.p3 { width: 40px; height: 44px; bottom: 30px; left: 62px; transform: rotate(14deg); }

/* 24K Leaf Flakes */
.gold-foil {
  position: absolute;
  background: repeating-linear-gradient(45deg, #ffe066 0px, #d4af37 6px, #855800 12px);
  clip-path: polygon(10% 25%, 35% 5%, 70% 30%, 95% 15%, 85% 65%, 100% 90%, 55% 85%, 25% 100%, 0% 65%);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
  pointer-events: none;
  z-index: 3;
}

.f1 { width: 38px; height: 38px; bottom: 22px; left: 16px; transform: rotate(45deg); }
.f2 { width: 44px; height: 30px; top: 80px; right: 28px; transform: rotate(-15deg); }

/* ==========================================================================
   STUDIO 2: ULTRA REALISTIC CONNECTED DUO PENDANT ("E" STYLE)
   ========================================================================== */
.realistic-duo-keychain {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.22));
}

/* Highly Reflective Stainless Steel Split Ring */
.steel-split-ring {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: conic-gradient(
    #94a3b8 0deg,
    #ffffff 45deg,
    #475569 90deg,
    #cbd5e1 135deg,
    #1e293b 180deg,
    #ffffff 225deg,
    #64748b 270deg,
    #ffffff 315deg,
    #94a3b8 360deg
  );
  box-shadow: 
    0 6px 14px rgba(0, 0, 0, 0.25),
    inset 0 2px 3px rgba(255, 255, 255, 0.9),
    inset 0 -2px 3px rgba(0, 0, 0, 0.6);
  padding: 6.5px;
  position: relative;
  z-index: 10;
}

.ring-core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffffff 0%, #edf2f7 100%);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.joint-connector {
  width: 11px;
  height: 15px;
  border: 3.5px solid #94a3b8;
  border-radius: 8px;
  margin-top: -7px;
  margin-bottom: -5px;
  background: transparent;
  z-index: 9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.duo-suspended-assembly {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* Quote Plaque - Liquid Resin Glass Finish */
.real-quote-plaque {
  position: relative;
  width: 130px;
  min-height: 205px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.18),
    inset 0 0 18px rgba(255, 255, 255, 0.8),
    inset 0 2px 3px rgba(255, 255, 255, 1);
  padding: 26px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-3.5deg);
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.35s ease;
}

.metal-grommet {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: 2px solid #475569;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.6);
  z-index: 5;
}

.resin-reflection-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, transparent 42%, rgba(255,255,255,0.12) 100%);
  pointer-events: none;
  z-index: 4;
}

.plaque-printed-text {
  font-family: 'Dancing Script', cursive;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  white-space: pre-line;
  position: relative;
  z-index: 6;
  text-shadow: 0 0.5px 1px rgba(255,255,255,0.9);
}

/* Sculpted Alphabet with Chrome Links */
.letter-link-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(4deg);
}

.metal-link-chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -4px;
}

.c-link {
  width: 8px;
  height: 11px;
  border: 2.5px solid #94a3b8;
  border-radius: 6px;
  margin-top: -3px;
  background: linear-gradient(to right, #ffffff, #64748b);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.real-resin-letter-block {
  position: relative;
  width: 140px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.letter-hanging-bail {
  position: absolute;
  top: 2px;
  width: 10px;
  height: 12px;
  border: 2.5px solid #94a3b8;
  border-radius: 5px;
  background: transparent;
  z-index: 3;
}

.sculpted-letter {
  font-family: 'Poppins', sans-serif;
  font-size: 162px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  user-select: none;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.25));
  transition: all 0.3s ease;
  position: relative;
}

.letter-vertical-badge {
  position: absolute;
  top: 52%;
  left: 20%;
  transform: translate(-50%, -50%) rotate(-90deg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
  pointer-events: none;
  z-index: 8;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.letter-vertical-badge span {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: #1e293b;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
}

/* ==========================================================================
   INTERACTIVE CONTROLS FORM
   ========================================================================== */
.custom-controls {
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 13.5px;
  outline: none;
  font-family: inherit;
  transition: all 0.25s ease;
  background: #ffffff;
  color: #1e293b;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3.5px rgba(25, 32, 56, 0.12);
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s ease;
}

.color-chip:hover {
  border-color: var(--primary-navy);
  transform: translateY(-1px);
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.custom-order-btn {
  background: linear-gradient(135deg, #192038 0%, #2b3566 100%);
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(25, 32, 56, 0.2);
}

.custom-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(25, 32, 56, 0.3);
}

.duo-btn {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.25);
}

.duo-btn:hover {
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35);
}

/* ==========================================================================
   SECTION 3: LUXURY RESIN GEODE PHOTO FRAME
   ========================================================================== */
.frame-section {
  background: #fdfefe;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

.geode-studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 40px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 35px;
  box-shadow: 0 20px 45px rgba(35, 43, 93, 0.05);
  align-items: start;
}

.geode-frame-render-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.4)) 
          var(--ambient-gold-glow);
  width: 100%;
}

/* Real Sculpted Irregular Geode Border */
.geode-border {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 590px;
  padding: 18px;
  background: 
    radial-gradient(circle at 15% 15%, #fffbe6 0%, transparent 25%),
    radial-gradient(circle at 85% 85%, #ffd700 0%, transparent 28%),
    repeating-radial-gradient(circle at 50% 50%, #d4af37 0, #8a6c17 3px, #fff7c2 5px, #aa820a 8px);
  clip-path: polygon(
    4% 1%, 19% 0%, 38% 2%, 58% 0%, 78% 2%, 96% 0%, 100% 7%, 97% 18%, 
    100% 32%, 96% 48%, 99% 65%, 96% 82%, 100% 95%, 94% 100%, 76% 98%, 
    54% 100%, 32% 98%, 14% 100%, 2% 96%, 4% 82%, 1% 65%, 4% 48%, 0% 30%, 3% 14%
  );
  display: flex;
  transition: background 0.3s ease;
}

/* 3D Pearl Embellishments */
.pearl {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #cbd5e1 65%, #64748b 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.48), inset -1px -1px 2px rgba(0,0,0,0.3);
  z-index: 20;
}

.p-tl-1 { width: 13px; height: 13px; top: 28px; left: 16px; }
.p-tl-2 { width: 16px; height: 16px; top: 44px; left: 22px; }
.p-bl-1 { width: 14px; height: 14px; bottom: 32px; left: 16px; }
.p-bl-2 { width: 17px; height: 17px; bottom: 16px; left: 30px; }
.p-br-1 { width: 14px; height: 14px; bottom: 30px; right: 18px; }
.p-br-2 { width: 17px; height: 17px; bottom: 16px; right: 32px; }

/* Crystal Resin Interior Bed */
.resin-bed {
  position: relative;
  width: 100%;
  background: 
    radial-gradient(circle at 75% 20%, rgba(255,255,255,0.7) 0%, transparent 45%),
    linear-gradient(150deg, #c2dbe0 0%, #9cbcc7 35%, #b5ced5 70%, #85abb7 100%);
  border-radius: 6px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.7);
}

.plaque-title {
  align-self: center;
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 16px;
  border-radius: 4px;
  font-family: 'Cinzel', serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #1a2233;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.plaque-title .title-heart {
  color: #e11d48;
}

.frame-body-top {
  display: grid;
  grid-template-columns: 1.28fr 1fr;
  gap: 8px;
  align-items: start;
}

/* Beaded 8-Photo Collage */
.collage-beaded-box {
  background: #ffffff;
  padding: 3px;
  outline: 2px dashed #d4af37;
  outline-offset: -1px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

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

.collage-grid .cell {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #cbd5e1;
}

.collage-grid .cell.double {
  grid-column: span 2;
  aspect-ratio: 1.6 / 1;
}

.collage-grid .cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frame-side-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Die-Cut Cutout Sticker Badges */
.cutout-badge-top img, 
.cutout-badge-bottom img {
  width: 100%;
  max-width: 125px;
  height: auto;
  display: block;
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) 
          drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff) 
          drop-shadow(0 6px 8px rgba(0, 0, 0, 0.35));
}

.calendar-plaque {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 6px;
  border-radius: 5px;
  width: 100%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.cal-title {
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  color: #1e293b;
  margin-bottom: 3px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 7.5px;
  row-gap: 2px;
}

.cal-day-header { font-weight: 800; color: #475569; }
.cal-date-empty { color: #cbd5e1; }
.cal-date { font-weight: 600; color: #1e293b; }
.cal-date-highlight { color: #e11d48; font-weight: 900; }

.frame-body-bottom {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 8px;
  align-items: end;
}

.quotes-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-card-main {
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.quote-card-sub {
  background: rgba(255, 255, 255, 0.86);
  padding: 5px 6px;
  border-radius: 4px;
  font-family: 'Great Vibes', cursive;
  font-size: 11.5px;
  line-height: 1.25;
  color: #1e293b;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.quote-ribbon {
  background: rgba(255, 255, 255, 0.96);
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #334155;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.text-pink {
  color: #f43f5e;
}

.frame-controls-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.frame-controls-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--primary-navy);
}

.price-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px dashed #cbd5e1;
}

.total-wrap {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
}

.total-wrap span {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-left: 4px;
}

.frame-order-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.25);
}

.frame-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #0f1322;
  color: #e2e8f0;
  padding: 60px 8% 25px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 35px;
  margin-bottom: 40px;
}

.logo-footer {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.logo-footer span {
  display: block;
  font-size: 9px;
  letter-spacing: 1px;
  color: #94a3b8;
}

.copy-text {
  font-size: 11px;
  color: #64748b;
  margin-top: 14px;
}

.col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.col ul { list-style: none; }
.col ul li { margin-bottom: 9px; }
.col ul li a {
  text-decoration: none;
  font-size: 12px;
  color: #94a3b8;
  transition: color 0.2s ease;
}
.col ul li a:hover { color: #ffffff; }

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1e2438;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.footer-email, .footer-phone {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1e2438;
  padding-top: 20px;
  font-size: 12px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #94a3b8;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 992px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-studio-card, .geode-studio-grid { grid-template-columns: 1fr; }
  .preview-box { border-right: none; border-bottom: 1px solid #f1f5f9; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  header { flex-direction: column; padding: 14px 6%; }
  .header-inner { width: 100%; display: flex; justify-content: space-between; align-items: center; }
  .menu-toggle { display: block; }
  nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; padding-top: 14px; gap: 8px; }
  nav.open { display: flex; }
  nav a { margin: 2px 0; font-size: 14px; width: 100%; padding: 8px 12px; }
  .hero { min-height: auto; padding: 50px 6% 45px; text-align: center; justify-content: center; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 40px; }
  .cursive { font-size: 56px; }
  .hero-btns { justify-content: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-features { grid-template-columns: 1fr 1fr; text-align: left; }
  .custom-controls { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .mockup-scaler { transform: scale(0.92); }
  .geode-border { transform: scale(0.92); transform-origin: top center; margin-bottom: -35px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .price-footer { flex-direction: column; align-items: stretch; }
  .frame-order-btn { justify-content: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .hero-features { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .mockup-scaler { transform: scale(0.82); }
  .geode-border { transform: scale(0.8); margin-bottom: -90px; }
  .section { padding: 50px 5%; }
  .custom-studio-section { padding: 50px 5%; }
}