/*
Theme Name: myetopica
Theme URI: https://myetopica.com
Author: myetopica
Author URI: https://myetopica.com
Description: A cozy vintage/scrapbook theme for the myetopica junk journaling blog — cream, scarlet & dusty rose, with printable clipart shop callouts. Custom-built.
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: myetopica
*/

/* ==========================================================
   myetopica — vintage scrapbook theme v2 "pyari edition"
   Palette:
   Background:  #F8F4EC (warm cream)
   Primary:     #BC0024 (deep scarlet)
   Secondary:   #D98B9B (dusty rose)
   Text:        #4A3F35 (dark brown)
   Accent:      #D4AF37 (soft gold — highlights only)
   ========================================================== */

:root {
  --cream: #F8F4EC;
  --cream-deep: #F1EADC;
  --scarlet: #BC0024;
  --scarlet-dark: #93001C;
  --rose: #D98B9B;
  --rose-soft: #F3DDE2;
  --rose-mist: #FAEFF1;
  --brown: #4A3F35;
  --brown-soft: #7A6C5D;
  --gold: #D4AF37;
  --gold-soft: #E9D9A8;
  --paper-line: rgba(74, 63, 53, 0.14);
  --shadow: 0 12px 32px rgba(74, 63, 53, 0.13);
  --shadow-soft: 0 6px 18px rgba(74, 63, 53, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Lora', Georgia, serif;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at 15% 8%, rgba(217, 139, 155, 0.09), transparent 45%),
    radial-gradient(ellipse at 88% 20%, rgba(212, 175, 55, 0.07), transparent 45%),
    radial-gradient(ellipse at 70% 90%, rgba(217, 139, 155, 0.08), transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 34px, rgba(74,63,53,0.02) 35px);
  color: var(--brown);
  line-height: 1.75;
  font-size: 18px;
  font-weight: 500;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--scarlet); text-decoration: none; }
a:hover { color: var(--scarlet-dark); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.22;
  color: var(--brown);
}

