/*
Theme Name: Crafted Charm
Theme URI: https://craftedcharm.co.uk
Author: Crafted Charm
Description: Bespoke lightweight WooCommerce theme for craftedcharm.co.uk — cream & terracotta handmade-gifts design.
Version: 1.0.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: craftedcharm
*/

:root {
  --cc-cream: #FAF7F2;
  --cc-ink: #3D2E26;
  --cc-terracotta: #B85F3D;
  --cc-terracotta-dark: #9C4C2E;
  --cc-terracotta-light: #E0A18A;
  --cc-rose: #F6ECE5;
  --cc-sage: #EDF0E6;
  --cc-card: #FFFDFA;
  --cc-line: #E8DFD3;
  --cc-line-soft: #EFE6D9;
  --cc-line-warm: #E4D8C8;
  --cc-muted: #6E5C50;
  /* muted-2/-3 are nudged darker so small text clears WCAG AA (4.5:1) on cream */
  --cc-muted-2: #806F60;
  --cc-muted-3: #B3A190;      /* light-on-dark use (footer) only */
  --cc-muted-3-light: #7E6E5F; /* same role on light backgrounds */
  /* Brand terracotta stays for fills; the darker token is for small text on light */
  --cc-terracotta-text: #A65637;
  --cc-body-2: #5C4B3F;
  --cc-tile: #F1E9DE;
  --cc-border-btn: #C9B8A6;
  --cc-sage-dark: #5E6B4F;
  --cc-sage-mid: #869376;
  --cc-dark-text: #F3E9DC;
  --cc-dark-text-2: #D8C7B6;
  --cc-dark-head: #FBF4E9;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --hand: 'Caveat', cursive;
  --sans: 'Karla', -apple-system, sans-serif;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cc-cream);
  color: var(--cc-ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* paper grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: var(--cc-ink); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--cc-terracotta); }
::selection { background: #F0DCD2; }
img { max-width: 100%; height: auto; }
/* <picture> wrappers (WebP sources) must fill their slot like the img did */
.cc-hero__arch picture, .cc-cat-tile__img picture, .cc-maker__circle picture,
.cc-polaroid__img picture, .cc-card__img picture { display: block; width: 100%; height: 100%; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--cc-ink); }
@keyframes ccFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

