/* ============================================================
   Calgary Health Show — Premium Theme
   Pink palette · BeautyZone-inspired layout · Original code
   ============================================================ */

:root {
  --pink-50: #fff7f9;
  --pink-100: #fff0f4;
  --pink-150: #fde8ef;
  --pink-200: #f9d0dc;
  --pink-300: #f0a8bc;
  --pink-400: #e0789a;
  --pink-500: #d45a82;
  --pink-600: #c44f74;
  --pink-700: #a33d5c;
  --pink-800: #7a2f47;
  --rose-gold: #c9928a;
  --cream: #fffafb;
  --white: #ffffff;
  --gray-100: #f6f4f5;
  --gray-200: #ebe6e8;
  --gray-400: #b0a4a9;
  --gray-600: #6e6066;
  --gray-800: #3d2c32;
  --gray-900: #2a1f24;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Lato", "Segoe UI", sans-serif;
  --font-script: "Great Vibes", cursive;
  --shadow-sm: 0 4px 18px rgba(196, 79, 116, 0.08);
  --shadow-md: 0 10px 40px rgba(196, 79, 116, 0.12);
  --shadow-lg: 0 20px 60px rgba(61, 44, 50, 0.12);
  --radius: 0;
  --transition: 0.35s ease;
  --header-h: 90px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pink-600);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--pink-700);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--gray-800);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.1rem;
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

.bg-pink-soft {
  background: var(--pink-50);
}

.bg-pink-tint {
  background: var(--pink-100);
}

.bg-cream {
  background: var(--cream);
}

/* ---------- Typography helpers ---------- */
.script-title {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--pink-500);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.35rem;
  display: block;
}

.section-heading {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.section-heading.center,
.text-center .section-heading {
  text-align: center;
}

.lead-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
}

.text-center .lead-text {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: var(--radius);
  padding: 0.85rem 1.85rem;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary,
.btn-chs {
  background: var(--pink-500);
  border-color: var(--pink-500);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-chs:hover,
.btn-chs:focus {
  background: var(--pink-700);
  border-color: var(--pink-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-outline-chs {
  background: transparent;
  border-color: var(--pink-500);
  color: var(--pink-600);
}

.btn-outline-chs:hover,
.btn-outline-chs:focus {
  background: var(--pink-500);
  color: var(--white);
}

.btn-dark-chs {
  background: var(--gray-800);
  border-color: var(--gray-800);
  color: var(--white);
}

.btn-dark-chs:hover {
  background: var(--pink-600);
  border-color: var(--pink-600);
  color: var(--white);
}

.btn-sm-chs {
  padding: 0.55rem 1.2rem;
  font-size: 0.72rem;
}

.link-more {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-600);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.link-more:hover {
  color: var(--pink-800);
  gap: 0.65rem;
}

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  padding: 0;
  transition: all 0.4s ease;
}

.site-header.is-sticky {
  position: fixed;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  animation: slideDown 0.35s ease;
}

.site-header.is-sticky .navbar {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.site-header .navbar {
  padding: 1.1rem 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand img,
.brand-logo {
  height: 58px;
  width: auto;
  transition: transform var(--transition);
}

.navbar-brand:hover img {
  transform: scale(1.04);
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-800);
  letter-spacing: 0.02em;
  text-transform: none;
}

.brand-text em {
  font-style: normal;
  display: block;
  font-size: 0.92em;
  color: var(--pink-600);
  font-weight: 600;
}

.brand-text-light {
  color: #fff;
}

.brand-text-light em {
  color: var(--pink-300);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.navbar-nav .nav-link {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-800) !important;
  padding: 0.5rem 0.95rem !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--pink-500);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link.active {
  color: var(--pink-600) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: 1rem;
}

.header-actions a {
  color: var(--gray-800);
  font-size: 1.05rem;
  position: relative;
}

.header-actions a:hover {
  color: var(--pink-600);
}

.cart-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--pink-500);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
  padding: 0.25rem;
}

.navbar-toggler-icon {
  background-image: none;
  width: 26px;
  height: 2px;
  background: var(--gray-800);
  position: relative;
  display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--gray-800);
}

.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after { top: 7px; }

.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
  min-width: 220px;
}