.script { font-family: 'Caveat', cursive; font-weight: 700; }
.fancy { font-family: 'Dancing Script', 'Great Vibes', cursive; font-weight: 700; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- animations ---------- */
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(0.7); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- top ribbon ---------- */
.ribbon {
  background: linear-gradient(90deg, var(--scarlet-dark), var(--scarlet) 30%, var(--scarlet) 70%, var(--scarlet-dark));
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 9px 16px;
}
.ribbon a { color: #FCE9C8; text-decoration: underline; text-underline-offset: 3px; }
.ribbon a:hover { color: #fff; }

/* ---------- header ---------- */
header.site {
  background: rgba(248, 244, 236, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px dashed var(--paper-line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 14px rgba(74,63,53,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.logo {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 2.55rem;
  color: var(--scarlet);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo .logo-flower { width: 30px; height: 30px; }
.logo span.dotdot { color: var(--gold); }
nav.main ul { display: flex; gap: 26px; list-style: none; align-items: center; }
nav.main a {
  color: var(--brown);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Lora', serif;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
nav.main a:hover, nav.main a.active {
  color: var(--scarlet);
  border-bottom-color: var(--rose);
}
.nav-shop {
  background: var(--scarlet);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 30px;
  border-bottom: none !important;
  box-shadow: 0 4px 12px rgba(188,0,36,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-shop:hover { background: var(--scarlet-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(188,0,36,0.4); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--brown); cursor: pointer; }

/* ---------- bunting flags ---------- */
.bunting { display: block; width: 100%; height: 56px; margin-bottom: -10px; }

/* ---------- hero ---------- */
.hero {
  padding: 30px 24px 90px;
  position: relative;
  overflow: visible;
}
.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-text { animation: fadeUp 0.9s ease both; position: relative; z-index: 2; }
.hero .kicker {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.95rem;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero .kicker::before, .hero .kicker::after {
  content: "❀";
  color: var(--gold);
  font-size: 1rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.3rem);
  margin: 12px 0 6px;
}
.hero h1 .fancy {
  display: block;
  color: var(--scarlet);
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 1.12;
  margin-top: 4px;
}
.hero p.lead {
  max-width: 490px;
  margin: 18px 0 30px;
  color: var(--brown);
  font-size: 1.18rem;
  font-weight: 500;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust {
  margin-top: 26px;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--brown-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-trust .hearts { color: var(--rose); letter-spacing: 3px; }

/* hero collage */
.hero-collage {
  position: relative;
  min-height: 480px;
  animation: fadeUp 1.1s ease 0.15s both;
}
.collage-doily {
  position: absolute;
  top: 46%; left: 50%;
  width: 420px; height: 420px;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  z-index: 0;
}
.polaroid-main {
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-58%) rotate(-4deg);
  width: 270px;
  background: #fff;
  padding: 14px 14px 16px;
  box-shadow: var(--shadow);
  z-index: 3;
  border-radius: 3px;
}
.polaroid-main .ph-art {
  background: linear-gradient(160deg, var(--rose-mist), var(--cream-deep));
  border: 1px solid var(--paper-line);
  aspect-ratio: 1 / 1.05;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.polaroid-main .ph-art svg { width: 88%; height: 88%; }
.polaroid-main .caption {
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  text-align: center;
  color: var(--brown);
  margin-top: 10px;
}
.tape {
  position: absolute;
  width: 110px; height: 30px;
  background: repeating-linear-gradient(45deg, rgba(217,139,155,0.7), rgba(217,139,155,0.7) 8px, rgba(243,221,226,0.72) 8px, rgba(243,221,226,0.72) 16px);
  box-shadow: 0 2px 5px rgba(74,63,53,0.12);
  opacity: 0.92;
}
.tape.gold { background: repeating-linear-gradient(45deg, rgba(212,175,55,0.55), rgba(212,175,55,0.55) 8px, rgba(248,244,236,0.85) 8px, rgba(248,244,236,0.85) 16px); }
.polaroid-main .tape { top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg); }

.collage-tag {
  position: absolute;
  right: 4%; top: 20px;
  width: 150px;
  transform: rotate(7deg);
  z-index: 2;
  filter: drop-shadow(0 8px 14px rgba(74,63,53,0.18));
  --rot: 7deg;
  animation: floaty 6s ease-in-out infinite;
}
.collage-stamp {
  position: absolute;
  left: 0; bottom: 110px;
  width: 130px;
  transform: rotate(-8deg);
  z-index: 4;
  filter: drop-shadow(0 8px 14px rgba(74,63,53,0.16));
  --rot: -8deg;
  animation: floaty 7s ease-in-out 0.8s infinite;
}
.collage-note {
  position: absolute;
  right: 8%; bottom: 40px;
  width: 200px;
  background: var(--rose-mist);
  border: 1px solid rgba(217,139,155,0.5);
  padding: 16px 18px;
  transform: rotate(3deg);
  z-index: 3;
  box-shadow: var(--shadow-soft);
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--brown);
  border-radius: 2px;
}
.collage-note .tape { top: -14px; left: 26px; width: 80px; transform: rotate(-4deg); }
.collage-note b { color: var(--scarlet); }
.collage-butterfly {
  position: absolute;
  top: -6px; left: 12%;
  width: 64px;
  z-index: 5;
  --rot: -10deg;
  animation: floaty 5s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(74,63,53,0.2));
}
.sparkle {
  position: absolute;
  width: 18px; height: 18px;
  z-index: 5;
  animation: twinkle 3s ease-in-out infinite;
}
.sparkle.s2 { animation-delay: 1s; width: 13px; height: 13px; }
.sparkle.s3 { animation-delay: 2s; width: 15px; height: 15px; }
.sparkle.s4 { animation-delay: 0.5s; width: 11px; height: 11px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.22s ease;
  font-family: 'Lora', serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--scarlet), var(--scarlet-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(188,0,36,0.38), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--scarlet-dark), var(--scarlet-dark)); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(188,0,36,0.45); }
.btn-outline {
  border: 2px solid var(--rose);
  color: var(--brown);
  background: rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--scarlet); color: var(--scarlet); transform: translateY(-3px); }

/* ---------- lace / scallop divider ---------- */
.lace { display: block; width: 100%; height: 26px; }

/* ---------- section headings ---------- */
.section { padding: 70px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .script-label {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--rose);
  display: block;
}
.section-head h2 { font-size: 2.8rem; }
.section-head .flourish { width: 180px; height: 26px; margin: 10px auto 0; display: block; }

/* ---------- category tiles ---------- */
.cats {
  background-color: var(--rose-mist);
  background-image: radial-gradient(rgba(217,139,155,0.22) 2px, transparent 2.6px);
  background-size: 26px 26px;
  border-top: 1px dashed var(--paper-line);
  border-bottom: 1px dashed var(--paper-line);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.cat-tile {
  text-align: center;
  padding: 32px 18px 26px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
}
/* stitched inner border */
.cat-tile::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px dashed rgba(217,139,155,0.55);
  border-radius: 9px;
  pointer-events: none;
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-tile:hover .icon-circle { animation: wiggle 0.5s ease; }
.cat-tile .icon-circle {
  width: 68px; height: 68px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--rose-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  box-shadow: inset 0 0 0 3px #fff, 0 3px 10px rgba(217,139,155,0.35);
}
.cat-tile:nth-child(2) .icon-circle { background: var(--gold-soft); box-shadow: inset 0 0 0 3px #fff, 0 3px 10px rgba(212,175,55,0.3); }
.cat-tile:nth-child(3) .icon-circle { background: var(--cream-deep); box-shadow: inset 0 0 0 3px #fff, 0 3px 10px rgba(74,63,53,0.15); }
.cat-tile:nth-child(4) .icon-circle { background: var(--rose-soft); box-shadow: inset 0 0 0 3px #fff, 0 3px 10px rgba(217,139,155,0.35); }
.cat-tile h3 { font-size: 1.45rem; color: var(--brown); }
.cat-tile p { font-size: 0.95rem; color: var(--brown-soft); margin-top: 4px; }

/* ---------- article cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}
.card {
  background: #fff;
  padding: 14px 14px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s ease;
  border-radius: 4px;
}
.card:hover { transform: rotate(-1deg) translateY(-6px); }
.card:nth-child(even):hover { transform: rotate(1deg) translateY(-6px); }
.card .card-tape {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%) rotate(-2.5deg);
  width: 120px; height: 28px;
  background: repeating-linear-gradient(45deg, rgba(217,139,155,0.72), rgba(217,139,155,0.72) 8px, rgba(243,221,226,0.75) 8px, rgba(243,221,226,0.75) 16px);
  box-shadow: 0 2px 5px rgba(74,63,53,0.1);
  z-index: 2;
}
.card:nth-child(2) .card-tape { background: repeating-linear-gradient(45deg, rgba(212,175,55,0.55), rgba(212,175,55,0.55) 8px, rgba(248,244,236,0.85) 8px, rgba(248,244,236,0.85) 16px); }
.card:nth-child(3) .card-tape { background: repeating-linear-gradient(45deg, rgba(188,0,36,0.45), rgba(188,0,36,0.45) 8px, rgba(243,221,226,0.72) 8px, rgba(243,221,226,0.72) 16px); }
.card .thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--rose-mist), var(--cream-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--paper-line);
  position: relative;
}
.card .thumb svg { width: 74%; height: 74%; }
/* lace edge along thumb bottom */
.card .thumb::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 12px;
  background: radial-gradient(circle at 8px -4px, transparent 9px, #fff 10px);
  background-size: 16px 12px;
  background-position: 0 0;
}
.card .card-body { padding: 18px 8px 0; }
.card .cat {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
}
.card .cat::before { content: "✿ "; color: var(--gold); }
.card h3 { font-size: 1.55rem; margin: 8px 0 10px; }
.card h3 a { color: var(--brown); }
.card h3 a:hover { color: var(--scarlet); }
.card p { font-size: 1rem; color: var(--brown-soft); }
.card .read-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}
.card .read-more::after { content: " →"; }
.card .read-more:hover { letter-spacing: 0.1em; }

/* ---------- etsy shop promo ---------- */
.shop-promo { position: relative; }
.shop-banner {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,0.55) 0 36px, transparent 37px),
    radial-gradient(circle at 90% 75%, rgba(255,255,255,0.5) 0 46px, transparent 47px),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,0.4) 0 26px, transparent 27px),
    linear-gradient(120deg, var(--rose-soft), var(--rose-mist) 55%, var(--gold-soft));
  border: 1px solid rgba(217,139,155,0.45);
  border-radius: 20px;
  padding: 56px 46px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.shop-banner::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed rgba(188,0,36,0.25);
  border-radius: 13px;
  pointer-events: none;
}
.shop-banner h2 { font-size: 2.5rem; margin-bottom: 12px; }
.shop-banner .fancy { color: var(--scarlet); font-size: 3.3rem; display: block; line-height: 1.1; margin-bottom: 4px; }
.shop-banner p { color: var(--brown); margin-bottom: 26px; font-size: 1.08rem; }
.shop-features { list-style: none; margin-bottom: 26px; }
.shop-features li { margin-bottom: 9px; color: var(--brown); font-size: 1.05rem; font-weight: 600; }
.shop-features li::before { content: "♡ "; color: var(--scarlet); font-weight: 700; }
.product-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; z-index: 1; }
.product {
  background: #fff;
  padding: 10px 10px 14px;
  box-shadow: 0 8px 20px rgba(74,63,53,0.15);
  text-align: center;
  transform: rotate(-3deg);
  border-radius: 4px;
  transition: transform 0.22s ease;
  position: relative;
}
.product:nth-child(2) { transform: rotate(2deg) translateY(10px); }
.product:nth-child(3) { transform: rotate(-1.5deg); }
.product:hover { transform: rotate(0deg) scale(1.06); z-index: 2; }
.product .badge {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--gold);
  color: #fff;
  font-family: 'Caveat', cursive;
  font-size: 0.95rem;
  padding: 3px 10px;
  border-radius: 20px;
  transform: rotate(8deg);
  box-shadow: 0 3px 8px rgba(74,63,53,0.2);
  z-index: 3;
}
.product .p-thumb {
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--rose-mist), var(--cream-deep));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--paper-line);
  margin-bottom: 8px;
}
.product .p-thumb svg { width: 72%; height: 72%; }
.product span { font-size: 0.95rem; color: var(--brown); font-style: italic; font-weight: 600; }

/* ---------- about strip ---------- */
.about-strip {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  background: #fff;
  padding: 12px 12px 46px;
  box-shadow: var(--shadow);
  transform: rotate(-2.5deg);
  position: relative;
  border-radius: 3px;
}
.about-photo .tape { top: -14px; left: 50%; transform: translateX(-50%) rotate(2deg); width: 100px; }
.about-photo .corner {
  position: absolute;
  width: 26px; height: 26px;
  background: var(--gold-soft);
  opacity: 0.85;
}
.about-photo .corner.tl { top: 6px; left: 6px; clip-path: polygon(0 0, 100% 0, 0 100%); }
.about-photo .corner.br { bottom: 40px; right: 6px; clip-path: polygon(100% 100%, 0 100%, 100% 0); }
.about-photo .ph {
  width: 100%; height: 100%;
  background: linear-gradient(165deg, var(--rose-soft), var(--rose-mist));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--brown-soft);
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  gap: 8px;
}
.about-photo .ph svg { width: 70px; height: 70px; opacity: 0.9; }
.about-photo .ph-caption {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--brown);
}
.about-text .script-label { font-family: 'Caveat', cursive; font-size: 1.6rem; color: var(--rose); }
.about-text h2 { font-size: 2.2rem; margin: 6px 0 16px; }
.about-text h2 .fancy { color: var(--scarlet); font-size: 2.6rem; }
.about-text p { color: var(--brown); margin-bottom: 14px; font-size: 1.05rem; }
.about-sign { font-family: 'Dancing Script', cursive; font-weight: 700; font-size: 2.2rem; color: var(--scarlet); margin: 10px 0 20px; }

