:root {
  --primary: #ff91b8;
  --primary-dark: #ff6fa2;
  --primary-soft: #f4ecef;
  --secondary: #2d3239;
  --text: #333333;
  --muted: #767676;
  --border: #e9e9e9;
  --white: #ffffff;
  --footer-bg: #f7f7f7;
  --bar: #2d3239;
  --shadow: 0 8px 30px rgba(45, 50, 57, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Poppins, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: .25s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
.container { width: min(1170px, calc(100% - 40px)); margin: 0 auto; }
.container-wide { width: min(1320px, calc(100% - 24px)); margin: 0 auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Slab", serif;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.3;
}
.section { padding: 90px 0; }
.section-sm { padding: 70px 0; }
.bg-soft { background: var(--primary-soft); }
.bg-light { background: #fafafa; }
.text-center { text-align: center; }
.pink { color: var(--primary) !important; }
.muted { color: var(--muted); }

.site-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: .25s;
}
.site-btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.site-btn.ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.site-btn.ghost:hover { background: #fff; color: var(--primary); }
.site-btn.dark {
  background: var(--secondary);
  border-color: var(--secondary);
}
.site-btn.dark:hover { background: var(--primary); border-color: var(--primary); }
.site-btn.block { width: 100%; text-align: center; border-radius: 0; }

.section-head { margin-bottom: 50px; }
.section-head h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); max-width: 640px; margin: 0 auto; }
.sep {
  width: 70px;
  height: 3px;
  background: var(--primary);
  margin: 14px auto 0;
}

/* Header */
.site-header {
  position: relative;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.site-header.sticky {
  position: sticky;
  top: 0;
  animation: drop .35s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
@keyframes drop { from { transform: translateY(-20px); opacity: 0; } to { transform: none; opacity: 1; } }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
}
.logo img { width: 58px; height: 58px; object-fit: contain; }
.logo-text { line-height: 1.15; }
.logo-text strong {
  display: block;
  font-family: "Roboto Slab", serif;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: .2px;
}
.logo-text span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.nav-wrap { display: flex; align-items: center; gap: 6px; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  color: var(--secondary);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 14px;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--primary);
}
.icon-btn {
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  color: var(--secondary);
  cursor: pointer;
  font-size: 16px;
  position: relative;
}
.icon-btn:hover { color: var(--primary); }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.menu-toggle { display: none; font-size: 22px; }

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08) 40%, rgba(255,255,255,.35));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 16px;
}
.hero-content h1 {
  font-size: 64px;
  letter-spacing: 4px;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(255,255,255,.6);
}

.page-hero {
  min-height: 380px;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.28);
}
.page-hero-inner { position: relative; z-index: 2; text-align: center; padding: 50px 16px; }
.page-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: var(--secondary);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumb a { color: var(--primary); }
.crumb-bar {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 13px;
}
.crumb-bar a { color: var(--primary); }
.crumb-bar span { color: #fff; }

/* Experience */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 40px;
  align-items: center;
}
.exp-col h3 { color: var(--primary); font-size: 28px; margin-bottom: 14px; }
.exp-col p { color: var(--muted); margin-bottom: 18px; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--text);
}
.check-list i {
  color: #fff;
  background: var(--primary);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}