#page { overflow-x: clip; }
.cc-container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; box-sizing: border-box; width: 100%; }
/* More breathing room on phones — 24px gutters ate too much of a 375px screen */
@media (max-width: 640px) {
  .cc-container { padding-left: 16px; padding-right: 16px; }
  .cc-maker__inner, .cc-custom__inner, .cc-coming__inner, .cc-shop-cta__inner { padding-left: 16px; padding-right: 16px; }
  .cc-footer__cols { gap: 28px 32px; }
}
.cc-hand { font-family: var(--hand); }
.cc-kicker { font-family: var(--hand); font-size: 25px; color: var(--cc-terracotta); margin-bottom: 8px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Pill buttons */
.cc-btn, .cc-btn:visited {
  display: inline-block;
  /* a shade darker than --cc-terracotta so the pale label clears 4.5:1 */
  background: #B15B3B;
  color: #FFF9F2 !important;
  padding: 15px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  box-shadow: 0 6px 18px rgba(184,95,61,0.28);
  transition: background 0.15s ease;
  line-height: 1.4;
}
.cc-btn:hover { background: var(--cc-terracotta-dark); color: #FFF9F2; }
.cc-btn--ghost, .cc-btn--ghost:visited {
  background: transparent;
  color: var(--cc-ink) !important;
  border: 1.5px solid var(--cc-border-btn);
  box-shadow: none;
}
.cc-btn--ghost:hover { border-color: var(--cc-terracotta); color: var(--cc-terracotta) !important; background: transparent; }
/* WhatsApp buttons — brand green, deliberately distinct from the terracotta theme */
.cc-btn--wa, .cc-btn--wa:visited {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366;
  color: #0B3D2E !important;
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}
.cc-btn--wa:hover { background: #1DC258; color: #0B3D2E !important; }

/* Floating WhatsApp bubble (site-wide) */
.cc-wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #FFFFFF !important;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(11,61,46,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cc-wa-float:hover { transform: scale(1.07); color: #FFFFFF !important; box-shadow: 0 12px 30px rgba(11,61,46,0.4); }
@media (max-width: 480px) { .cc-wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; } }
.cc-btn--dark-ghost, .cc-btn--dark-ghost:visited {
  background: transparent;
  color: var(--cc-dark-text) !important;
  border: 1.5px solid rgba(251,244,233,0.35);
  box-shadow: none;
}
.cc-btn--dark-ghost:hover { border-color: var(--cc-terracotta-light); color: var(--cc-terracotta-light) !important; background: transparent; }
.cc-custom__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Announcement bar ---------- */
.cc-announce {
  background: var(--cc-ink);
  color: var(--cc-dark-text);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

/* ---------- Header ---------- */
.cc-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cc-line);
}
.cc-header__inner { display: flex; align-items: center; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.cc-logo { display: flex; align-items: center; gap: 10px; }
.cc-logo__name { font-family: var(--serif); font-weight: 600; font-size: 27px; letter-spacing: 0.01em; color: var(--cc-ink); }
img.cc-logo__img { width: 66px; height: 66px; border-radius: 50%; display: block; }
@media (max-width: 900px) {
  img.cc-logo__img { width: 54px; height: 54px; }
}
@media (max-width: 480px) {
  img.cc-logo__img { width: 46px; height: 46px; }
  .cc-logo__name { font-size: 22px; }
}
.cc-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; }
.cc-nav a { padding: 4px 0; }
.cc-nav a.is-active { color: var(--cc-terracotta-text); }
.cc-header__icons { display: flex; align-items: center; gap: 8px; }
.cc-header__icons a { display: flex; align-items: center; padding: 6px; position: relative; color: var(--cc-ink); }
.cc-header__icons a:hover { color: var(--cc-terracotta); }
.cc-basket-count {
  position: absolute; top: 0; right: -2px;
  background: #B15B3B; color: #FFF9F2;
  font-size: 11px; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.cc-burger { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: var(--cc-ink); }
.cc-mobile-nav { display: none; }

@media (max-width: 767px) {
  .cc-nav { display: none; }
  .cc-burger { display: flex; }
  .cc-mobile-nav.is-open {
    display: flex; flex-direction: column;
    background: var(--cc-cream);
    border-bottom: 1px solid var(--cc-line);
    padding: 6px 24px 18px;
    gap: 2px;
  }
  .cc-mobile-nav a { padding: 10px 0; font-size: 16px; font-weight: 600; border-bottom: 1px solid var(--cc-line-soft); }
  .cc-mobile-nav a:last-child { border-bottom: none; }
}

/* ---------- Hero ---------- */
.cc-hero { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 64px); align-items: center; padding-top: clamp(40px, 7vw, 88px); padding-bottom: clamp(48px, 7vw, 96px); animation: ccFadeUp 0.7s ease both; }
.cc-hero__copy { flex: 1 1 420px; min-width: 290px; }
.cc-hero__hand { font-family: var(--hand); font-size: 26px; color: var(--cc-terracotta); margin-bottom: 10px; }
.cc-hero h1 { font-size: clamp(42px, 6.5vw, 72px); line-height: 1.05; margin: 0 0 20px; letter-spacing: -0.01em; text-wrap: balance; }
.cc-hero__sub { font-size: 17px; line-height: 1.65; color: var(--cc-muted); max-width: 46ch; margin: 0 0 30px; }
.cc-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.cc-hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; color: var(--cc-muted-2); font-weight: 600; }
.cc-hero__trust .stars { color: var(--cc-terracotta-text); }
.cc-hero__media { flex: 1 1 380px; min-width: 290px; position: relative; display: flex; justify-content: center; }
.cc-hero__glow { position: absolute; inset: -8% -6% auto auto; width: 55%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, #F2E2DA 0%, rgba(242,226,218,0) 70%); z-index: 0; }
.cc-hero__arch { position: relative; z-index: 1; width: min(420px, 100%); aspect-ratio: 4 / 5; border-radius: 220px 220px 18px 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(61,46,38,0.16); background: var(--cc-tile); }
.cc-hero__arch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cc-polaroid {
  position: absolute; z-index: 2; bottom: -18px; left: 4%;
  background: var(--cc-card); border: 1px solid var(--cc-line-soft);
  border-radius: 14px; padding: 10px 12px;
  transform: rotate(-4deg);
  box-shadow: 0 10px 26px rgba(61,46,38,0.14);
  width: 132px;
}
.cc-polaroid__img { width: 100%; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--cc-tile); }
.cc-polaroid__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cc-polaroid__caption { font-family: var(--hand); font-size: 18px; text-align: center; padding-top: 6px; color: var(--cc-muted); }

/* ---------- Section headers ---------- */
.cc-secthead { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; margin-bottom: 30px; }
.cc-secthead h2 { font-size: clamp(30px, 4vw, 42px); margin: 0; }
.cc-secthead .cc-secthead__hand { font-family: var(--hand); font-size: 24px; color: var(--cc-sage-mid); }
.cc-secthead .cc-secthead__link { margin-left: auto; font-size: 14px; font-weight: 700; color: var(--cc-terracotta-text); letter-spacing: 0.03em; }
.cc-secthead .cc-secthead__link:hover { color: var(--cc-terracotta-dark); }

