/* ==========================================================================
   Advocate Health — Premium Pink Theme
   Bootstrap 5 + custom UI inspired by spa/beauty premium layouts
   ========================================================================== */

:root {
  --ah-pink: #f55f8d;
  --ah-pink-dark: #e04878;
  --ah-pink-light: #ff7aa8;
  --ah-pink-soft: #fff0f5;
  --ah-pink-mist: #ffe4ec;
  --ah-teal: #2ec4b6;
  --ah-teal-dark: #1fa89c;
  --ah-text: #333333;
  --ah-muted: #666666;
  --ah-light: #f8f8f8;
  --ah-white: #ffffff;
  --ah-border: #f0e6ea;
  --ah-shadow: 0 10px 30px rgba(245, 95, 141, 0.12);
  --ah-shadow-lg: 0 20px 50px rgba(245, 95, 141, 0.18);
  --ah-radius: 8px;
  --ah-font-serif: "Playfair Display", Georgia, serif;
  --ah-font-sans: "Poppins", system-ui, sans-serif;
  --ah-transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ah-font-sans);
  color: var(--ah-text);
  background: var(--ah-white);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ah-font-serif);
  font-weight: 700;
  color: var(--ah-text);
  line-height: 1.3;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--ah-pink);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--ah-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.title-ornament::before,
.title-ornament::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--ah-pink);
  opacity: 0.5;
}

.title-ornament i {
  color: var(--ah-pink);
  font-size: 0.85rem;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--ah-font-sans);
  font-weight: 600;
  border-radius: var(--ah-radius);
  padding: 0.7rem 1.6rem;
  transition: all var(--ah-transition);
  letter-spacing: 0.02em;
}

.btn-primary,
.btn-ah {
  background: var(--ah-pink);
  border-color: var(--ah-pink);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-ah:hover,
.btn-ah:focus {
  background: var(--ah-pink-dark);
  border-color: var(--ah-pink-dark);
  color: #fff;
  box-shadow: 0 8px 20px rgba(245, 95, 141, 0.35);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--ah-teal);
  border-color: var(--ah-teal);
  color: #fff;
}

.btn-teal:hover {
  background: var(--ah-teal-dark);
  border-color: var(--ah-teal-dark);
  color: #fff;
}

.btn-outline-ah {
  border: 2px solid var(--ah-pink);
  color: var(--ah-pink);
  background: transparent;
}

.btn-outline-ah:hover {
  background: var(--ah-pink);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--ah-pink);
  border: none;
}

.btn-white:hover {
  background: var(--ah-pink-soft);
  color: var(--ah-pink-dark);
}

/* ---------- Top bar & Header ---------- */
.top-bar {
  background: var(--ah-pink);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.45rem 0;
}

.top-bar a {
  color: #fff;
  opacity: 0.95;
  margin-left: 0.65rem;
  font-size: 0.9rem;
}

.top-bar a:hover {
  opacity: 1;
  color: #fff;
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow var(--ah-transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
  padding: 0.6rem 0;
}

.navbar-brand {
  padding: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand img,
.brand-logo {
  height: 64px;
  width: auto;
}

.nav-center-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}

.navbar-nav .nav-link {
  color: var(--ah-text);
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.6rem 0.85rem !important;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--ah-pink);
}

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

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

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

.dropdown-item {
  font-size: 0.88rem;
  padding: 0.55rem 1.2rem;
  color: var(--ah-text);
}

.dropdown-item:hover {
  background: var(--ah-pink-soft);
  color: var(--ah-pink);
}

.cart-link {
  position: relative;
  color: var(--ah-text) !important;
  font-size: 1.15rem;
  padding: 0.5rem 0.75rem !important;
}

.cart-link::after {
  display: none !important;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--ah-pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--ah-font-sans);
}

.navbar-toggler {
  border-color: var(--ah-pink-mist);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 95, 141, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f55f8d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-bar .brand-logo {
  height: 52px;
}

.mobile-bar .cart-link {
  font-size: 1.2rem;
  padding: 0.35rem !important;
}

/* ---------- Page Hero / Banner ---------- */
.page-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 95, 141, 0.78), rgba(224, 72, 120, 0.72));
}

