:root {
    --gold: #C9A24D;
    --ivory: #FAF9F6;
    --teal: #10383A;
    --sage: #666E51;
    --header-height: 90px;
    --glass-bg: rgba(250, 249, 246, 0.1);
    --glass-border: rgba(201, 162, 77, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--ivory);
    font-family: 'Montserrat', sans-serif;
    color: var(--teal);
    overflow-x: hidden;
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px; /* Fixed height */
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent; /* Starting mein transparent */
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Scrolled State Logic */
.header.scrolled {
    height: 70px;
    background: rgba(250, 249, 246, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero {
    margin-top: 0; /* No top margin */
    padding-top: 0; /* Remove extra padding */
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-symbol {
    color: var(--gold);
    font-size: 1.8rem;
    transition: transform 0.6s ease;
}

.logo:hover .logo-symbol {
    transform: rotate(180deg);
}

.logo-text {
    font-family: 'Cinzel Decorative', cursive;
    font-weight: 600;
    letter-spacing: 0.15em;   /* spacing kam */
    font-size: 0.85rem;      /* text chota */
    white-space: nowrap;     /* line break na ho */
}
@media (max-width: 768px) {
    .logo-text {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }
}


/* Desktop Menu */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: var(--teal);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.15em;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.btn-gold {
    text-decoration: none;
    background-color: var(--gold);
    color: white;
    padding: 12px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Moon Widget */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.moon-widget {
    display: flex;
    align-items: center;
    gap: 12px;
}

.moon-info {
    text-align: right;
    line-height: 1;
}

.phase-label {
    display: block;
    font-size: 0.55rem;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
}
@media (max-width: 768px) {
    .phase-label {
        font-size: 0.48rem;
        letter-spacing: 0.6px;
    }

    .phase-name {
        font-size: 0.62rem;
        font-weight: 500;
    }
}


.moon-icon {
    width: 40px;
    height: 40px;
}

/* Mobile Toggle */
/* --- Ultra-Symmetric Menu Toggle --- */

.menu-toggle {
    position: relative;
    width: 28px;
    height: 28px; /* Square box for perfect rotation */
    display: none; 
    align-items: center;
    justify-content: center;
    z-index: 1100;
    background: transparent !important;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
}

/* Bars ko absolute position dena taaki wo center mein align hon */
.bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--teal);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1), background-color 0.3s ease;
    border-radius: 4px;
}

/* Pehli bar: Thoda upar */
.bar:nth-child(1) {
    transform: translateY(-5px);
}

/* Dusri bar: Thoda niche */
.bar:nth-child(2) {
    transform: translateY(5px);
}

/* --- ACTIVE STATE (The Perfect X) --- */

.menu-toggle.active .bar {
    background-color: var(--gold); /* Overlay par color change */
}

/* Dono bars ko center (0) pe laake rotate karna */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    transform: translateY(0) rotate(-45deg);
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--teal);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    z-index: 999;
}

.mobile-links {
    list-style: none;
    text-align: center;
}

.mobile-links li {
    margin: 25px 0;
    opacity: 0;
}

.mobile-links a {
    font-family: 'Cinzel Decorative';
    font-size: 2rem;
    color: var(--ivory);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}