.exp-photo {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.exp-photo img { width: 100%; height: 520px; object-fit: cover; }

/* Split CTA */
.split-cta { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.split-cta .media { background: center/cover no-repeat; min-height: 360px; }
.split-cta .copy {
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  text-align: center;
}
.split-cta .copy h2 { color: #fff; font-size: 34px; margin-bottom: 16px; }
.split-cta .copy p { color: rgba(255,255,255,.92); margin-bottom: 26px; max-width: 460px; }

/* Classes */
.class-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.class-card { text-align: center; }
.class-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  background: #f3f3f3;
  margin-bottom: 16px;
}
.class-card h4 { font-size: 18px; margin-bottom: 6px; }
.class-card span { color: var(--primary); font-size: 13px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--border);
  text-align: center;
  background: #fff;
  overflow: hidden;
}
.price-card .top {
  background: var(--secondary);
  color: #fff;
  padding: 28px 16px 18px;
}
.price-card .top small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  opacity: .85;
}
.price-card .top h3 { color: #fff; font-size: 22px; margin: 6px 0 10px; text-transform: uppercase; }
.price-card .top .amount { font-size: 42px; font-weight: 700; }
.price-card ul { padding: 28px 22px; }
.price-card ul li {
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid #f1f1f1;
}
.price-card ul li:last-child { border: 0; }
.price-card ul i { color: var(--primary); margin-right: 8px; }
.price-card .bottom { padding: 0 0 0; }
.price-card.featured {
  transform: scale(1.04);
  box-shadow: var(--shadow);
}
.price-card.featured .top { background: var(--primary); }
.price-card.featured .site-btn { background: var(--primary); border-color: var(--primary); }

/* Testimonials */
.testimonials {
  background: var(--primary);
  color: #fff;
  position: relative;
}
.testimonials h2 { color: #fff; }
.testimonials .sep { background: #fff; }
.testimonial-slide { max-width: 820px; margin: 0 auto; text-align: center; }
.testimonial-slide img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 22px;
  border: 4px solid rgba(255,255,255,.4);
}
.testimonial-slide p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 18px;
}
.testimonial-slide h4 { color: #fff; font-size: 16px; font-family: Poppins, sans-serif; }
.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: .8;
}
.testi-nav.prev { left: 30px; }
.testi-nav.next { right: 30px; }
.quote-mark { font-size: 48px; opacity: .5; margin-top: 10px; }

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card { background: #fff; }
.news-card .thumb { position: relative; overflow: hidden; }
.news-card img { width: 100%; height: 230px; object-fit: cover; transition: .4s; }
.news-card:hover img { transform: scale(1.05); }
.date-badge {
  position: absolute;
  left: 12px; top: 12px;
  background: var(--primary);
  color: #fff;
  width: 58px;
  text-align: center;
  padding: 8px 4px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}
.news-card .body { padding: 20px 8px 0; }
.news-card h3 { font-size: 20px; margin-bottom: 8px; }
.meta { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.meta i { color: var(--primary); margin-right: 4px; }
.read-more { font-weight: 600; font-size: 13px; letter-spacing: .6px; }

/* Services about */
.awesome-grid {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 30px;
  align-items: center;
}
.service-item { display: flex; gap: 16px; margin-bottom: 34px; }
.service-item.right { flex-direction: row-reverse; text-align: right; }
.service-item i {
  width: 54px; height: 54px;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.service-item h4 { margin-bottom: 6px; font-size: 18px; }
.service-item p { color: var(--muted); font-size: 14px; }
.awesome-photo img { width: 100%; height: 520px; object-fit: cover; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat i { font-size: 36px; color: var(--primary); margin-bottom: 10px; }
.stat .num { font-size: 36px; font-weight: 700; color: var(--secondary); }
.stat span { display: block; color: var(--muted); }

/* Gallery strip */
.gallery-strip { display: grid; grid-template-columns: repeat(8, 1fr); }
.gallery-strip img { width: 100%; height: 140px; object-fit: cover; }

/* Service boxes */
.services-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}
.services-layout .side img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.service-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.sbox {
  border: 1px solid var(--border);
  padding: 28px 22px;
  background: #fff;
  transition: .25s;
}
.sbox:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.sbox .ico {
  width: 58px; height: 58px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.sbox h4 { font-size: 16px; text-transform: uppercase; margin-bottom: 8px; }
.sbox p { color: var(--muted); font-size: 14px; }

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 30px;
}
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: Poppins, sans-serif;
}
.accordion-btn.active { color: var(--primary); }
.accordion-body { display: none; padding: 0 0 16px; color: var(--muted); }
.accordion-body.open { display: block; }
.side-card {
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 18px;
  background: #fff;
}
.side-card .ico {
  width: 54px; height: 54px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* Shop */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  border: 1px solid var(--border);
  background: #fff;
  text-align: center;
  padding: 18px 16px 22px;
  transition: .25s;
}
.product-card:hover { box-shadow: var(--shadow); }
.product-card img { width: 100%; height: 220px; object-fit: cover; margin-bottom: 14px; }
.product-card h3 { font-size: 16px; text-transform: uppercase; margin-bottom: 6px; }
.product-card .price { font-weight: 700; margin-bottom: 14px; }
.product-card .site-btn { border-radius: 4px; padding: 10px 18px; }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.product-detail img { width: 100%; }
.product-info h2 { font-size: 32px; margin-bottom: 8px; }
.product-info .price { font-size: 28px; margin-bottom: 16px; }
.product-info p { color: var(--muted); margin-bottom: 18px; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 22px; }
.spec-table td { border: 1px solid var(--border); padding: 10px 14px; }
.spec-table td:first-child { font-weight: 600; width: 42%; background: #fafafa; }
.qty-row { display: flex; gap: 12px; align-items: center; }
.qty-box { display: flex; border: 1px solid var(--border); }
.qty-box button {
  width: 40px; height: 44px; border: 0; background: #f7f7f7; cursor: pointer; font-size: 18px;
}
.qty-box input {
  width: 54px; border: 0; text-align: center; font-size: 16px;
}

.tabs { margin-top: 50px; }
.tab-nav { display: flex; gap: 8px; border-bottom: 1px solid var(--border); }
.tab-nav button {
  background: none;
  border: 0;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  color: var(--secondary);
  border-bottom: 2px solid transparent;
  font-family: Poppins, sans-serif;
}
.tab-nav button.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-pane { display: none; padding: 24px 0; color: var(--muted); }
.tab-pane.active { display: block; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td {
  border-bottom: 1px solid var(--border);
  padding: 16px 10px;
  text-align: left;
}
.cart-table img { width: 72px; height: 72px; object-fit: cover; }
.cart-empty { padding: 40px; text-align: center; color: var(--muted); }
.cart-summary {
  margin-top: 28px;
  max-width: 380px;
  margin-left: auto;
  border: 1px solid var(--border);
  padding: 22px;
}
.success-box {
  display: none;
  background: #f0fff4;
  border: 1px solid #b7ebc6;
  color: #1e7a3a;
  padding: 18px;
  margin-top: 18px;
  border-radius: 4px;
}
.error { color: #d93025; font-size: 12px; margin-top: 4px; display: none; }
.field.error-field input, .field.error-field textarea, .field.error-field select {
  border-color: #d93025 !important;
}

/* Blog */
.blog-layout { display: grid; grid-template-columns: 1.7fr 0.8fr; gap: 40px; }
.blog-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.blog-item .thumb { position: relative; }
.blog-item img { width: 100%; height: 200px; object-fit: cover; }
.blog-item h3 { font-size: 22px; margin-bottom: 8px; }
.blog-item p { color: var(--muted); margin: 10px 0 14px; }
.tags { font-size: 12px; color: var(--muted); }
.widget { margin-bottom: 32px; }
.widget h4 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}
.widget h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 2px;
  background: var(--primary);
}
.search-widget { display: flex; }
.search-widget input {
  flex: 1;
  border: 1px solid var(--border);
  padding: 10px 12px;
  outline: none;
}
.search-widget button {
  background: var(--primary);
  color: #fff;
  border: 0;
  width: 46px;
  cursor: pointer;
}
.mini-post { display: flex; gap: 12px; margin-bottom: 14px; }
.mini-post img { width: 70px; height: 70px; object-fit: cover; }
.mini-post h5 { font-size: 14px; font-family: Poppins, sans-serif; }
.cat-list li { padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; }
.cat-list a { color: var(--secondary); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  border: 1px solid var(--border);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 12px;
}
.widget-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.widget-gallery img { width: 100%; height: 70px; object-fit: cover; }
.pagination { display: flex; gap: 8px; margin-top: 10px; }
.pagination a, .pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--secondary);
}
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }

.article h1 { font-size: 34px; margin-bottom: 12px; }
.article p { color: var(--muted); margin-bottom: 16px; }
.article h2 { font-size: 24px; margin: 28px 0 12px; color: var(--primary); }
.article h3 { font-size: 20px; margin: 22px 0 10px; }
.article ul, .article ol { margin: 0 0 16px 22px; color: var(--muted); }
.article li { margin-bottom: 8px; list-style: disc; }
.article ol li { list-style: decimal; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 28px;
}
.contact-box h3 { margin-bottom: 12px; }
.contact-row { display: flex; gap: 12px; margin: 16px 0; }
.contact-row i {
  width: 44px; height: 44px;
  background: #f3f3f3;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials { display: flex; gap: 8px; margin-top: 16px; }
.socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
}
.socials .fb { background: #3b5998; }
.socials .tw { background: #1da1f2; }
.socials .li { background: #0077b5; }
.socials .pi { background: #bd081c; }
.socials .ig { background: #e4405f; }
.form-card input, .form-card textarea, .form-card select,
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--border);
  background: #f7f7f7;
  padding: 12px 14px;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  outline: none;
}
.form-card textarea, .field textarea { min-height: 140px; resize: vertical; }
.field { margin-bottom: 14px; }
.form-msg {
  display: none;
  margin-top: 12px;
  padding: 12px;
  background: #e8f8ee;
  color: #1e7a3a;
}
.map-placeholder {
  min-height: 420px;
  background: center/cover no-repeat;
  position: relative;
}
.map-placeholder::after {
  content: "Practice with us from anywhere. Reach us by email — we reply with class and wellness guidance.";
  position: absolute;
  inset: auto 16px 16px 16px;
  background: rgba(45,50,57,.78);
  color: #fff;
  padding: 14px;
  font-size: 13px;
}

/* Legal */
.legal p { color: var(--muted); margin-bottom: 16px; }
.legal h2 { color: var(--primary); font-size: 24px; margin: 28px 0 12px; }
.legal h3 { font-size: 18px; margin: 20px 0 8px; }
.legal ul { margin: 0 0 16px 20px; }
.legal li { list-style: disc; color: var(--muted); margin-bottom: 6px; }

/* Footer */
.site-footer { background: var(--footer-bg); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h4::after {
  content: "";
  width: 40px; height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0; bottom: 0;
}
.footer-col p { color: var(--muted); font-size: 14px; margin: 12px 0 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--muted); }
.footer-links a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-right: 8px; color: var(--primary); }
.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--muted); margin-left: 12px; }
.footer-bottom a:hover { color: var(--primary); }
.heart { color: var(--primary); }

/* Search modal / cart drawer */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1200;
}
.overlay.show { display: block; }
.search-modal, .cart-drawer {
  display: none;
  position: fixed;
  z-index: 1300;
  background: #fff;
}
.search-modal {
  left: 50%; top: 30%;
  transform: translateX(-50%);
  width: min(560px, 92%);
  padding: 28px;
}
.search-modal.show, .cart-drawer.show { display: block; }
.search-modal input {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px;
  font-size: 16px;
}
.cart-drawer {
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92%);
  padding: 24px;
  overflow: auto;
}
.float-cart {
  position: fixed;
  left: 18px;
  bottom: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #7dcea0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: var(--shadow);
  font-size: 18px;
}
.scroltop {
  position: fixed;
  right: 18px;
  bottom: 24px;
  width: 42px; height: 42px;
  background: var(--primary);
  color: #fff;
  border: 0;
  display: none;
  cursor: pointer;
  z-index: 900;
}

@media (max-width: 1100px) {
  .experience-grid, .awesome-grid { grid-template-columns: 1fr; }
  .exp-photo img, .awesome-photo img { height: 420px; margin: 0 auto; }
  .class-grid, .pricing-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout, .contact-grid, .services-layout { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 92px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 0 20px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero-content h1 { font-size: 36px; }
  .page-hero h1 { font-size: 32px; }
  .hero { min-height: 520px; }
  .split-cta, .blog-layout, .blog-item, .product-detail { grid-template-columns: 1fr; }
  .news-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { min-height: 78px; }
  .service-item.right { flex-direction: row; text-align: left; }
}
@media (max-width: 560px) {
  .class-grid, .pricing-grid, .product-grid, .news-grid, .stats-grid, .footer-grid, .service-boxes {
    grid-template-columns: 1fr;
  }
  .footer-bottom { justify-content: center; text-align: center; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}