/* ---------- falling petals ---------- */
.petal {
  position: absolute;
  top: -30px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: petalFall 10s linear infinite;
}
@keyframes petalFall {
  0% { opacity: 0; transform: translate(0, -30px) rotate(0deg); }
  10% { opacity: 0.85; }
  85% { opacity: 0.55; }
  100% { opacity: 0; transform: translate(70px, 620px) rotate(320deg); }
}

/* ---------- script marquee ribbon ---------- */
.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, var(--scarlet-dark), var(--scarlet) 30%, var(--scarlet) 70%, var(--scarlet-dark));
  padding: 13px 0;
  transform: rotate(-1.2deg);
  width: 104%;
  margin: 40px 0 40px -2%;
  box-shadow: var(--shadow-soft);
  border-top: 2px dashed rgba(255,255,255,0.35);
  border-bottom: 2px dashed rgba(255,255,255,0.35);
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
  padding: 0 16px;
}
.marquee-track span b { color: var(--gold-soft); font-weight: 500; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ---------- pretty pages wall ---------- */
.gallery-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.snap {
  background: #fff;
  padding: 11px 11px 14px;
  width: 215px;
  box-shadow: var(--shadow);
  border-radius: 3px;
  position: relative;
  transition: transform 0.25s ease;
}
.snap:nth-child(odd) { transform: rotate(-3deg); }
.snap:nth-child(even) { transform: rotate(2.5deg) translateY(14px); }
.snap:hover { transform: rotate(0deg) scale(1.07); z-index: 2; }
.snap .tape { top: -13px; left: 50%; transform: translateX(-50%) rotate(-3deg); width: 90px; height: 26px; }
.snap .art {
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--rose-mist), var(--cream-deep));
  border: 1px solid var(--paper-line);
  display: flex; align-items: center; justify-content: center;
}
.snap .art svg { width: 74%; height: 74%; }
.snap .snap-caption {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 8px;
  color: var(--brown);
}

