/* --- Summer love rail (horizontal slider) --- */
.sl-rail {
  position: relative;
  margin-bottom: 28px;
}

/* container becomes the scroller */
.cards-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 6px 8px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cards-container::-webkit-scrollbar { display: none; }

/* individual card */
.sl-card {
  position: relative;
  flex: 0 0 auto;
  width: 260px;            /* tweak 240–300px to taste */
  scroll-snap-align: start;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* image area keeps a 3:4 look */
.sl-thumb {
  display: block;
  aspect-ratio: 3/4;
  background: #faf7f2;
}
.sl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* heart button */
.sl-heart {
  position: absolute;
  right: 12px;
  bottom: 112px;          /* sits over lower image area */
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #694029;
}
.sl-heart:hover { background: #DD7A20; color: #fff; }
.sl-heart svg { fill: currentColor; }

/* meta */
.sl-meta {
  padding: 12px 14px 16px;
  text-align: center;
}
.sl-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #694029;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.3;
}
.sl-title:hover { text-decoration: underline; }
.sl-price {
  margin-top: 6px;
  color: #211D1A;
  font-weight: 700;
}

/* arrows float at edges */
.grid-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  display: grid; place-items: center;
  color: #694029;
  z-index: 2;
}
.grid-nav.prev { left: -8px; }
.grid-nav.next { right: -8px; }
.grid-nav:hover { background: #FFF0E2; }

/* smaller on phones */
@media (max-width: 768px){
  .sl-card { width: 220px; }
  .grid-nav { display:none; }
}

/* keep your existing .filter-tag styles; just add a tighter active look */
.filter-tag.active {
  background: #DD7A20;
  border-color: #DD7A20;
  color: #fff;
}

/* === TAN Ashford === */
@font-face {
  font-family: "TAN Ashford";
  src: url("/fonts/ashford-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TAN Ashford";
  src: url("/fonts/ashford-bold-italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* === Canva Sans === */
@font-face {
  font-family: "Canva Sans";
  src: url("/fonts/CanvaSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Canva Sans";
  src: url("/fonts/CanvaSans-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Canva Sans";
  src: url("/fonts/CanvaSans-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Canva Sans";
  src: url("/fonts/CanvaSans-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Canva Sans";
  src: url("/fonts/CanvaSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Canva Sans";
  src: url("/fonts/CanvaSans-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* === Apply globally === */
:root {
  --font-display: "TAN Ashford", Georgia, serif;
  --font-body: "Canva Sans", Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
p, body { font-family: var(--font-body); }

button,
.button,
[type="button"],
[type="submit"],
[role="button"] {
  font-family: 'Schoolbell', cursive;
  font-weight: 400;
  letter-spacing: 0.5px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #FFF6EF;
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}



/* Video + Hero */

.video-container {
  position: relative; width: 500px; height: 280px; z-index: 1; border-radius: 8px; overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.1); will-change: transform; transform-origin: center center;
}
@media (max-width: 1024px){ .video-container { will-change: auto; } .hero { overflow: hidden; } }

.hero {
  height: 100vh; position: relative; display: flex; flex-direction: column;
  justify-content: center; align-items: center; padding: 0 40px; overflow: visible;
}
.hero-text-top,.hero-text-bottom { z-index: 3; }
.nav {
  position: fixed; top: 40px; left: 0; right: 0; padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center; z-index: 1000;
  background-color: rgba(255, 246, 239, 0.95); backdrop-filter: blur(10px);
}
.logo { font-size: 20px; font-weight: 300; color: #211D1A; text-decoration: none; letter-spacing: 2px; }
.nav-menu { display: flex; gap: 40px; list-style: none; }
.nav-menu a { color: #211D1A; text-decoration: none; font-size: 14px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; transition: opacity .3s; }
.nav-menu a:hover { opacity: .6; }
.contact-btn { color: #211D1A; text-decoration: underline; font-size: 14px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }

/* Hero big text positions */
.hero-text-top {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-85%, -280px);
  font-size: clamp(60px, 12vw, 140px); font-weight: 900; color: #211D1A; letter-spacing: -0.02em; line-height: .8; z-index: 2;
}
.hero-text-bottom {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-15%, 120px);
  font-size: clamp(60px, 12vw, 140px); font-weight: 900; color: #211D1A; letter-spacing: -0.02em; line-height: .8; z-index: 2;
}
.video-container video { width: 100%; height: 100%; object-fit: cover; }

/* Side text */
.side-text-left,.side-text-right {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 12px; font-weight: 400; color: #694029; letter-spacing: 2px; text-transform: uppercase;
}
.side-text-left { left: 40px; writing-mode: vertical-lr; }
.side-text-right { right: 40px; writing-mode: vertical-rl; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 4px; }
.hamburger span { width: 24px; height: 2px; background-color: #211D1A; transition: .3s; }

/* Mobile bottom text */
.mobile-bottom-text { display: none; text-align: center; margin-top: 40px; }
.mobile-bottom-text .cgi-text { font-size: 14px; font-weight: 400; color: #211D1A; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.mobile-bottom-text .motion-text { font-size: 14px; font-weight: 700; color: #211D1A; letter-spacing: 1px; text-transform: uppercase; }

/* Card Categories */
.card-categories { background-color: #FFF6EF; padding: 60px 20px 40px; }
.category-carousel { position: relative; max-width: 1200px; margin: 0 auto; }
.category-scroll { display: flex; overflow-x: auto; gap: 30px; padding: 20px 0; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.category-scroll::-webkit-scrollbar { display: none; }
.category-item { flex: none; text-align: center; min-width: 120px; }
.category-icon { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 12px; overflow: hidden; position: relative; }
.category-icon img { width: 100%; height: 100%; object-fit: cover; }
.category-label { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.3; max-width: 80px; margin: 0 auto;text-shadow:
    0 0 2px #000,
    0 1px 2px #000,
    0 -1px 2px #000,
    1px 0 2px #000,
    -1px 0 2px #000,
    1px 1px 2px #000,
    -1px -1px 2px #000,
    -1px 1px 2px #000; }
.nav-button { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; color: #666; box-shadow: 0 2px 8px rgba(0,0,0,.1); transition: .3s; z-index: 10; }
.nav-button:hover { background: #f0f0f0; color: #333; }
.nav-button.prev { left: -20px; } .nav-button.next { right: -20px; }

/* Promo banner */
.promo-banner {
  background: linear-gradient(135deg, #EB9C54 0%, #EB9C54 40%, #FFF6EF 60%, #DD7A20 100%);
  border-radius: 12px; padding: 0; margin: 30px auto 0; max-width: 1000px; display: flex; align-items: stretch; gap: 0; position: relative; overflow: hidden; height: 200px;
}
.promo-content { flex: 0 0 400px; padding: 1rem; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.promo-title { font-size: 28px; font-weight: 700; color: #694029; line-height: 1.2; margin-bottom: 12px; }
.promo-subtitle { font-size: 14px; color: #694029; margin-bottom: 20px; line-height: 1.4; }
.promo-buttons { display: flex; flex-direction: row; gap: 12px; flex-wrap: wrap; }
.promo-btn { padding: 12px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; text-align: center; transition: .3s; display: inline-block; white-space: nowrap; }
.promo-btn.primary { background-color: #694029; color: #fff; }
.promo-btn.secondary { background: transparent; color: #694029; border: 2px solid #694029; }
.promo-btn:hover { transform: translateY(-1px); box-shadow: 0 3px 8px rgba(105,64,41,.3); }
.promo-visual { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; background: none; height: 200px; }
.promo-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 0 12px 12px 0; transition: transform .3s; }
.promo-visual img:hover { transform: scale(1.02); }
.free-badge { position: absolute; top: 15px; right: 15px; background: #DD7A20; color: #fff; padding: 6px 12px; border-radius: 40px; font-weight: 700; font-size: 12px; transform: rotate(12deg); z-index: 3; box-shadow: 0 2px 8px rgba(221,122,32,.3); }
/* Container for the carousel to position nav arrows */
.promo-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 30px auto 0;
    padding: 0 50px; /* Space for arrows */
    box-sizing: border-box;
}

/* Base styles from your original CSS, adapted for the carousel */
.promo-banner {
    background: linear-gradient(135deg, #EB9C54 0%, #EB9C54 40%, #FFF6EF 60%, #DD7A20 100%);
    border-radius: 12px;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    overflow: hidden;
    height: 200px;
}
.promo-content { flex: 0 0 400px; padding: 1rem; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.promo-title { font-size: 28px; font-weight: 700; color: #694029; line-height: 1.2; margin-bottom: 12px; }
.promo-subtitle { font-size: 14px; color: #694029; margin-bottom: 20px; line-height: 1.4; }
.promo-buttons { display: flex; flex-direction: row; gap: 12px; flex-wrap: wrap; }
.promo-btn { padding: 12px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; text-align: center; transition: .3s; display: inline-block; white-space: nowrap; }
.promo-btn.primary { background-color: #694029; color: #fff; }
.promo-btn.secondary { background: transparent; color: #694029; border: 2px solid #694029; }
.promo-btn:hover { transform: translateY(-1px); box-shadow: 0 3px 8px rgba(105,64,41,.3); }
.promo-visual { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; background: none; height: 200px; }
.promo-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 0 12px 12px 0; transition: transform .3s; }
.promo-visual img:hover { transform: scale(1.02); }
.free-badge { position: absolute; top: 15px; right: 15px; background: #DD7A20; color: #fff; padding: 6px 12px; border-radius: 40px; font-weight: 700; font-size: 12px; transform: rotate(12deg); z-index: 3; box-shadow: 0 2px 8px rgba(221,122,32,.3); }

/* --- New Theme Styles for Additional Slides --- */
/* Black History Month Theme */
.promo-banner.theme-bhm {
    background: #1A1A1A; /* Dark background */
}
.promo-banner.theme-bhm .promo-title,
.promo-banner.theme-bhm .promo-subtitle {
    color: #FFFFFF; /* White text */
}

/* Diwali Theme */
.promo-banner.theme-diwali {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%); /* Gold/Orange gradient */
}
/* The default brown text color already looks great on this background */

/* --- Swiper Navigation & Pagination Styling --- */
.promo-carousel-container .swiper-button-next,
.promo-carousel-container .swiper-button-prev {
    color: #694029; /* Match your brand's dark brown */
}
.promo-carousel-container .swiper-pagination-bullet-active {
    background: #694029; /* Match your brand's dark brown */
}

/* --- Responsive Styling --- */
@media (max-width: 768px) {
    .promo-carousel-container {
        padding: 0; /* Remove padding on mobile */
    }
    .promo-banner {
        flex-direction: column;
        height: auto; /* Auto height for stacked content */
    }
    .promo-content {
        flex: 1; /* Reset flex sizing */
        padding: 1.5rem;
        text-align: center;
    }
    .promo-buttons {
        justify-content: center;
    }
    .promo-visual {
        height: 200px; /* Give the image a fixed height */
        width: 100%;
    }
    .promo-visual img {
        border-radius: 0; /* Remove specific rounding for full width image */
    }
    .promo-carousel-container .swiper-button-next,
    .promo-carousel-container .swiper-button-prev {
        display: none; /* Hide arrows on small screens, users can swipe */
    }
}
/* Banner in normal flow */
.scrolling-banner{
  position: relative;
  width: 100%;
  height: 40px;
  background: #211D1A;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 24px 0;
  --speed: 20s;
}

/* Full-bleed across viewport without using transform */
.scrolling-banner--bleed{
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.scrolling-track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: promo-scroll var(--speed) linear infinite; /* only the text moves */
}

.scrolling-banner:hover .scrolling-track{ animation-play-state: paused; }

.scrolling-group{ display: flex; align-items: center; }
.scrolling-item{
  padding: 0 50px;
  font: 700 16px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* Seamless loop: second half == first half */
@keyframes promo-scroll { to { transform: translateX(-50%); } }

.culture-actions .button,
.culture-actions .add_to_cart_button { 
  display:inline-block; margin-top:10px; 
}



.sl-actions .button,
.sl-actions .add_to_cart_button { display:inline-block; margin-top:8px; }

.product-actions .button,
.product-actions .add_to_cart_button { display:inline-block; margin-top:10px; }


/* ===============================
   GLOBAL ANNOUNCEMENT BAR
   - One message visible at a time
   - Black bar, white text
   - Rotates ~every 5s
   =============================== */

:root {
  --annc-bg: #000;
  --annc-fg: #fff;
}

/* Outer shell */
.promo-rotator {
  background-color: var(--annc-bg);
  color: var(--annc-fg);
  border-bottom: 1px solid rgba(255,255,255,0.15);

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(12px, 0.28vw + 11px, 14px);
  line-height: 1.4;
  font-weight: 500;

  overflow: hidden;
  width: 100%;
  text-align: center;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Force full-bleed, even if header wrapper is max-width:1200px */
.promo-rotator--bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Track = long horizontal strip of slides */
.promo-track {
  display: flex;
  flex-wrap: nowrap;
  animation: promoSlide 20s linear infinite;
  will-change: transform;
}

/* Each slide takes exactly one viewport width */
.promo-item {
  flex: 0 0 100vw;
  min-height: 38px;
  padding: 0.6rem 1rem 0.7rem;

  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--annc-fg);
  background-color: var(--annc-bg);

  text-align: center;
  text-wrap: balance;
  white-space: normal;
}

.promo-item span {
  color: var(--annc-fg);
}

.promo-item strong {
  font-weight: 600;
  color: var(--annc-fg); /* keep strong text white */
}

/* Keyframes:
   - 4 unique slides + final duplicate of slide 1 = 5 total
   - Total duration: 20s
   - ~5s per message
   - We "hold" each slide ~4.8s, then slide over ~0.2s
*/
@keyframes promoSlide {
  /* Slide 1 visible */
  0%,24%   { transform: translateX(0); }

  /* Slide 2 visible */
  25%,49%  { transform: translateX(-100vw); }

  /* Slide 3 visible */
  50%,74%  { transform: translateX(-200vw); }

  /* Slide 4 visible */
  75%,99%  { transform: translateX(-300vw); }

  /* Duplicate of Slide 1 (for seamless loop reset) */
  100%     { transform: translateX(-400vw); }
}

/* Mobile font sizing tweaks */
@media (max-width:480px) {
  .promo-item {
    font-size: 12px;
    line-height: 1.4;
    min-height: 36px;
    padding: 0.6rem 0.75rem 0.7rem;
  }
}


/* =========================================================
   Perky Pen — Trustpilot Carousel (copy/paste)
   Scope: .trustpilot
   ========================================================= */

/* Section container + subtle floating blobs */
.trustpilot {
  position: relative;
  padding: 90px 20px;
  overflow: hidden;
}

.trustpilot::before,
.trustpilot::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  z-index: 1;
}
.trustpilot::before {
  width: 150px; height: 150px;
  background: radial-gradient(circle,#694029,transparent);
  top: -50px; left: -50px;
  animation: float 6s ease-in-out infinite;
}
.trustpilot::after {
  width: 100px; height: 100px;
  background: radial-gradient(circle,#211D1A,transparent);
  bottom: -25px; right: -25px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0) }
  50%     { transform: translateY(-20px) rotate(5deg) }
}

/* Glass card */
.trustpilot-content{
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 25px;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 16px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.2);
}

/* ---------- Scoped reveal (no blanket * opacity) ---------- */
.trustpilot .trustpilot-header,
.trustpilot .trustpilot-rating,
.trustpilot .stars,
.trustpilot .trustpilot-footer {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
}
.trustpilot.loaded .trustpilot-header,
.trustpilot.loaded .trustpilot-rating,
.trustpilot.loaded .stars,
.trustpilot.loaded .trustpilot-footer {
  opacity: 1;
  transform: none;
}

/* Header */
.trustpilot-header{
  font-size: 14px;
  color: #694029;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

/* Viewport (holds slides) */
.trustpilot-rating{
  font-size: 18px;
  font-weight: 600;
  color: #211D1A;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;            /* for absolute-positioned slides */
  min-height: 140px;             /* baseline height */
}
#tpViewport {
  position: relative;
  min-height: 140px;             /* JS will set explicit height */
}
.trustpilot-rating::before,
.trustpilot-rating::after{
  content: '"';
  font-size: 32px;
  color: #DD7A20;
  font-family: Georgia, serif;
  opacity: .25;
  position: absolute;
  pointer-events: none;
}
.trustpilot-rating::before{ top: -8px; left: -15px; }
.trustpilot-rating::after { bottom: -20px; right: -15px; transform: rotate(180deg); }

/* Slides */
.trustpilot .review-item{
  position: absolute;
  left: 0; right: 0; top: 0;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.trustpilot .review-item.active{
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.review-title{
  font-weight: 700;
  margin-bottom: .35rem;
  font-style: normal;            /* don’t italicise the title */
}
.review-media{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}
.review-media img{
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
}

/* Stars + footer */
.stars{
  font-size: 24px;
  margin-bottom: 15px;
  transform: scale(.8);
  transition: transform .3s ease, opacity .3s ease;
}
.star{
  display: inline-block;
  margin: 0 2px;
  color: #DD7A20;
  transition: transform .3s ease, color .3s ease;
  cursor: default;
}
.star:hover{ transform: scale(1.2) rotate(10deg); color: #EB9C54; }

.trustpilot-footer{
  font-size: 14px;
  color: #694029;
  font-weight: 500;
}

/* Reduced motion: kill float animation */
@media (prefers-reduced-motion: reduce){
  .trustpilot::before,
  .trustpilot::after { animation: none; }
  .trustpilot .review-item,
  .trustpilot .review-item.active {
    transition: none;
  }
}

/* Small screens */
@media (max-width: 420px){
  .trustpilot-content{ padding: 24px 18px; }
  .review-media img{ width: 70px; height: 70px; }
}

/* ===== Perky Pen – Trustpilot overrides =====
   Make the review card orange and stars cream
   Paste AFTER the existing Trustpilot styles
*/
.trustpilot .trustpilot-content{
  background: #DD7A20;                 /* brand orange */
  border-color: #DD7A20;
  box-shadow: 0 12px 30px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.15);
}

/* Stars → cream */
.trustpilot .star{
  color: #FFF6EF;                       /* cream */
}
.trustpilot .star:hover{
  color: #FFF6EF;                       /* keep cream on hover */
  transform: scale(1.2) rotate(10deg);
}

/* Quote marks inside the box → cream so they stay visible on orange */
.trustpilot .trustpilot-rating::before,
.trustpilot .trustpilot-rating::after{
  color: #FFF6EF;
  opacity: .25;
}


/* Summer Love section wrapper & grid */
.summer-love { background:#FFF6EF; padding:80px 20px; }
.summer-love-container { max-width:1200px; margin:0 auto; text-align:center; }
.summer-love-title { font-size:32px; font-weight:600; color:#694029; margin-bottom:40px; }
.filter-tags { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; margin-bottom:50px; }
.filter-tag { padding:12px 24px; border:2px solid #694029; border-radius:25px; background:transparent; color:#694029; font-size:14px; font-weight:500; text-decoration:none; transition:.3s; cursor:pointer; }
.filter-tag.active{ background:#694029; color:#fff; }
.filter-tag:hover{ background:#694029; color:#fff; }

/* Card grid (static sections elsewhere) */
.card-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px; margin-bottom:40px; position:relative;
}
.card-item { background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 4px 12px rgba(0,0,0,.1); transition:.3s; position:relative; aspect-ratio:3/4; }
.card-item:hover{ transform:translateY(-4px); box-shadow:0 8px 20px rgba(0,0,0,.15); }
.card-image{ width:100%; height:100%; object-fit:cover; position:relative; }
.card-heart{ position:absolute; bottom:16px; right:16px; width:32px; height:32px; background:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 2px 8px rgba(0,0,0,.15); transition:.3s; }
.card-heart:hover{ background:#DD7A20; color:#fff; }
.card-heart svg{ width:16px; height:16px; fill:currentColor; }

/* Product grid section */
.product-grid-section {  padding:80px 20px; }
.product-container { max-width:1400px; margin:0 auto; }
.section-title { font-size:32px; font-weight:700; color:#211D1A; text-align:center; margin-bottom:50px; text-transform:uppercase; letter-spacing:1px; }
.product-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:30px; margin-bottom:60px; }
.product-card { background:#fff; border-radius:8px; overflow:hidden; transition:.3s; position:relative; }
.product-card:hover{ transform:translateY(-4px); box-shadow:0 8px 25px rgba(0,0,0,.15); }
.product-image-container{ position:relative; background:#FFF6EF; padding:20px; aspect-ratio:1; display:flex; align-items:center; justify-content:center; }
.product-image{ width:90%; height:80%; object-fit:contain; border-radius:4px; background:#fff; box-shadow:0 4px 12px rgba(0,0,0,.1); }
.sold-out-badge{ position:absolute; top:15px; right:15px; background:#666; color:#fff; padding:4px 8px; border-radius:4px; font-size:11px; font-weight:600; text-transform:uppercase; }
.product-info{ padding:20px; text-align:center; }
.product-name{ font-size:14px; font-weight:600; color:#694029; margin-bottom:8px; text-transform:uppercase; letter-spacing:.5px; line-height:1.3; }
.product-price{ font-size:16px; font-weight:600; color:#211D1A; }
.view-all-btn{ display:block; margin:0 auto 60px; padding:14px 40px; background:#DD7A20; color:#fff; border:none; border-radius:4px; font-size:14px; font-weight:600; text-decoration:none; text-transform:uppercase; letter-spacing:1px; transition:.3s; cursor:pointer; text-align:center; }
.view-all-btn:hover{ background:#EB9C54; transform:translateY(-2px); box-shadow:0 4px 12px rgba(221,122,32,.4); }

/* Art Prints */
.art-prints-section{ position:relative; height:400px; background-image:url('/images\artprintshome.png'); background-size:cover; background-position:center; background-repeat:no-repeat; display:flex; align-items:center; justify-content:center; margin-left: 5rem; margin-right: 5rem; border-radius:12px;}
.art-prints-overlay{ position:absolute; inset:0; background:rgba(0,0,0,.3); display:flex; align-items:center; justify-content:center; border-radius:12px;}
.art-prints-content{ text-align:center; color:#fff; z-index:2; position:relative; }
.art-prints-line,.art-prints-line-after{ width:200px; height:4px; background:#EB9C54; margin:0 auto; }
.art-prints-line{ margin-bottom:20px; }
.art-prints-line-after{ margin-top:20px; }
.art-prints-title{ font-size:48px; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:2px; margin:0; text-shadow:2px 2px 4px rgba(0,0,0,.3); font-family:Georgia,serif; font-style:italic; }
.art-prints-button{ margin-top:30px; padding:15px 40px; background:#DD7A20; color:#fff; border:none; border-radius:6px; font-size:18px; font-weight:700; text-transform:uppercase; letter-spacing:2px; text-decoration:none; display:inline-block; transition:.3s; cursor:pointer; }
.art-prints-button:hover{ background:#694029; transform:translateY(-2px); box-shadow:0 6px 20px rgba(105,64,41,.4); }
@media(max-width:1024px){.art-prints-section{margin-inline:2rem!important}}
@media(max-width:768px){.art-prints-section{margin-inline:1rem!important}}
/* Where Art Meets Culture */
.art-culture-section{ background:#FFF6EF; padding:80px 20px; }
.art-culture-container{ max-width:1400px; margin:0 auto; text-align:center; }
.art-culture-title{ font-size:36px; font-weight:400; color:#EB9C54; margin-bottom:10px; font-style:italic; }
.art-culture-subtitle{ font-size:18px; color:#211D1A; margin-bottom:50px; font-style:italic; }
.culture-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:30px; margin-bottom:40px; }
.culture-card{ background:#fff; border-radius:8px; overflow:hidden; box-shadow:0 4px 15px rgba(0,0,0,.1); transition:.3s; }
.culture-card:hover{ transform:translateY(-5px); box-shadow:0 8px 25px rgba(0,0,0,.15); }
.culture-image-container{ position:relative; background:#fff; padding:20px; border-bottom:4px solid #EB9C54; }
.culture-image{ width:100%; aspect-ratio:1; object-fit:cover; border-radius:8px; }
.culture-info{ padding:25px 20px; text-align:center; }
.culture-name{ font-size:18px; font-weight:600; color:#211D1A; margin-bottom:10px; line-height:1.3; min-height:50px; display:flex; align-items:center; justify-content:center; }
.culture-price{ font-size:20px; font-weight:700; color:#211D1A; margin-bottom:15px; }
.culture-rating{ display:flex; justify-content:center; gap:2px; }
.star{ font-size:24px; color:#DD7A20; }
.star.empty{ color:#ddd; }

/* Meet the Artist */
.meet-artist-section{padding:80px 20px;}
.meet-artist-container{max-width:1200px;margin:0 auto;}
.meet-artist-title{font-size:48px;font-weight:400;color:#211D1A;text-align:center;margin-bottom:60px;font-family:Georgia,serif;font-style:italic;}

.artist-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;/* height:1400px; */height:auto;}
/* Center the orphan (last item when count is odd) */
@media(min-width:800px){.artist-grid>.artist-item:last-child:nth-child(odd){grid-column:1/-1;justify-self:center;max-width:640px;width:100%;}}

.artist-item{position:relative;border-radius:12px;overflow:hidden;background-size:cover;background-position:center;background-repeat:no-repeat;min-height:700px;/* or: aspect-ratio:3/4; */}

/* Overlay card */
.artist-overlay{position:absolute;bottom:20px;left:20px;background:rgba(33,29,26,.9);color:#fff;padding:20px;border-radius:8px;max-width:280px;backdrop-filter:blur(10px);}
.artist-header{display:flex;align-items:center;gap:15px;margin-bottom:15px;}
.artist-image{width:50px;height:50px;border-radius:50%;object-fit:cover;border:2px solid #DD7A20;}
.artist-name{font-size:24px;font-weight:700;color:#EB9C54;margin:0;}
.artist-role{font-size:12px;color:#ccc;text-transform:uppercase;letter-spacing:1px;margin-top:2px;}
.artist-description{font-size:14px;line-height:1.4;color:#ddd;}
.artist-stats{display:flex;align-items:center;gap:10px;margin-top:10px;}
.artist-rating{background:#DD7A20;color:#fff;padding:4px 12px;border-radius:20px;font-size:12px;font-weight:700;}
.artist-lines{flex:1;height:2px;background:linear-gradient(to right,#DD7A20,transparent);position:relative;}
.artist-lines::before,.artist-lines::after{content:'';position:absolute;left:0;width:60%;height:2px;background:#DD7A20;}
.artist-lines::before{top:-4px;}
.artist-lines::after{top:4px;width:40%;}


/* Features */
.features-section{ padding:80px 20px; }
.features-container{ max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:40px; }
.feature-card{ text-align:center; padding:40px 20px; background:rgba(255,255,255,.9); border-radius:12px; backdrop-filter:blur(10px); }
.feature-icon{ width:80px; height:80px; margin:0 auto 30px; display:flex; align-items:center; justify-content:center; }
.feature-icon svg{ width:60px; height:60px; stroke-width:2; fill:none; }
.feature-card:nth-child(1) .feature-icon svg{ stroke:#694029; }
.feature-card:nth-child(2) .feature-icon svg{ stroke:#EB9C54; }
.feature-card:nth-child(3) .feature-icon svg{ stroke:#DD7A20; }
.feature-title{ font-size:24px; font-weight:700; margin-bottom:15px; text-transform:uppercase; letter-spacing:1px; line-height:1.2; }
.feature-card:nth-child(1) .feature-title{ color:#694029; }
.feature-card:nth-child(2) .feature-title{ color:#EB9C54; }
.feature-card:nth-child(3) .feature-title{ color:#DD7A20; }
.feature-description{ color:#694029; font-size:16px; line-height:1.5; max-width:280px; margin:0 auto; }



/* Responsive tweaks */
@media (max-width:1024px){
  .hero-text-top,.hero-text-bottom{ font-size:clamp(80px,12vw,150px); }
  .hero-text-top{ transform:translate(-58%,-200px); }
  .hero-text-bottom{ transform:translate(-42%,80px); }
  .video-container{ width:400px; height:225px; }
}
@media (max-width:768px){
  .nav{ padding:15px 20px; }
  .nav-menu,.contact-btn{ display:none; }
  .hamburger{ display:flex; }
  .hero{ padding:120px 20px 40px; justify-content:flex-start; align-items:center; text-align:center; }
  .hero-text-top{ position:static; transform:none; font-size:clamp(50px,12vw,80px); margin-bottom:20px; font-weight:900; }
  .video-container{ width:calc(100% - 40px); max-width:350px; height:200px; margin:20px 0; position:static; }
  .hero-text-bottom{ position:static; transform:none; font-size:clamp(50px,12vw,80px); margin-top:20px; font-weight:900; }
  .side-text-left,.side-text-right{ display:none; }
  .mobile-bottom-text{ display:block; }

  .card-categories{ padding:40px 15px 30px; }
  .category-scroll{ gap:20px; padding:15px 0; }
  .category-item{ min-width:90px; }
  .category-icon{ width:65px; height:65px; margin-bottom:8px; }
  .category-label{ font-size:12px; max-width:70px; }
  .nav-button{ display:none; }

  .summer-love{ padding:60px 15px; }
  .summer-love-title{ font-size:28px; }
  .filter-tags{ gap:8px; margin-bottom:30px; }
  .filter-tag{ padding:10px 20px; font-size:13px; }
  .card-grid{ grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px; }
  .grid-nav{ display:none; }

  .product-grid-section{ padding:60px 15px; }
  .section-title{ font-size:24px; margin-bottom:30px; }
  .product-grid{ grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; margin-bottom:40px; }
  .summer-favourites-title{ font-size:24px; margin-bottom:20px; }

  .art-culture-section{ padding:60px 15px; }
  .art-culture-title{ font-size:28px; margin-bottom:8px; }
  .art-culture-subtitle{ font-size:16px; margin-bottom:30px; }
  .culture-grid{ grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px; }
  .culture-name{ font-size:16px; min-height:40px; }
  .culture-price{ font-size:18px; }

  .features-section{ padding:60px 15px; }
  .features-container{ grid-template-columns:1fr; gap:30px; }
  .feature-card{ padding:30px 15px; }
  .feature-title{ font-size:20px; }
  .feature-description{ font-size:14px; }

  .meet-artist-section{ padding:60px 15px; }
  .meet-artist-title{ font-size:36px; margin-bottom:40px; }
  .artist-grid{ grid-template-columns:1fr; grid-template-rows:repeat(3,300px); height:auto; gap:15px; }
  .artist-overlay{ bottom:15px; left:15px; right:15px; max-width:none; padding:15px; }
  .artist-name{ font-size:20px; }

  .art-prints-section{ height:300px; }
  .art-prints-title{ font-size:36px; }
  .art-prints-line,.art-prints-line-after{ width:150px; height:3px; }
  .art-prints-button{ margin-top:25px; padding:12px 30px; font-size:16px; }


}

/* Letter spacing helpers */
.letter-spacing-inertia { letter-spacing: .05em; }
.letter-spacing-studios { letter-spacing: .02em; }

/* Brand Discovery */
.brand-discovery-section{ background:#FFF6EF; padding:80px 20px; min-height:500px; display:flex; align-items:center; }
.brand-discovery-container{ max-width:1400px; margin:0 auto; display:grid; grid-template-columns:1fr 1px 1fr; gap:80px; align-items:center; width:100%; }
.brand-logo-section{ display:flex; flex-direction:column; align-items:flex-start; justify-content:center; position:relative; }
.brand-logo{ max-width:300px; width:100%; height:auto; margin-bottom:30px; }
.brand-logo-text{ font-size:clamp(48px,8vw,72px); font-weight:700; color:#694029; line-height:1.1; margin-bottom:20px; letter-spacing:-.02em; position:relative; z-index:1; }
.brand-subtitle{ font-size:18px; color:#EB9C54; font-weight:500; text-transform:uppercase; letter-spacing:1px; }

.vertical-divider{ width:1px; height:200px;
  background:linear-gradient(to bottom,transparent 0%,#DD7A20 20%,#EB9C54 50%,#DD7A20 80%,transparent 100%); justify-self:center;
}
.brand-content-section{ padding-left:20px; }
.brand-content-title{ font-size:clamp(24px,4vw,36px); font-weight:600; color:#211D1A; margin-bottom:24px; line-height:1.3; }
.brand-content-text{ font-size:18px; line-height:1.7; color:#694029; margin-bottom:32px; }
.brand-cta-button{ display:inline-block; padding:16px 32px; background:#DD7A20; color:#fff; text-decoration:none; border-radius:8px; font-weight:600; font-size:16px; text-transform:uppercase; letter-spacing:1px; transition:.3s; box-shadow:0 4px 12px rgba(221,122,32,.2); }
.brand-cta-button:hover{ background:#EB9C54; transform:translateY(-2px); box-shadow:0 6px 20px rgba(221,122,32,.3); }
.decorative-accent{ position:absolute; width:60px; height:60px; border:3px solid #DD7A20; border-radius:50%; top:-30px; right:-30px; opacity:.3; }

@media (max-width:1024px){
  .brand-discovery-container{ grid-template-columns:1fr; gap:50px; text-align:center; }
  .vertical-divider{ display:none; }
  .brand-logo-section{ align-items:center; }
  .brand-content-section{ padding-left:0; }
  
}
@media (max-width:768px){
  .brand-discovery-section{ padding:60px 15px; }
  .brand-discovery-container{ gap:40px; }
  .brand-logo{ max-width:250px; }
  .brand-content-text{ font-size:16px; }
  .brand-cta-button{ width:100%; max-width:300px; text-align:center; }
}
.brand-discovery-section{ opacity:0; transform:translateY(30px); transition:all .8s ease; }
.brand-discovery-section.visible{ opacity:1; transform:translateY(0); }
#
:root{
  --pp-cream:#FFF6EF; --pp-brown:#694029; --pp-orange-300:#EB9C54; --pp-orange-500:#DD7A20; --pp-ink:#211D1A;
}
.pp-promo-banner{ padding:clamp(20px,3vw,32px); }
.pp-promo-inner{
  position:relative; display:grid; grid-template-columns:1.2fr .9fr; gap:clamp(16px,3vw,32px); align-items:center;
  width:min(1120px,92%); margin-inline:auto; background:#fff; border:1px solid rgba(33,29,26,.08);
  border-radius:16px; box-shadow:0 10px 30px rgba(33,29,26,.08); padding:clamp(18px,3.5vw,32px); overflow:hidden;
}
.pp-promo-title{ margin:6px 0 8px; color:var(--pp-brown); font-family:"TAN Ashford",Georgia,serif; font-size:clamp(22px,3vw,32px); line-height:1.15; }
.pp-promo-subtitle{ color:var(--pp-ink); font-size:clamp(14px,1.6vw,16px); max-width:52ch; }
.pp-free-badge{
  display:inline-block; background:radial-gradient(circle at 30% 30%,var(--pp-orange-300),var(--pp-orange-500)); color:#fff;
  font-weight:700; padding:6px 10px; border-radius:999px; font-size:12px; box-shadow:0 0 0 3px rgba(221,122,32,.15); margin-bottom:10px;
}
.pp-promo-actions{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.pp-btn{ display:inline-block; text-decoration:none; border-radius:999px; padding:10px 16px; font-weight:700; border:1px solid transparent; transition:transform .15s,box-shadow .15s,background .2s; }
.pp-btn--primary{ background:var(--pp-brown); color:#fff; }
.pp-btn--primary:hover{ transform:translateY(-1px); box-shadow:0 8px 20px rgba(105,64,41,.18); }
.pp-btn--ghost{ background:#fff; color:var(--pp-brown); border-color:rgba(33,29,26,.18); }
.pp-btn--ghost:hover{ transform:translateY(-1px); box-shadow:0 8px 20px rgba(105,64,41,.10); }
.pp-promo-visual{ position:relative; aspect-ratio:4/3; border-radius:14px; overflow:hidden; border:1px solid rgba(33,29,26,.06); box-shadow:0 6px 18px rgba(33,29,26,.06); }
.pp-promo-visual img{ width:100%; height:100%; object-fit:cover; display:block; }
.pp-promo-overlay-link{ position:absolute; inset:0; z-index:1; }
@media (min-width:700px){ .pp-promo-overlay-link{ display:none; } }
@media (max-width:880px){ .pp-promo-inner{ grid-template-columns:1fr; } .pp-promo-visual{ order:-1; } }

@media(max-width:768px){
  .product-grid{display:flex!important;gap:16px!important;overflow-x:auto!important;padding:0 10px 10px!important;scroll-snap-type:x mandatory!important;scroll-padding:10px!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:none!important;scrollbar-width:none!important}
  .product-grid::-webkit-scrollbar{display:none!important}
  .product-card{flex:0 0 75%!important;max-width:75%!important;scroll-snap-align:start!important;border-radius:12px!important}
  .product-image-container{aspect-ratio:1/1!important}
  .product-image{width:100%!important;height:100%!important;object-fit:contain!important}
}

/* Snow + Santa (compact) */
#birthday-grid{position:relative}
#birthday-grid .snow-layer{pointer-events:none;position:absolute;inset:0;overflow:hidden;z-index:3}
.snowflake{position:absolute;top:-10%;will-change:transform,opacity;user-select:none;font-size:12px;opacity:.9;filter:drop-shadow(0 1px 1px rgba(0,0,0,.1));animation:snow-fall linear 1 forwards,snow-sway ease-in-out infinite}
@keyframes snow-fall{to{transform:translateY(120vh);opacity:.8}}
@keyframes snow-sway{0%{transform:translateX(-20px)}50%{transform:translateX(20px)}100%{transform:translateX(-20px)}}
#santa-pop{position:fixed;right:-220px;bottom:12%;z-index:9999;width:180px;aspect-ratio:1/1.2;background:no-repeat center/contain url('/wp-content/themes/your-theme/images/santa.png');pointer-events:none;transition:right .8s ease}
#santa-pop.show{right:16px}


@media(max-width:768px){
  .christmas-section .culture-grid{display:flex!important;gap:16px!important;overflow-x:auto!important;padding:0 12px 12px!important;scroll-snap-type:x mandatory!important;scroll-padding:12px!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:none!important;scrollbar-width:none!important}
  .christmas-section .culture-grid::-webkit-scrollbar{display:none!important}
  .christmas-section .culture-card{flex:0 0 70%!important;max-width:70%!important;scroll-snap-align:start!important;border-radius:12px!important}
  .christmas-section .culture-image-container{aspect-ratio:1/1!important;display:flex!important;align-items:center!important;justify-content:center!important;background:#FFF6EF!important;border-radius:12px!important;overflow:hidden!important}
  .christmas-section .culture-image{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}
  .christmas-section .culture-info{text-align:center!important;padding:14px!important}
  .christmas-section .culture-name{display:block!important;font-weight:700!important;text-transform:uppercase!important;font-size:14px!important;letter-spacing:.5px!important;color:#211D1A!important;margin-bottom:6px!important}
}

@media(max-width:768px){
  .culture-grid{display:flex!important;gap:16px!important;overflow-x:auto!important;padding:0 10px 10px!important;scroll-snap-type:x mandatory!important;scroll-padding:10px!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:none!important;scrollbar-width:none!important}
  .culture-grid::-webkit-scrollbar{display:none!important}
  .culture-card{flex:0 0 75%!important;max-width:75%!important;scroll-snap-align:start!important;border-radius:12px!important}
  .culture-image-container{aspect-ratio:1/1!important;display:flex!important;align-items:center!important;justify-content:center!important;background:#FFF6EF!important}
  .culture-image{width:100%!important;height:100%!important;object-fit:contain!important}
  .culture-info{text-align:center!important}
}

.pp-home-gallery{--gap:12px;--radius:12px;max-width:1200px;margin:clamp(8px,2vw,24px) auto;padding:0 clamp(8px,2vw,16px)}
.pp-gallery__strip{display:flex;gap:var(--gap);overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding-bottom:8px}
.pp-gallery__item{flex:0 0 calc((100% - (var(--gap)*4))/5);max-width:calc((100% - (var(--gap)*4))/5);scroll-snap-align:start;border-radius:var(--radius);overflow:hidden}
.pp-gallery__img{display:block;width:100%;height:100%;aspect-ratio:4/5;object-fit:cover}

@media (max-width:768px){
  .pp-gallery__item{flex:0 0 70%;max-width:70%} /* swipeable row on mobile */
}

.pp-gallery__cta{text-align:center;margin-top:12px}
.pp-btn{display:inline-block;padding:.7rem 1.1rem;background:var(--pp-brown,#694029);color:#fff;border-radius:10px;font-weight:600;text-decoration:none}
.pp-btn:hover{background:var(--pp-orange-500,#DD7A20)}

.pp-gallery__head{max-width:900px;margin:0 auto 12px;text-align:center;padding:0 clamp(8px,2vw,16px)}
.pp-gallery__head h2{margin:0 0 .35rem;font-size:clamp(1.3rem,2.8vw,1.75rem);line-height:1.2;color:var(--pp-brown,#694029)}
.pp-gallery__head p{margin:0 0 .6rem;color:var(--pp-ink,#211D1A);opacity:.9}
.pp-gallery__actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}

.pp-btn{display:inline-block;padding:.7rem 1.1rem;background:var(--pp-brown,#694029);color:#fff;border-radius:10px;font-weight:600;text-decoration:none}
.pp-btn:hover{background:var(--pp-orange-500,#DD7A20)}
.pp-btn--ghost{background:transparent;color:var(--pp-brown,#694029);border:2px solid currentColor}
.pp-btn--ghost:hover{color:#fff;background:var(--pp-brown,#694029)}

/* nice scroll position when jumping to the products */
#personalised-products{scroll-margin-top:80px}

/* Mobile: full-height hero video */
@media(max-width:768px){
  .hero{min-height:100svh!important;padding:0!important;justify-content:center!important;align-items:center!important;position:relative!important}
  .video-container{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;max-width:none!important;border-radius:0!important;box-shadow:none!important;z-index:1!important}
  .video-container video{width:100%!important;height:100%!important;object-fit:cover!important}

  /* Put headings over the video */
  .hero-text-top,.hero-text-bottom{
    position:absolute!important;left:50%!important;transform:translateX(-50%)!important;margin:0!important;z-index:2!important;text-align:center!important
  }
  .hero-text-top{top:6svh!important}
  .hero-text-bottom{bottom:6svh!important}

  /* Remove the small caption block under the video on mobile */
  .mobile-bottom-text{display:none!important}
}

/* Mobile: readable hero text over video */
@media(max-width:768px){
  /* add a dark overlay on the video for contrast */
  .video-container{position:relative!important}
  .video-container::after{
    content:"";position:absolute;inset:0;z-index:1;
    background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.35))!important;
  }

  /* put headings above overlay + make them white */
  .hero-text-top,.hero-text-bottom{
    color:#fff!important;
    text-shadow:0 2px 10px rgba(0,0,0,.55), 0 0 1px rgba(0,0,0,.6)!important;
    z-index:2!important;
  }
}

/* --- Trustpilot overlap fix --- */
#tpViewport {
  position: relative;
  /* Smoothly adapt to each slide's height */
  transition: height .35s ease;
}

/* Keep ALL slides absolute; active only controls visibility */
.trustpilot .review-item {
  position: absolute;           /* was absolute already, keep it */
  left: 0; right: 0; top: 0;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity .35s ease, transform .35s ease;
}

.trustpilot .review-item.active {
  /* DO NOT switch to relative (this caused stacking) */
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 2;                   /* ensure incoming slide sits above */
}

/* Reduced motion: disable height animation too */
@media (prefers-reduced-motion: reduce){
  #tpViewport { transition: none; }
}

/* === Meet the Artists – mobile fix (no desktop changes) === */
@media (max-width: 768px){

  /* 1) One column, let rows auto-size */
  .meet-artist-section { padding: 60px 15px; }
  .artist-grid{
    grid-template-columns: 1fr !important;
    grid-template-rows: unset !important;   /* override the 300px rows */
    grid-auto-rows: auto;
    gap: 22px;
  }

  /* 2) Make each card tall enough and keep the full image visible */
  .artist-item{
    aspect-ratio: 3 / 4;                    /* consistent portrait frame */
    min-height: 80vw;                        /* fallback for older browsers */
    background-size: contain;                /* show the whole image */
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #FFF6EF;               /* matches site bg behind image */
    border-radius: 12px;
  }

  /* 3) Overlay: keep it inside the card with comfy padding */
  .artist-overlay{
    left: 12px; right: 12px; bottom: 12px;
    max-width: none;
    padding: 14px 16px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
  }
  .artist-header{ gap: 12px; }
  .artist-image{ width: 46px; height: 46px; }
  .artist-name{ font-size: 20px; }
  .artist-description{ font-size: 14px; line-height: 1.45; }
}

/* See What We've Made — heading + intro */
.pp-home-gallery h2{
  text-align:center;
  font-family: var(--pp-display);
  color: var(--pp-brown);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 400;
  line-height: 1.1;
  font-size: clamp(28px, 5vw, 42px);
  margin: 0 auto .35rem;
}

.pp-home-gallery > p{
  text-align:center;
  font-family: var(--pp-body);
  color: rgba(33,29,26,.85);
  line-height: 1.6;
  font-size: clamp(14px, 2.2vw, 18px);
  max-width: 860px;      /* keeps the line length tidy */
  margin: 0 auto 1.25rem; /* centers & adds a little space below */
}

/* Mobile: bring "Perky Pen" + "Gifts" closer together, centered */
@media (max-width: 768px){
  .hero{ --hero-gap: 6px; } /* tweak this for tighter/looser spacing */

  .hero-text-top,
  .hero-text-bottom{
    position: absolute !important;
    left: 50% !important;
    margin: 0 !important;
    z-index: 2 !important;
    text-align: center !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.55), 0 0 1px rgba(0,0,0,.6) !important;
  }

  /* Anchor both around the vertical center, separated only by --hero-gap */
  .hero-text-top{
    top: calc(50% - var(--hero-gap)) !important;
    transform: translate(-50%, -100%) !important; /* sit just above center */
  }
  .hero-text-bottom{
    top: calc(50% + var(--hero-gap)) !important;
    transform: translate(-50%, 0) !important;     /* sit just below center */
  }
}

@media (min-width:1025px){
  /* give GSAP a bit more runway and remove the big top gap */
  .hero{
    min-height: 110vh;        /* more scroll room for the scale effect */
    padding-top: 4vh;         /* pull the video/text up */
  }

  /* make the container bigger but keep a 16:9 frame so nothing gets “cut off” */
  .video-container{
    width: clamp(720px, 54vw, 1000px);
    aspect-ratio: 16 / 9;     /* lets the browser calculate height */
    height: 700px;             /* rely on aspect-ratio */
    margin-top: -1vh;         /* tiny nudge up (tweak/remove if you like) */
  }

  /* optional: nudge framing if important content is slightly high/low */
  .video-container video{
    object-fit: cover;
    object-position: 50% 45%;
  }

  /* keep headings in roughly the same places with the larger video */
  .hero-text-top{
    transform: translate(-85%, -260px);
  }
  .hero-text-bottom{
    transform: translate(-15%, 110px);
  }
}

/* ===== Promo carousel: safe defaults even if Swiper CSS is missing ===== */
.promo-carousel-container .promo-swiper { width: 100%; overflow: hidden; }
.promo-carousel-container .swiper-wrapper { display: flex; }
.promo-carousel-container .swiper-slide { flex: 0 0 100%; }

/* Phones (≤600px). Tweak the max-width if needed: 480/768/etc. */
@media (max-width: 600px) {
  .footer-social {
    display: flex;
    gap: 12px;
    justify-content: center !important;
    align-items: center;
  }
}

/* ===== Promo carousel — mobile card layout (fix) ===== */
.promo-carousel-container .promo-swiper { overflow: hidden; }
.promo-carousel-container .swiper-wrapper { align-items: stretch; }
.promo-carousel-container .swiper-slide { height: auto; }

@media (max-width: 768px){
  .promo-carousel-container .promo-banner{
    display: grid;
    grid-template-rows: auto minmax(220px, 42vh); /* content then image slot */
    height: auto !important;
    border-radius: 12px;
    overflow: hidden;
  }

  .promo-carousel-container .promo-content{
    padding: 18px 16px 14px;
    text-align: center;
  }

  /* normalize the image area across slides */
  .promo-carousel-container .promo-visual{
    width: 100%;
    aspect-ratio: 16 / 9;             /* consistent frame */
    height: auto !important;           /* beat older rules */
  }
  /* optional safety for very old browsers */
  @supports not (aspect-ratio: 1){
    .promo-carousel-container .promo-visual{
      height: clamp(200px, 45vw, 300px);
    }
  }

  .promo-carousel-container .promo-visual img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;                 /* crop, don’t distort */
    object-position: center;
    border-radius: 0;                  /* full bleed on mobile */
  }

  /* tidy badges & buttons on small screens */
  .promo-carousel-container .free-badge{ right: 10px; top: 10px; transform: rotate(10deg); }
  .promo-carousel-container .promo-title{ font-size: clamp(20px, 5.5vw, 26px); }
  .promo-carousel-container .promo-subtitle{ font-size: 14px; }
}

/* --- PROMO CAROUSEL: mobile overflow fix --- */
@media (max-width: 768px){

  /* Use a simple column flex, kill the 400px basis */
  .promo-carousel-container .promo-banner{
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    height: auto !important;
    overflow: hidden;
    border-radius: 12px;
  }

  .promo-carousel-container .promo-content{
    flex: 1 1 auto !important;   /* overrides flex:0 0 400px */
    min-width: 0 !important;      /* allow wrapping/shrinking */
    width: 100% !important;
    box-sizing: border-box;
    padding: 18px 16px 14px !important;
    text-align: center;
  }

  /* Make text wrap within the card */
  .promo-carousel-container .promo-title,
  .promo-carousel-container .promo-subtitle{
    margin-inline: auto;
    max-width: 38ch;              /* keeps lines readable */
    padding-inline: 6px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* Normalize image area */
  .promo-carousel-container .promo-visual{
    width: 100% !important;
    aspect-ratio: 16/9;
    height: auto !important;
    min-width: 0;
  }
  @supports not (aspect-ratio: 1){
    .promo-carousel-container .promo-visual{ height: clamp(200px, 45vw, 300px); }
  }
  .promo-carousel-container .promo-visual img{
    width: 100%; height: 100%;
    display: block; object-fit: cover; object-position: center;
  }
}

/* Order tiles under "Your photo, our design" */
:root{
  --pp-cream:#FFF6EF; --pp-brown:#694029; --pp-orange:#EB9C54; --pp-amber:#DD7A20; --pp-ink:#211D1A;
}

.pp-order-tiles{
  width:min(1120px,92%);
  margin: 12px auto 22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.pp-order-tile{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  background:#fff; color:var(--pp-brown);
  border:1px solid rgba(33,29,26,.10);
  border-radius:14px;
  padding:16px 14px;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.pp-order-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(221,122,32,.4);
  box-shadow:0 12px 28px rgba(0,0,0,.10);
}
.pp-order-emoji{ font-size:26px; line-height:1; margin-bottom:6px; }
.pp-order-title{ font-weight:700; font-size:16px; color:var(--pp-brown); }
.pp-order-sub{ font-size:13px; color:rgba(33,29,26,.75); margin-top:2px; }

@media (max-width: 900px){
  .pp-order-tiles{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .pp-order-tiles{ grid-template-columns: 1fr; }
}

/* =========================
   HOMEPAGE — QUICK OVERRIDES
   ========================= */

/* 1) Promo slider → give bottom space so the next section isn’t cramped */
@media (min-width:1025px){
  .promo-carousel-container{
    max-width: 1200px !important;     /* slightly wider on desktop */
    margin-bottom: clamp(28px,4vw,56px) !important;
  }
  .promo-carousel-container .promo-banner{
    height: 240px !important;          /* modestly taller = nicer visual balance */
  }
  .promo-carousel-container .promo-content{ flex-basis: 440px !important; }
}

/* 2) “YOUR PHOTO, OUR DESIGN” — widen, loosen gaps, scale type slightly */
@media (min-width:1025px){
  .pp-home-gallery{
    max-width: none !important;
    width: min(1280px, 96vw) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .pp-home-gallery h2{
    font-size: clamp(34px, 2.6vw, 46px) !important;
    letter-spacing: .02em;
    margin-bottom: .5rem !important;
  }

  .pp-home-gallery > p{
    font-size: 18px !important;
    margin-bottom: 1.25rem !important;
  }

  /* Order tiles: wider grid + bigger tiles and gaps */
  .pp-order-tiles{
    width: min(1280px, 96vw) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
    margin: 16px auto 28px !important;
  }
  .pp-order-tile{
    padding: 18px 16px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.08) !important;
  }
  .pp-order-emoji{ font-size: 28px !important; }
  .pp-order-title{ font-size: 18px !important; }
  .pp-order-sub{ font-size: 14px !important; }

  /* Gallery strip: slightly bigger gutters so the row can “breathe” */
  .pp-gallery__strip{ gap: 16px !important; }
  .pp-gallery__item{
    flex: 0 0 calc((100% - (16px * 4)) / 5) !important;
    max-width: calc((100% - (16px * 4)) / 5) !important;
    border-radius: 14px !important;
  }

  /* Button spacing under the gallery */
  .pp-home-gallery .pp-gallery__cta{ margin-top: 16px !important; }
}

/* 3) Announcement bar — thinner & remove any stray gaps (desktop only) */
@media (min-width:1025px){
  .promo-rotator{
    margin: 0 !important;                 /* kill stray gaps above/below */
    line-height: 1.25 !important;
    border-bottom-width: 0 !important;     /* keep it visually light */
  }
  .promo-rotator .promo-item{
    min-height: 34px !important;           /* was taller; make it sleeker */
    padding: 0.45rem 0.9rem 0.5rem !important;
  }
  .promo-rotator .promo-track{ will-change: transform; }

  /* Ensure the section above doesn’t add bottom margin that re-creates a gap */
  .card-categories,
  .category-carousel{ margin-bottom: 0 !important; }
}

/* 4) Small desktop/tablet (just ease spacing a bit) */
@media (min-width:900px) and (max-width:1024px){
  .pp-order-tiles{ gap: 16px !important; }
  .pp-order-title{ font-size: 17px !important; }
  .pp-order-sub{ font-size: 13px !important; }
}

/* 5) Safety: keep the announcement bar from collapsing on very wide screens */
@media (min-width:1440px){
  .promo-rotator{ font-size: 14px !important; }
}


