 :root {
  --brand: #ff6a00;
  --brand-dark: #e45700;
  --brand-soft: #fff1e6;
  --accent: #111827;
  --accent-2: #14213d;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f5f6f8;
  --white: #ffffff;
  --green: #16a34a;
  --red: #ef4444;
  --shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Noto Sans Bengali", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

button, input, select {
  font: inherit;
}

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

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

.top-strip {
  background: #0f172a;
  color: #fff;
  font-size: 13px;
}

.top-strip-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #d1d5db;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.main-nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.6px;
  white-space: nowrap;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand), #ffb000);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.25);
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.logo small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
  margin-top: -3px;
}

.search-box {
  display: flex;
  border: 2px solid var(--brand);
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  min-width: 0;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 13px 14px;
  color: var(--text);
  min-width: 0;
}

.search-box button {
  border: 0;
  background: var(--brand);
  color: #fff;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 19px;
  transition: 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.mobile-menu-btn {
  display: none;
}

.category-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.category-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar { display: none; }

.category-pill {
  white-space: nowrap;
  padding: 9px 15px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.category-pill:hover,
.category-pill.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-color: #ffd3ad;
}

.mobile-search {
  display: none;
  padding-bottom: 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.85fr;
  gap: 18px;
  padding: 22px 0;
}

.hero-card {
  min-height: 382px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(255,255,255,0.35), transparent 28%),
    linear-gradient(135deg, #151d35, #202c5d 48%, #ff6a00);
  color: #fff;
  position: relative;
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}

.hero-content {
  width: min(580px, 100%);
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 18px;
}

.badge.light {
  background: var(--brand-soft);
  border-color: #fed7aa;
  color: var(--brand-dark);
}

.hero-card h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -1.8px;
  margin-bottom: 16px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 12px;
}

.hero-bn {
  font-size: 18px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 24px !important;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 14px;
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: #fff;
  color: var(--accent);
}

.btn-dark {
  background: var(--accent);
  color: #fff;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
}

.hero-visual {
  position: absolute;
  right: 38px;
  bottom: 28px;
  width: min(340px, 42%);
  aspect-ratio: 1 / 1;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: clamp(82px, 13vw, 155px);
  transform: rotate(-8deg);
}

.side-offers {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.mini-offer {
  border-radius: 24px;
  padding: 23px;
  color: #fff;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.mini-offer:nth-child(1) { background: linear-gradient(135deg, #0ea5e9, #1e40af); }
.mini-offer:nth-child(2) { background: linear-gradient(135deg, #111827, #7c2d12); }

.mini-offer span {
  font-size: 13px;
  font-weight: 900;
  opacity: 0.85;
}

.mini-offer h3 {
  font-size: 23px;
  line-height: 1.12;
  max-width: 235px;
  margin-top: 6px;
}

.mini-offer b {
  font-size: 38px;
  position: absolute;
  right: 20px;
  bottom: 12px;
  opacity: 0.95;
}

.section { padding: 16px 0 26px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin: 12px 0 16px;
}

.section-head h2 {
  font-size: clamp(22px, 4vw, 31px);
  letter-spacing: -0.7px;
  color: #111827;
}

.section-head p {
  color: var(--muted);
  margin-top: 4px;
}

.view-link {
  font-weight: 900;
  color: var(--brand-dark);
  white-space: nowrap;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: 0.2s ease;
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-card:hover {
  transform: translateY(-3px);
  border-color: #ffc999;
}

.cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: 28px;
}

.cat-card h3 {
  font-size: 14px;
  color: #111827;
  line-height: 1.25;
}

.deal-banner {
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #fff7ed);
  border: 1px solid #fed7aa;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 6px 0 18px;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.08);
}

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

.timer div {
  min-width: 58px;
  background: #111827;
  color: #fff;
  padding: 9px;
  border-radius: 13px;
  text-align: center;
  font-weight: 900;
}

.timer small {
  display: block;
  color: #cbd5e1;
  font-size: 10px;
  font-weight: 800;
  margin-top: 2px;
}

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

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 9px 22px rgba(15, 23, 42, 0.04);
  transition: 0.22s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-media {
  height: 190px;
  background:
    radial-gradient(circle at center, #ffffff 0 22%, transparent 23%),
    linear-gradient(135deg, #f3f4f6, #fff7ed);
  display: grid;
  place-items: center;
  position: relative;
  font-size: 74px;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-icon {
  font-size: 76px;
}

.discount-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 8px;
  border-radius: 999px;
  z-index: 2;
}

.heart {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
}

.product-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  font-size: 16px;
  line-height: 1.35;
  min-height: 44px;
  color: #111827;
}

.product-category {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 5px;
}

.rating {
  margin: 8px 0;
  color: #f59e0b;
  font-size: 13px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: auto;
}

.price {
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 20px;
}

.old-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 13px;
}

.stock {
  font-size: 12px;
  color: var(--green);
  font-weight: 900;
  margin: 8px 0 12px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.add-cart,
.details-btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
  text-align: center;
}

.add-cart {
  background: var(--accent);
  color: #fff;
}

.details-btn {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

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

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

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 9px 22px rgba(15, 23, 42, 0.04);
}

.info-card h3 {
  color: #111827;
  margin-bottom: 10px;
  font-size: 19px;
}

.info-card p,
.info-card li {
  color: #4b5563;
  font-size: 14px;
}

.info-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.info-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 14px;
  text-align: center;
}

.feature b {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.feature h3 {
  font-size: 14px;
  color: #111827;
}

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

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 17px;
  color: #111827;
  margin-bottom: 6px;
}

.step-card p {
  color: var(--muted);
  font-size: 14px;
}

.promo-wide {
  margin: 30px 0 10px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.25), transparent 24%),
    linear-gradient(135deg, #0f172a, #1e293b 50%, #ff6a00);
  color: #fff;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.promo-wide h2 {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.promo-wide p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
  max-width: 620px;
}

.promo-phone {
  justify-self: end;
  width: min(250px, 100%);
  aspect-ratio: 0.78 / 1;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  background: linear-gradient(150deg, #fff7ed, #fed7aa);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 900;
  text-align: center;
  padding: 18px;
  font-size: 20px;
}

.page-title {
  margin: 18px 0 20px;
}

.page-title h1 {
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -1.2px;
  color: #111827;
  margin: 10px 0 6px;
}

.page-title p {
  color: var(--muted);
}

.category-filter-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
}

.category-filter-box label {
  font-weight: 900;
}

.category-filter-box select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  outline: 0;
  background: #fff;
  max-width: 100%;
}

.product-details-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  margin-top: 22px;
}