/* ---------- kind words ---------- */
.kind-words {
  background-color: var(--rose-mist);
  background-image: radial-gradient(rgba(212,175,55,0.16) 2px, transparent 2.6px);
  background-size: 30px 30px;
  border-top: 1px dashed var(--paper-line);
  border-bottom: 1px dashed var(--paper-line);
}
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.note-card {
  background: #fff;
  padding: 30px 26px 24px;
  position: relative;
  box-shadow: var(--shadow-soft);
  border-radius: 4px;
  transition: transform 0.22s ease;
}
.note-card:nth-child(1) { transform: rotate(-1.6deg); }
.note-card:nth-child(2) { transform: rotate(1.2deg) translateY(8px); background: #FFFBF2; }
.note-card:nth-child(3) { transform: rotate(-1deg); }
.note-card:hover { transform: rotate(0deg) translateY(-4px); }
.note-card .tape { top: -13px; left: 30px; width: 84px; height: 26px; }
.note-card .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.note-card .note-text {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.45;
  color: var(--brown);
  margin: 10px 0 6px;
}
.note-card .who { font-size: 0.85rem; color: var(--brown-soft); font-style: italic; }

/* ---------- quote banner ---------- */
.quote-banner { text-align: center; padding: 74px 24px 56px; }
.quote-banner .q-hearts { color: var(--rose); font-size: 1.3rem; letter-spacing: 10px; display: block; margin-bottom: 14px; }
.quote-banner .fancy {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  color: var(--scarlet);
  line-height: 1.35;
  display: block;
  max-width: 840px;
  margin: 0 auto;
}
.quote-banner .q-by { font-family: 'Caveat', cursive; color: var(--brown-soft); font-size: 1.3rem; margin-top: 14px; display: block; }

/* ---------- final cta ---------- */
.final-cta { padding: 30px 24px 96px; }
.cta-banner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.5) 0 34px, transparent 35px),
    radial-gradient(circle at 88% 70%, rgba(255,255,255,0.45) 0 44px, transparent 45px),
    linear-gradient(120deg, var(--rose-soft), var(--rose-mist) 55%, var(--gold-soft));
  border: 1px solid rgba(217,139,155,0.45);
  border-radius: 24px;
  padding: 64px 40px 56px;
  position: relative;
  box-shadow: var(--shadow);
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed rgba(188,0,36,0.25);
  border-radius: 16px;
  pointer-events: none;
}
.cta-bow {
  position: absolute;
  top: -36px; left: 50%;
  transform: translateX(-50%);
  width: 96px;
  filter: drop-shadow(0 5px 10px rgba(74,63,53,0.25));
}
.cta-banner .fancy { font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--scarlet); display: block; line-height: 1.15; }
.cta-banner h2 { font-size: 2rem; margin: 8px 0 12px; }
.cta-banner p { color: var(--brown-soft); max-width: 520px; margin: 0 auto 30px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; position: relative; z-index: 1; }
.cta-banner .sparkle { animation: twinkle 3s ease-in-out infinite; }