/* ✅ CSS (only shop + modal + animations styles) */
:root{
  --off: #FAF9F6;
  --gold: #C9A24D;
  --teal: #10383A;
  --sage: #666E51;

  --shadow: 0 18px 60px rgba(16, 56, 58, .16);
  --shadow2: 0 10px 28px rgba(16, 56, 58, .14);
  --radius: 18px;
  --radius2: 22px;

  --serif: "Cinzel Decorative", "Cinzel", "Playfair Display", Georgia, serif;
  --sans: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Section base */
.shop-bracelets{
  position: relative;
  background: var(--off);
  padding: clamp(64px, 6vw, 90px) 16px;
  overflow: hidden;
  isolation: isolate;

}
.shop-bracelets::before{
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 12% 18%, rgba(201,162,77,.9) 0 2.5px, transparent 4px),
    radial-gradient(circle at 28% 62%, rgba(201,162,77,.8) 0 2px, transparent 3.5px),
    radial-gradient(circle at 42% 30%, rgba(201,162,77,.85) 0 2.8px, transparent 4px),
    radial-gradient(circle at 56% 78%, rgba(201,162,77,.75) 0 2px, transparent 3.5px),
    radial-gradient(circle at 68% 20%, rgba(201,162,77,.9) 0 3px, transparent 4.5px),
    radial-gradient(circle at 78% 54%, rgba(201,162,77,.8) 0 2.4px, transparent 4px),
    radial-gradient(circle at 88% 34%, rgba(201,162,77,.85) 0 2.6px, transparent 4px),
    radial-gradient(circle at 92% 72%, rgba(201,162,77,.75) 0 2.2px, transparent 3.8px);

  filter: drop-shadow(0 0 6px rgba(201,162,77,.55));
  opacity: .85;
  animation: starsMoveUp 26s linear infinite;
}

/* STAR LAYER 2 – Teal depth stars */
.shop-bracelets::after{
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 16% 42%, rgba(16,56,58,.75) 0 2px, transparent 3.5px),
    radial-gradient(circle at 34% 12%, rgba(16,56,58,.65) 0 2.6px, transparent 4px),
    radial-gradient(circle at 48% 64%, rgba(16,56,58,.7) 0 2.2px, transparent 3.8px),
    radial-gradient(circle at 62% 28%, rgba(16,56,58,.6) 0 2px, transparent 3.5px),
    radial-gradient(circle at 74% 82%, rgba(16,56,58,.65) 0 2.4px, transparent 4px),
    radial-gradient(circle at 90% 56%, rgba(16,56,58,.6) 0 2.2px, transparent 3.8px);

  filter: drop-shadow(0 0 5px rgba(16,56,58,.45));
  opacity: .6;
  animation: starsMoveDown 38s linear infinite;
}

/* Keep content above stars */
.shop-bracelets > *{
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes starsMoveUp{
  from{
    transform: translateY(0);
  }
  to{
    transform: translateY(-160px);
  }
}

@keyframes starsMoveDown{
  from{
    transform: translateY(-160px);
  }
  to{
    transform: translateY(0);
  }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce){
  .shop-bracelets::before,
  .shop-bracelets::after{
    animation: none !important;
  }
}


/* Decor */
.shop-decor{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.mandala-wm{
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 30% 20%, rgba(201,162,77,.14), transparent 52%),
    radial-gradient(circle at 75% 55%, rgba(16,56,58,.10), transparent 58%);
}
.mandala-wm::before{
  content:"";
  position:absolute;
  inset: 0;
  opacity: .16;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(16,56,58,.14) 0 1px, transparent 1px 100%),
    conic-gradient(from 0deg,
      rgba(201,162,77,.20),
      rgba(16,56,58,.12),
      rgba(201,162,77,.18),
      rgba(16,56,58,.10),
      rgba(201,162,77,.20));
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,.9) 0 30%, transparent 62%);
  filter: blur(0.2px);
  transform: rotate(6deg);
}

/* subtle mandala ring (light watermark) */
.mandala-wm::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 52%;
  width: min(820px, 86vw);
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%) rotate(-10deg);
  opacity: .10;
  background:
    radial-gradient(circle at center, transparent 56%, rgba(201,162,77,.42) 56.2%, transparent 57.2%),
    radial-gradient(circle at center, transparent 72%, rgba(16,56,58,.26) 72.2%, transparent 73.2%),
    radial-gradient(circle at center, transparent 84%, rgba(201,162,77,.28) 84.1%, transparent 85.2%),
    conic-gradient(
      rgba(201,162,77,.08),
      rgba(16,56,58,.10),
      rgba(201,162,77,.08),
      rgba(16,56,58,.10),
      rgba(201,162,77,.08)
    );
  filter: blur(.35px);
  border-radius: 50%;
}

