/*
Theme Name: Cut Clay Love
Theme URI: https://cutclaylove.com
Author: Cut Clay Love
Author URI: https://cutclaylove.com
Description: Custom WooCommerce theme for Cut Clay Love — pottery templates & tutorials for every skill level. Built from the Cut Clay Love Brand Guidelines (2026): hot pink / coral / blush gradients, TAN Nimbus + Fraunces + Bright Retro + Poppins type system, soft blurred organic shapes.
Version: 1.3.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
WC requires at least: 7.0
WC tested up to: 9.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cutclaylove
*/

/* =========================================================
   1. FONTS
   TAN Nimbus + Bright Retro are self-hosted licensed fonts.
   Fraunces + Poppins are loaded from Google Fonts (see inc/enqueue.php)
   because both ship as open, wide-weight-range families there.
   ========================================================= */

@font-face {
  font-family: 'TAN Nimbus';
  src: url('assets/fonts/TAN-Nimbus.otf') format('opentype'),
       url('assets/fonts/TAN-Nimbus.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bright Retro';
  src: url('assets/fonts/BrightRetro-Regular.woff2') format('woff2'),
       url('assets/fonts/BrightRetro-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bright Retro';
  src: url('assets/fonts/BrightRetro-Italic.woff2') format('woff2'),
       url('assets/fonts/BrightRetro-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* =========================================================
   2. BRAND VARIABLES
   ========================================================= */
:root {
  /* primary palette */
  --hot-pink: #FF6DAB;
  --warm-coral: #FF8867;
  --soft-blush: #F5B5C8;
  --pale-petal: #FDE7EE;
  --buttery-yellow: #FCEDA7;
  --lavender-dream: #CEB6F9;
  --sage-whisper: #C7F5AB;
  --white: #FFFFFF;

  /* text */
  --deep-pink: #8C2048;
  --brown-pink: #6B2238;

  /* gradients */
  --gradient-mesh: radial-gradient(circle at 15% 15%, #FCEDA7 0%, rgba(252,237,167,0) 40%),
                    radial-gradient(circle at 85% 20%, #FF8867 0%, rgba(255,136,103,0) 45%),
                    radial-gradient(circle at 80% 85%, #FF6DAB 0%, rgba(255,109,171,0) 50%),
                    radial-gradient(circle at 10% 85%, #C7F5AB 0%, rgba(199,245,171,0) 40%),
                    radial-gradient(circle at 50% 50%, #CEB6F9 0%, rgba(206,182,249,0) 55%),
                    var(--soft-blush);
  --gradient-sunset: linear-gradient(135deg, #FCEDA7 0%, #FF8867 50%, #FF6DAB 100%);
  --gradient-dreamy: linear-gradient(135deg, #FDE7EE 0%, #F5B5C8 50%, #CEB6F9 100%);
  --gradient-spotlight: radial-gradient(circle, #FDE7EE 0%, #F5B5C8 60%, #FF6DAB 100%);
  --gradient-paper: linear-gradient(180deg, #FDE7EE 0%, #F5B5C8 100%);

  /* type */
  --font-hero: 'TAN Nimbus', Georgia, 'Times New Roman', serif;
  --font-secondary: 'Fraunces', Georgia, serif;
  --font-product: 'Bright Retro', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* radii */
  --radius-sm: 16px;
  --radius-lg: 28px;
  --radius-pill: 99px;

  /* shape */
  --container: 1240px;
  --shadow-soft: 0 20px 45px -20px rgba(140, 32, 72, 0.25);
  --shadow-card: 0 12px 30px -14px rgba(140, 32, 72, 0.2);
}

/* =========================================================
   3. RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--pale-petal);
  color: var(--deep-pink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--hot-pink); text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-secondary);
  font-weight: 900;
  color: var(--deep-pink);
  line-height: 1.15;
  margin: 0 0 .5em;
}
p { margin: 0 0 1.25em; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 12px;
}
.section { padding: 88px 0; position: relative; }
.section--tight { padding: 56px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { color: var(--brown-pink); font-size: 17px; }
.center { text-align: center; }

/* soft organic blob decoration, used sparingly per brand rules (max 3 per design) */
.blob {
  position: absolute;
  border-radius: 50% 45% 55% 50% / 55% 50% 45% 50%;
  filter: blur(60px);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}

/* =========================================================
   4. BUTTONS — two approved styles only
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-arrow::after { content: '\2192'; transition: transform .18s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

.btn-primary {
  background: var(--hot-pink);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(255, 109, 171, .65);
}
.btn-primary:hover { background: #ff529d; color: var(--white); }

.btn-secondary {
  background: var(--white);
  color: var(--hot-pink);
  border-color: var(--hot-pink);
}
.btn-secondary:hover { background: var(--pale-petal); color: var(--hot-pink); }

.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 11px 22px; font-size: 13px; }

/* =========================================================
   5. HEADER + MARQUEE
   ========================================================= */
.marquee-bar {
  background: var(--hot-pink);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-secondary);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 231, 238, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(140,32,72,.08);
}
/* centred-logo split navigation */
.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}
.nav-left { justify-self: end; padding-right: 8px; }
.nav-right { justify-self: start; padding-left: 8px; padding-right: 110px; }
.header-actions {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo img {
  height: 60px;
  width: auto;
  transition: transform .25s ease;
}
.site-logo { display: flex; align-items: center; }
.site-logo:hover img { transform: scale(1.12); }

.primary-nav ul { display: flex; align-items: center; gap: 8px; }
.primary-nav a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--pale-petal);
  background: var(--brown-pink);
  transition: background .18s ease, color .18s ease;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  background: var(--white);
  color: var(--hot-pink);
}
.marquee-heart { font-style: normal; padding-left: 18px; font-size: 17px; line-height: 1; }

.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--hot-pink);
  border: 1.5px solid var(--soft-blush);
}
.header-cart svg { width: 20px; height: 20px; }
.header-cart .cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--soft-blush);
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--deep-pink);
  position: relative;
  transition: all .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* =========================================================
   6. HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--gradient-mesh);
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
}
.hero::before {
  width: 360px; height: 360px;
  background: var(--buttery-yellow);
  top: -120px; left: -100px;
}
.hero::after {
  width: 420px; height: 420px;
  background: var(--lavender-dream);
  bottom: -160px; right: -120px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.55);
  color: var(--deep-pink);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-hero);
  font-weight: 400;
  color: var(--white);
  font-size: clamp(46px, 8vw, 84px);
  line-height: 1;
  text-shadow: 0 10px 30px rgba(140,32,72,.18);
  margin-bottom: 24px;
}
.hero p.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--white);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 500;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn-secondary { background: rgba(255,255,255,.92); }

/* =========================================================
   7. PILLARS / VALUE PROPS
   ========================================================= */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.pillar-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--hot-pink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-bottom: 18px;
}
.pillar-card h3 { font-size: 20px; margin-bottom: 8px; }
.pillar-card p { color: var(--brown-pink); font-size: 15px; margin: 0; }