/* ---------- footer ---------- */
footer.site {
  background: var(--cream-deep);
  padding: 56px 24px 28px;
}
.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid .logo { font-size: 2rem; }
.footer-grid p { font-size: 0.95rem; color: var(--brown-soft); margin-top: 10px; }
.footer-grid h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  color: var(--brown);
  font-family: 'Lora', serif;
}
.footer-grid h4::after { content: " ✿"; color: var(--rose); }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid li a { color: var(--brown-soft); font-size: 0.9rem; }
.footer-grid li a:hover { color: var(--scarlet); }
.copyright {
  text-align: center;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px dashed var(--paper-line);
  font-size: 0.82rem;
  color: var(--brown-soft);
}
.copyright .heart { color: var(--scarlet); }

/* ---------- ARTICLE PAGES ---------- */
.article-hero { text-align: center; padding: 56px 24px 30px; max-width: 780px; margin: 0 auto; }
.article-hero .cat { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); font-weight: 700; }
.article-hero .cat::before { content: "✿ "; color: var(--gold); }
.article-hero .cat::after { content: " ✿"; color: var(--gold); }
.article-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 14px 0 10px; }
.article-hero h1::after {
  content: "";
  display: block;
  width: 150px; height: 3px;
  margin: 18px auto 0;
  background: radial-gradient(circle, var(--gold) 30%, transparent 70%);
  border-radius: 50%;
}
.article-hero .meta { font-size: 0.88rem; color: var(--brown-soft); font-style: italic; }
.article-hero .meta .dot { color: var(--gold); margin: 0 8px; }

article.post {
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 24px 72px;
}
article.post p { margin-bottom: 20px; font-size: 1.08rem; }
/* pretty drop cap on the opening paragraph */
article.post > p:first-of-type::first-letter {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 3.9rem;
  line-height: 0.8;
  color: var(--scarlet);
  float: left;
  padding: 8px 10px 0 0;
}
article.post h2 {
  font-size: 2.05rem;
  margin: 42px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--paper-line);
}
article.post h3 { font-size: 1.35rem; margin: 28px 0 10px; }
article.post ul, article.post ol { margin: 0 0 20px 26px; }
article.post li { margin-bottom: 8px; }
article.post blockquote {
  border-left: 3px solid var(--rose);
  background: var(--rose-mist);
  padding: 20px 24px;
  margin: 26px 0;
  font-style: italic;
  color: var(--brown);
  border-radius: 0 10px 10px 0;
}
article.post .tip-box {
  background: #fff;
  border: 1.5px dashed var(--gold);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 30px 0;
  box-shadow: var(--shadow-soft);
}
article.post .tip-box .tip-label {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--scarlet);
  display: block;
  margin-bottom: 6px;
}
.shop-callout {
  background: linear-gradient(120deg, var(--rose-soft), var(--rose-mist) 60%, var(--gold-soft));
  border: 1px solid rgba(217,139,155,0.45);
  border-radius: 16px;
  padding: 32px 28px;
  margin: 38px 0;
  text-align: center;
  position: relative;
}
.shop-callout::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px dashed rgba(188,0,36,0.25);
  border-radius: 10px;
  pointer-events: none;
}
.shop-callout .script { font-size: 1.7rem; color: var(--scarlet); display: block; margin-bottom: 6px; }
.shop-callout p { margin-bottom: 18px !important; color: var(--brown-soft); font-size: 0.95rem; }
.shop-callout .btn { position: relative; z-index: 1; }

/* ad placeholder — replaced by real AdSense units on WordPress */
.ad-slot {
  background: var(--cream-deep);
  border: 1px dashed var(--paper-line);
  border-radius: 8px;
  color: var(--brown-soft);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 34px 20px;
  margin: 32px 0;
}

/* ==========================================================
   v3 "extreme pyari" upgrades — shimmer, glow, reveal magic
   ========================================================== */

