:root {
  --navy: #1d294e;
  --navy-deep: #16203d;
  --navy-mid: #24325c;
  --coral: #ff7f7c;
  --coral-hover: #f06a67;
  --cream: #fdf8f0;
  --cream-2: #faf6ee;
  --text: #2c2c2c;
  --heading: #1a1a1a;
  --muted: #777777;
  --border: #ececec;
  --white: #ffffff;
  --gray-bg: #f7f7f7;
  --shadow: 0 8px 30px rgba(29, 41, 78, 0.08);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  border: 0;
  border-radius: 30px;
  padding: 12px 32px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  background: var(--coral-hover);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.section {
  padding: 88px 0;
}

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

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: 38px;
}

.section-head p {
  margin: 0;
}

/* Top bar */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar a:hover {
  color: var(--coral);
}

/* Header */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(29, 41, 78, 0.06);
}

.header-main {
  display: flex;
  align-items: center;
  min-height: 92px;
  gap: 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 18px;
}

.logo-text {
  display: none;
}

.logo-text strong {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
}

.logo-text span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--navy);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--coral);
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  color: var(--navy);
}

.header-actions button,
.header-actions a {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.header-actions button:hover,
.header-actions a:hover {
  color: var(--coral);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--coral);
  color: var(--white);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
}

/* Page hero */
.page-hero {
  background: var(--cream);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -20px;
  width: 220px;
  height: 220px;
  background: url("../images/candy-motif.svg") no-repeat center / contain;
  opacity: 0.18;
  pointer-events: none;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 8px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--coral);
}

/* Home hero */
.home-hero {
  background: var(--cream);
  padding: 70px 0 50px;
  overflow: hidden;
}

.home-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.sale-tag {
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
}

.home-hero h1 {
  font-size: 54px;
  margin: 12px 0 24px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-visual img.hero-main {
  width: 100%;
  max-width: 480px;
  height: 420px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(0 18px 30px rgba(29, 41, 78, 0.15));
}

.float-item {
  position: absolute;
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
  background: var(--white);
}

.float-item.one { top: 20px; left: 20px; }
.float-item.two { bottom: 40px; left: 40px; }
.float-item.three { top: 50px; right: 10px; }

/* Category row */
.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.category-card {
  text-align: center;
  padding: 10px;
}

.category-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  box-shadow: var(--shadow);
}

.category-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

/* Promo banners */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.promo-card {
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 230px;
  overflow: hidden;
}

.promo-card img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.promo-card h3 {
  font-size: 28px;
  max-width: 240px;
}

/* Products */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 36px;
}

.product-tabs button {
  background: none;
  border: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.product-tabs button.active {
  color: var(--navy);
  border-color: var(--coral);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
  padding: 18px 16px 22px;
  position: relative;
  transition: 0.25s ease;
}

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

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  margin-bottom: 14px;
}

.product-card h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-card .price {
  font-weight: 700;
  color: var(--heading);
}

.product-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 78px;
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: none;
}

.product-actions button {
  background: var(--navy);
  color: var(--white);
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
}

.product-actions button:hover {
  background: var(--coral);
}

/* Mid CTA */
.mid-cta {
  background: linear-gradient(rgba(253, 248, 240, 0.88), rgba(253, 248, 240, 0.88)),
    url("https://images.unsplash.com/photo-1614149162883-504ce4d13909?auto=format&fit=crop&w=1600&q=80") center / cover;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.mid-cta h2 {
  font-size: 42px;
}

/* Best seller carousel */
.bestseller-wrap {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
}

.nav-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 0;
  cursor: pointer;
}

.nav-circle:hover {
  background: var(--coral);
}

.trust-bar {
  background: var(--navy);
  padding: 36px 0;
}

.trust-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--white);
  font-size: 28px;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
}

.blog-card .thumb {
  position: relative;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-card .tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

.blog-card h3 {
  font-size: 22px;
  margin: 16px 0 10px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* Features pre-footer */
.feature-bar {
  background: var(--navy-mid);
  padding: 42px 0;
  color: var(--white);
}

.feature-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-item .icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-item h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 18px;
  margin-bottom: 2px;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 13px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 40px;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.site-footer a:hover {
  color: var(--coral);
}

.site-footer li {
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form {
  display: flex;
  align-items: flex-start;
  margin-top: 12px;
}

.newsletter-form > div {
  flex: 1 1 auto;
  min-width: 0;
}

.newsletter-form input {
  width: 100%;
  height: 48px;
  border: 0;
  padding: 0 14px;
  outline: none;
}

.newsletter-form button {
  background: var(--coral);
  color: var(--white);
  border: 0;
  flex: 0 0 52px;
  width: 52px;
  min-width: 52px;
  height: 48px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.payments {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  font-size: 22px;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.footer-legal a {
  color: var(--coral);
}

/* About */
.about-media {
  position: relative;
  margin-bottom: 50px;
}

.about-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  border: 0;
  font-size: 22px;
  cursor: pointer;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  margin-bottom: 14px;
}

.team-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.team-card span {
  color: var(--coral);
  font-size: 14px;
}

.testimonial {
  background: var(--cream);
  padding: 80px 0;
}

.testimonial .container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}

.avatar-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 8px solid var(--coral);
  overflow: hidden;
}

.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  color: #f5a524;
  margin-bottom: 8px;
}

.testimonial h4 {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--sans);
  font-size: 16px;
}