/* =========================================================
   8. CARDS — products & tutorials (shared grid card language)
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ccl-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ccl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.ccl-card-media {
  aspect-ratio: 4/3;
  background: var(--gradient-dreamy);
  position: relative;
  overflow: hidden;
}
.ccl-card-media img { width: 100%; height: 100%; object-fit: cover; }
.ccl-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--hot-pink);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.ccl-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.ccl-card-body h3 { font-size: 21px; margin-bottom: 6px; }
.ccl-card-body .price { font-family: var(--font-body); font-weight: 700; color: var(--hot-pink); font-size: 17px; margin-bottom: 12px; }
.ccl-card-body p.excerpt { color: var(--brown-pink); font-size: 14.5px; margin-bottom: 18px; flex: 1; }
.ccl-card-body .btn { align-self: flex-start; }

/* empty state (no products / posts yet) */
.empty-state {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  box-shadow: var(--shadow-card);
}
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--brown-pink); }

/* =========================================================
   9. SECTION BACKGROUND VARIANTS (one gradient per section)
   ========================================================= */
.bg-sunset { background: var(--gradient-sunset); }
.bg-sunset h2, .bg-sunset .section-head p, .bg-sunset p { color: var(--white); }
.bg-dreamy { background: var(--gradient-dreamy); }
.bg-paper { background: var(--gradient-paper); }
.bg-white { background: var(--white); }
.bg-petal { background: var(--pale-petal); }
.bg-blush { background: var(--soft-blush); }