/* gold shimmer on script headings */
@keyframes goldShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.hero h1 .fancy,
.shop-banner .fancy,
.cta-banner .fancy,
.quote-banner .fancy,
.about-text h2 .fancy {
  background: linear-gradient(100deg,
    var(--scarlet) 0%, var(--scarlet) 38%,
    var(--gold) 47%, #F3E19E 50%, var(--gold) 53%,
    var(--scarlet) 62%, var(--scarlet) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShimmer 5.5s linear infinite;
}

/* glossy shine sweeping across primary buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.4s ease-in-out infinite;
}
@keyframes btnShine {
  0% { left: -80%; }
  55%, 100% { left: 130%; }
}

/* heartbeat pulse on the shop nav button */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(188,0,36,0.3); }
  8% { transform: scale(1.07); box-shadow: 0 6px 18px rgba(188,0,36,0.45); }
  16% { transform: scale(1); }
  24% { transform: scale(1.05); }
  32%, 90% { transform: scale(1); }
}
.nav-shop { animation: heartbeat 2.8s ease-in-out infinite; }
.nav-shop:hover { animation-play-state: paused; }

/* diagonal sheen gliding over big banners */
.shop-banner::before,
.cta-banner::before {
  content: "";
  position: absolute;
  top: -40%; bottom: -40%;
  left: -35%;
  width: 26%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-18deg);
  animation: bannerSheen 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes bannerSheen {
  0%, 12% { left: -35%; }
  55%, 100% { left: 140%; }
}

/* hero polaroid comes alive on hover */
.polaroid-main { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.polaroid-main:hover {
  transform: translateX(-58%) rotate(-1deg) scale(1.04);
  box-shadow: 0 18px 44px rgba(188,0,36,0.18);
}

/* butterfly actually flies around the hero */
@keyframes butterflyFly {
  0%   { transform: translate(0, 0) rotate(-10deg); }
  20%  { transform: translate(70px, -26px) rotate(6deg); }
  40%  { transform: translate(150px, 6px) rotate(-6deg); }
  60%  { transform: translate(90px, 40px) rotate(8deg); }
  80%  { transform: translate(24px, 14px) rotate(-4deg); }
  100% { transform: translate(0, 0) rotate(-10deg); }
}
.collage-butterfly { animation: butterflyFly 16s ease-in-out infinite; }

/* article & product cards: golden glow lift */
.card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { box-shadow: 0 18px 40px rgba(74,63,53,0.16), 0 0 0 2px rgba(212,175,55,0.35); }
.card .thumb svg { transition: transform 0.4s ease; }
.card:hover .thumb svg { transform: scale(1.1) rotate(-2deg); }
.product { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.product:hover { box-shadow: 0 14px 32px rgba(74,63,53,0.2), 0 0 0 2px rgba(212,175,55,0.4); }
.cat-tile:hover { box-shadow: var(--shadow), 0 0 0 2px rgba(217,139,155,0.45); }
.snap:hover { box-shadow: var(--shadow), 0 0 0 2px rgba(212,175,55,0.35); }

/* marquee pauses politely on hover */
.marquee:hover .marquee-track { animation-play-state: paused; }

/* highlighter swipe under section headings (triggers on reveal) */
.section-head h2 { display: inline-block; position: relative; z-index: 1; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: -10px; right: -10px; bottom: 4px;
  height: 15px;
  background: linear-gradient(90deg, rgba(217,139,155,0.4), rgba(212,175,55,0.35));
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.section-head.in h2::after { transform: scaleX(1); }

/* scroll-reveal (elements get .reveal via js, .in when visible) */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
/* keep the playful resting tilts once revealed */
.note-card.reveal.in:nth-child(1) { transform: rotate(-1.6deg); }
.note-card.reveal.in:nth-child(2) { transform: rotate(1.2deg) translateY(8px); }
.note-card.reveal.in:nth-child(3) { transform: rotate(-1deg); }
.snap.reveal.in:nth-child(odd) { transform: rotate(-3deg); }
.snap.reveal.in:nth-child(even) { transform: rotate(2.5deg) translateY(14px); }
.note-card.reveal.in:hover, .snap.reveal.in:hover { transform: rotate(0deg) translateY(-4px); }

/* site-wide falling petals (spawned by js, fixed to viewport) */
.petal-screen {
  position: fixed;
  top: -40px;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  animation: petalScreenFall linear infinite;
}
@keyframes petalScreenFall {
  0% { opacity: 0; transform: translate(0, -40px) rotate(0deg); }
  8% { opacity: 0.8; }
  80% { opacity: 0.5; }
  100% { opacity: 0; transform: translate(90px, 105vh) rotate(340deg); }
}

/* little hearts trailing the cursor */
.cursor-heart {
  position: fixed;
  z-index: 200;
  pointer-events: none;
  font-size: 13px;
  animation: heartPop 0.9s ease-out forwards;
}
@keyframes heartPop {
  0% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.6) rotate(0deg); }
  100% { opacity: 0; transform: translate(-50%, -160%) scale(1.15) rotate(18deg); }
}

/* back-to-top heart */
.back-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--scarlet);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(188,0,36,0.4);
  z-index: 90;
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}
.back-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-top:hover { background: var(--scarlet-dark); transform: translateY(-4px) scale(1.06); }

/* gentle glow pulse behind the hero collage */
.hero-collage::before {
  content: "";
  position: absolute;
  top: 46%; left: 50%;
  width: 480px; height: 480px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217,139,155,0.22), rgba(212,175,55,0.1) 55%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.07); }
}

