/* ============================================
   LABHNARI - Shared Stylesheet
   Breakpoints: desktop > 900px | tablet 600-900px | mobile < 600px
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C1810;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; cursor: pointer; background: transparent; }

/* ============ ANNOUNCEMENT BAR ============ */
.announcement {
  background: #6B2820;
  color: #FAF6F0;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-align: center;
}
.announcement-inner {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 1000;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 16px;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  flex: 1;
}
.nav-links a:hover { color: #6B2820; }
.nav-actions {
  display: flex;
  gap: 20px;
  font-size: 13px;
  flex: 1;
  justify-content: flex-end;
}
.nav-actions a:hover { color: #6B2820; }
.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}
.logo-hindi {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: #6B2820;
  line-height: 1;
}
.logo-divider {
  width: 1px;
  height: 22px;
  background: #6B2820;
  opacity: 0.4;
}
.logo-latin {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #6B2820;
  letter-spacing: 0.25em;
  line-height: 1;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #2C1810;
  padding: 0;
}

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  max-width: 1600px;
  margin: 0 auto;
}
.hero-text {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #FAF6F0 0%, #F5E8D6 100%);
}
.hero-tag {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #6B2820;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  color: #2C1810;
  margin-bottom: 16px;
}
.hero-title em { color: #6B2820; font-style: italic; }
.hero-sub {
  font-size: 15px;
  color: #5F5E5A;
  margin-bottom: 28px;
}
.hero-img {
  background-size: cover;
  background-position: center top;
  background-color: #6B2820;
  position: relative;
  min-height: 480px;
}
.hero-img-tag {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  padding: 12px 18px;
  border-radius: 2px;
}
.hero-img-tag-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #888;
  margin-bottom: 3px;
}
.hero-img-tag-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: #2C1810;
  font-weight: 500;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: #2C1810;
  color: #FFFFFF;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.2s;
  border-radius: 2px;
}
.btn-primary:hover { background: #6B2820; color: #FFFFFF; }
.btn-outline {
  display: inline-block;
  border: 1.5px solid #2C1810;
  color: #2C1810;
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.2s;
  background: transparent;
}
.btn-outline:hover { background: #2C1810; color: #FFFFFF; }
.btn-light {
  display: inline-block;
  background: #FFFFFF;
  color: #2C1810;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 2px;
}
.btn-light:hover { background: #E8B87D; color: #2C1810; }

/* ============ STRIP ============ */
.strip {
  background: #FAF6F0;
  padding: 28px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: #2C1810;
  margin-bottom: 6px;
}
.strip p { font-size: 14px; color: #5F5E5A; }

/* ============ SECTIONS ============ */
.section {
  padding: 64px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-light-wrap {
  background: #FAF6F0;
  padding: 64px 24px;
}
.section-light-wrap .inner {
  max-width: 1400px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: #2C1810;
  margin-bottom: 8px;
}
.section-head p {
  font-size: 14px;
  color: #5F5E5A;
}

/* ============ PRODUCT GRID ============ */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.product {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.product:hover { transform: translateY(-4px); }
.product-img {
  aspect-ratio: 3/4;
  background: #F5E8D6;
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.product:hover .product-img img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #2C1810;
  color: #FFFFFF;
  font-size: 9px;
  padding: 5px 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.product-info { text-align: center; padding: 0 4px; }
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: #2C1810;
  margin-bottom: 4px;
}
.product-price {
  font-size: 14px;
  color: #6B2820;
  font-weight: 500;
}
.view-all { display: block; text-align: center; }

/* ============ CATEGORIES ============ */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.category {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.category:hover { transform: translateY(-4px); }
.category::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44,24,16,0.85) 100%);
}
.category-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: #FFFFFF;
  z-index: 2;
}
.category-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
}
.category-content p {
  font-size: 13px;
  opacity: 0.95;
  margin-bottom: 12px;
}
.category-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 3px;
  display: inline-block;
}

/* ============ PROMO BANNER ============ */
.promo {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: #6B2820;
}
.promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44,24,16,0.85) 0%, rgba(44,24,16,0.3) 70%, transparent 100%);
}
.promo-content {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
  color: #FFFFFF;
  max-width: 540px;
}
.promo-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  margin-bottom: 14px;
  color: #E8B87D;
  font-weight: 500;
}
.promo h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 16px;
}
.promo p {
  font-size: 15px;
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.6;
}