.starfield{
  position:absolute;
  inset:-20%;
  opacity: .55;
  background:
    radial-gradient(circle at 12% 18%, rgba(201,162,77,.55) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 66%, rgba(16,56,58,.40) 0 1px, transparent 2px),
    radial-gradient(circle at 45% 28%, rgba(201,162,77,.50) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 78%, rgba(16,56,58,.36) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 30%, rgba(201,162,77,.52) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 62%, rgba(16,56,58,.32) 0 1px, transparent 2px);
  animation: starsFloat 10s ease-in-out infinite;
  filter: blur(.1px);
}
@keyframes starsFloat{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(-10px, 8px, 0) scale(1.01); }
}

/* Container */
.shop-wrap{
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

/* Head */
.shop-head{
  text-align: center;
  margin-bottom: clamp(26px, 3vw, 40px);
}
.shop-kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-family: var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(16,56,58,.78);
}
.shop-kicker::before,
.shop-kicker::after{
  content:"";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,77,.9), transparent);
}
.shop-title{
  margin: 10px 0 10px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--teal);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: .02em;
}
.shop-subtitle{
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--sans);
  color: rgba(102,110,81,.95);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.65;
}

/* Grid */
.p-grid{
  display:grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px){
  .p-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px){
  .p-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}
@media (max-width: 540px){
  .p-grid{ grid-template-columns: 1fr; gap: 14px; }
}

/* Card base (premium NOT WHITE) */
.p-card{
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(201,162,77,.32);
  box-shadow: var(--shadow2);
  transform-style: preserve-3d;
  will-change: transform;
  background:
    radial-gradient(120% 140% at 15% 10%, rgba(16,56,58,.14), transparent 62%),
    radial-gradient(120% 140% at 90% 30%, rgba(201,162,77,.12), transparent 58%),
    linear-gradient(145deg, rgba(16,56,58,.10), rgba(102,110,81,.14));
  backdrop-filter: blur(10px);
}
.p-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(450px 200px at 0% 0%, rgba(201,162,77,.20), transparent 60%),
    radial-gradient(450px 260px at 100% 100%, rgba(16,56,58,.16), transparent 65%);
  opacity: .65;
  pointer-events:none;
}
.p-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 38%, transparent 60%);
  opacity: .08;
  transform: translateX(-40%);
  pointer-events:none;
}

/* Animated glow ring that moves around border */
.p-card .ring{
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  pointer-events:none;
  background:
    conic-gradient(from var(--ring-rot, 0deg),
      rgba(201,162,77,0) 0deg,
      rgba(201,162,77,.45) 60deg,
      rgba(16,56,58,.18) 120deg,
      rgba(201,162,77,.42) 180deg,
      rgba(201,162,77,0) 240deg,
      rgba(16,56,58,.10) 320deg,
      rgba(201,162,77,0) 360deg);
  filter: blur(10px);
  opacity: 0;
  transition: opacity .28s ease;
  mix-blend-mode: soft-light;
}

/* Media */
.p-media{
  position: relative;
  padding: 16px 16px 0;
}
.p-frame{
  position: relative;
  border-radius: 16px;
  overflow:hidden;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(201,162,77,.65), rgba(16,56,58,.20)),
    radial-gradient(400px 160px at 20% 10%, rgba(255,255,255,.22), transparent 60%);
  box-shadow: 0 16px 36px rgba(16,56,58,.14);
}
.p-frame img{
  display:block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  transform: scale(1.000);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  filter: contrast(1.02) saturate(1.02);
}

/* Shine overlay */
.p-shine{
  position:absolute;
  inset: 10px;
  border-radius: 12px;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.35) 36%, transparent 60%);
  opacity: .14;
  transform: translateX(-20%);
  pointer-events:none;
}