.dropdown-item {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.25rem;
  color: var(--gray-700, var(--gray-600));
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--pink-100);
  color: var(--pink-700);
}

/* Inner pages: solid header offset */
body.has-banner .site-header {
  position: absolute;
}

body.inner-page {
  padding-top: 0;
}

body.inner-page .site-header {
  position: absolute;
}

body.inner-page .site-header.is-sticky {
  position: fixed;
}

/* ---------- Page Banner ---------- */
.page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--pink-100) center/cover no-repeat;
  padding: 140px 0 80px;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 240, 244, 0.92), rgba(253, 232, 239, 0.85));
}

.page-banner .banner-content {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.breadcrumb {
  justify-content: center;
  background: transparent;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--gray-400);
}

.breadcrumb a { color: var(--pink-600); }
.breadcrumb .active { color: var(--gray-600); }

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(240, 168, 188, 0.35), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(249, 208, 220, 0.45), transparent 45%),
    linear-gradient(180deg, var(--pink-100) 0%, var(--cream) 55%, var(--white) 100%);
  padding-top: var(--header-h);
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  animation: floatSoft 7s ease-in-out infinite;
}

.hero-decor.leaf-1 {
  width: 90px;
  top: 18%;
  left: 8%;
  animation-delay: 0s;
}

.hero-decor.leaf-2 {
  width: 70px;
  top: 55%;
  left: 12%;
  animation-delay: 1.5s;
}

.hero-decor.leaf-3 {
  width: 85px;
  top: 22%;
  right: 10%;
  animation-delay: 0.8s;
}

.hero-decor.leaf-4 {
  width: 60px;
  bottom: 18%;
  right: 14%;
  animation-delay: 2s;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 40px 0 60px;
}

.hero-figure {
  position: relative;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.hero-figure img {
  width: 100%;
  border-radius: 50% 50% 48% 52% / 45% 48% 52% 55%;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  max-height: 560px;
  margin: 0 auto;
}

.hero-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
  pointer-events: none;
}

.hero-title span {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  color: rgba(228, 120, 154, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 4px 30px rgba(255, 255, 255, 0.5);
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--pink-600);
  margin-bottom: 0.25rem;
}

/* ---------- About split ---------- */
.about-box {
  background: var(--pink-150);
  padding: 3.5rem 2.75rem;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-box.fill {
  height: 100%;
}

.contact-form-panel {
  height: auto;
  position: relative;
  z-index: 1;
}

.about-box::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(196, 79, 116, 0.25);
  pointer-events: none;
}

.about-box h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0.5rem 0 1.25rem;
}

.about-box .script-title {
  font-size: 2rem;
}

/* ---------- Video / media block ---------- */
.media-play-block {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.media-play-block img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-play-block:hover img {
  transform: scale(1.04);
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--pink-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: none;
}

.play-btn:hover {
  background: var(--pink-500);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.play-btn::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ---------- Service cards ---------- */
.service-card {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  background: transparent;
  transition: all var(--transition);
  height: 100%;
  position: relative;
}

.service-card.featured {
  background: var(--pink-50);
  box-shadow: var(--shadow-md);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-thumb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .script-title {
  font-size: 1.65rem;
  margin-bottom: 0.15rem;
}

.service-card h4 {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* ---------- Why choose / icon features ---------- */
.feature-icon-box {
  text-align: center;
  padding: 1.5rem 1rem;
}

.feature-icon-box .icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition);
}

.feature-icon-box:hover .icon-wrap {
  background: var(--pink-500);
  color: #fff;
  transform: translateY(-4px);
}

.feature-icon-box h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Product category filters */
.product-filter {
  background: var(--white) !important;
  color: var(--gray-800) !important;
  border: 1px solid var(--pink-200) !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.15rem !important;
}

.product-filter.active {
  background: var(--pink-100) !important;
  color: var(--pink-700) !important;
  border-color: var(--pink-300) !important;
}

.product-filters .badge {
  color: var(--gray-800);
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--pink-200);
  transform: translateY(-6px);
}

.product-media {
  position: relative;
  overflow: hidden;
  background: var(--pink-50);
  aspect-ratio: 1;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink-500);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
}

.product-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.product-body h4 a {
  color: var(--gray-800);
}