/* ============ WHY SECTION ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-item { text-align: center; }
.why-icon {
  font-size: 28px;
  color: #6B2820;
  margin-bottom: 10px;
}
.why-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
.why-item p { font-size: 13px; color: #5F5E5A; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: #FFFFFF;
  padding: 24px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.06);
}
.stars {
  color: #E8B87D;
  letter-spacing: 4px;
  margin-bottom: 12px;
  font-size: 14px;
}
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: #2C1810;
  margin-bottom: 12px;
  line-height: 1.5;
}
.reviewer { font-size: 12px; color: #5F5E5A; }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: #6B2820;
  color: #FFFFFF;
  padding: 56px 24px;
  text-align: center;
}
.newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
}
.newsletter p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 24px;
}
.newsletter-form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}
.newsletter input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  font-size: 13px;
  font-family: inherit;
  border-radius: 4px;
  background: #FFFFFF;
  color: #2C1810;
}
.newsletter button {
  background: #2C1810;
  color: #FFFFFF;
  padding: 13px 26px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
}
.newsletter button:hover { background: #1a0d08; }

/* ============ FOOTER ============ */
.footer {
  background: #2C1810;
  color: #FAF6F0;
  padding: 48px 24px 18px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 24px;
}
.footer-brand h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #E8B87D;
  margin-bottom: 6px;
  font-weight: 600;
}
.footer-brand .label {
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 13px;
  line-height: 2;
  opacity: 0.9;
}
.footer-col a:hover { opacity: 0.7; }
.footer-bottom {
  border-top: 1px solid rgba(250,246,240,0.15);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  opacity: 0.6;
}

/* ============ MOBILE NAV DRAWER ============ */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 3000;
  padding: 32px 24px;
  transition: left 0.3s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  overflow-y: auto;
}
.mobile-drawer.active { left: 0; }
.mobile-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
}
.mobile-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2999;
}
.drawer-overlay.active { display: block; }

/* ============ SHOP PAGE ============ */
.page-header {
  text-align: center;
  padding: 56px 24px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  color: #2C1810;
  margin-bottom: 10px;
}
.page-header p {
  font-size: 15px;
  color: #5F5E5A;
}
.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.filter-btn {
  padding: 10px 20px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #FFFFFF;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 4px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: #2C1810; }
.filter-btn.active {
  background: #2C1810;
  color: #FFFFFF;
  border-color: #2C1810;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 24px 64px;
  max-width: 1400px;
  margin: 0 auto;
}
.shop-empty {
  text-align: center;
  padding: 60px 24px;
  color: #5F5E5A;
  font-size: 15px;
  grid-column: 1 / -1;
}

/* ============ ABOUT PAGE ============ */
.about-hero {
  background: linear-gradient(135deg, #FAF6F0 0%, #F5E8D6 100%);
  padding: 80px 24px;
  text-align: center;
}
.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: #2C1810;
  margin-bottom: 16px;
  line-height: 1.1;
}
.about-hero p {
  font-size: 17px;
  color: #5F5E5A;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px;
}
.about-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: #2C1810;
  margin-bottom: 20px;
  text-align: center;
}
.about-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #2C1810;
  margin-bottom: 16px;
}

/* ============ PRODUCT MODAL ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: #FFFFFF;
  border-radius: 6px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  color: #2C1810;
  z-index: 10;
  width: 32px;
  height: 32px;
  line-height: 1;
}
.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px;
}
.modal-images {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-main-img {
  aspect-ratio: 3/4;
  background: #F5E8D6;
  border-radius: 4px;
  overflow: hidden;
}
.modal-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.modal-thumb {
  aspect-ratio: 1/1;
  background: #F5E8D6;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}
.modal-thumb.active { border-color: #6B2820; }
.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #2C1810;
}
.modal-price {
  font-size: 22px;
  color: #6B2820;
  font-weight: 500;
  margin-bottom: 16px;
}
.modal-desc {
  font-size: 14px;
  color: #5F5E5A;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  line-height: 1.7;
}
.size-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.sizes {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.size-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: #FFFFFF;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  border-radius: 4px;
}
.size-btn.selected {
  background: #2C1810;
  color: #FFFFFF;
  border-color: #2C1810;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.qty-controls {
  display: flex;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 4px;
}
.qty-btn {
  width: 38px;
  height: 38px;
  font-size: 16px;
}
.qty-num {
  width: 44px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(0,0,0,0.15);
  border-right: 1px solid rgba(0,0,0,0.15);
  font-weight: 500;
}
.whatsapp-btn {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: #FFFFFF;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.whatsapp-btn:hover { background: #128C7E; }
.modal-features {
  list-style: none;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 16px;
}
.modal-features li {
  font-size: 12px;
  color: #5F5E5A;
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.modal-features li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: #6B2820;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   < 900px   = tablet/small laptop (3 cols)
   < 600px   = mobile (2 cols, hamburger menu)
   ============================================ */