/* =========================================================
   10. ABOUT TEASER / STORY BLOCK
   ========================================================= */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-media { position: relative; }
.story-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.story-media .heart-float {
  position: absolute;
  width: 72px;
  bottom: -24px; left: -24px;
  filter: drop-shadow(0 10px 18px rgba(140,32,72,.25));
}
.story blockquote {
  font-family: var(--font-secondary);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--hot-pink);
  margin: 20px 0;
}

/* =========================================================
   11. NEWSLETTER
   ========================================================= */
.newsletter {
  background: var(--gradient-spotlight);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
}
.newsletter h2, .newsletter p { color: var(--white); }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 28px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type=email] {
  flex: 1;
  min-width: 220px;
  padding: 15px 22px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 15px;
  color: var(--deep-pink);
}
.newsletter-form .hp-field { position: absolute; left: -9999px; }
.form-message { margin-top: 14px; font-weight: 600; font-size: 14px; }
.form-message.is-error { color: var(--warm-coral); }
.contact-form .form-message.is-success { color: var(--sage-whisper); background: var(--deep-pink); padding: 8px 14px; border-radius: var(--radius-sm); display: inline-block; }
.contact-form .form-message.is-error { background: var(--pale-petal); padding: 8px 14px; border-radius: var(--radius-sm); display: inline-block; }

/* =========================================================
   12. FOOTER
   ========================================================= */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--soft-blush);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand img { height: 46px; margin-bottom: 14px; }
.footer-brand p { color: var(--brown-pink); font-size: 14px; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--brown-pink); font-size: 14.5px; }
.footer-col a:hover { color: var(--hot-pink); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--pale-petal);
  color: var(--hot-pink);
  display: flex; align-items: center; justify-content: center;
}
.footer-col .newsletter-form { justify-content: flex-start; max-width: none; margin: 0; }
.footer-col .newsletter-form input[type=email] {
  border: 1.5px solid var(--soft-blush);
  background: var(--pale-petal);
  color: var(--deep-pink);
  padding: 12px 18px;
}
.footer-col .form-message { color: var(--hot-pink); }
.footer-bottom {
  border-top: 1px solid var(--soft-blush);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--brown-pink);
}

/* =========================================================
   13. BLOG / TUTORIALS
   ========================================================= */
.tutorials-hero { padding: 64px 0 40px; text-align: center; }
.tutorials-hero h1 { font-size: clamp(34px, 5vw, 52px); }
.tutorials-hero p { color: var(--brown-pink); max-width: 560px; margin: 0 auto; }

.post-meta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hot-pink);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.post-meta .cat-pill {
  background: var(--pale-petal);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.single-article { max-width: 760px; margin: 0 auto; }
.single-article .featured-media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; box-shadow: var(--shadow-card); }
.single-article h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 16px; }
.entry-content { font-size: 17px; color: var(--brown-pink); }
.entry-content h2 { font-size: 26px; margin-top: 1.6em; }
.entry-content h3 { font-size: 21px; margin-top: 1.4em; }
.entry-content a { text-decoration: underline; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; margin-bottom: 1.25em; }
.entry-content ul li { list-style: disc; }
.entry-content ol li { list-style: decimal; }
.entry-content blockquote {
  border-left: 4px solid var(--hot-pink);
  padding: 4px 0 4px 22px;
  font-style: italic;
  color: var(--deep-pink);
  margin: 28px 0;
}
.entry-content img { border-radius: var(--radius-sm); }