.product-body h4 a:hover {
  color: var(--pink-600);
}

.product-price {
  color: var(--pink-600);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.product-actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ---------- Pricing / membership ---------- */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  text-align: center;
  padding: 0 0 2rem;
  height: 100%;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.pricing-card.featured {
  border-color: var(--pink-400);
  box-shadow: var(--shadow-md);
}

.pricing-head {
  background: var(--pink-100);
  padding: 1.75rem 1.25rem 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-head {
  background: var(--pink-500);
  color: #fff;
}

.pricing-card.featured .pricing-head .script-title {
  color: #fff;
}

.pricing-card.featured .pricing-head h4,
.pricing-card.featured .pricing-head .price {
  color: #fff;
}

.pricing-head .script-title {
  font-size: 1.75rem;
}

.pricing-head h4 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0.25rem 0 0.75rem;
}

.pricing-head .price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1;
}

.pricing-head .price small {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: inherit;
  opacity: 0.75;
}

.pricing-features {
  list-style: none;
  padding: 1.25rem 1.5rem 1.5rem;
  margin: 0;
  text-align: left;
  flex: 1;
}

.pricing-features li {
  padding: 0.45rem 0;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.pricing-features li i {
  color: var(--pink-500);
  margin-top: 0.3rem;
}

.pricing-card .btn {
  margin: 0 1.5rem;
}

/* ---------- Stats ---------- */
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--pink-600);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item .stat-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--gray-600);
}

.stats-band {
  background: linear-gradient(120deg, var(--pink-500), var(--pink-700));
  color: #fff;
}

.stats-band .stat-num,
.stats-band .stat-label {
  color: #fff;
}

/* ---------- Process steps ---------- */
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-600);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.15rem;
  border: 2px solid var(--pink-300);
}

.process-step h5 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border-top: 3px solid var(--pink-400);
}

.testimonial-card .stars {
  color: var(--pink-500);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  color: var(--gray-800);
  font-family: var(--font-serif);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ---------- Blog cards ---------- */
.blog-card {
  height: 100%;
}

.blog-card .blog-media {
  overflow: hidden;
  margin-bottom: 1.15rem;
}

.blog-card .blog-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-media img {
  transform: scale(1.05);
}

.blog-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-500);
  margin-bottom: 0.5rem;
}

.blog-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.blog-card h4 a {
  color: var(--gray-800);
}

.blog-card h4 a:hover {
  color: var(--pink-600);
}

/* ---------- FAQ ---------- */
.accordion-chs .accordion-item {
  border: none;
  border-bottom: 1px solid var(--gray-200);
  background: transparent;
  margin-bottom: 0;
}

.accordion-chs .accordion-button {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gray-800);
  background: transparent;
  box-shadow: none !important;
  padding: 1.25rem 0;
}

.accordion-chs .accordion-button:not(.collapsed) {
  color: var(--pink-600);
  background: transparent;
}

.accordion-chs .accordion-button::after {
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--pink-500);
  width: auto;
  height: auto;
}

.accordion-chs .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.accordion-chs .accordion-body {
  padding: 0 0 1.35rem;
  color: var(--gray-600);
}

/* ---------- Newsletter ---------- */
.newsletter-bar {
  background: var(--pink-50);
  padding: 60px 0;
  text-align: center;
}

.newsletter-bar h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  display: flex;
  gap: 0;
}

.newsletter-form .form-control {
  border-radius: 0;
  border: 1px solid var(--pink-200);
  padding: 0.85rem 1.1rem;
  height: auto;
}

.newsletter-form .form-control:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 0.2rem rgba(212, 90, 130, 0.15);
}

.newsletter-form .btn {
  border-radius: 0;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-row a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pink-200);
  color: var(--gray-600);
  transition: all var(--transition);
}

.social-row a:hover {
  background: var(--pink-500);
  border-color: var(--pink-500);
  color: #fff;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.site-footer h5 {
  color: #fff;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.35rem;
}

.site-footer .footer-logo {
  height: 56px;
  width: 56px;
  margin-bottom: 0;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  flex-shrink: 0;
}

.site-footer p {
  font-size: 0.92rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--pink-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding: 22px 0;
  font-size: 0.85rem;
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-legal a:hover {
  color: var(--pink-300);
}

.footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 0;
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--pink-400);
  box-shadow: none;
  color: #fff;
}