/* ============ MEDIUM SCREENS (TABLETS, SMALL LAPTOPS) ============ */
@media (max-width: 900px) {
  .hero-text { padding: 48px 32px; }
  .hero-title { font-size: 38px; }
  .products, .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .modal-content { grid-template-columns: 1fr; padding: 24px; }
  .promo h2 { font-size: 32px; }
  .promo-content { padding: 40px 32px; }
  .page-header h1 { font-size: 38px; }
  .about-hero h1 { font-size: 42px; }
  .categories { grid-template-columns: 1fr 1fr; }
  .categories .category:last-child { grid-column: 1 / -1; }
}

/* ============ STACKED HERO (under 800px) ============ */
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .hero-img { min-height: 320px; }
}

/* ============ MOBILE (under 600px) ============ */
@media (max-width: 600px) {
  .announcement-inner { gap: 12px; font-size: 10px; }
  .nav { padding: 14px 16px; }
  .nav-links { display: none; }
  .nav-actions { font-size: 12px; gap: 12px; }
  .menu-toggle { display: block; }
  .logo-hindi { font-size: 24px; }
  .logo-latin { font-size: 16px; }
  .hero-text { padding: 36px 20px; }
  .hero-title { font-size: 28px; }
  .hero-sub { font-size: 14px; margin-bottom: 22px; }
  .hero-img { min-height: 280px; }
  .hero-img-tag { padding: 10px 14px; bottom: 16px; right: 16px; }
  .hero-img-tag-title { font-size: 13px; }
  .strip { padding: 22px 16px; }
  .strip h2 { font-size: 22px; }
  .strip p { font-size: 13px; }
  .section { padding: 48px 16px; }
  .section-light-wrap { padding: 48px 16px; }
  .section-head h2 { font-size: 28px; }
  .products, .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .shop-grid { padding: 0 16px 48px; }
  .product-name { font-size: 14px; }
  .product-price { font-size: 13px; }
  .product-tag { font-size: 8px; padding: 4px 8px; }
  .categories { grid-template-columns: 1fr; }
  .categories .category:last-child { grid-column: auto; }
  .category-content h3 { font-size: 22px; }
  .promo h2 { font-size: 26px; }
  .promo-content { padding: 32px 20px; }
  .promo p { font-size: 14px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-item h3 { font-size: 16px; }
  .newsletter { padding: 40px 20px; }
  .newsletter h2 { font-size: 24px; }
  .newsletter-form { flex-direction: column; }
  .footer { padding: 36px 20px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .modal-overlay { padding: 0; }
  .modal { border-radius: 0; max-height: 100vh; height: 100vh; }
  .modal-content { padding: 20px; gap: 20px; }
  .modal-info h3 { font-size: 22px; }
  .modal-price { font-size: 18px; }
  .testimonials { grid-template-columns: 1fr; }
  .page-header { padding: 40px 16px 24px; }
  .page-header h1 { font-size: 30px; }
  .about-hero { padding: 56px 20px; }
  .about-hero h1 { font-size: 32px; }
  .about-hero p { font-size: 15px; }
  .about-section { padding: 40px 20px; }
  .about-section h2 { font-size: 26px; }
  .filter-bar { padding: 0 16px 24px; gap: 6px; }
  .filter-btn { padding: 8px 14px; font-size: 11px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 24px; }
  .section-head h2 { font-size: 22px; }
  .promo h2 { font-size: 22px; }
  .page-header h1 { font-size: 26px; }
}