.post-cta {
  margin-top: 56px;
  background: var(--gradient-dreamy);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.post-cta h3 { margin-bottom: 8px; }

.pagination-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}
.pagination-links a, .pagination-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px; height: 42px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--hot-pink);
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.pagination-links .current { background: var(--hot-pink); color: var(--white); }

/* =========================================================
   14. ABOUT PAGE
   ========================================================= */
.about-hero { text-align: center; padding: 72px 0 32px; }
.about-hero h1 { font-size: clamp(38px, 6vw, 60px); }
.about-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 64px;
}
.about-collage img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); aspect-ratio: 4/5; object-fit: cover; }
.about-collage div:nth-child(2) img { aspect-ratio: 4/5; }

.voice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }

/* =========================================================
   15. CONTACT PAGE
   ========================================================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-card); }
.contact-info h3 { font-size: 18px; margin-top: 24px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-card); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 6px; color: var(--brown-pink); }
.field input, .field textarea {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--soft-blush);
  background: var(--pale-petal);
  color: var(--deep-pink);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--hot-pink); background: var(--white); }

/* =========================================================
   16. 404
   ========================================================= */
.error-404 { text-align: center; padding: 100px 0; }
.error-404 h1 { font-size: clamp(60px, 12vw, 140px); font-family: var(--font-hero); font-weight: 400; color: var(--hot-pink); margin-bottom: 4px; }

/* =========================================================
   17. WOOCOMMERCE
   ========================================================= */
.woocommerce-breadcrumb { font-size: 13px; color: var(--brown-pink); margin-bottom: 24px; }
.woocommerce-breadcrumb a { color: var(--hot-pink); }

.shop-hero { text-align: center; padding: 64px 0 36px; }
.shop-hero h1 { font-size: clamp(34px, 5vw, 52px); }
.shop-hero p { color: var(--brown-pink); max-width: 560px; margin: 0 auto; }

ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 48px !important;
}
ul.products li.product {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  padding: 0 !important;
  transition: transform .2s ease, box-shadow .2s ease;
  list-style: none;
}
ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
ul.products li.product a.woocommerce-loop-product__link { display: block; }
ul.products li.product img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0;
}
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-product);
  font-weight: 400;
  font-size: 21px;
  color: var(--deep-pink);
  padding: 22px 24px 0;
  margin: 0;
}
ul.products li.product .price {
  display: block;
  padding: 8px 24px 0;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--hot-pink);
  font-size: 16px;
}
ul.products li.product .price del { color: var(--soft-blush); opacity: 1; margin-right: 6px; }
ul.products li.product .price ins { text-decoration: none; }
ul.products li.product .button {
  margin: 18px 24px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  background: var(--hot-pink);
  color: var(--white);
}
ul.products li.product .button::after { content: '\2192'; }
ul.products li.product .onsale {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--warm-coral);
  color: var(--white);
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  min-height: 0; min-width: 0; line-height: 1;
}
ul.products li.product { position: relative; }

.woocommerce-pagination ul.page-numbers { display: flex; justify-content: center; gap: 10px; list-style: none; padding: 0; }
.woocommerce-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px;
  border-radius: var(--radius-pill); background: var(--white); color: var(--hot-pink); font-weight: 600;
  box-shadow: var(--shadow-card);
}
.woocommerce-pagination .page-numbers.current { background: var(--hot-pink); color: var(--white); }