/* icon circles bob sweetly */
.cat-tile .icon-circle { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.cat-tile:hover .icon-circle { transform: scale(1.12); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 1; }
  .hero-collage { order: 2; min-height: 460px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero p.lead { margin: 18px auto 30px; }
  .hero-btns, .hero-trust { justify-content: center; }
}
@media (max-width: 860px) {
  .shop-banner { grid-template-columns: 1fr; padding: 40px 26px; }
  .about-strip { grid-template-columns: 1fr; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  nav.main {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px dashed var(--paper-line);
    box-shadow: 0 10px 20px rgba(74,63,53,0.1);
  }
  nav.main.open { display: block; }
  nav.main ul { flex-direction: column; gap: 0; padding: 12px 24px; align-items: flex-start; }
  nav.main li { padding: 10px 0; }
  .nav-toggle { display: block; }
  .marquee-track span { font-size: 1.3rem; }
  .snap { width: 172px; }
  .cta-banner { padding: 56px 22px 46px; }
  .collage-doily { width: 340px; height: 340px; }
  .polaroid-main { width: 230px; }
  .collage-tag { width: 120px; }
  .collage-stamp { width: 105px; }
  .collage-note { width: 170px; font-size: 1.15rem; }
}

/* ==========================================================
   v5 — gentle "prettier" polish (keeps the vintage character)
   ========================================================== */

/* warmer, deeper page background for a cozier, richer feel */
body {
  background-color: #FBF6EE;
  background-image:
    radial-gradient(ellipse at 12% 6%, rgba(217,139,155,0.16), transparent 42%),
    radial-gradient(ellipse at 90% 12%, rgba(212,175,55,0.11), transparent 42%),
    radial-gradient(ellipse at 80% 92%, rgba(217,139,155,0.13), transparent 48%),
    radial-gradient(ellipse at 18% 82%, rgba(212,175,55,0.07), transparent 46%),
    repeating-linear-gradient(0deg, transparent, transparent 34px, rgba(74,63,53,0.022) 35px);
}

/* soft blush wash at the very top of the hero for depth */
.hero {
  background: linear-gradient(180deg, rgba(250,239,241,0.9) 0%, rgba(250,239,241,0) 55%);
}

/* an elegant hand-drawn gold arch/frame behind the hero collage */
.hero-collage::after {
  content: "";
  position: absolute;
  top: 44%; left: 50%;
  width: 452px; height: 452px;
  transform: translate(-50%, -50%) rotate(-2deg);
  border: 2px solid rgba(212,175,55,0.55);
  border-radius: 49% 51% 47% 53% / 53% 48% 52% 47%;
  z-index: -1;
  pointer-events: none;
}

/* richer, hand-warmed cards with a whisper of gold edging */
.cat-tile, .card, .note-card, .snap {
  background-image: linear-gradient(168deg, #ffffff 0%, #FFFBF3 100%);
}
.card { box-shadow: var(--shadow), 0 0 0 1px rgba(212,175,55,0.22); }
.cat-tile { box-shadow: var(--shadow-soft), 0 0 0 1px rgba(212,175,55,0.20); }

/* deeper, more luxe gradients on the shop + cta banners */
.shop-banner {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,0.6) 0 36px, transparent 37px),
    radial-gradient(circle at 90% 75%, rgba(255,255,255,0.55) 0 46px, transparent 47px),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,0.45) 0 26px, transparent 27px),
    linear-gradient(120deg, #F5C4D2 0%, var(--rose-soft) 40%, var(--rose-mist) 68%, var(--gold-soft) 100%);
}
.cta-banner {
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.55) 0 34px, transparent 35px),
    radial-gradient(circle at 88% 70%, rgba(255,255,255,0.5) 0 44px, transparent 45px),
    linear-gradient(120deg, #F5C4D2 0%, var(--rose-soft) 42%, var(--rose-mist) 70%, var(--gold-soft) 100%);
}

/* prettier primary buttons — a soft gold ring + warmer gradient */
.btn-primary {
  background: linear-gradient(135deg, #CE1D40, var(--scarlet) 55%, var(--scarlet-dark));
  box-shadow: 0 8px 20px rgba(188,0,36,0.34), inset 0 0 0 1.5px rgba(233,217,168,0.55);
}

/* logo gets a subtle gold-kissed shine */
.logo { text-shadow: 0 1px 0 rgba(212,175,55,0.25); }

/* real <img> slots (swap the src for your own photos in WordPress) */
.snap .art img,
.product .p-thumb img,
.card .thumb img,
.polaroid-main .ph-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================
   v6 — 3D depth + photos + playful polish (reference-inspired)
   ========================================================== */

/* glossy embossed "handmade" seal, like a wax/foil stamp */
.seal-badge {
  position: absolute;
  top: 4px; left: -8px;
  width: 98px; height: 98px;
  border-radius: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  transform: rotate(-8deg);
  background: radial-gradient(circle at 34% 28%, #FBEFC6 0%, #EAD07C 38%, #D4AF37 66%, #B8942A 100%);
  box-shadow:
    0 12px 22px rgba(74,63,53,0.30),
    0 3px 6px rgba(74,63,53,0.20),
    inset 0 2px 5px rgba(255,255,255,0.65),
    inset 0 -6px 12px rgba(120,90,20,0.45);
  border: 2px solid #F4E6B4;
  animation: sealFloat 6s ease-in-out infinite;
}
.seal-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: sealSpin 24s linear infinite; }
.seal-badge .seal-core {
  font-size: 1.7rem;
  color: #BC0024;
  filter: drop-shadow(0 1px 1px rgba(255,255,255,0.7));
}
@keyframes sealSpin { to { transform: rotate(360deg); } }
@keyframes sealFloat {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-6px); }
}