/* Hover sparkles (tiny) */
.p-spark{
  position:absolute;
  inset: 10px;
  border-radius: 12px;
  pointer-events:none;
  opacity: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(201,162,77,.85) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 36%, rgba(255,255,255,.75) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 74%, rgba(201,162,77,.65) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 70%, rgba(255,255,255,.62) 0 1px, transparent 2px);
  filter: drop-shadow(0 0 10px rgba(201,162,77,.25));
  transition: opacity .35s ease;
}

/* Badge */
.p-badge{
  position:absolute;
  top: 10px;
  right: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(16,56,58,.95);
  background: linear-gradient(135deg, rgba(201,162,77,.85), rgba(255,255,255,.55));
  border: 1px solid rgba(201,162,77,.55);
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(16,56,58,.12);
}

/* Body */
.p-body{
  padding: 16px 16px 18px;
}
.p-title{
  font-family: var(--serif);
  color: rgba(16,56,58,.98);
  font-size: 18px;
  letter-spacing: .02em;
  margin: 4px 0 8px;
}
.p-desc{
  font-family: var(--sans);
  color: rgba(102,110,81,.95);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

/* Buttons */
.p-actions{
  display:flex;
  gap: 10px;
  align-items:center;
}
.btn{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  font-family: var(--sans);
  font-weight: 650;
  font-size: 13px;
  letter-spacing: .02em;
  text-decoration:none;
  cursor: pointer;
  user-select:none;
  outline: none;
  transition: transform .18s ease, box-shadow .18s ease, background .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn:focus-visible{
  box-shadow: 0 0 0 4px rgba(201,162,77,.22);
}

/* Buy: gold gradient + shimmer sweep */
.btn-buy{
  flex: 1.05;
  border: 1px solid rgba(201,162,77,.70);
  color: rgba(16,56,58,.98);
  background: linear-gradient(135deg, rgba(201,162,77,.95), rgba(255,255,255,.55));
  box-shadow: 0 14px 30px rgba(201,162,77,.18), 0 10px 26px rgba(16,56,58,.12);
  overflow: hidden;
}
.btn-buy::after{
  content:"";
  position:absolute;
  inset: -40% -30%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.55) 40%, transparent 60%);
  transform: translateX(-65%) rotate(6deg);
  opacity: 0;
}
.btn-buy:hover::after{
  opacity: .85;
  animation: shimmer 1.05s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes shimmer{
  to{ transform: translateX(65%) rotate(6deg); }
}

/* Read more: teal outline + border light trace */
.btn-more{
  flex: .95;
  background: rgba(250,249,246,.35);
  border: 1px solid rgba(16,56,58,.42);
  color: rgba(16,56,58,.95);
  overflow:hidden;
}
.btn-more::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 180deg,
    rgba(201,162,77,0),
    rgba(201,162,77,.75),
    rgba(201,162,77,0));
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  filter: blur(.2px);
}
.btn-more:hover::after{
  opacity: 1;
  animation: trace 1.1s linear infinite;
}
@keyframes trace{
  to{ transform: rotate(360deg); }
}

/* Card hover: subtle zoom + ring + lift */
.p-card:hover{
  box-shadow: var(--shadow);
}
.p-card:hover .p-frame img{
  transform: scale(1.03);
}
.p-card:hover .p-spark{
  opacity: .9;
}
.p-card:hover .ring{
  opacity: 1;
}

/* Unique hover glow sweep */
.p-card:hover::after{
  opacity: .13;
  transform: translateX(15%);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}

/* Enter animation state (JS adds .in) */
.p-card{
  opacity: 0;
  transform: translateY(18px) rotate(-1.4deg);
  filter: blur(8px);
}
.p-card.in{
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  filter: blur(0);
  transition:
    opacity .7s cubic-bezier(.2,.8,.2,1),
    transform .8s cubic-bezier(.2,.8,.2,1),
    filter .9s cubic-bezier(.2,.8,.2,1);
}