.woocommerce-ordering select {
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--soft-blush);
  padding: 10px 18px;
  background: var(--white);
}
.woocommerce-result-count { color: var(--brown-pink); }
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  background: var(--white);
  border-left: 4px solid var(--hot-pink);
  border-radius: var(--radius-sm);
  padding: 16px 22px !important;
  list-style: none;
  box-shadow: var(--shadow-card);
}
.woocommerce-notices-wrapper .woocommerce-error { border-left-color: var(--warm-coral); }
.woocommerce-notices-wrapper a.button { background: var(--hot-pink); color: var(--white); border-radius: var(--radius-pill); padding: 8px 18px; }

/* single product */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.woocommerce div.product .woocommerce-product-gallery { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.woocommerce div.product .woocommerce-product-gallery img { border-radius: var(--radius-lg); }
.woocommerce div.product .product_title {
  font-family: var(--font-product);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 8px;
}
.woocommerce div.product p.price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--hot-pink);
  font-size: 24px;
  margin-bottom: 18px;
}
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--brown-pink); }
.woocommerce div.product form.cart { margin-top: 22px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.woocommerce div.product form.cart .quantity input {
  width: 74px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--soft-blush);
  background: var(--pale-petal);
}
.woocommerce div.product form.cart button.single_add_to_cart_button {
  font-family: var(--font-body);
  font-weight: 700;
  background: var(--hot-pink);
  color: var(--white);
  border: none;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-size: 15px;
}
.woocommerce div.product form.cart button.single_add_to_cart_button::after { content: '\2192'; margin-left: 8px; }
.woocommerce div.product .product_meta { margin-top: 24px; font-size: 13.5px; color: var(--brown-pink); }
.woocommerce div.product .product_meta a { color: var(--hot-pink); }

.woocommerce-tabs { margin-top: 64px; }
.woocommerce-tabs ul.tabs { display: flex; gap: 8px; list-style: none; padding: 0; margin-bottom: 24px; border-bottom: 1px solid var(--soft-blush); }
.woocommerce-tabs ul.tabs li { margin: 0; }
.woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 12px 22px;
  font-weight: 700;
  color: var(--brown-pink);
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
}
.woocommerce-tabs ul.tabs li.active a { color: var(--hot-pink); background: var(--white); box-shadow: var(--shadow-card); }
.woocommerce-tabs .panel { color: var(--brown-pink); }

.related.products { margin-top: 72px; }
.related.products > h2 { text-align: center; margin-bottom: 32px; }

/* cart / checkout */
.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.shop_table th { background: var(--pale-petal); color: var(--deep-pink); text-align: left; padding: 16px 18px; font-size: 13px; text-transform: uppercase; letter-spacing: .03em; }
.shop_table td { padding: 16px 18px; border-top: 1px solid var(--pale-petal); }
.shop_table td.product-remove a { color: var(--warm-coral); font-weight: 700; }
.woocommerce-cart-form .quantity input { width: 64px; padding: 10px; border-radius: var(--radius-sm); border: 1.5px solid var(--soft-blush); }
.cart-collaterals .cart_totals { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); margin-top: 32px; }
.wc-proceed-to-checkout .checkout-button,
.checkout-button, input.button, button.button, a.button, .button.alt {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  background: var(--hot-pink) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 15px 30px !important;
  border-radius: var(--radius-pill) !important;
  display: inline-block;
}
a.remove { color: var(--warm-coral) !important; }
.woocommerce-checkout input.input-text, .woocommerce-checkout select, .woocommerce-checkout textarea,
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--soft-blush);
  padding: 12px 16px;
  background: var(--pale-petal);
  width: 100%;
}
#payment { background: var(--white) !important; border-radius: var(--radius-lg); }
#payment div.payment_box { background: var(--pale-petal) !important; border-radius: var(--radius-sm); }

/* my account */
.woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: inline-block; padding: 10px 18px; border-radius: var(--radius-pill);
  background: var(--white); color: var(--brown-pink); font-weight: 600; box-shadow: var(--shadow-card);
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--hot-pink); color: var(--white); }

/* star rating */
.star-rating { color: var(--hot-pink); }
.star-rating::before { color: var(--soft-blush); }