/* puffy, tactile 3D primary buttons */
.btn-primary {
  background: linear-gradient(180deg, #D81A3F 0%, var(--scarlet) 46%, var(--scarlet-dark) 100%);
  box-shadow:
    0 6px 0 #7D0018,
    0 14px 24px rgba(188,0,36,0.32),
    inset 0 2px 2px rgba(255,255,255,0.4);
  transform: translateY(0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 #7D0018,
    0 18px 30px rgba(188,0,36,0.42),
    inset 0 2px 2px rgba(255,255,255,0.45);
}
.btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #7D0018, 0 6px 12px rgba(188,0,36,0.3);
}

/* outline buttons get a soft raised card feel too */
.btn-outline {
  background: #fff;
  box-shadow: 0 5px 0 rgba(217,139,155,0.45), 0 10px 20px rgba(74,63,53,0.12);
  transform: translateY(0);
}
.btn-outline:hover { transform: translateY(-2px); box-shadow: 0 7px 0 rgba(217,139,155,0.5), 0 14px 24px rgba(74,63,53,0.16); }

/* cards & tiles float above the page with layered, realistic shadows */
.card, .cat-tile, .note-card, .snap, .product, .about-photo {
  box-shadow: 0 3px 6px rgba(74,63,53,0.10), 0 18px 38px rgba(74,63,53,0.16);
}

/* deeper, blurred glow behind the hero for real depth */
.hero-collage::before {
  background: radial-gradient(circle, rgba(217,139,155,0.32), rgba(212,175,55,0.14) 52%, transparent 72%);
  filter: blur(14px);
}

/* playful hand-drawn annotation */
.doodle-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.doodle-note .doodle-arrow { width: 56px; height: auto; flex: none; }
.doodle-note .script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--rose);
  transform: rotate(-2deg);
}

/* ==========================================================
   v7 — more photos + more 3D depth
   ========================================================== */

/* about-section creator photo fills its frame */
.about-photo .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* category icons become glossy 3D bubbles */
.cats .cat-tile .icon-circle {
  background-image: radial-gradient(circle at 34% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0) 62%);
  box-shadow:
    inset 0 3px 6px rgba(255,255,255,0.85),
    inset 0 -7px 12px rgba(217,139,155,0.45),
    0 9px 16px rgba(74,63,53,0.20);
}

/* shop + cta banners lift off the page as big 3D cards */
.shop-banner, .cta-banner {
  box-shadow: 0 6px 12px rgba(74,63,53,0.10), 0 28px 52px rgba(74,63,53,0.20);
}

/* second glossy seal on the shop banner */
.seal-badge.seal-shop {
  top: 16px; right: 18px; left: auto;
  width: 84px; height: 84px;
  z-index: 7;
  animation: sealFloatR 6.5s ease-in-out infinite;
}
@keyframes sealFloatR {
  0%, 100% { transform: rotate(9deg) translateY(0); }
  50% { transform: rotate(9deg) translateY(-6px); }
}

/* glossy product "bestseller" badge */
.product .badge {
  background-image: radial-gradient(circle at 35% 28%, rgba(255,255,255,0.75), rgba(255,255,255,0) 60%);
  box-shadow: 0 4px 9px rgba(74,63,53,0.28), inset 0 1px 1px rgba(255,255,255,0.6);
}

/* polaroid photo gets a chunkier 3D frame */
.polaroid-main {
  box-shadow: 0 4px 8px rgba(74,63,53,0.12), 0 22px 44px rgba(74,63,53,0.22);
}

@media (max-width: 860px) {
  .seal-badge.seal-shop { top: 10px; right: 10px; width: 72px; height: 72px; }
}
@media (max-width: 720px) {
  .seal-badge { width: 78px; height: 78px; }
}

/* empty state for the guides section (articles added later in WordPress) */
.guides-empty {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(168deg, #ffffff, #FFFBF3);
  border: 2px dashed rgba(217,139,155,0.55);
  border-radius: 18px;
  padding: 54px 30px;
  box-shadow: 0 3px 6px rgba(74,63,53,0.08), 0 18px 38px rgba(74,63,53,0.12);
}
.guides-empty .ge-flower { font-size: 2.6rem; line-height: 1; }
.guides-empty .ge-title {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 2rem;
  color: var(--scarlet);
  margin: 12px 0 8px;
}
.guides-empty .ge-sub { color: var(--brown-soft); max-width: 460px; margin: 0 auto; }