.page-banner .banner-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 1rem;
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.breadcrumb-nav {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: #fff;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

/* ---------- Home Hero ---------- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(40, 20, 30, 0.55) 0%, rgba(245, 95, 141, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.hero-content .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #ffe4ec;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  margin-bottom: 1.25rem;
  max-width: 620px;
}

.hero-content p {
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-book-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--ah-shadow-lg);
  color: var(--ah-text);
}

.hero-book-card h3 {
  font-family: var(--ah-font-serif);
  color: var(--ah-pink);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
}

.section-soft {
  background: var(--ah-pink-soft);
}

.section-mist {
  background: var(--ah-pink-mist);
}

.bg-pattern {
  background-color: var(--ah-pink-soft);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(245, 95, 141, 0.06) 0, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 122, 168, 0.08) 0, transparent 45%);
}

/* ---------- About / Stats ---------- */
.stat-box {
  background: var(--ah-pink);
  color: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--ah-shadow);
  height: 100%;
}

.stat-box .num {
  font-family: var(--ah-font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1.1;
}

.stat-box span {
  font-size: 0.95rem;
  opacity: 0.95;
}

.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ah-shadow);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

/* ---------- Service Cards ---------- */
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--ah-transition), box-shadow var(--ah-transition);
  height: 100%;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ah-shadow-lg);
}

.service-card .img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .img-wrap img {
  transform: scale(1.08);
}

.service-card .icon-btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ah-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(245, 95, 141, 0.4);
  z-index: 2;
  border: 3px solid #fff;
}