/* =========================================================
   18. UTILITIES
   ========================================================= */
.mt-0 { margin-top: 0; }
.text-white { color: var(--white) !important; }
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--hot-pink); color: var(--white);
  padding: 12px 20px; z-index: 999; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* =========================================================
   19. RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .card-grid, .pillars, ul.products, .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .story, .contact-wrap { grid-template-columns: 1fr; }
  .woocommerce div.product { grid-template-columns: 1fr; }
  .about-collage { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-bar { grid-template-columns: 1fr; justify-items: center; }
  .site-logo { order: -1; }
  .nav-left, .nav-right { justify-self: stretch; padding: 0; }
  /* opened menu: six buttons in one even column */
  .site-header.nav-open .header-bar { row-gap: 0; }
  .site-header.nav-open .primary-nav { display: block; width: 100%; }
  .site-header.nav-open .nav-left { margin-top: 16px; }
  .site-header.nav-open .primary-nav ul { display: grid; gap: 10px; }
  .site-header.nav-open .nav-right ul { margin-top: 10px; }
  .site-header.nav-open .nav-right { margin-bottom: 8px; }
  .site-header.nav-open .primary-nav a { display: block; text-align: center; padding: 13px 20px; }
  /* cart + burger float over the menu, pinned to the logo row */
  .header-actions { top: 42px; z-index: 6; }
}

