:root {
  --ink: #151515;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --bg: #ffffff;
  --soft: #f4f4f4;
  --accent: #b4141b;
  --accent-hover: #8f0d13;
  --gold: #a8873f;
  --radius: 6px;
  --wrap: 1320px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 16px;
}

/* TOP BAR */
.topbar {
  background: #111;
  color: #ddd;
  font-size: 12px;
  border-bottom: 1px solid #222;
}

.topbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}

.topbar-msg {
  font-weight: 400;
  color: #ccc;
}

.topbar-contacts {
  display: flex;
  gap: 16px;
  align-items: center;
}

.topbar-contacts a {
  color: #bbb;
  transition: color 0.2s;
}

.topbar-contacts a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #444;
  border-radius: 50%;
  font-size: 10px;
  text-transform: uppercase;
  transition: 0.2s;
  color: #ccc;
}

.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.socials.dark a {
  border-color: #ccc;
  color: #333;
}

/* ANNOUNCEMENT MARQUEE */
.announce {
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  overflow: hidden;
  padding: 7px 0;
  font-weight: 500;
}

.announce-track, .ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: scroll 38s linear infinite;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.announce-track span {
  padding-right: 32px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header-in {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 16px;
}

.logo strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.logo em {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.32em;
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.search {
  flex: 1;
  display: flex;
  max-width: 580px;
  border: 1.5px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: var(--soft);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search:focus-within {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(180, 20, 27, 0.1);
}

.search input {
  flex: 1;
  border: 0;
  background: none;
  padding: 10px 18px;
  font: inherit;
  outline: none;
  font-size: 13.5px;
}

.search button {
  padding: 0 20px;
  color: var(--muted);
  font-size: 16px;
  transition: color 0.2s;
}

.search button:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  color: var(--ink);
  padding: 4px;
  transition: color 0.2s;
}

.icon-btn:hover {
  color: var(--accent);
}

.icon-btn .lbl {
  font-size: 12px;
  font-weight: 500;
}

.count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0 4px;
  box-shadow: 0 2px 5px rgba(180, 20, 27, 0.4);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: 0.2s;
}

/* NAVIGATION */
.nav {
  border-top: 1px solid var(--line);
  background: #fff;
}

.nav-in {
  display: flex;
  justify-content: center;
  gap: 28px;
  height: 46px;
  align-items: center;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-in a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  padding: 12px 0;
  color: #222;
  transition: color 0.2s;
}

.nav-in a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s;
}

.nav-in a:hover, .nav-in a.active {
  color: var(--accent);
}

.nav-in a:hover::after, .nav-in a.active::after {
  width: 100%;
}

/* Brands Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, 180px);
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  padding: 8px 12px !important;
  font-size: 12px !important;
  text-transform: none !important;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-menu a:hover {
  background: var(--soft);
  color: var(--accent);
}

.dropdown-menu a::after {
  display: none !important;
}

.mobile-search {
  display: none;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.mobile-search input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--soft);
  font: inherit;
  outline: none;
}

/* HERO SLIDER */
.hero {
  position: relative;
  overflow: hidden;
  background: #111;
}

.slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  aspect-ratio: 1410/550;
  object-fit: cover;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}

.hero-nav:hover {
  background: var(--accent);
  color: #fff;
}

.hero-nav.prev {
  left: 16px;
}

.hero-nav.next {
  right: 16px;
}

.dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}

.dots button.on {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.25);
}

/* TICKER */
.ticker {
  background: #111;
  color: #f2f2f2;
  font-size: 12px;
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid #222;
}

.ticker-track {
  animation-duration: 45s;
}

.ticker-track span {
  padding-right: 44px;
  position: relative;
}

.ticker-track span::after {
  content: "•";
  position: absolute;
  right: 20px;
  color: var(--gold);
}

/* SECTIONS */
.sec {
  padding: 50px 0;
}

.sec-tight {
  padding: 30px 0;
}

.sec-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 30px;
  text-transform: uppercase;
  color: var(--ink);
}

.sec-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* BRAND CHIPS */
.brand-chips {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.brand-chips a {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  background: #fff;
  transition: all 0.2s ease;
  color: #333;
}

.brand-chips a:hover, .brand-chips a.active {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* CATEGORY TILES */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  min-height: 200px;
  display: block;
  box-shadow: var(--shadow);
}

.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/7;
  transition: transform 0.6s ease;
}

.cat-tile:hover img {
  transform: scale(1.05);
}

.cat-tile span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #fff;
  color: var(--ink);
  padding: 10px 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* FEATURED BRANDS GRID (Match User Screenshot) */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brand-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.brand-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent);
}