/* Shop */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
}

.widget {
  border: 1px solid var(--border);
  padding: 22px;
  margin-bottom: 22px;
}

.widget h4 {
  font-family: var(--sans);
  font-size: 16px;
  margin-bottom: 16px;
}

.widget label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.widget li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
}

.price-range {
  width: 100%;
  accent-color: var(--coral);
}

.promo-widget {
  background: var(--cream);
  text-align: center;
  padding: 24px 16px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud button {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
}

.tag-cloud button.active,
.tag-cloud button:hover {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.shop-toolbar select {
  border: 1px solid var(--border);
  padding: 8px 12px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shop-grid .product-card img {
  height: 210px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.pagination button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
}

.pagination button.active {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: 0.25s ease;
}

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

.service-card i {
  font-size: 34px;
  color: var(--coral);
  margin-bottom: 14px;
}

.price-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.plan {
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
}

.plan.featured {
  border-color: var(--coral);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.plan .amount {
  font-size: 42px;
  font-family: var(--serif);
  color: var(--navy);
}

.plan ul {
  margin: 20px 0;
  color: var(--muted);
}

.plan li {
  padding: 6px 0;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-box {
  background: #f4f4f4;
  padding: 36px;
  border-radius: 10px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid #e4e4e4;
  background: var(--white);
  padding: 12px 14px;
  font-family: var(--sans);
  outline: none;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: #c0392b;
  font-size: 12px;
  min-height: 16px;
  margin-top: 4px;
}

.form-success {
  display: none;
  background: #eaf8ef;
  color: #1e7a3f;
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.help-list p {
  margin-bottom: 8px;
}

/* Legal */
.legal-content h2 {
  font-size: 26px;
  margin-top: 28px;
}

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

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.accordion {
  border: 1px solid var(--border);
  background: var(--white);
}

.accordion button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
}

.accordion .panel {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.accordion.open .panel {
  display: block;
}

/* Cart drawer */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1200;
  display: none;
}

.overlay.show {
  display: block;
}

.cart-drawer,
.search-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: var(--white);
  z-index: 1300;
  transform: translateX(100%);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open,
.search-modal.open {
  transform: none;
}

.search-modal {
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  padding: 30px 0;
  transform: translateY(-110%);
}

.search-modal.open {
  transform: none;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 16px 20px;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  margin-bottom: 16px;
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.cart-line button {
  border: 1px solid var(--border);
  background: var(--white);
  margin-right: 4px;
  margin-top: 6px;
  cursor: pointer;
  padding: 2px 8px;
}

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 16px 20px 24px;
}

.cart-footer .totals {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 700;
}

.checkout-msg {
  display: none;
  background: #eaf8ef;
  color: #1e7a3f;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.close-x {
  background: none;
  border: 0;
  font-size: 22px;
  cursor: pointer;
}

.search-box {
  display: flex;
  max-width: 720px;
  margin: 0 auto;
}

.search-box input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border);
}

.search-box button {
  background: var(--coral);
  color: var(--white);
  border: 0;
  padding: 0 22px;
  cursor: pointer;
}

.search-results {
  max-width: 720px;
  margin: 16px auto 0;
}

.search-results a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.search-results img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

/* Subscribe pages */
.simple-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--cream);
  padding: 36px;
  border-radius: 10px;
}

/* Blog sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
}

.blog-feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.recent-post {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

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

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1400;
  padding: 20px;
}

.video-modal.show {
  display: flex;
}

.video-modal img {
  max-width: 900px;
  width: 100%;
}

/* Wishlist toast */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 6px;
  display: none;
  z-index: 1500;
}

.toast.show {
  display: block;
}

@media (max-width: 1100px) {
  .product-grid,
  .blog-grid,
  .category-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-grid,
  .team-grid,
  .service-grid,
  .price-table,
  .footer-grid,
  .feature-bar .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .home-hero .container,
  .two-col,
  .contact-layout,
  .shop-layout,
  .blog-layout,
  .testimonial .container,
  .promo-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow);
    flex: none;
  }
  .main-nav.open {
    display: flex;
  }
  .home-hero h1,
  .page-hero h1 {
    font-size: 36px;
  }
  .header-main {
    min-height: 76px;
  }
  .shop-grid,
  .blog-feed {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .shop-grid,
  .blog-grid,
  .blog-feed,
  .team-grid,
  .service-grid,
  .price-table,
  .category-row,
  .footer-grid,
  .feature-bar .container,
  .form-row,
  .topbar .container {
    grid-template-columns: 1fr;
  }
  .topbar {
    text-align: center;
  }
  .promo-card,
  .bestseller-wrap {
    display: block;
  }
  .hero-visual {
    min-height: 280px;
  }
  .section {
    padding: 60px 0;
  }
}