@media (max-width: 700px) {
  .card-grid, .pillars, ul.products, .voice-grid, .footer-grid, .about-collage { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
  .section { padding: 56px 0; }
}

/* =========================================================
   20. HOMEPAGE V2 (Emily's mockup, Aug 2026)
   ========================================================= */

/* --- extra button styles --- */
.btn-lavender {
  background: var(--lavender-dream);
  color: var(--deep-pink);
}
.btn-lavender:hover { background: #bfa2f5; color: var(--deep-pink); }
.btn-plum {
  background: var(--deep-pink);
  color: var(--white);
}
.btn-plum:hover { background: var(--brown-pink); color: var(--white); }

/* --- wavy section dividers ---
   Each wave is one scallop period tiled with repeat-x (set inline by
   ccl_wave()), so bump size stays constant and just scales down on
   tablet/mobile via the media queries below. */
.wavy-section { position: relative; }
.wave {
  position: absolute;
  left: 0; right: 0;
  height: 56px;
  background-repeat: repeat-x;
  background-size: 96px 100%;
  z-index: 2;
  pointer-events: none;
}
.wave--top { top: -1px; }
.wave--bottom { bottom: -1px; transform: scaleY(-1); }
.wavy-section > .container { position: relative; z-index: 1; }
.wavy-section { padding-top: 120px; padding-bottom: 120px; }

/* --- split hero --- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  position: relative;
}
.hero-split-text {
  background-image: url('assets/img/bg-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px 56px 120px;
}
.hero-split-text h1 {
  font-family: var(--font-hero);
  font-weight: 400;
  color: var(--white);
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.22;
  text-shadow: 0 8px 26px rgba(140,32,72,.16);
  margin-bottom: 56px;
  max-width: 520px;
}
.hero-split-text p {
  color: var(--brown-pink);
  font-weight: 500;
  font-size: clamp(14px, 1.3vw, 16.5px);
  line-height: 1.8;
  max-width: 460px;
  margin: 0;
}
.hero-split-photo {
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

/* --- carousels --- */
.ccl-carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.carousel-slide { min-width: 100%; }

/* templates carousel: flat items, page size responds to viewport */
.products-carousel .carousel-track { gap: 28px; }
.products-carousel .carousel-item {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
  display: flex;
}
.products-carousel .carousel-item .ccl-card { width: 100%; }
.ccl-card--tablet-only { display: none; }
.carousel-next {
  position: absolute;
  right: -54px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 60px;
  border: none;
  background: transparent;
  color: var(--hot-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform .18s ease;
  padding: 0;
}
.carousel-next svg { width: 26px; height: 48px; }
.carousel-next:hover { transform: translateY(-50%) scale(1.12); }
.testimonial-carousel .carousel-next { color: var(--white); }

/* product + video cards: centred layout, plum outline per mockup */
.ccl-card--product,
.ccl-card--video {
  border: 2px solid var(--brown-pink);
  box-shadow: none;
}
.ccl-card--product:hover,
.ccl-card--video:hover { box-shadow: var(--shadow-card); }
.ccl-card--product .ccl-card-body,
.ccl-card--video .ccl-card-body { align-items: center; text-align: center; }
.ccl-card--product .ccl-card-body .btn,
.ccl-card--video .ccl-card-body .btn { align-self: center; }
.ccl-card--product .ccl-card-body h3 { font-family: var(--font-product); font-weight: 400; }
/* product image sits inset in white space, rounded, per mockup */
.ccl-card--product .ccl-card-media {
  margin: 20px 20px 0;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
}
.ccl-card--product .ccl-card-body { padding-top: 16px; }
.ccl-card--product .ccl-card-body .price { margin-bottom: 14px; }
.home-templates .card-grid { padding: 4px; }

/* --- about me split --- */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.about-split-text h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 14px; }
.about-split-text p { color: var(--brown-pink); font-size: 15.5px; }
.about-split-text .about-hi { font-weight: 600; color: var(--deep-pink); }
.about-split-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
}

/* section gradient backgrounds from Emily's Background folder
   (templates section is intentionally flat pale petal — no gradient) */
.home-videos {
  background-image: url('assets/img/bg-daydream.jpg');
  background-size: cover;
  background-position: center;
}

/* --- testimonials --- */
.testimonials-section {
  background-image: url('assets/img/bg-spotlight.jpg');
  background-size: cover;
  background-position: center;
}
.testimonials-section .section-head h2 { color: var(--brown-pink); }
.testimonial-carousel { max-width: 620px; margin: 0 auto; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 16px 22px 0 var(--brown-pink), 42px 40px 0 var(--lavender-dream);
  padding: 40px 44px 44px;
  margin: 0 46px 44px 0;
  text-align: center;
}
.testimonial-card blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 17.5px;
  color: var(--brown-pink);
  margin: 0 0 22px;
  border: none;
  padding: 0;
}
.testimonial-card figcaption { display: flex; flex-direction: column; gap: 8px; }
.testimonial-name {
  font-family: var(--font-secondary);
  font-style: italic;
  font-weight: 500;
  color: var(--brown-pink);
  font-size: 18px;
}
.testimonial-product {
  font-weight: 700;
  color: var(--brown-pink);
  font-size: 14px;
}
.testimonial-stars {
  color: var(--warm-coral);
  font-size: 20px;
  letter-spacing: 5px;
  margin-top: 4px;
}

/* --- instagram --- */
.insta-section { padding-bottom: 72px; }
.insta-link { color: var(--brown-pink); transition: color .18s ease; }
.insta-link:hover { color: var(--hot-pink); }
.insta-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: 100%;
}
.insta-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity .2s ease;
}
.insta-strip:hover img { opacity: .85; }
.insta-feed-plugin { padding-bottom: 48px; }