.brand-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #ececec;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.brand-card-fallback {
  width: 100%;
  height: 100%;
  padding: 18px 12px;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #222;
}

.brand-card-fallback span {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
  font-weight: 500;
}

.brand-card-fallback strong {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand-card-body {
  padding: 14px 10px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.brand-card h3 {
  font-size: 15.5px;
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--ink);
}

.brand-card .shop {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  padding-bottom: 2px;
}

/* GALLERY BANNER GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.gallery-card:hover {
  transform: scale(1.03);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* PRODUCT CARDS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #ddd;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 5;
  letter-spacing: 0.04em;
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 5;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  color: #777;
}

.wishlist-btn:hover, .wishlist-btn.active {
  color: var(--accent);
  transform: scale(1.1);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--soft);
  overflow: hidden;
  cursor: pointer;
}

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

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

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.product-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.4;
  height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
}

.product-title:hover {
  color: var(--accent);
}

.product-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 12px;
}

.price-current {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

.price-original {
  font-size: 12.5px;
  color: #999;
  text-decoration: line-through;
}

.add-cart-btn {
  width: 100%;
  padding: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
}

.add-cart-btn:hover {
  background: var(--accent);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* FILTER TOOLBAR */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--soft);
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 28px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}

.select-ctrl {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-size: 13px;
  outline: none;
}

.select-ctrl:focus {
  border-color: var(--accent);
}

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

.page-btn {
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  transition: 0.2s;
}

.page-btn:hover, .page-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* FEATURES ROW */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.feature b {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  color: var(--ink);
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
}

/* SEO BLOCK */
.seo {
  background: var(--soft);
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.seo p {
  max-width: 82ch;
  margin: 0 auto 16px;
  color: #444;
  font-size: 13.5px;
  line-height: 1.7;
}

.seo h3 {
  text-align: center;
  font-size: 16px;
  margin: 24px 0 12px;
  font-weight: 700;
}

/* STORE LOCATOR CARDS */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.store-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.store-card h3 {
  font-size: 17px;
  margin: 0 0 10px;
  color: var(--accent);
}

.store-card p {
  color: #555;
  font-size: 13.5px;
  margin: 0 0 14px;
  line-height: 1.5;
}

.store-card .actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--soft);
  transition: 0.2s;
}

.btn-sm:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
}

.contact-info-card {
  background: var(--soft);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.info-item {
  margin-bottom: 20px;
}

.info-item h4 {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--accent);
  text-transform: uppercase;
}

.contact-form {
  background: #fff;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-ctrl {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  font-size: 13.5px;
}

.form-ctrl:focus {
  border-color: var(--accent);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

/* MODAL & DRAWER */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-mask.on {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 750px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  line-height: 1;
  color: #888;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-product-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}

.drawer-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 80;
}

.drawer-mask.on {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 400px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 90;
  display: flex;
  flex-direction: column;
}

.drawer.on {
  transform: translateX(0);
}

.drawer-left {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

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

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--soft);
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 13.5px;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.drawer-foot {
  padding: 20px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* FOOTER */
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding-top: 50px;
}

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

.fcol h4 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 700;
}

.fcol a {
  display: block;
  color: #555;
  font-size: 13px;
  padding: 4px 0;
  transition: 0.2s;
}

.fcol a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.fcol p {
  margin: 0 0 10px;
  color: #555;
  font-size: 13px;
}

.logo-f {
  margin-bottom: 16px;
  display: inline-block;
}

.pay {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pay span {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 5px 9px;
  font-size: 10.5px;
  color: #666;
  font-weight: 600;
}

.copyright {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  font-size: 12px;
  color: var(--muted);
  background: var(--soft);
}

.copyright .wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* MOBILE BOTTOM BAR */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  z-index: 45;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #444;
}

.mobile-bar a.active {
  color: var(--accent);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .brand-chips {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-in {
    grid-template-columns: 1fr 1fr;
  }
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .store-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-msg {
    display: none;
  }
  .topbar-in {
    justify-content: center;
  }
  .menu-btn {
    display: flex;
  }
  .header-in {
    gap: 12px;
    padding: 12px 16px;
  }
  .search {
    display: none;
  }
  .mobile-search {
    display: block;
  }
  .nav {
    display: none;
  }
  .icon-btn .lbl {
    display: none;
  }
  .logo strong {
    font-size: 18px;
  }
  .mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 50px;
  }
  .sec {
    padding: 36px 0;
  }
  .sec-title {
    font-size: 22px;
    margin-bottom: 22px;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .brand-chips {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .hero-nav {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .slide img {
    aspect-ratio: 16/10;
  }
  .footer-in {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .store-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .modal-product-grid {
    grid-template-columns: 1fr;
  }
}