/* ---------- Category grid ---------- */
.cc-cats { padding-bottom: clamp(56px, 8vw, 104px); }
.cc-cats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.cc-cat-tile { display: block; }
.cc-cat-tile__img {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  background: var(--cc-tile);
  box-shadow: 0 3px 12px rgba(61,46,38,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cc-cat-tile__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cc-cat-tile:hover .cc-cat-tile__img { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(61,46,38,0.14); }
.cc-cat-tile__name { font-family: var(--serif); font-weight: 600; font-size: 21px; padding: 12px 4px 0; color: var(--cc-ink); }
.cc-cat-tile__from { font-size: 13px; color: var(--cc-muted-2); font-weight: 600; padding: 0 4px; }
.cc-cats__more { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 24px; }
.cc-cats__more-label { font-size: 13.5px; font-weight: 700; color: var(--cc-muted-2); letter-spacing: 0.04em; }
.cc-pill-link {
  background: var(--cc-card); border: 1px solid var(--cc-line-warm);
  border-radius: 99px; padding: 8px 16px;
  font-size: 13.5px; font-weight: 700; color: var(--cc-muted);
}
.cc-pill-link:hover { border-color: var(--cc-terracotta); color: var(--cc-terracotta); }

/* ---------- Maker section ---------- */
.cc-maker { background: var(--cc-rose); border-top: 1px solid #EBDCCF; border-bottom: 1px solid #EBDCCF; }
.cc-maker__inner { max-width: 1100px; margin: 0 auto; padding: clamp(56px, 8vw, 100px) 24px; display: flex; flex-wrap: wrap; gap: clamp(32px, 6vw, 72px); align-items: center; }
.cc-maker__media { flex: 0 1 340px; min-width: 260px; display: flex; justify-content: center; position: relative; }
.cc-maker__circle { width: min(320px, 80vw); aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: 0 20px 50px rgba(61,46,38,0.16); border: 8px solid var(--cc-card); background: var(--cc-tile); }
.cc-maker__circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cc-maker__tag {
  position: absolute; bottom: 6px; right: 8%;
  background: var(--cc-card); border: 1px solid var(--cc-line-soft);
  border-radius: 99px; padding: 8px 16px;
  font-family: var(--hand); font-size: 20px; color: var(--cc-terracotta-text);
  transform: rotate(3deg);
  box-shadow: 0 8px 20px rgba(61,46,38,0.12);
  white-space: nowrap;
}
.cc-maker__copy { flex: 1 1 400px; min-width: 280px; }
.cc-maker__copy h2 { font-size: clamp(32px, 4.5vw, 46px); margin: 0 0 18px; }
.cc-maker__copy p { font-size: 16.5px; line-height: 1.7; color: var(--cc-body-2); max-width: 54ch; margin: 0 0 14px; }
.cc-maker__sig { font-family: var(--hand); font-size: 32px; color: var(--cc-ink); margin-top: 8px; }

/* ---------- Custom orders (dark) ---------- */
.cc-custom { background: var(--cc-ink); color: var(--cc-dark-text); }
.cc-custom__inner { max-width: 1100px; margin: 0 auto; padding: clamp(56px, 8vw, 100px) 24px; display: flex; flex-wrap: wrap; gap: clamp(32px, 6vw, 72px); }
.cc-custom__copy { flex: 1 1 380px; min-width: 280px; }
.cc-custom .cc-kicker { color: var(--cc-terracotta-light); }
.cc-custom h2 { font-size: clamp(32px, 4.5vw, 48px); margin: 0 0 18px; color: var(--cc-dark-head); text-wrap: balance; }
.cc-custom__copy p { font-size: 16.5px; line-height: 1.7; color: var(--cc-dark-text-2); max-width: 50ch; margin: 0 0 28px; }
.cc-custom .cc-btn:hover { background: #CE7150; }
.cc-custom__steps { flex: 1 1 320px; min-width: 270px; display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.cc-step { display: flex; gap: 16px; align-items: flex-start; background: rgba(251,244,233,0.06); border: 1px solid rgba(251,244,233,0.14); border-radius: 14px; padding: 16px 18px; }
.cc-step__n { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--cc-terracotta-light); line-height: 1; }
.cc-step__title { font-weight: 700; font-size: 15.5px; color: var(--cc-dark-head); margin-bottom: 3px; }
.cc-step__body { font-size: 14px; line-height: 1.55; color: #C9B8A6; }

/* ---------- Reviews ---------- */
.cc-reviews { padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(56px, 8vw, 104px); }
.cc-reviews__head { text-align: center; margin-bottom: 40px; }
.cc-reviews__head .cc-kicker { color: var(--cc-sage-mid); }
.cc-reviews__head h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 10px; }
.cc-reviews__rating { font-size: 14px; color: var(--cc-muted-2); font-weight: 600; }
.cc-reviews__rating .stars { color: var(--cc-terracotta-text); letter-spacing: 2px; }
.cc-reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.cc-review-card {
  background: var(--cc-card); border: 1px solid var(--cc-line-soft);
  border-radius: 18px; padding: 28px 26px 24px; margin: 0;
  box-shadow: 0 4px 16px rgba(61,46,38,0.06);
  display: flex; flex-direction: column; gap: 14px;
}
.cc-review-card .stars { color: var(--cc-terracotta-text); letter-spacing: 3px; font-size: 15px; }
.cc-review-card blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.5; color: #4A392F; flex: 1; }
.cc-review-card figcaption { font-size: 13.5px; font-weight: 700; color: var(--cc-muted-2); }
.cc-review-card figcaption span { font-weight: 500; color: #7E6E5F; }

/* ---------- Coming 2026 (sage) ---------- */
.cc-coming { background: var(--cc-sage); border-top: 1px solid #DDE3D1; }
.cc-coming__inner { max-width: 1100px; margin: 0 auto; padding: clamp(48px, 7vw, 80px) 24px; text-align: center; }
.cc-coming .cc-kicker { color: #7C8C6C; }
.cc-coming h2 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 14px; }
.cc-coming__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 26px; }
.cc-coming__chip { background: var(--cc-card); border: 1px solid #CBD4BC; border-radius: 99px; padding: 8px 18px; font-size: 14px; font-weight: 700; color: var(--cc-sage-dark); }
.cc-coming__social { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.cc-coming__btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--cc-sage-dark); color: #F6F8F1 !important;
  border-radius: 99px; padding: 13px 24px;
  font-weight: 700; font-size: 15px;
}
.cc-coming__btn:hover { background: #4C5840; }
.cc-coming__btn--ghost { background: transparent; color: var(--cc-sage-dark) !important; border: 1.5px solid #AEBB9D; }
.cc-coming__btn--ghost:hover { background: rgba(94,107,79,0.08); border-color: var(--cc-sage-dark); }
.cc-coming__hand { font-size: 24px; color: var(--cc-sage-dark); margin-top: 18px; }

/* ---------- Footer ---------- */
.cc-footer { background: var(--cc-ink); color: var(--cc-dark-text-2); margin-top: auto; }
.cc-footer a { color: var(--cc-dark-text-2); }
.cc-footer a:hover { color: var(--cc-dark-head); }
.cc-footer__cols { display: flex; flex-wrap: wrap; gap: 40px 64px; padding-top: clamp(48px, 6vw, 72px); }
.cc-footer__brand { flex: 1 1 260px; min-width: 240px; }
.cc-footer__logo { font-family: var(--serif); font-weight: 600; font-size: 26px; color: var(--cc-dark-head); margin-bottom: 12px; }
.cc-footer__brand p { font-size: 14.5px; line-height: 1.65; margin: 0 0 18px; max-width: 34ch; }
.cc-tiktok {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cc-dark-head) !important; font-weight: 700; font-size: 14px;
  border: 1px solid rgba(251,244,233,0.25); border-radius: 99px; padding: 9px 16px;
}
.cc-tiktok:hover { border-color: var(--cc-terracotta-light); color: var(--cc-terracotta-light) !important; }
.cc-footer__col { flex: 1 1 140px; min-width: 130px; }
.cc-footer__heading { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cc-muted-3); margin-bottom: 14px; }
.cc-footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.cc-footer__bottom {
  border-top: 1px solid rgba(251,244,233,0.12);
  margin-top: 44px;
  padding-top: 28px; padding-bottom: 32px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  font-size: 13px; color: var(--cc-muted-3); align-items: center;
}
.cc-footer__bottom .cc-hand { margin-left: auto; font-size: 18px; color: #C9B8A6; }
.cc-footer--slim .cc-footer__bottom { border-top: none; margin-top: 0; padding-top: 28px; }
.cc-footer__legal { display: flex; flex-direction: column; gap: 5px; }
/* underlined so it doesn't rely on colour alone to read as a link */
.cc-footer__powered a { color: var(--cc-dark-text-2); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cc-footer__powered a:hover { color: var(--cc-dark-head); }
@media (max-width: 600px) {
  .cc-footer__bottom .cc-hand { margin-left: 0; }
}

/* ---------- Shop archive ---------- */
.cc-shop-head { padding-top: 28px; }
.cc-breadcrumb { font-size: 13px; color: var(--cc-muted-3-light); font-weight: 600; margin-bottom: 18px; }
.cc-breadcrumb a { color: var(--cc-muted-3-light); }
.cc-breadcrumb a:hover { color: var(--cc-terracotta); }
.cc-breadcrumb .current { color: var(--cc-muted); }
.cc-shop-title { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; }
.cc-shop-title h1 { font-size: clamp(34px, 5vw, 52px); margin: 0; }
.cc-shop-title .cc-hand { font-size: 24px; color: var(--cc-sage-mid); }
.cc-shop-desc { font-size: 15px; color: var(--cc-muted); max-width: 62ch; margin-top: 10px; }
.cc-shop-desc p { margin: 0; }
.cc-shop-desc .cc-limited {
  display: inline-block; background: #FBF1EB; border: 1px solid #EBD3C4; color: var(--cc-terracotta-dark);
  font-size: 12.5px; font-weight: 700; border-radius: 99px; padding: 4px 12px; margin-right: 8px;
}
.cc-shop-toolbar { padding-top: 22px; padding-bottom: 12px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.cc-filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cc-filter-pill {
  border: 1.5px solid var(--cc-border-btn); background: var(--cc-card); color: var(--cc-ink);
  border-radius: 99px; padding: 9px 18px;
  font-size: 14px; font-weight: 700;
  transition: all 0.15s ease; display: inline-block;
}
.cc-filter-pill:hover { border-color: var(--cc-terracotta); color: var(--cc-terracotta); }
.cc-filter-pill.is-active { background: var(--cc-ink); color: var(--cc-dark-head); border-color: var(--cc-ink); }
.cc-filter-pill.is-active:hover { color: var(--cc-dark-head); }
.cc-shop-meta { margin-left: auto; display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--cc-muted-2); font-weight: 600; }
.cc-shop-meta .woocommerce-result-count { margin: 0; padding: 0; font-size: 14px; color: var(--cc-muted-2); float: none; }
.cc-shop-meta .woocommerce-ordering { margin: 0; float: none; }
.cc-shop-meta select.orderby {
  border: 1.5px solid var(--cc-border-btn); background: var(--cc-card); color: var(--cc-ink);
  border-radius: 99px; padding: 9px 14px;
  font-family: var(--sans); font-size: 14px; font-weight: 700; cursor: pointer; outline: none;
  -webkit-appearance: none; appearance: none;
}
@media (max-width: 640px) {
  .cc-shop-meta { margin-left: 0; width: 100%; justify-content: space-between; }
}

/* Product grid (shop archive + related/cross-sells) */
.cc-products, .woocommerce ul.products, .woocommerce-page ul.products {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px 20px; padding: 16px 0 24px; margin: 0; list-style: none;
}
.cc-products { padding-bottom: 72px; }
.cc-products::before, .cc-products::after,
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
@media (max-width: 560px) {
  .cc-products, .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
}
.cc-products li.product, .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  margin: 0; padding: 0; width: auto; float: none; display: flex; flex-direction: column;
}
.cc-card__imgwrap { display: block; position: relative; }
.cc-card__img {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  background: var(--cc-tile);
  box-shadow: 0 3px 12px rgba(61,46,38,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cc-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cc-card__imgwrap:hover .cc-card__img { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(61,46,38,0.14); }
.cc-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--cc-card); border: 1px solid var(--cc-line-soft); color: var(--cc-terracotta);
  font-size: 12px; font-weight: 700; border-radius: 99px; padding: 5px 12px;
  box-shadow: 0 3px 10px rgba(61,46,38,0.1);
}
.cc-card__meta { display: flex; align-items: flex-start; gap: 10px; padding: 12px 4px 0; }
.cc-card__names { flex: 1; }
.cc-card__title { font-family: var(--serif); font-weight: 600; font-size: 20px; line-height: 1.25; display: block; color: var(--cc-ink); }
.cc-card__title:hover { color: var(--cc-terracotta); }
.cc-card__cat { font-size: 13px; color: var(--cc-muted-2); font-weight: 600; margin-top: 2px; }
.cc-card__price { font-weight: 700; font-size: 16px; padding-top: 2px; color: var(--cc-ink); white-space: nowrap; }
.cc-card__price del { color: var(--cc-muted-3); font-weight: 500; margin-right: 6px; }
.cc-card__price ins { text-decoration: none; }
.cc-card__buy { margin: 10px 4px 0; }
.cc-card__buy .button, .cc-card__buy a.added_to_cart {
  display: block; width: 100%; text-align: center; box-sizing: border-box;
  border: 1.5px solid var(--cc-border-btn); background: transparent; color: var(--cc-ink);
  border-radius: 99px; padding: 10px 16px;
  font-family: var(--sans); font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.15s ease; line-height: 1.4;
}
.cc-card__buy .button:hover { border-color: var(--cc-terracotta); color: var(--cc-terracotta); background: #FBF1EB; }
.cc-card__buy a.added_to_cart { border-color: var(--cc-terracotta); color: var(--cc-terracotta); margin-top: 6px; }
.cc-card__buy .button.loading { opacity: 0.6; }

/* Shop CTA band */
.cc-shop-cta { background: var(--cc-rose); border-top: 1px solid #EBDCCF; margin-top: auto; }
.cc-shop-cta__inner { max-width: 1100px; margin: 0 auto; padding: 44px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 32px; }
.cc-shop-cta__copy { flex: 1 1 380px; }
.cc-shop-cta__title { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3vw, 32px); margin: 0 0 6px; }
.cc-shop-cta__sub { font-size: 15.5px; color: var(--cc-muted); }

/* Pagination */
.woocommerce nav.woocommerce-pagination { text-align: center; padding-bottom: 40px; }
.woocommerce nav.woocommerce-pagination ul { border: none; display: inline-flex; gap: 8px; }
.woocommerce nav.woocommerce-pagination ul li { border: none; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border: 1.5px solid var(--cc-border-btn); border-radius: 99px;
  min-width: 40px; height: 40px; line-height: 40px; padding: 0 8px;
  font-weight: 700; color: var(--cc-ink); background: var(--cc-card);
}
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--cc-ink); color: var(--cc-dark-head); border-color: var(--cc-ink); }
.woocommerce nav.woocommerce-pagination ul li a:hover { background: #FBF1EB; color: var(--cc-terracotta); border-color: var(--cc-terracotta); }

/* ---------- Single product ---------- */
.cc-single { padding-top: 24px; }
.cc-single .cc-breadcrumb { margin-bottom: 6px; }
.woocommerce div.product { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 64px); padding: 26px 0 clamp(48px, 6vw, 80px); }
.woocommerce div.product div.images { flex: 1 1 420px; min-width: 290px; width: auto; float: none; margin: 0; }
.woocommerce div.product div.summary { flex: 1 1 400px; min-width: 290px; width: auto; float: none; margin: 0; }
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 44px rgba(61,46,38,0.12); background: var(--cc-tile); }
.woocommerce div.product div.images img { width: 100%; display: block; }
.woocommerce div.product div.images .flex-control-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.woocommerce div.product div.images .flex-control-thumbs li { width: auto; float: none; }
.woocommerce div.product div.images .flex-control-thumbs li img { border-radius: 12px; opacity: 0.75; transition: opacity 0.15s; }
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active, .woocommerce div.product div.images .flex-control-thumbs li img:hover { opacity: 1; }
.cc-pdp-kicker { font-family: var(--hand); font-size: 24px; color: var(--cc-terracotta-text); margin-bottom: 6px; }
.woocommerce div.product .product_title { font-size: clamp(34px, 4.5vw, 48px); line-height: 1.1; margin: 0 0 12px; }
.woocommerce div.product .woocommerce-product-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.woocommerce div.product .woocommerce-product-rating .star-rating { color: var(--cc-terracotta); margin: 0; }
.woocommerce div.product .woocommerce-review-link { font-size: 13.5px; font-weight: 700; color: var(--cc-muted-2); text-decoration: underline; text-underline-offset: 3px; }
.woocommerce div.product p.price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; color: var(--cc-ink); }
.woocommerce div.product p.price .amount, .woocommerce div.product p.price ins .amount { font-size: 30px; font-weight: 700; color: var(--cc-ink); }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product p.price del .amount { font-size: 20px; color: var(--cc-muted-3); }
.cc-lowstock, .woocommerce div.product .stock.in-stock.cc-low {
  background: #FBF1EB; border: 1px solid #EBD3C4; color: var(--cc-terracotta-dark);
  font-size: 12.5px; font-weight: 700; border-radius: 99px; padding: 5px 12px; display: inline-block;
}
.woocommerce div.product .woocommerce-product-details__short-description { font-size: 16px; line-height: 1.65; color: var(--cc-muted); margin: 0 0 26px; max-width: 52ch; }
.woocommerce div.product .woocommerce-product-details__short-description p { margin: 0 0 10px; }

/* qty + add to cart */
.woocommerce div.product form.cart { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 16px; }
.woocommerce div.product form.cart.variations_form { display: block; }
.woocommerce div.product form.cart .variations { margin-bottom: 16px; }
.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th { padding: 6px 0; }
.woocommerce div.product form.cart .variations label { font-size: 13.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cc-muted-2); }
.woocommerce div.product form.cart .variations select {
  border: 1.5px solid var(--cc-border-btn); background: var(--cc-card); color: var(--cc-ink);
  border-radius: 99px; padding: 9px 14px; font-family: var(--sans); font-size: 14px; font-weight: 700;
}
.cc-qty {
  display: flex; align-items: center;
  border: 1.5px solid var(--cc-border-btn); border-radius: 99px; background: var(--cc-card);
}
.cc-qty button { border: none; background: transparent; font-size: 18px; font-weight: 700; color: var(--cc-muted-2); padding: 10px 16px; cursor: pointer; font-family: var(--sans); line-height: 1; }
.cc-qty .quantity { margin: 0; }
.cc-qty input.qty {
  border: none; background: transparent; width: 34px; text-align: center;
  font-weight: 700; font-size: 16px; color: var(--cc-ink); font-family: var(--sans);
  -moz-appearance: textfield; appearance: textfield; padding: 0;
}
.cc-qty input.qty::-webkit-outer-spin-button, .cc-qty input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.woocommerce div.product form.cart .button.single_add_to_cart_button {
  flex: 1; min-width: 220px;
  background: #B15B3B; color: #FFF9F2;
  border: none; border-radius: 99px; padding: 16px 28px;
  font-family: var(--sans); font-weight: 700; font-size: 16px; letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(184,95,61,0.28);
  transition: background 0.15s ease;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover { background: var(--cc-terracotta-dark); }
.cc-pdp-trust { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13.5px; color: var(--cc-muted-2); font-weight: 600; margin-bottom: 30px; }
.woocommerce div.product .product_meta { display: none; }

/* accordions (tabs replacement) */
.cc-accordions { border-top: 1px solid var(--cc-line); margin-top: 4px; }
.cc-accordions details { border-bottom: 1px solid var(--cc-line); }
.cc-accordions summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 2px; font-weight: 700; font-size: 15.5px;
  list-style: none; cursor: pointer; color: var(--cc-ink);
}
.cc-accordions summary::-webkit-details-marker { display: none; }
.cc-accordions summary::after { content: '+'; color: var(--cc-terracotta); font-size: 20px; font-weight: 400; }
.cc-accordions details[open] summary::after { content: '−'; }
.cc-accordions .cc-acc-body { padding: 0 2px 18px; font-size: 15px; line-height: 1.65; color: var(--cc-muted); }
.cc-accordions .cc-acc-body p { margin: 0 0 10px; }
.cc-accordions .cc-acc-body table { width: 100%; border-collapse: collapse; }
.cc-accordions .cc-acc-body th, .cc-accordions .cc-acc-body td { text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--cc-line-soft); }

/* single product reviews section */
.cc-pdp-reviews { background: var(--cc-rose); border-top: 1px solid #EBDCCF; }
.cc-pdp-reviews__inner { max-width: 1200px; margin: 0 auto; padding: clamp(44px, 6vw, 72px) 24px; }
.cc-pdp-reviews h2 { font-size: clamp(26px, 3.5vw, 36px); margin: 0 0 24px; }
.cc-pdp-reviews #reviews #comments ol.commentlist { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; padding: 0; margin: 0 0 24px; }
.cc-pdp-reviews #reviews #comments ol.commentlist li { margin: 0; }
.cc-pdp-reviews #reviews #comments ol.commentlist li .comment_container {
  background: var(--cc-card); border: 1px solid var(--cc-line-soft); border-radius: 16px;
  padding: 24px 24px 20px; display: flex; flex-direction: column; gap: 12px;
}
.cc-pdp-reviews #reviews #comments ol.commentlist li img.avatar { display: none; }
.cc-pdp-reviews #reviews #comments ol.commentlist li .comment-text { margin: 0; border: none; padding: 0; }
.cc-pdp-reviews #reviews .star-rating { color: var(--cc-terracotta); }
.cc-pdp-reviews #reviews .comment-text .description { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.5; color: #4A392F; }
.cc-pdp-reviews #reviews .comment-text .description p { margin: 0; }
.cc-pdp-reviews #reviews .meta { font-size: 13px; font-weight: 700; color: var(--cc-muted-2); }
.cc-pdp-reviews #review_form_wrapper { max-width: 640px; }
.cc-pdp-reviews #reviews .comment-reply-title { font-weight: 700; font-size: 15.5px; }
.cc-pdp-reviews #reviews p.stars a { color: var(--cc-terracotta); }

/* related */
.cc-related { padding: clamp(44px, 6vw, 72px) 0; }
.woocommerce .cc-related .related.products > h2, .cc-related .related.products > h2 { font-size: clamp(26px, 3.5vw, 36px); margin: 0 0 26px; }

/* ---------- Woo global overrides ---------- */
.woocommerce .woocommerce-breadcrumb { font-size: 13px; color: var(--cc-muted-3-light); font-weight: 600; margin-bottom: 18px; }
.woocommerce .woocommerce-breadcrumb a { color: var(--cc-muted-3-light); }
.woocommerce .woocommerce-breadcrumb a:hover { color: var(--cc-terracotta); }
.woocommerce span.onsale {
  background: var(--cc-card); color: var(--cc-terracotta); border: 1px solid var(--cc-line-soft);
  border-radius: 99px; min-height: 0; min-width: 0; line-height: 1.4;
  padding: 5px 12px; font-size: 12px; font-weight: 700;
  box-shadow: 0 3px 10px rgba(61,46,38,0.1);
  top: 12px; left: 12px; margin: 0;
}
.woocommerce .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page .button, .wc-block-components-button {
  font-family: var(--sans); font-weight: 700; border-radius: 99px;
}
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt,
.woocommerce #place_order, .woocommerce .checkout-button {
  background: #B15B3B; color: #FFF9F2;
  padding: 15px 28px; border-radius: 99px;
  box-shadow: 0 6px 18px rgba(184,95,61,0.28);
}
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,
.woocommerce #place_order:hover, .woocommerce .checkout-button:hover { background: var(--cc-terracotta-dark); color: #FFF9F2; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: var(--cc-card); color: var(--cc-ink); border: 1.5px solid var(--cc-border-btn); padding: 12px 22px;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { background: #FBF1EB; color: var(--cc-terracotta); border-color: var(--cc-terracotta); }
.woocommerce a.button.disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled[disabled] { padding: 12px 22px; }

