/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6b704f;
  --primary-dark: #5a5e42;
  --bg-light: #f2f3f0;
  --bg-card: #f5f5f5;
  --border: #f2f3f0;
  --text: #000000;
  --text-muted: #6b7280;
  --white: #ffffff;
  --radius: 0.625rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'League Spartan', ui-sans-serif, system-ui, sans-serif;
  background: #fff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mb-12 { margin-bottom: 48px; }

/* =============================================
   MARQUEE BANNER
   ============================================= */
.marquee-banner {
  background: var(--primary);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  margin: 0 32px;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.header-logo a {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a,
.nav-dropdown a {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.header-nav a:hover,
.nav-dropdown a:hover { color: var(--primary); }

.header-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.icon-btn {
  position: relative;
  padding: 8px;
  border-radius: 8px;
  color: #000;
  transition: background 0.2s;
}
.icon-btn:hover { background: var(--bg-light); }
.icon-btn svg { display: block; }
.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger-btn {
  padding: 8px;
  color: #000;
  display: none;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/h1-slider2-banner-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 128px 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #374151;
}
.hero h1 {
  font-size: 72px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 560px;
}
.hero-price {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}
.hero-desc {
  color: #374151;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 420px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: background 0.2s;
  font-family: inherit;
}
.btn-primary:hover { background: var(--primary-dark); }

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 80px 0;
  background: var(--bg-light);
}
.section-subtitle {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 32px;
}
.about-title {
  text-align: center;
  margin-bottom: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.about-title h2 {
  font-size: 28px;
  color: #000;
  line-height: 1.7;
  font-weight: 400;
}
.about-title h2 strong { font-weight: 700; }
.inline-avatar {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  margin: 0 4px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.rotating-logo {
  position: relative;
  width: 208px;
  height: 208px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rotating-circle {
  position: absolute;
  inset: 0;
  animation: spin-slow 20s linear infinite;
}
.spin-svg { width: 100%; height: 100%; color: #4b5563; }
@keyframes spin-slow {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.logo-inner {
  position: absolute;
  z-index: 10;
  text-align: center;
}
.logo-name { font-size: 28px; font-weight: 700; color: #000; margin-bottom: 4px; }
.logo-sub { font-size: 10px; color: #4b5563; letter-spacing: 0.1em; text-transform: uppercase; }
.about-desc {
  text-align: center;
  font-size: 13px;
  color: #374151;
  line-height: 1.7;
  max-width: 260px;
}

/* Slide button */
.btn-slide-wrap { overflow: hidden; }
.btn-slide {
  position: relative;
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 32px;
  overflow: hidden;
  transition: background 0.3s;
}
.btn-slide:hover { background: var(--primary-dark); }
.btn-slide-top {
  display: block;
  transition: transform 0.3s;
}
.btn-slide-bottom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.btn-slide:hover .btn-slide-top { transform: translateY(-100%); }
.btn-slide:hover .btn-slide-bottom { transform: translateY(0); }

/* =============================================
   FEATURED PRODUCTS SLIDER
   ============================================= */
.featured-products {
  padding: 64px 0;
  background: #fff;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 48px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 12px;
}
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.slider-btn {
  position: absolute;
  z-index: 10;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.slider-btn:hover { background: var(--primary); color: #fff; }
.slider-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.slider-btn--prev { left: -16px; }
.slider-btn--next { right: -16px; }
.slider-viewport { overflow: hidden; width: 100%; }
.slider-track {
  display: flex;
  transition: transform 0.5s ease-out;
}
.product-card {
  flex-shrink: 0;
  width: 20%;
  padding: 0 12px;
  cursor: pointer;
}
.product-img-wrap {
  position: relative;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 16px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
}
.product-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.product-card:hover .product-actions { opacity: 1; }
.action-btn {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s, color 0.2s;
}
.action-btn:hover { background: var(--primary); color: #fff; }
.product-cart-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.3s;
  z-index: 2;
}
.product-card:hover .product-cart-hover { transform: translateY(0); }
.btn-add-cart {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.btn-add-cart:hover { background: var(--primary-dark); }
.product-info { display: flex; flex-direction: column; gap: 8px; }
.product-cat {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: color 0.2s;
}
.product-cat:hover { color: var(--primary); }
.product-price { font-size: 22px; font-weight: 700; color: #000; }
.product-name { font-size: 15px; font-weight: 400; color: #000; line-height: 1.3; }
.product-name a:hover { color: var(--primary); }
.product-rating { display: flex; align-items: center; gap: 8px; }
.stars { display: inline-flex; gap: 2px; }
.star { width: 16px; height: 16px; }
.star--filled { color: var(--primary); }
.star--empty { color: #d1d5db; }
.rating-val { font-size: 11px; color: #9ca3af; }

/* =============================================
   CATEGORIES
   ============================================= */
.categories {
  padding: 128px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.categories-deco {
  position: absolute;
  top: 50%;
  width: 242px;
  height: 272px;
  opacity: 0.4;
  z-index: 0;
}
.categories-deco--left { left: 64px; transform: translateY(-15%); }
.categories-deco--right { right: 64px; transform: translateY(-50%); }
.categories-deco img { width: 100%; height: 100%; object-fit: contain; }
.categories .container { position: relative; z-index: 10; }
.categories-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.categories-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.categories-header p { color: rgba(255,255,255,0.9); font-size: 15px; }
.btn-see-all {
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 10px 24px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.btn-see-all:hover { background: rgba(255,255,255,0.3); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.cat-card {
  display: block;
  text-decoration: none;
}
.cat-inner {
  background: #f5f5f0;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s;
}
.cat-card:hover .cat-inner { transform: scale(1.05); }
.cat-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  margin: 0 auto 24px;
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s, transform 0.5s;
}
.cat-card:hover .cat-img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.1);
}
.cat-inner h3 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.cat-card:hover .cat-inner h3 { color: var(--primary); }
.cat-inner p { font-size: 13px; color: #6b7280; }

/* =============================================
   SPECIAL OFFER
   ============================================= */
.special-offer { padding: 64px 0; background: #fff; }
.offer-layout {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.offer-card {
  width: 788px;
  height: 610px;
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-shrink: 0;
}
.offer-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.offer-label {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
}
.offer-percent {
  font-size: 140px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.offer-discount-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
}
.countdown {
  display: flex;
  align-items: center;
  gap: 12px;
}
.countdown-unit { text-align: center; }
.countdown-num {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.countdown-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.countdown-sep {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}
.btn-offer {
  background: var(--primary);
  color: #fff;
  padding: 20px 40px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 16px;
  width: fit-content;
  transition: background 0.2s;
}
.btn-offer:hover { background: var(--primary-dark); }
.offer-woman {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.offer-woman img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
}
.offer-products {
  width: 525px;
  height: 610px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offer-product {
  display: flex;
  gap: 24px;
  cursor: pointer;
}
.offer-product-img {
  position: relative;
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
}
.offer-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.offer-product:hover .offer-product-img img { transform: scale(1.1); }
.offer-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.offer-product-name {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  transition: color 0.2s;
}
.offer-product:hover .offer-product-name { color: var(--primary); }
.price-row { display: flex; align-items: center; gap: 8px; }
.price-old { color: #9ca3af; text-decoration: line-through; font-size: 17px; }

/* =============================================
   BEST SELLING
   ============================================= */
.best-selling { padding: 64px 0; background: #fff; }
.best-grid { display: flex; flex-direction: column; gap: 24px; }
.best-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.best-promo-card {
  border-radius: 16px;
  overflow: hidden;
  padding: 48px;
  display: flex;
  align-items: center;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
.best-promo-content { position: relative; z-index: 10; }
.best-promo-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}
.best-promo-content p {
  font-size: 20px;
  color: #000;
  margin-bottom: 24px;
}
.promo-big { font-size: 48px !important; font-weight: 700; color: #000; margin-bottom: 8px !important; }
.promo-sub {
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600 !important;
  margin-bottom: 24px !important;
}
.btn-white {
  background: #fff;
  color: #000;
  padding: 12px 32px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-white:hover { background: #f3f4f6; }
.best-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.best-product { cursor: pointer; }
.best-product-img {
  position: relative;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 12px;
}
.best-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.best-product:hover .best-product-img img { transform: scale(1.1); }
.best-product-info { display: flex; flex-direction: column; gap: 4px; }
.best-product-info .product-price { font-size: 17px; }
.best-product-info h3 { font-size: 13px; font-weight: 400; color: #000; line-height: 1.3; }
.best-product-info h3 a:hover { color: var(--primary); }
.best-product-info .stars .star { width: 14px; height: 14px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 64px 0; background: var(--bg-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.testimonial-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-name { font-weight: 600; color: #000; font-size: 15px; }
.testimonial-stars { color: var(--primary); font-size: 14px; margin-top: 2px; }
.testimonial-text { color: #6b7280; font-size: 14px; line-height: 1.6; }

/* =============================================
   GALLERY
   ============================================= */
.gallery { padding: 64px 0; background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.gallery-col { display: flex; flex-direction: column; gap: 24px; }
.gallery-img { border-radius: 16px; overflow: hidden; }
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-img:hover img { transform: scale(1.1); }
.gallery-img--wide { aspect-ratio: 615/360; }
.gallery-img--sq { aspect-ratio: 1; }
.gallery-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gallery-center-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  gap: 32px;
}
.gallery-center-card h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #111;
  color: #fff;
  padding: 64px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.footer-brand h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; opacity: 0.8; line-height: 1.6; }
.footer-col h4 { font-weight: 600; margin-bottom: 16px; font-size: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover { opacity: 1; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.8;
}
.footer-contact li a:hover { opacity: 1; }
.footer-divider { border-top: 1px solid rgba(255,255,255,0.15); margin-bottom: 32px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 13px; opacity: 0.8; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  padding: 8px;
  border-radius: 8px;
  color: #fff;
  transition: background 0.2s;
}
.footer-socials a:hover { background: rgba(255,255,255,0.1); }

/* =============================================
   TABLET LAYOUTS & SCALING (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {
  /* Container adjustments */
  .container, .container-wide {
    padding: 0 16px;
  }
  
  /* Header burger menu */
  .header-nav {
    display: none !important; /* Hide desktop nav menu */
  }
  .burger-btn {
    display: block !important; /* Show hamburger button */
  }
  
  /* Hero adjustments */
  .hero {
    min-height: 550px;
  }
  .hero-inner {
    padding: 80px 16px;
  }
  .hero h1 {
    font-size: 48px;
    max-width: 100%;
  }
  
  /* About adjustments */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-center {
    order: -1; /* Put text content on top */
  }
  .about-title {
    margin-bottom: 40px;
  }
  .about-title h2 {
    font-size: 22px;
    line-height: 1.5;
  }
  
  /* Product Cards widths in slider */
  .product-card {
    width: 33.333% !important; /* 3 products per view */
  }
  
  /* Special Offer */
  .offer-layout {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .offer-card {
    width: 100%;
    height: auto;
    min-height: 450px;
    grid-template-columns: 1fr 1fr;
  }
  .offer-products {
    width: 100%;
    height: auto;
    gap: 24px;
  }
  
  /* Best Selling */
  .best-row {
    grid-template-columns: 1fr;
  }
  
  /* Gallery grid */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-center-card {
    min-height: auto;
    padding: 40px;
  }
}

/* =============================================
   MOBILE APP EXPERIENCE (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Add safe padding at bottom of site to account for sticky bottom bar */
  body {
    padding-bottom: 70px;
  }
  
  /* Typography scale-down */
  .hero h1 {
    font-size: 36px;
    color: #fff;
  }
  .hero-price {
    font-size: 28px;
    color: #fff;
  }
  .hero-desc {
    color: #fff;
  }
  .hero-badge span {
    color: #fff;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  /* Hero adjustments for absolute app feel */
  .hero {
    min-height: 480px;
  }
  .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/h1-slider2-banner-bg.webp');
  }
  .hero-inner {
    padding: 60px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-badge {
    justify-content: center;
  }
  
  /* Slider showing 2 items per view */
  .product-card {
    width: 50% !important; /* 2 products per view */
    padding: 0 6px; /* slightly smaller padding for mobile */
  }
  .product-img-wrap {
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .product-badge {
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 10px;
  }
  .product-name {
    font-size: 13px;
  }
  .product-price {
    font-size: 18px;
  }
  
  /* Show actions on mobile hover/active */
  .product-actions {
    opacity: 1; /* Always visible on mobile, since hover is not possible */
    top: 8px;
    right: 8px;
    gap: 4px;
  }
  .action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .action-btn svg {
    width: 16px;
    height: 16px;
  }
  .product-cart-hover {
    display: none; /* Hide hover add to cart overlay on mobile */
  }
  
  /* Categories Section: swipeable horizontally instead of grid */
  .categories {
    padding: 64px 0;
  }
  .categories-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .categories-deco {
    display: none; /* Hide background SVGs on mobile for cleaner app look */
  }
  .categories-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 10px 0 20px 0;
    margin: 0 -16px; /* negative margin to extend to screen edges */
    padding-left: 16px;
    padding-right: 16px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }
  .categories-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari/Edge */
  }
  .cat-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
  }
  .cat-inner {
    padding: 20px 16px;
  }
  .cat-img-wrap {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
  }
  
  /* Special Offer */
  .special-offer {
    padding: 48px 0;
  }
  .offer-card {
    grid-template-columns: 1fr;
    height: auto;
  }
  .offer-text {
    padding: 24px;
    align-items: center;
    text-align: center;
  }
  .offer-percent {
    font-size: 80px;
  }
  .countdown-num {
    font-size: 32px;
  }
  .countdown-sep {
    font-size: 24px;
  }
  .offer-woman {
    height: 280px;
  }
  .offer-woman img {
    object-position: center;
  }
  .offer-products {
    width: 100%;
    height: auto;
  }
  .offer-product-img {
    width: 100px;
    height: 100px;
  }
  .offer-product-name {
    font-size: 14px;
  }
  
  /* Hot Selling */
  .best-selling {
    padding: 48px 0;
  }
  .best-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .best-product-img {
    border-radius: 8px;
  }
  .best-promo-card {
    padding: 24px;
    min-height: 240px;
  }
  .best-promo-content h3 {
    font-size: 20px;
  }
  .best-promo-content p {
    font-size: 16px;
  }
  .promo-big {
    font-size: 32px !important;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 48px 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Gallery */
  .gallery {
    padding: 48px 0;
  }
  .gallery-row-2 {
    gap: 12px;
  }
  .gallery-col {
    gap: 12px;
  }
  
  /* Mobile menu custom styling */
  .mobile-nav {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  /* Footer */
  .site-footer {
    padding: 48px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  /* BOTTOM APP BAR STYLES */
  .bottom-app-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    border-top: 1px solid var(--border);
    z-index: 100;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    padding: 0 8px;
  }
  
  .app-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 10px;
    font-weight: 500;
    gap: 4px;
    flex: 1;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .app-bar-item svg {
    color: #4b5563;
    transition: color 0.2s;
  }
  
  .app-bar-item:hover, .app-bar-item.active {
    color: var(--primary);
  }
  
  .app-bar-item:hover svg, .app-bar-item.active svg {
    color: var(--primary);
  }
  
  .app-bar-item--badge {
    position: relative;
  }
  
  .app-bar-item--badge .badge {
    top: 2px;
    right: 18px; /* Offset to center over icon */
    background: var(--primary);
  }
}