.service-card .card-body {
  padding: 2.5rem 1.5rem 1.75rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.service-card h3 a {
  color: var(--ah-text);
}

.service-card h3 a:hover {
  color: var(--ah-pink);
}

.service-card p {
  color: var(--ah-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.service-icon-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.service-icon-item .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--ah-pink-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ah-pink);
  font-size: 1.6rem;
  transition: all var(--ah-transition);
}

.service-icon-item:hover .icon {
  background: var(--ah-pink);
  color: #fff;
  border-color: var(--ah-pink);
}

.service-icon-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-icon-item p {
  color: var(--ah-muted);
  font-size: 0.9rem;
  margin: 0;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform var(--ah-transition);
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card .icon {
  font-size: 2.2rem;
  color: var(--ah-pink);
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.feature-card p {
  color: var(--ah-muted);
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}

/* ---------- Pricing list ---------- */
.price-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--ah-pink-soft);
  padding: 1rem 1.25rem;
  border-radius: var(--ah-radius);
  margin-bottom: 0.85rem;
}

.price-list-item .name {
  font-weight: 600;
  color: var(--ah-text);
}

.price-list-item .price {
  color: var(--ah-teal);
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Product Cards ---------- */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  height: 100%;
  transition: box-shadow var(--ah-transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--ah-shadow);
}

.product-card .img-box {
  background: var(--ah-pink-soft);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.product-card .img-box img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

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

.product-card .sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ah-pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  z-index: 2;
}

.product-card .card-body {
  padding: 1.25rem 1rem 1.5rem;
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.product-card h3 a {
  color: var(--ah-text);
}

.product-card h3 a:hover {
  color: var(--ah-pink);
}

.stars {
  color: #ffc107;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.price-row {
  font-weight: 600;
}

.price-row .old {
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 0.4rem;
  font-size: 0.9rem;
}

.price-row .new {
  color: var(--ah-pink);
  font-size: 1.05rem;
}

.product-actions {
  margin-top: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--ah-transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .product-actions {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Team ---------- */
.team-card {
  text-align: center;
  padding: 1rem;
}

.team-card .avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--ah-pink-mist);
  box-shadow: 0 8px 24px rgba(245, 95, 141, 0.15);
}

.team-card h4 {
  color: var(--ah-pink);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--ah-muted);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.team-card p {
  color: var(--ah-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-section {
  background: var(--ah-pink-mist);
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--ah-shadow);
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-slide .quote {
  color: var(--ah-muted);
  font-size: 1.05rem;
  margin: 1rem 0 1.25rem;
  font-style: italic;
}

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

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

.testimonial-slide .author strong {
  display: block;
  color: var(--ah-pink);
  font-family: var(--ah-font-serif);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(245, 95, 141, 0.35);
  padding: 0;
  cursor: pointer;
}

.testimonial-dots button.active {
  background: var(--ah-pink);
  width: 24px;
  border-radius: 6px;
}

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

.process-step .num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ah-pink);
  color: #fff;
  font-family: var(--ah-font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 16px rgba(245, 95, 141, 0.35);
}

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

.process-step p {
  color: var(--ah-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Blog ---------- */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform var(--ah-transition);
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card .img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.blog-card:hover .img-wrap img {
  transform: scale(1.06);
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--ah-pink);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.blog-card h3 a {
  color: var(--ah-text);
}

.blog-card h3 a:hover {
  color: var(--ah-pink);
}

.blog-card p {
  color: var(--ah-muted);
  font-size: 0.9rem;
}

.read-more {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ah-text);
}

.read-more:hover {
  color: var(--ah-pink);
}

.blog-list-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.blog-list-item .thumb {
  flex: 0 0 280px;
  max-width: 40%;
}

.blog-list-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.blog-list-item .content {
  padding: 1.5rem 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767px) {
  .blog-list-item {
    flex-direction: column;
  }
  .blog-list-item .thumb {
    max-width: 100%;
    flex-basis: auto;
  }
  .blog-list-item .content {
    padding: 1.25rem;
  }
}

/* ---------- Sidebar ---------- */
.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sidebar-widget h4 {
  font-size: 1.15rem;
  color: var(--ah-pink);
  margin-bottom: 1.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--ah-border);
}

.recent-post {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.recent-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.recent-post h5 {
  font-size: 0.9rem;
  font-family: var(--ah-font-sans);
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.recent-post h5 a {
  color: var(--ah-text);
}

.recent-post small {
  color: var(--ah-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.gallery-grid img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
}

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

.cat-list li {
  border-bottom: 1px solid var(--ah-border);
}

.cat-list a {
  display: block;
  padding: 0.55rem 0;
  color: var(--ah-text);
}

.cat-list a:hover {
  color: var(--ah-pink);
  padding-left: 0.35rem;
}

.cat-list a i {
  color: var(--ah-pink);
  margin-right: 0.4rem;
  font-size: 0.7rem;
}

/* ---------- FAQ ---------- */
.accordion-button {
  font-family: var(--ah-font-sans);
  font-weight: 600;
  color: var(--ah-text);
  background: #fff;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--ah-pink);
  background: var(--ah-pink-soft);
}

.accordion-button::after {
  filter: none;
}

.accordion-item {
  border: 1px solid var(--ah-border);
  margin-bottom: 0.75rem;
  border-radius: var(--ah-radius) !important;
  overflow: hidden;
}

/* ---------- CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--ah-pink), var(--ah-pink-dark));
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 1.75rem;
  opacity: 0.95;
}

/* ---------- Instagram strip ---------- */
.insta-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.insta-strip a {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
}

.insta-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.insta-strip a:hover img {
  transform: scale(1.1);
}

.insta-strip a::after {
  content: "\f16d";
  font-family: "Font Awesome 6 Brands";
  position: absolute;
  inset: 0;
  background: rgba(245, 95, 141, 0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--ah-transition);
}

.insta-strip a:hover::after {
  opacity: 1;
}

@media (max-width: 767px) {
  .insta-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--ah-light);
  padding: 2.5rem 0;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-item i {
  font-size: 1.75rem;
  color: var(--ah-pink);
}

.trust-item h5 {
  font-family: var(--ah-font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trust-item p {
  margin: 0;
  color: var(--ah-muted);
  font-size: 0.88rem;
}

/* ---------- Detail pages ---------- */
.detail-gallery img {
  border-radius: 12px;
  width: 100%;
  box-shadow: var(--ah-shadow);
}

.detail-meta .price {
  font-size: 1.75rem;
  color: var(--ah-pink);
  font-weight: 700;
}

.feature-checks {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-checks li {
  padding: 0.4rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--ah-muted);
}

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

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ah-border);
  border-radius: var(--ah-radius);
  overflow: hidden;
}

.qty-control button {
  border: none;
  background: var(--ah-pink-soft);
  width: 40px;
  height: 42px;
  color: var(--ah-pink);
}

.qty-control input {
  width: 56px;
  border: none;
  text-align: center;
  height: 42px;
}

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

.cart-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--ah-pink-soft);
}

.cart-qty {
  max-width: 80px;
}

.cart-summary {
  background: var(--ah-pink-soft);
  border-radius: 12px;
  padding: 1.75rem;
}

.checkout-success {
  background: #fff;
  border: 2px solid var(--ah-teal);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
}

.checkout-success i {
  font-size: 3rem;
  color: var(--ah-teal);
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  #cart-table thead {
    display: none;
  }
  #cart-table tr {
    display: block;
    margin-bottom: 1.25rem;
    border: 1px solid var(--ah-border);
    border-radius: 8px;
    padding: 0.75rem;
  }
  #cart-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 0.5rem 0;
  }
  #cart-table td::before {
    content: attr(data-label);
    font-weight: 600;
    margin-right: 1rem;
  }
}