.woocommerce table.shop_table { border: 1px solid var(--cc-line-soft); border-radius: 16px; background: var(--cc-card); }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-color: var(--cc-line-soft); }
.woocommerce-cart table.cart img { border-radius: 10px; width: 64px; }
.woocommerce .cart_totals h2, .woocommerce-checkout h3 { font-size: 24px; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select, .select2-container--default .select2-selection--single {
  border: 1.5px solid var(--cc-line-warm); background: var(--cc-card); border-radius: 12px; padding: 11px 14px;
  font-family: var(--sans); color: var(--cc-ink);
}
.select2-container--default .select2-selection--single { height: auto; }
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 1.5; color: var(--cc-ink); }
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register { border: 1px solid var(--cc-line-soft); border-radius: 16px; background: var(--cc-card); }
.woocommerce-info, .woocommerce-message, .woocommerce-error {
  border-top-color: var(--cc-terracotta); background: var(--cc-card); color: var(--cc-ink);
  border-radius: 0 0 12px 12px;
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--cc-terracotta); }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block; padding: 10px 18px; border-radius: 99px; font-weight: 700; font-size: 14.5px;
  border: 1.5px solid transparent;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--cc-ink); color: var(--cc-dark-head); }
.woocommerce-account .woocommerce-MyAccount-navigation li:not(.is-active) a:hover { border-color: var(--cc-border-btn); }