/* ---------- Forms ---------- */
.form-label {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-800);
}

.form-control,
.form-select {
  border-radius: 0;
  border: 1px solid var(--gray-200);
  padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 0.2rem rgba(212, 90, 130, 0.15);
}

.invalid-feedback,
.valid-feedback {
  font-size: 0.82rem;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
}

.alert-chs {
  border-radius: 0;
  border: none;
  background: var(--pink-100);
  color: var(--pink-800);
  padding: 1rem 1.25rem;
}

.alert-success-chs {
  background: #e8f6ef;
  color: #1e6b45;
}

/* ---------- Cart ---------- */
.cart-table {
  width: 100%;
}

.cart-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--pink-200);
  padding: 0.85rem;
  color: var(--gray-800);
}

.cart-table td {
  vertical-align: middle;
  padding: 1.15rem 0.85rem;
  border-bottom: 1px solid var(--gray-200);
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.qty-input {
  width: 70px;
  text-align: center;
  border-radius: 0;
}

.cart-summary {
  background: var(--pink-50);
  padding: 2rem;
  border: 1px solid var(--pink-200);
}

.cart-summary h4 {
  margin-bottom: 1.25rem;
}

.cart-summary .row-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.cart-summary .total-line {
  border-top: 1px solid var(--pink-200);
  padding-top: 0.85rem;
  margin-top: 0.85rem;
  font-size: 1.15rem;
  color: var(--gray-800);
}

/* ---------- Detail pages ---------- */
.detail-gallery img {
  width: 100%;
  object-fit: cover;
}

.detail-meta {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.detail-meta li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  align-items: flex-start;
}

.detail-meta li i {
  color: var(--pink-500);
  margin-top: 0.3rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.benefit-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--pink-500);
}

.related-section {
  background: var(--pink-50);
}

.content-block h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-block h3:first-child {
  margin-top: 0;
}

/* ---------- Policy pages ---------- */
.policy-content h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.policy-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

.policy-content ul {
  margin-bottom: 1.25rem;
}

/* ---------- Utilities ---------- */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rounded-circle-img {
  border-radius: 50%;
  object-fit: cover;
}

.shadow-chs {
  box-shadow: var(--shadow-md);
}

.text-pink {
  color: var(--pink-600) !important;
}

.bg-overlay-soft {
  position: relative;
}

.bg-overlay-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 247, 249, 0.55);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  background: var(--pink-500);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1040;
  border: none;
  transition: all var(--transition);
}

.back-to-top:hover {
  background: var(--pink-700);
  color: #fff;
}

.back-to-top.show {
  display: flex;
}

/* Toast-like success */
.chs-toast {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 1090;
  background: var(--gray-800);
  color: #fff;
  padding: 0.9rem 1.25rem;
  box-shadow: var(--shadow-md);
  transform: translateX(120%);
  transition: transform 0.35s ease;
  max-width: 320px;
  font-size: 0.9rem;
}

.chs-toast.show {
  transform: translateX(0);
}

/* Modal video */
.modal-content {
  border-radius: 0;
  border: none;
}

.ratio iframe {
  border: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    margin-top: 0.75rem;
    box-shadow: var(--shadow-md);
  }

  .header-actions {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-figure {
    max-width: 360px;
  }

  .section-pad {
    padding: 70px 0;
  }

  .about-box {
    margin-top: 2rem;
    padding: 2.5rem 1.75rem;
  }

  .media-play-block img {
    height: 280px;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand img,
  .brand-logo {
    height: 46px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero-title span {
    font-size: 2.6rem;
  }

  .page-banner {
    min-height: 240px;
    padding: 120px 0 60px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table,
  .cart-table tbody,
  .cart-table tr,
  .cart-table td {
    display: block;
    width: 100%;
  }

  .cart-table tr {
    margin-bottom: 1.25rem;
    border: 1px solid var(--gray-200);
    padding: 0.75rem;
  }

  .cart-table td {
    border: none;
    padding: 0.4rem 0;
  }

  .cart-table td::before {
    content: attr(data-label);
    font-weight: 700;
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--pink-600);
    margin-bottom: 0.2rem;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