/* --- sunset footer (Golden hour gradient) --- */
.footer-sunset {
  position: relative;
  background-image: url('assets/img/bg-goldenhour.jpg');
  background-size: cover;
  background-position: center;
  border-top: none;
  padding: 120px 0 32px;
  margin-top: 0;
}
.footer-newsletter {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.footer-newsletter .eyebrow { color: var(--white); }
.footer-newsletter h2 { color: var(--white); font-family: var(--font-secondary); font-size: clamp(26px, 3.5vw, 38px); }
.footer-newsletter p { color: var(--white); font-size: 15px; }
.footer-newsletter .newsletter-form { margin-top: 22px; }
.footer-newsletter .newsletter-form input[type=email] {
  background: var(--white);
  border: none;
  color: var(--deep-pink);
}
.footer-newsletter .form-message { color: var(--deep-pink); }

.footer-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.footer-col--explore { justify-self: start; }
.footer-col--studio { justify-self: end; text-align: right; }
.footer-columns .footer-col h4 { color: var(--deep-pink); }
.footer-columns .footer-col a { color: var(--brown-pink); font-weight: 500; }
.footer-columns .footer-col a:hover { color: var(--white); }
.footer-logo img { height: 110px; width: auto; }

.footer-sunset .footer-bottom {
  border-top: 1px solid rgba(140, 32, 72, .18);
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  color: var(--brown-pink);
}
.footer-copyright { justify-self: center; grid-column: 1; text-align: center; }
.footer-sunset .footer-social { justify-self: end; gap: 18px; }
.footer-sunset .footer-social a {
  background: none;
  color: var(--brown-pink);
  width: auto; height: auto;
  transition: transform .18s ease, color .18s ease;
}
.footer-sunset .footer-social a:hover { color: var(--deep-pink); transform: scale(1.12); }

/* --- "Let's chat" bubble — sage circle, spinning "LET'S CHAT" text ring, heart centre --- */
.chat-bubble {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--sage-whisper);
  box-shadow: 0 12px 28px -10px rgba(140, 32, 72, .35);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}
.chat-bubble:hover { transform: scale(1.07); }
.chat-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: ccl-spin 14s linear infinite;
}
.chat-ring text {
  font-family: var(--font-body);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 2.1px;
  fill: var(--deep-pink);
}
.chat-heart { width: 30px; height: auto; position: relative; z-index: 1; }
@keyframes ccl-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .chat-ring { animation: none; }
}

/* --- v2 responsive --- */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-text { padding: 56px 28px 88px; text-align: center; align-items: center; }
  .about-split { grid-template-columns: 1fr; }
  .about-split-photo { order: -1; max-width: 420px; margin: 0 auto; }
  .footer-columns { grid-template-columns: 1fr; justify-items: center; gap: 28px; }
  .footer-col--explore, .footer-col--studio { justify-self: center; text-align: center; }
  .footer-sunset .footer-bottom { grid-template-columns: 1fr; justify-items: center; gap: 14px; }
  .footer-sunset .footer-social { justify-self: center; }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .carousel-next { right: -12px; }
  .testimonial-card { margin-right: 24px; box-shadow: 10px 14px 0 var(--brown-pink), 24px 26px 0 var(--lavender-dream); }
}
/* tablet: 4 templates per page (8 max) and a 2x2 tutorials grid */
@media (min-width: 701px) and (max-width: 1024px) {
  .products-carousel .carousel-track { gap: 20px; }
  .products-carousel .carousel-item { flex-basis: calc((100% - 60px) / 4); }
  .products-carousel .carousel-item:nth-child(n+9) { display: none; }
  .products-carousel .ccl-card-body { padding-left: 14px; padding-right: 14px; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .ccl-card--tablet-only { display: flex; }
  .wave { height: 44px; background-size: 78px 100%; }
  .wavy-section { padding-top: 104px; padding-bottom: 104px; }
}
@media (max-width: 700px) {
  .wavy-section { padding-top: 88px; padding-bottom: 88px; }
  .wave { height: 32px; background-size: 60px 100%; }
  .chat-bubble { width: 78px; height: 78px; right: 16px; bottom: 16px; }
  .chat-heart { width: 24px; }
  /* templates: stack the first three, no arrow */
  .products-carousel .carousel-track { display: block; transform: none !important; }
  .products-carousel .carousel-item { width: 100%; margin-bottom: 24px; }
  .products-carousel .carousel-item:nth-child(n+4) { display: none; }
  .products-carousel .carousel-next { display: none !important; }
}