/* generic page content (Contact etc.) */
.cc-page { padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(48px, 6vw, 88px); }
.cc-page__title { font-size: clamp(34px, 5vw, 52px); margin: 0 0 24px; }
.cc-page .entry-content { max-width: 760px; font-size: 16.5px; line-height: 1.7; color: var(--cc-body-2); }
/* Layout-heavy pages need the full container width */
.page-id-2 .cc-page .entry-content,
.woocommerce-cart .cc-page .entry-content,
.woocommerce-checkout .cc-page .entry-content,
.woocommerce-account .cc-page .entry-content { max-width: none; }
.cc-page .entry-content a { color: var(--cc-terracotta); text-decoration: underline; text-underline-offset: 3px; }
.cc-page input[type="text"], .cc-page input[type="email"], .cc-page input[type="tel"], .cc-page textarea {
  border: 1.5px solid var(--cc-line-warm); background: var(--cc-card); border-radius: 12px;
  padding: 11px 14px; font-family: var(--sans); font-size: 15px; color: var(--cc-ink);
  width: 100%; max-width: 480px; box-sizing: border-box;
}
.cc-page input[type="submit"], .cc-page button[type="submit"] {
  background: #B15B3B; color: #FFF9F2; border: none; border-radius: 99px;
  padding: 14px 28px; font-family: var(--sans); font-weight: 700; font-size: 15px; cursor: pointer;
  box-shadow: 0 6px 18px rgba(184,95,61,0.28);
}
.cc-page input[type="submit"]:hover { background: var(--cc-terracotta-dark); }