/* ===== MODAL (UPDATED: center, mobile friendly, lighter premium colors) ===== */
/* =========================
   PREMIUM MODAL (FINAL FIX)
   Replace your modal CSS with this
========================= */

.p-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.p-modal.open{
  display: grid;
  place-items: center;
  padding: 18px;
}

.p-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(201,162,77,.18), transparent 46%),
    radial-gradient(circle at 85% 55%, rgba(16,56,58,.14), transparent 55%),
    rgba(16,56,58,.38);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: overlayIn .25s ease forwards;
}

@keyframes overlayIn{ to { opacity: 1; } }

/* Modal card */
.p-dialog{
  position: relative;
  width: min(920px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(201,162,77,.28);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
  overflow: hidden;
  z-index: 2;

  /* Premium light glass that suits off-white background */
  background:
    radial-gradient(120% 160% at 18% 10%, rgba(201,162,77,.16), transparent 55%),
    radial-gradient(120% 160% at 88% 35%, rgba(16,56,58,.10), transparent 60%),
    linear-gradient(145deg, rgba(250,249,246,.92), rgba(255,255,255,.74));
  backdrop-filter: blur(16px);

  opacity: 0;
  transform: translateY(12px) scale(.96);
  filter: blur(10px);
  animation: modalIn .32s cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes modalIn{
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Close button: always clickable on phone */
.pm-close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(16,56,58,.16);
  background: rgba(250,249,246,.92);
  color: rgba(16,56,58,.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 5;

  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
}
.pm-close:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(16,56,58,.12);
}
.pm-close:focus-visible{
  box-shadow: 0 0 0 4px rgba(201,162,77,.20);
}

/* Content layout (balanced) */
.pm-content{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr; /* left image slightly smaller */
  gap: 18px;
  padding: 20px;

  max-height: min(78vh, 760px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* Left media column - keep it neat */
.pm-media{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

/* Premium frame */
.pm-frame{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  padding: 10px;

  background:
    linear-gradient(135deg, rgba(201,162,77,.62), rgba(16,56,58,.18)),
    radial-gradient(480px 200px at 20% 10%, rgba(255,255,255,.24), transparent 62%);
  box-shadow: 0 18px 44px rgba(16,56,58,.12);
  position: relative;
}

.pm-frame img{
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  background: rgba(16,56,58,.06);
}

/* If image fails (broken icon), still looks premium */
.pm-frame img:not([src]), 
.pm-frame img[src=""]{
  display:none;
}
.pm-frame::before{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 25% 22%, rgba(201,162,77,.24), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(16,56,58,.16), transparent 60%),
    linear-gradient(145deg, rgba(250,249,246,.62), rgba(255,255,255,.24));
  opacity: .95;
}

/* Shine layer */
.pm-shine{
  position:absolute;
  inset: 10px;
  border-radius: 14px;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.45) 36%, transparent 60%);
  opacity: .14;
  transform: translateX(-10%);
  pointer-events: none;
}

/* Text side */
.pm-body{
  padding: 6px 6px 2px;
}

.pm-kicker{
  margin: 6px 0 6px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(16,56,58,.70);
  font-family: var(--sans);
}

.pm-title{
  margin: 0 0 10px;
  font-family: var(--serif);
  color: rgba(16,56,58,.98);
  letter-spacing: .02em;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
}

.pm-desc{
  margin: 0 0 16px;
  font-family: var(--sans);
  color: rgba(102,110,81,.96);
  line-height: 1.8;
  font-size: 14.8px;
}

/* Price + Buy row (premium alignment) */
.pm-row{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.pm-price{
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16,56,58,.06);
  border: 1px solid rgba(201,162,77,.26);
  color: rgba(16,56,58,.92);
  font-family: var(--sans);
  font-weight: 750;
  letter-spacing: .02em;
}

.pm-buy{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 750;
  letter-spacing: .02em;
  color: rgba(16,56,58,.98);
  background: linear-gradient(135deg, rgba(201,162,77,.95), rgba(255,255,255,.55));
  border: 1px solid rgba(201,162,77,.60);
  box-shadow: 0 16px 36px rgba(201,162,77,.18);
  position: relative;
  overflow: hidden;
}

.pm-buy::after{
  content:"";
  position:absolute;
  inset:-40% -30%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.55) 40%, transparent 60%);
  transform: translateX(-60%) rotate(6deg);
  opacity: 0;
}
.pm-buy:hover::after{
  opacity: .85;
  animation: shimmer 1.05s cubic-bezier(.2,.8,.2,1) forwards;
}