/* ---------- Forms ---------- */
.form-control,
.form-select {
  border-color: var(--ah-border);
  padding: 0.7rem 1rem;
  border-radius: var(--ah-radius);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ah-pink);
  box-shadow: 0 0 0 0.2rem rgba(245, 95, 141, 0.2);
}

.form-label {
  font-weight: 500;
  font-size: 0.9rem;
}

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

.is-invalid {
  border-color: #dc3545 !important;
}

.is-valid {
  border-color: var(--ah-teal) !important;
}

.contact-info-card {
  background: var(--ah-pink-soft);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ah-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ah-pink-soft);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(245, 95, 141, 0.12) 0%, transparent 45%);
  padding-top: 4.5rem;
  color: var(--ah-text);
}

.site-footer .footer-logo {
  height: 70px;
  margin-bottom: 1rem;
}

.site-footer h5 {
  font-family: var(--ah-font-serif);
  color: var(--ah-pink);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.site-footer p {
  color: var(--ah-muted);
  font-size: 0.92rem;
}

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

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

.footer-links a {
  color: var(--ah-muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--ah-pink);
  padding-left: 4px;
}

.footer-links a i {
  color: var(--ah-pink);
  font-size: 0.65rem;
  margin-right: 0.4rem;
}

.newsletter-form .form-control {
  border-radius: var(--ah-radius) 0 0 var(--ah-radius);
}

.newsletter-form .btn {
  border-radius: 0 var(--ah-radius) var(--ah-radius) 0;
}

.social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ah-pink);
  color: #fff;
  margin-right: 0.4rem;
  margin-top: 0.75rem;
}

.social-links a:hover {
  background: var(--ah-pink-dark);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  background: #fff;
  padding: 1rem 0;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--ah-muted);
}

.footer-bottom a {
  color: var(--ah-muted);
  margin-left: 0.75rem;
}

.footer-bottom a:hover {
  color: var(--ah-pink);
}

/* ---------- Toast ---------- */
.ah-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ah-text);
  color: #fff;
  padding: 0.9rem 1.35rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.35s ease;
  max-width: 320px;
  font-size: 0.9rem;
}

.ah-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Legal pages ---------- */
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--ah-pink);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--ah-muted);
}

/* ---------- Pagination ---------- */
.pagination .page-link {
  color: var(--ah-pink);
  border-color: var(--ah-border);
}

.pagination .page-item.active .page-link {
  background: var(--ah-pink);
  border-color: var(--ah-pink);
}

/* ---------- Utilities ---------- */
.text-teal { color: var(--ah-teal) !important; }
.bg-pink { background: var(--ah-pink) !important; }
.bg-pink-soft { background: var(--ah-pink-soft) !important; }

.related-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Desktop nav: logo centered with links flanking */
@media (min-width: 992px) {
  .navbar-desk {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
  }

  .nav-left {
    justify-content: flex-end;
  }

  .nav-right {
    justify-content: flex-start;
  }

  .nav-logo-center {
    padding: 0 1.5rem;
  }
}

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

  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }

  .section {
    padding: 3.5rem 0;
  }
}