.product-details-image {
  background:
    radial-gradient(circle at center, #ffffff 0 22%, transparent 23%),
    linear-gradient(135deg, #f3f4f6, #fff7ed);
  border: 1px solid var(--line);
  border-radius: 28px;
  min-height: 450px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.product-details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details-icon {
  font-size: 150px;
}

.product-info-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.product-info-panel h1 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: #111827;
  margin-bottom: 10px;
}

.product-info-panel .description {
  color: #4b5563;
  margin: 16px 0;
}

.product-feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.product-feature-list li {
  background: #f9fafb;
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 14px;
  color: #374151;
}

.product-feature-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer {
  margin-top: 32px;
  background: #101827;
  color: #fff;
  padding: 38px 0 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer h3 { margin-bottom: 12px; }

.footer p,
.footer a,
.footer li {
  color: #cbd5e1;
  font-size: 14px;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 7px;
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  margin: 0;
  font-weight: 900;
}

.copyright {
  padding-top: 16px;
  color: #94a3b8;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 27px;
  box-shadow: 0 18px 35px rgba(34, 197, 94, 0.3);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 100;
  display: none;
  justify-content: end;
}

.cart-drawer.open { display: flex; }

.drawer-panel {
  width: min(390px, 100%);
  height: 100%;
  background: #fff;
  padding: 20px;
  overflow-y: auto;
  animation: slideIn 0.22s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.drawer-head button {
  border: 0;
  background: #f3f4f6;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cart-thumb {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  font-size: 27px;
  overflow: hidden;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item h4 {
  font-size: 14px;
  line-height: 1.3;
}

.cart-item p {
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 14px;
  margin-top: 4px;
}

.remove-item {
  border: 0;
  background: #fee2e2;
  color: #b91c1c;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.drawer-bottom {
  margin-top: 22px;
  background: #f9fafb;
  padding: 16px;
  border-radius: 18px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 13px;
}

.checkout-btn {
  width: 100%;
  border: 0;
  background: var(--brand);
  color: #fff;
  border-radius: 14px;
  padding: 13px;
  font-weight: 900;
  cursor: pointer;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(100px);
  background: #111827;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 200;
  font-weight: 800;
  transition: 0.25s ease;
  opacity: 0;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.empty-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1080px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .main-nav {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .main-nav > .search-box { display: none; }
  .mobile-search { display: flex; }
  .mobile-menu-btn { display: grid; }
  .top-links { display: none; }

  .hero-grid,
  .product-details-layout {
    grid-template-columns: 1fr;
  }

  .side-offers {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  .promo-wide { grid-template-columns: 1fr; }
  .promo-phone { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, 1180px); }

  .top-strip-inner {
    justify-content: center;
    text-align: center;
  }

  .main-nav {
    min-height: 66px;
    gap: 10px;
  }

  .logo { font-size: 18px; }
  .logo small { font-size: 10px; }

  .logo-mark,
  .logo-img {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .icon-btn {
    min-width: 40px;
    height: 40px;
  }

  .hero-grid { padding-top: 16px; }

  .hero-card {
    padding: 24px 18px;
    min-height: 470px;
    align-items: start;
  }

  .hero-card p { font-size: 14px; }
  .hero-bn { font-size: 16px; }

  .hero-visual {
    width: 72%;
    right: 14%;
    bottom: 18px;
    font-size: 105px;
  }

  .hero-buttons .btn { width: 100%; }
  .side-offers { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }

  .deal-banner {
    grid-template-columns: 1fr;
  }

  .timer { width: 100%; }
  .timer div {
    flex: 1;
    min-width: 0;
  }

  .product-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }

  .promo-wide { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; }

  .category-filter-box {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .product-details-image {
    min-height: 330px;
  }

  .product-details-icon {
    font-size: 110px;
  }

  .product-actions .btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}