.pm-note{
  margin: 12px 0 0;
  font-family: var(--sans);
  color: rgba(102,110,81,.92);
  font-size: 12.8px;
  line-height: 1.6;
}

/* Mobile: stack + smaller height */
@media (max-width: 860px){
  .p-modal.open{ padding: 14px; }
  .p-dialog{ border-radius: 18px; }

  .pm-content{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    max-height: 80vh;
  }
  .pm-media{ min-height: auto; }
  .pm-frame img{ height: 220px; }
}

/* Ultra small phones */
@media (max-width: 420px){
  .pm-frame img{ height: 200px; }
  .pm-title{ font-size: 22px; }
}

/* Body scroll lock */
body.modal-lock{ overflow: hidden; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .p-overlay, .p-dialog{ animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
}
/* ==============================
   FOOTER (Luxury Astrology)
   ============================== */
.site-footer{
  position: relative;
  background: var(--teal);
  color: rgba(250,249,246,0.88);
  padding: 90px 6% 0;
  overflow: hidden;
}

/* background glow */
.footer-bg{
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,162,77,0.10), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(201,162,77,0.08), transparent 60%);
  filter: blur(20px);
  opacity: .6;
  pointer-events: none;
}

.footer-wrap{
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(201,162,77,0.18);
}

/* Brand */
.footer-logo{
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.8rem;
  color: rgba(250,249,246,0.95);
  margin-bottom: 14px;
}

.footer-tagline{
  font-family: 'Montserrat', sans-serif;
  max-width: 420px;
  line-height: 1.8;
  color: rgba(250,249,246,0.72);
}