/* ---------- Footer socials ---------- */
.cc-footer__socials { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- Contact page ---------- */
.cc-wa-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px;
  background: #E9F8EE; border: 1.5px solid #9FE0B8; border-radius: 18px;
  padding: 20px 24px; margin-bottom: 28px;
}
.cc-wa-strip__copy { flex: 1 1 320px; }
/* wpautop wraps the strip's button in a <p>; flatten it so the button is a real flex item */
.cc-wa-strip > p { display: contents; }
.cc-wa-strip__title { font-family: var(--serif); font-weight: 600; font-size: 23px; margin-bottom: 2px; }
.cc-wa-strip__sub { font-size: 15px; color: var(--cc-muted); }
.cc-contact { display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-start; }
@media (max-width: 700px) {
  .cc-wa-strip { padding: 18px 16px; }
  .cc-wa-strip .cc-btn--wa { width: 100%; justify-content: center; box-sizing: border-box; }
  .cc-contact { gap: 22px; }
  .cc-contact__aside { max-width: none; }
  .cc-contact__card { padding: 20px 18px; }
  .cc-page { padding-top: 24px; }
  .cc-page__title { font-size: 30px; margin-bottom: 16px; }
}
.cc-contact__main { flex: 1 1 480px; min-width: 300px; }
.cc-contact__lead { font-size: 17px; line-height: 1.65; color: var(--cc-muted); max-width: 56ch; margin: 0 0 26px; }
.cc-contact__aside { flex: 1 1 300px; min-width: 280px; max-width: 380px; display: flex; flex-direction: column; gap: 18px; }
.cc-contact__card {
  background: var(--cc-card); border: 1px solid var(--cc-line-soft); border-radius: 18px;
  padding: 24px; box-shadow: 0 4px 16px rgba(61,46,38,0.06);
}
.cc-contact__card--rose { background: var(--cc-rose); border-color: #EBDCCF; }
.cc-contact__card-title { font-family: var(--serif); font-weight: 600; font-size: 22px; margin-bottom: 8px; }
.cc-contact__card p { margin: 0 0 16px; font-size: 15px; line-height: 1.6; color: var(--cc-muted); }
.cc-contact__card ol { margin: 0; padding-left: 20px; font-size: 15px; color: var(--cc-body-2); line-height: 1.9; }
.cc-contact__card .cc-pill-link { margin-right: 6px; }
.cc-contact__hours { font-size: 13.5px; color: var(--cc-muted-2); font-weight: 600; }

/* Contact Form 7 styling */
.cc-page .wpcf7 form { display: block; }
.cc-f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
@media (max-width: 640px) { .cc-f-grid { grid-template-columns: 1fr; } }
.cc-f-field { display: block; }
.cc-f-field--full { grid-column: 1 / -1; }
.cc-f-field label {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--cc-muted-2); margin-bottom: 6px;
}
.cc-page .wpcf7 input[type="text"], .cc-page .wpcf7 input[type="email"], .cc-page .wpcf7 input[type="tel"],
.cc-page .wpcf7 input[type="date"], .cc-page .wpcf7 select, .cc-page .wpcf7 textarea {
  border: 1.5px solid var(--cc-line-warm); background: var(--cc-card); border-radius: 12px;
  padding: 12px 14px; font-family: var(--sans); font-size: 15px; color: var(--cc-ink);
  width: 100%; max-width: none; box-sizing: border-box; outline: none;
  transition: border-color 0.15s ease;
}
.cc-page .wpcf7 input:focus, .cc-page .wpcf7 select:focus, .cc-page .wpcf7 textarea:focus { border-color: var(--cc-terracotta); }
.cc-page .wpcf7 textarea { min-height: 130px; resize: vertical; }
.cc-page .wpcf7 select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.cc-page .wpcf7 input[type="file"] { font-size: 14px; color: var(--cc-muted); padding: 8px 0; }
.cc-f-hint { font-size: 13px; color: var(--cc-muted-3); margin-top: 4px; }
.cc-page .wpcf7 input[type="submit"] {
  background: #B15B3B; color: #FFF9F2; border: none; border-radius: 99px;
  padding: 15px 32px; font-family: var(--sans); font-weight: 700; font-size: 15px; cursor: pointer;
  box-shadow: 0 6px 18px rgba(184,95,61,0.28); margin-top: 18px;
}
.cc-page .wpcf7 input[type="submit"]:hover { background: var(--cc-terracotta-dark); }
.cc-page .wpcf7 .wpcf7-spinner { margin: 0 0 0 12px; }
.cc-page .wpcf7-not-valid-tip { font-size: 13px; color: #B3402A; margin-top: 4px; }
.cc-page .wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0; padding: 14px 20px; border-radius: 12px; border-width: 1.5px; font-weight: 600;
}
.cc-page .wpcf7 form.sent .wpcf7-response-output { border-color: #93A282; background: var(--cc-sage); color: #4C5840; }
.cc-page .wpcf7 form.invalid .wpcf7-response-output, .cc-page .wpcf7 form.failed .wpcf7-response-output { border-color: #D9A08C; background: #FBF1EB; color: #9C4C2E; }

/* Woo columns clear fix for our flex layout */
.woocommerce .col2-set { display: flex; flex-wrap: wrap; gap: 24px; }
.woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2 { flex: 1 1 320px; float: none; width: auto; }

@media (max-width: 767px) {
  .woocommerce div.product { padding-top: 16px; }
  .woocommerce div.product form.cart .button.single_add_to_cart_button { min-width: 0; width: 100%; }
  .cc-hero { padding-top: 28px; }
  .cc-hero__media { width: 100%; }
  .cc-maker__tag { right: 2%; font-size: 17px; }
}