/* Links */
.footer-links{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-col h4{
  font-family: 'Tenor Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li{
  margin-bottom: 10px;
}

.footer-col a{
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: rgba(250,249,246,0.78);
  font-size: 0.95rem;
  transition: color .3s ease, letter-spacing .3s ease;
}

.footer-col a:hover{
  color: rgba(250,249,246,1);
  letter-spacing: .5px;
}

/* Bottom bar */
.footer-bottom{
  text-align: center;
  padding: 26px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(250,249,246,0.65);
}

/* Mobile */
@media (max-width: 1024px){
  .footer-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-tagline{
    margin: 0 auto;
  }

  .footer-links{
    grid-template-columns: 1fr;
  }
}
/* ==============================
   FOOTER RESPONSIVE FIX (ADD-ON)
   Paste at END of footer CSS
   ============================== */

.site-footer,
.footer-wrap{
  max-width: 100%;
  overflow: hidden;              /* stop side overflow */
}

.footer-wrap{
  padding-left: 16px;
  padding-right: 16px;
}

/* ✅ MAIN FIX: footer logo/title wrap allow */
/* ==============================
   FOOTER LOGO – FORCE ONE LINE
   ============================== */

.footer-logo{
  white-space: nowrap !important;     /* ✅ ek hi line */
  word-break: normal !important;
  overflow-wrap: normal !important;

  /* 🔽 aur chhota for mobile */
  font-size: clamp(1.15rem, 4.8vw, 2.4rem);

  line-height: 1;
  letter-spacing: 0.04em;

  max-width: 100%;
  margin: 0 auto 12px;
  text-align: center;
}

/* tagline should stay readable */
.footer-tagline{
  max-width: 42ch;
  margin: 0 auto;
  text-align: center;
}

/* links alignment + spacing */
@media (max-width: 640px){
  .footer-links{
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 28px;
    text-align: center;
    justify-items: center;
  }

  .footer-col ul{
    padding: 0;
    margin: 0;
  }

  .footer-col li{
    margin: 10px 0;
  }
}

/* bottom bar safe */
.footer-bottom{
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
}

.footer-bottom p{
  max-width: 100%;
  overflow-wrap: anywhere;
}
/* ==============================
   INFO SECTION (How to Use / Shipping / Size)
   Theme: Off-white + Gold + Deep Teal + Sage
============================== */

.shop-info{
  position: relative;
  padding: 78px 16px;
  background: #FAF9F6;
  overflow: hidden;
}

/* Layout container */
.info-wrap{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Heading */
.info-head{
  text-align: center;
  margin-bottom: 28px;
}

.info-kicker{
  font-family: "Montserrat", system-ui, sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(16,56,58,.75);
  margin-bottom: 10px;
}

.info-title{
  font-family: "Cinzel Decorative", serif;
  color: #10383A;
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  line-height: 1.1;
  margin: 0 0 10px;
}

.info-subtitle{
  max-width: 760px;
  margin: 0 auto;
  font-family: "Montserrat", system-ui, sans-serif;
  color: rgba(102,110,81,.95);
  font-size: 1rem;
  line-height: 1.55;
}

/* Grid */
.info-grid{
  margin-top: 26px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px){
  .info-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .shop-info{ padding: 64px 14px; }
  .info-grid{ grid-template-columns: 1fr; }
}

/* Card */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start; /* FIX → natural height, no white gap */
}

.info-card {
  position: relative;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background:
    radial-gradient(1000px 500px at 10% 0%, rgba(201,162,77,.14), transparent 45%),
    radial-gradient(800px 500px at 90% 20%, rgba(16,56,58,.16), transparent 55%),
    linear-gradient(180deg, rgba(16,56,58,.10), rgba(250,249,246,.0));
  border: 1px solid rgba(201,162,77,.28);
  box-shadow:
    0 18px 40px rgba(16,56,58,.08),
    inset 0 1px 0 rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  transform: translateY(10px);
  opacity: 0;
  filter: blur(8px);
  transition:
    transform .8s cubic-bezier(.2,.9,.2,1),
    opacity .8s ease,
    filter .8s ease,
    box-shadow .35s ease;
}

.info-card.in {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

.info-card::before {
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 18px;
  padding: 1px;
  background: conic-gradient(
    from var(--info-rot, 0deg),
    rgba(201,162,77,.0),
    rgba(201,162,77,.55),
    rgba(201,162,77,.0),
    rgba(16,56,58,.30),
    rgba(201,162,77,.0)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .75;
  pointer-events: none;
}

/* Icon */
.info-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #10383A;
  background:
    radial-gradient(120px 60px at 30% 20%, rgba(201,162,77,.45), transparent 55%),
    linear-gradient(180deg, rgba(16,56,58,.18), rgba(250,249,246,.0));
  border: 1px solid rgba(201,162,77,.35);
  box-shadow: 0 12px 26px rgba(16,56,58,.10);
  margin-bottom: 12px;
}

/* Text */
.info-h{
  font-family: "Cinzel Decorative", serif;
  color: #10383A;
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.info-p{
  font-family: "Montserrat", system-ui, sans-serif;
  color: rgba(16,56,58,.86);
  line-height: 1.58;
  font-size: .96rem;
  margin: 0 0 10px;
}

.info-p strong{
  color: #10383A;
  font-weight: 700;
}

/* List */
.info-list{
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  font-family: "Montserrat", system-ui, sans-serif;
  color: rgba(102,110,81,.98);
  line-height: 1.6;
}

.info-list li{
  margin: 6px 0;
}

/* Badges */
.info-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.info-badge{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: .82rem;
  color: rgba(16,56,58,.90);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(201,162,77,.12);
  border: 1px solid rgba(201,162,77,.30);
}

/* Size box */
.size-box{
  margin-top: 10px;
  padding: 14px 14px;
  border-radius: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  background:
    radial-gradient(260px 120px at 30% 20%, rgba(201,162,77,.22), transparent 60%),
    linear-gradient(180deg, rgba(16,56,58,.16), rgba(250,249,246,.0));
  border: 1px solid rgba(16,56,58,.20);
}

.size-label{
  font-family: "Montserrat", system-ui, sans-serif;
  color: rgba(102,110,81,1);
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.size-value{
  font-family: "Cinzel Decorative", serif;
  color: #10383A;
  font-size: 1.2rem;
}

.info-mini{
  margin-top: 10px;
  font-family: "Montserrat", system-ui, sans-serif;
  color: rgba(102,110,81,.95);
  font-size: .92rem;
}

/* Footer row */
.info-footer{
  margin-top: 18px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.info-line{
  flex: 1 1 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,77,.55), transparent);
}

.info-footnote{
  flex: 2 1 420px;
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  color: rgba(16,56,58,.78);
  line-height: 1.55;
}

.info-cta{
  flex: 0 0 auto;
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  color: #10383A;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16,56,58,.35);
  background: rgba(250,249,246,.75);
  box-shadow: 0 10px 24px rgba(16,56,58,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.info-cta:hover{
  transform: translateY(-2px);
  border-color: rgba(201,162,77,.60);
  box-shadow: 0 14px 34px rgba(16,56,58,.12);
}

/* ==============================
   BACKGROUND DECOR (orbs + stars)
============================== */
.info-decor{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.info-orb{
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .45;
}

.info-orb.o1{
  left: -140px;
  top: -120px;
  background: radial-gradient(circle at 30% 25%, rgba(201,162,77,.55), transparent 60%);
  animation: orbFloat1 10s ease-in-out infinite;
}

.info-orb.o2{
  right: -160px;
  bottom: -140px;
  background: radial-gradient(circle at 40% 35%, rgba(16,56,58,.55), transparent 60%);
  animation: orbFloat2 12s ease-in-out infinite;
}

@keyframes orbFloat1{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(30px, 18px) scale(1.05); }
}

@keyframes orbFloat2{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-26px, -22px) scale(1.06); }
}

/* Stars layer */
.info-stars{
  position:absolute;
  inset:-20px;
  opacity:.85;
  background-image:
    radial-gradient(rgba(201,162,77,.85) 1.2px, transparent 1.4px),
    radial-gradient(rgba(16,56,58,.55) 1.1px, transparent 1.4px),
    radial-gradient(rgba(201,162,77,.65) 1.7px, transparent 2px);
  background-size: 140px 140px, 180px 180px, 220px 220px;
  background-position: 0 0, 40px 60px, 80px 20px;
  animation: starsDrift 14s linear infinite;
  filter: blur(.2px);
}

@keyframes starsDrift{
  0%{ transform: translate3d(0,0,0); }
  100%{ transform: translate3d(-120px, 60px, 0); }
}
.shop-finder{
  max-width: 760px;
  margin: 22px auto 10px;
  position: relative;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(191, 197, 204, 0.6); /* platinum tone */
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.shop-finder input{
  width: 100%;
  padding: 14px 52px 14px 18px;
  border-radius: 999px;
  border: none;
  outline: none;
  background: transparent;
  color: #1b1f24;
  font-size: 0.95rem;
}

.shop-finder input::placeholder{
  color: #6b7280;
}

.shop-finder input:focus{
  box-shadow: inset 0 0 0 2px rgba(201,162,77,0.35); /* soft gold focus */
}

.finder-icon{
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0.7;
  pointer-events: none;
}

@media (max-width: 640px){
  .shop-finder{
    margin: 16px 12px 8px;
  }
  .shop-finder input{
    font-size: 0.9rem;
    padding: 12px 48px 12px 16px;
  }
}
