:root {
  --tt-primary: #ff6b6b;
  --tt-primary-dark: #df4f4f;
  --tt-logo: #942a40;
  --tt-logo-dark: #6f1f30;
  --tt-logo-deep: #541726;
  --tt-secondary: #ffd166;
  --tt-accent: #06d6a0;
  --tt-accent-soft: #e9fff8;
  --tt-bg: #f8f9fa;
  --tt-text: #333333;
  --tt-muted: #6c757d;
  --tt-border: #e7e9ee;
  --tt-surface: #ffffff;
  --tt-soft-pink: #fff0f0;
  --tt-soft-yellow: #fff7db;
  --tt-soft-green: #e9fff8;
  --tt-blue: #4d96ff;
  --tt-shadow: 0 12px 32px rgba(35, 40, 58, 0.08);
  --tt-radius: 8px;
  --tt-header-height: 150px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main section,
footer [id] {
  scroll-margin-top: calc(var(--tt-header-height) + 16px);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--tt-text);
  background: var(--tt-bg);
  padding-bottom: 72px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.section-kicker {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a:hover {
  color: var(--tt-primary-dark);
}

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 2000;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--tt-text);
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.top-strip {
  background: linear-gradient(90deg, #222631, #2a2230 52%, #942a40);
  color: #ffffff;
  font-size: 0.85rem;
}

.top-strip a {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #ffffff;
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(231, 233, 238, 0.72);
  box-shadow: 0 8px 28px rgba(33, 37, 41, 0.04);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(33, 37, 41, 0.1);
}

.header-main {
  padding: 14px 0;
  background: linear-gradient(135deg, #ffffff, #fff7f8);
}

.header-main-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-menu {
  min-height: 58px;
  padding: 0;
  background: #ffffff;
  border-top: 1px solid rgba(148, 42, 64, 0.08);
  box-shadow: 0 10px 26px rgba(33, 37, 41, 0.04);
}

.header-menu > .container {
  min-height: 58px;
}

.site-header .container {
  align-items: center;
}

@media (min-width: 992px) {
  .header-menu .main-nav-offcanvas {
    flex: 1 1 auto;
  }

  .main-nav-offcanvas .offcanvas-body {
    align-items: center;
    padding: 0;
  }

  .site-header .nav-menu {
    flex: 1 1 auto;
    justify-content: flex-start;
    margin-left: 0 !important;
  }

  .site-header .nav-actions {
    flex: 0 0 auto;
    justify-content: flex-end;
    margin-left: 0 !important;
  }
}

.navbar-brand {
  min-width: 180px;
  padding: 2px 0;
  color: var(--tt-logo);
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar-brand:hover,
.navbar-brand:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px);
}

.site-footer p {
  padding-right: 30px;
}


.header-search {
  position: relative;
  width: min(460px, 100%);
}

.header-search-display {
  flex: 1 1 560px;
  width: min(640px, 100%);
  max-width: 640px;
  cursor: text;
}

.header-search .form-control {
  min-height: 50px;
  border-radius: 999px;
  border-color: rgba(148, 42, 64, 0.12);
  background: rgba(248, 249, 250, 0.9);
  padding-left: 44px;
  padding-right: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 28px rgba(35, 40, 58, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search-display .form-control {
  min-height: 54px;
  cursor: text;
  background: #ffffff;
}

.header-search .form-control:focus {
  background: #ffffff;
  border-color: rgba(255, 107, 107, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.12), 0 14px 34px rgba(35, 40, 58, 0.08);
}

.header-search .bi-search {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tt-muted);
  pointer-events: none;
}

.header-search.header-search-icon {
  width: auto;
  flex: 0 0 auto;
  margin-right: 0 !important;
  margin-left: 10px !important;
}

.header-search-legacy {
  display: none !important;
}

.header-actions-list {
  flex: 0 0 auto;
  flex-direction: row;
  margin: 0;
}

.call-order {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--tt-text);
}

.call-order:hover {
  color: var(--tt-logo);
}

.call-order-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-logo);
  background: var(--tt-soft-pink);
  border-radius: 50%;
  font-size: 1.2rem;
}

.call-order small,
.call-order strong {
  display: block;
  line-height: 1.22;
}

.call-order small {
  color: var(--tt-muted);
  font-weight: 700;
}

.call-order strong {
  margin-top: 2px;
  color: var(--tt-text);
  font-weight: 800;
  white-space: nowrap;
}

.call-order {
  margin-left: auto;
}

.account-dropdown-btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 8px 4px 4px;
  color: var(--tt-text);
  background: transparent;
  border: 0;
  border-radius: 999px;
}

.account-dropdown-btn:hover,
.account-dropdown-btn:focus-visible,
.account-dropdown-btn.show {
  color: var(--tt-logo);
  background: rgba(255, 240, 240, 0.72);
  outline: none;
}

.account-dropdown-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-primary);
  background: #ffffff;
  border: 1px solid rgba(231, 233, 238, 0.95);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(35, 40, 58, 0.05);
  font-size: 1.38rem;
}

.account-dropdown-copy {
  display: block;
  min-width: 116px;
  text-align: left;
}

.account-dropdown-copy small,
.account-dropdown-copy strong {
  display: block;
  line-height: 1.2;
}

.account-dropdown-copy small {
  color: var(--tt-muted);
  font-weight: 700;
}

.account-dropdown-copy strong {
  margin-top: 4px;
  color: var(--tt-text);
  font-size: 0.96rem;
  font-weight: 800;
  white-space: nowrap;
}

.account-dropdown-chevron {
  color: var(--tt-muted);
  font-size: 0.98rem;
}

.account-dropdown-menu {
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(148, 42, 64, 0.1);
  border-radius: 12px;
  box-shadow: var(--tt-shadow);
}

.account-dropdown-menu .dropdown-item {
  border-radius: 8px;
  font-weight: 700;
}

.account-dropdown-menu .dropdown-item:hover,
.account-dropdown-menu .dropdown-item:focus {
  color: var(--tt-logo);
  background: var(--tt-soft-pink);
}

.header-icon-btn {
  position: relative;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-logo);
  background: #ffffff;
  border: 1px solid rgba(148, 42, 64, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(35, 40, 58, 0.06);
  font-size: 1.45rem;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.header-icon-btn:hover,
.header-icon-btn:focus-visible {
  color: var(--tt-primary-dark);
  border-color: rgba(255, 107, 107, 0.32);
  box-shadow: 0 14px 30px rgba(148, 42, 64, 0.11);
  transform: translateY(-1px);
}

.header-icon-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  color: #ffffff;
  background: var(--tt-primary);
  border: 2px solid #ffffff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.search-trigger {
  width: 48px;
  height: 48px;
  color: var(--tt-logo);
  border-color: rgba(148, 42, 64, 0.16);
  background: #ffffff;
}

.search-nav-item {
  display: inline-flex;
  align-items: center;
}

.search-nav-btn {
  color: var(--tt-logo);
}

.search-nav-btn:hover,
.search-nav-btn:focus-visible {
  color: var(--tt-primary-dark);
}

.header-search-icon .search-trigger .bi-search {
  position: static;
  color: currentColor;
  transform: none;
  pointer-events: auto;
}

.search-modal-content {
  overflow: visible;
  border: 1px solid rgba(148, 42, 64, 0.08);
  box-shadow: 0 24px 70px rgba(35, 40, 58, 0.18);
}

.modal-search-field {
  width: 100%;
}

.modal-search-field .form-control {
  min-height: 58px;
  font-size: 1.05rem;
}

.modal-search-field .search-suggestions {
  position: static;
  max-height: 360px;
  overflow-y: auto;
  margin-top: 10px;
}

.search-preset {
  min-height: 36px;
  padding: 0 14px;
  color: var(--tt-logo);
  background: var(--tt-soft-pink);
  border: 1px solid rgba(148, 42, 64, 0.14);
  border-radius: 999px;
  font-weight: 800;
}

.search-preset:hover,
.search-preset:focus-visible {
  color: #ffffff;
  background: var(--tt-logo);
  outline: none;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 1060;
  display: none;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--tt-border);
  border-radius: 14px;
  box-shadow: var(--tt-shadow);
}

.search-suggestions.is-open {
  display: block;
}

.suggestion-item {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  text-align: left;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid var(--tt-border);
}

.suggestion-item:last-child {
  border-bottom: 0;
}

.suggestion-item img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 6px;
}

.suggestion-item:hover,
.suggestion-item:focus {
  background: var(--tt-soft-pink);
  outline: none;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 10px 12px;
  color: #3c3f45;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--tt-primary-dark);
}

.navbar-nav .nav-link:focus-visible {
  outline: 2px solid rgba(255, 107, 107, 0.38);
  outline-offset: 2px;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: center;
  min-width: 104px;
  padding: 3px;
  background: #ffffff;
  border: 1px solid rgba(148, 42, 64, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(35, 40, 58, 0.06);
}

.language-toggle button {
  min-height: 34px;
  padding: 0 10px;
  color: var(--tt-logo);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  background: transparent;
  border: 0;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.language-toggle button:hover,
.language-toggle button:focus-visible {
  color: var(--tt-logo-dark);
  background: var(--tt-soft-pink);
  outline: none;
}

.language-toggle button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--tt-logo), var(--tt-primary-dark));
  box-shadow: 0 8px 18px rgba(148, 42, 64, 0.22);
}

body[data-lang="bn"] {
  font-family: "Noto Sans Bengali", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-lang="bn"] h1,
body[data-lang="bn"] h2,
body[data-lang="bn"] h3,
body[data-lang="bn"] h4,
body[data-lang="bn"] h5,
body[data-lang="bn"] h6,
body[data-lang="bn"] .navbar-brand,
body[data-lang="bn"] .section-kicker {
  font-family: "Noto Sans Bengali", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dropdown-mega {
  position: static;
}

.mega-menu {
  width: min(920px, calc(100vw - 24px));
  padding: 22px;
  border: 1px solid var(--tt-border);
  border-radius: 16px;
  box-shadow: var(--tt-shadow);
}

.mega-link {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
}

.mega-link:hover,
.mega-link:focus {
  color: var(--tt-text);
  background: var(--tt-bg);
}

.mega-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-primary-dark);
  background: var(--tt-soft-pink);
  border-radius: 8px;
}

.icon-btn {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tt-border);
  border-radius: 16px;
  color: var(--tt-text);
  background: linear-gradient(180deg, #ffffff, #fff7f7);
  box-shadow: 0 10px 24px rgba(35, 40, 58, 0.06);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover {
  color: var(--tt-primary-dark);
  border-color: rgba(255, 107, 107, 0.35);
  background: var(--tt-soft-pink);
  transform: translateY(-1px);
}

.icon-btn > .bi {
  font-size: 1.15rem;
  line-height: 1;
}

.account-btn {
  color: var(--tt-logo);
}

.wishlist-nav-btn {
  color: var(--tt-primary-dark);
}

.icon-btn.active,
.icon-btn:focus-visible {
  color: var(--tt-logo);
  border-color: rgba(148, 42, 64, 0.35);
  background: var(--tt-soft-pink);
}

.navbar-toggler {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--tt-logo);
  border: 1px solid rgba(148, 42, 64, 0.18);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(35, 40, 58, 0.06);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.navbar-toggler:hover {
  color: var(--tt-primary-dark);
  border-color: rgba(255, 107, 107, 0.34);
  background: var(--tt-soft-pink);
  transform: translateY(-1px);
}

.navbar-toggler .bi {
  font-size: 1.55rem;
  line-height: 1;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.14), 0 10px 24px rgba(35, 40, 58, 0.06);
}

.cart-count,
.wishlist-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--tt-primary);
  border: 2px solid #ffffff;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
}

.btn {
  border-radius: 8px;
  font-weight: 700;
}

.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: var(--tt-logo);
  --bs-btn-border-color: var(--tt-logo);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--tt-logo-dark);
  --bs-btn-hover-border-color: var(--tt-logo-dark);
  --bs-btn-focus-shadow-rgb: 148, 42, 64;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: var(--tt-logo-deep);
  --bs-btn-active-border-color: var(--tt-logo-deep);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: rgba(148, 42, 64, 0.65);
  --bs-btn-disabled-border-color: rgba(148, 42, 64, 0.65);
}

.btn-accent {
  color: #12342a;
  background: var(--tt-accent);
  border-color: var(--tt-accent);
}

.btn-accent:hover,
.btn-accent:focus {
  color: #0b241d;
  background: #05bd8d;
  border-color: #05bd8d;
}

.btn-outline-primary {
  --bs-btn-color: var(--tt-logo);
  --bs-btn-border-color: var(--tt-logo);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--tt-logo);
  --bs-btn-hover-border-color: var(--tt-logo);
  --bs-btn-focus-shadow-rgb: 148, 42, 64;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: var(--tt-logo-dark);
  --bs-btn-active-border-color: var(--tt-logo-dark);
  --bs-btn-disabled-color: rgba(148, 42, 64, 0.65);
  --bs-btn-disabled-border-color: rgba(148, 42, 64, 0.65);
}

.section-padding {
  padding: 72px 0;
}

.section-heading {
  max-width: 680px;
}

.section-kicker {
  color: var(--tt-primary-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 10px;
  font-weight: 800;
  color: #232631;
}

.section-copy {
  color: var(--tt-muted);
}

.hero-slider {
  background: #ffffff;
}

.hero-slide {
  position: relative;
  min-height: 550px;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #212529;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 23, 31, 0.78), rgba(20, 23, 31, 0.34), rgba(20, 23, 31, 0.06));
}

.hero-slide img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  width: min(620px, 100%);
  color: #ffffff;
  padding: 232px 0;
}

.hero-content h1 {
  font-size: 3.1rem;
  line-height: 1.08;
  font-weight: 800;
}

.hero-content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #3b2a00;
  background: var(--tt-secondary);
  border-radius: 6px;
  font-weight: 800;
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

.category-card,
.product-card,
.reason-item,
.testimonial-card,
.brand-tile,
.offer-panel,
.auth-panel,
.cart-panel,
.filter-panel,
.detail-panel {
  background: var(--tt-surface);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
}

.category-card {
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tt-soft-yellow);
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-body {
  padding: 16px;
}

.product-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f2f4f7;
}

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

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  color: #111827;
  background: var(--tt-secondary);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  color: var(--tt-text);
  background: rgba(255, 255, 255, 0.9);
}

.wishlist-btn.is-active {
  color: #ffffff;
  background: var(--tt-primary);
  border-color: var(--tt-primary);
}

.quick-view {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card:hover .quick-view,
.product-card:focus-within .quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-body {
  padding: 16px;
}

.product-name {
  min-height: 44px;
  margin-bottom: 8px;
  color: #232631;
  font-weight: 800;
}

.price {
  color: var(--tt-primary-dark);
  font-weight: 800;
}

.old-price {
  color: var(--tt-muted);
  text-decoration: line-through;
}

.rating {
  color: #f7b500;
  font-size: 0.92rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px;
}

.product-actions .btn {
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-right: 8px;
  padding-left: 8px;
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.1;
  white-space: nowrap;
}

.product-actions .btn .bi {
  margin-right: 0 !important;
}

.product-cart-btn {
  width: 48px;
  padding: 0;
}

.product-cart-btn .bi {
  font-size: 1.08rem;
}

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

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.carousel-track > * {
  scroll-snap-align: start;
}

.offer-panel {
  position: relative;
  overflow: hidden;
  color: #222631;
  background: linear-gradient(135deg, #fff0f0, #fff8df 54%, #e9fff8);
}

.offer-panel::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: rgba(255, 107, 107, 0.14);
  border-radius: 50%;
}

.coupon-code {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px dashed var(--tt-primary);
  border-radius: 8px;
  font-weight: 800;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 1fr));
  gap: 10px;
}

.countdown-box {
  padding: 12px 8px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--tt-border);
  border-radius: 8px;
}

.countdown-box strong {
  display: block;
  font-size: 1.3rem;
}

.reason-item {
  height: 100%;
  padding: 22px;
}

.reason-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-primary-dark);
  background: var(--tt-soft-pink);
  border-radius: 8px;
  font-size: 1.35rem;
}

.testimonial-card {
  height: 100%;
  padding: 22px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-tile {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #50545e;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 800;
}

.newsletter-band {
  color: #ffffff;
  background: linear-gradient(120deg, rgba(34, 38, 49, 0.94), rgba(84, 23, 38, 0.9) 54%, rgba(148, 42, 64, 0.72)), url("../img/photos/photo-1503454537195-1dcabb73ffb9-w1600-q78.jpg") center/cover;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 560px;
}

.newsletter-form .form-control {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
}

.newsletter-form .btn {
  color: var(--tt-logo-deep);
  background: #ffffff;
  border-color: #ffffff;
}

.newsletter-form .btn:hover,
.newsletter-form .btn:focus {
  color: #ffffff;
  background: var(--tt-logo);
  border-color: var(--tt-logo);
}

.site-footer {
  background: #222631;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer .footer-brand {
  color: #ffffff;
}

.footer-brand {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.footer-link {
  display: inline-flex;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-link:hover {
  color: #ffffff;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.social-link:hover {
  color: #ffffff;
  background: var(--tt-primary);
}

.page-hero {
  padding: 56px 0;
  background: linear-gradient(135deg, #fff0f0, #f8f9fa 58%, #e9fff8);
  border-bottom: 1px solid var(--tt-border);
}

.breadcrumb-item a {
  color: var(--tt-primary-dark);
}

.filter-panel,
.detail-panel,
.cart-panel,
.auth-panel {
  padding: 22px;
}

.filter-panel {
  position: sticky;
  top: calc(var(--tt-header-height) + 18px);
}

.price-range-value {
  font-weight: 800;
  color: var(--tt-primary-dark);
}

.pagination .page-link {
  color: var(--tt-primary-dark);
}

.pagination .active .page-link {
  background: var(--tt-primary);
  border-color: var(--tt-primary);
}

.gallery-main {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--tt-border);
  border-radius: 8px;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-main.is-zoomed img {
  transform: scale(1.55);
  cursor: zoom-out;
}

.gallery-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 8px;
}

.gallery-thumb.is-active {
  border-color: var(--tt-primary);
}

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

.variant-chip {
  min-width: 44px;
  min-height: 40px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-text);
  background: #ffffff;
  border: 1px solid var(--tt-border);
  border-radius: 8px;
  font-weight: 700;
}

.variant-chip.is-selected,
.variant-chip:hover {
  color: #ffffff;
  background: var(--tt-primary);
  border-color: var(--tt-primary);
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--tt-border);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-control button {
  width: 40px;
  height: 40px;
  border: 0;
  background: #ffffff;
}

.quantity-control input {
  width: 54px;
  height: 40px;
  text-align: center;
  border: 0;
  border-right: 1px solid var(--tt-border);
  border-left: 1px solid var(--tt-border);
}

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

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.auth-shell {
  min-height: 68vh;
  display: grid;
  align-items: center;
}

.auth-panel {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  box-shadow: var(--tt-shadow);
}

.form-control,
.form-select {
  border-color: var(--tt-border);
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--tt-primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.16);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 1040;
  display: grid;
  gap: 10px;
}

.float-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(33, 37, 41, 0.18);
}

.back-to-top {
  opacity: 0;
  pointer-events: none;
  background: var(--tt-logo);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(8px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #ffffff;
  border-top: 1px solid var(--tt-border);
  box-shadow: 0 -8px 26px rgba(33, 37, 41, 0.08);
}

.mobile-bottom-nav a {
  min-height: 62px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--tt-muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
  color: var(--tt-primary-dark);
}

.mobile-bottom-nav i {
  font-size: 1.12rem;
}

.empty-state {
  padding: 44px 18px;
  text-align: center;
  color: var(--tt-muted);
}

.modal-content {
  border: 0;
  border-radius: 8px;
}

.modal-product-image {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.quick-view-dialog {
  width: min(960px, calc(100vw - 28px));
  max-width: 960px;
}

.quick-view-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(31, 35, 45, 0.22);
}

.quick-view-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  background-color: rgba(255, 247, 248, 0.95);
  background-size: 14px;
  box-shadow: 0 10px 24px rgba(35, 40, 58, 0.08);
  opacity: 1;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  max-height: min(760px, calc(100vh - 64px));
}

.quick-view-media {
  min-width: 0;
  padding: 24px;
}

.quick-view-gallery-main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f8f9fa;
  border-radius: 8px;
}

.quick-view-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view-gallery-arrow {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 42, 64, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(35, 40, 58, 0.1);
  transform: translateY(-50%);
}

.quick-view-gallery-arrow:hover,
.quick-view-gallery-arrow:focus {
  color: #ffffff;
  background: var(--tt-logo);
  outline: none;
}

.quick-view-gallery-arrow-prev {
  left: 12px;
}

.quick-view-gallery-arrow-next {
  right: 12px;
}

.quick-view-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.quick-view-thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 8px;
}

.quick-view-thumb.is-active {
  border-color: var(--tt-logo);
}

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

.quick-view-info {
  min-width: 0;
  padding: 42px 30px 32px 0;
}

.quick-view-info-scroll {
  max-height: calc(min(760px, 100vh - 64px) - 74px);
  padding-right: 8px;
  overflow-y: auto;
}

.quick-view-kicker {
  margin-bottom: 10px;
  color: var(--tt-primary);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-view-title {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.16;
}

.quick-view-title a {
  color: var(--tt-text);
}

.quick-view-title a:hover {
  color: var(--tt-logo);
}

.quick-view-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: #ffb703;
}

.quick-view-rating span {
  color: var(--tt-muted);
  font-weight: 700;
}

.quick-view-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.quick-view-price {
  color: var(--tt-primary);
  font-size: 1.55rem;
  font-weight: 800;
}

.quick-view-sale-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: #12342a;
  background: var(--tt-accent-soft);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.quick-view-description {
  margin-bottom: 8px;
  color: var(--tt-muted);
  line-height: 1.7;
}

.quick-view-more {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--tt-logo);
  font-weight: 800;
}

.quick-view-option-block {
  margin-bottom: 18px;
}

.quick-view-option-label {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 9px;
  font-weight: 800;
}

.quick-view-option-label span {
  color: var(--tt-text);
}

.quick-view-option-label strong {
  color: var(--tt-muted);
}

.quick-view-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-view-stock {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #1f7a52;
  font-weight: 800;
}

.quick-view-purchase {
  margin-bottom: 16px;
}

.quick-view-quantity-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.quick-view-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.quick-view-actions .btn {
  min-height: 48px;
}

.checkout-divider {
  border-color: rgba(148, 42, 64, 0.12);
  opacity: 1;
}

.delivery-current-charge {
  color: var(--tt-logo);
  font-size: 0.92rem;
}

.delivery-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.delivery-location-option {
  display: block;
  cursor: pointer;
}

.delivery-location-card {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  color: var(--tt-logo-deep);
  background: #fffdf8;
  border: 1px solid rgba(148, 42, 64, 0.14);
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.delivery-location-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-logo);
  background: var(--tt-soft-yellow);
  border-radius: 8px;
}

.delivery-location-icon i {
  font-size: 1.42rem;
}

.delivery-location-card strong,
.delivery-location-card small {
  display: block;
}

.delivery-location-card strong {
  font-size: 1rem;
}

.delivery-location-card small {
  margin-top: 4px;
  color: var(--tt-muted);
  font-weight: 700;
}

.delivery-location-option:hover .delivery-location-card {
  border-color: rgba(148, 42, 64, 0.34);
  background: var(--tt-soft-pink);
}

.delivery-location-option input:checked + .delivery-location-card {
  background: linear-gradient(135deg, #fff7db, #fff0f0);
  border-color: var(--tt-logo);
  box-shadow: 0 0 0 2px rgba(148, 42, 64, 0.1), 0 8px 18px rgba(148, 42, 64, 0.07);
}

.delivery-location-option input:checked + .delivery-location-card .delivery-location-icon {
  color: #ffffff;
  background: var(--tt-logo);
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.payment-method-option {
  display: block;
  cursor: pointer;
}

.payment-method-card {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 42, 64, 0.14);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--tt-logo-deep);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.payment-method-card i {
  font-size: 1rem;
  color: var(--tt-logo);
}

.payment-method-option:hover .payment-method-card {
  border-color: rgba(148, 42, 64, 0.34);
  background: var(--tt-soft-pink);
}

.payment-method-option input:checked + .payment-method-card {
  color: var(--tt-logo-dark);
  background: linear-gradient(135deg, #fff7db, #fff0f0);
  border-color: var(--tt-logo);
  box-shadow: 0 0 0 2px rgba(148, 42, 64, 0.1), 0 8px 18px rgba(148, 42, 64, 0.07);
}

.payment-method-option input:checked + .payment-method-card i {
  color: var(--tt-primary-dark);
}

.payment-instruction-panel {
  padding: 24px;
  border: 1px solid rgba(148, 42, 64, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 247, 219, 0.82), rgba(255, 240, 240, 0.92));
}

.payment-instruction-panel h3 {
  color: var(--tt-logo-dark);
}

.payment-instruction-panel[data-payment-accent="mobile"] {
  border-color: rgba(223, 79, 79, 0.2);
  background: linear-gradient(135deg, rgba(255, 240, 240, 0.96), rgba(255, 247, 219, 0.72));
}

.payment-instruction-panel[data-payment-accent="mobile"] h3,
.payment-instruction-panel[data-payment-accent="mobile"] strong {
  color: var(--tt-logo);
}

.payment-instruction-panel[data-payment-accent="bank"] {
  border-color: rgba(255, 209, 102, 0.45);
  background: linear-gradient(135deg, rgba(255, 247, 219, 0.94), rgba(255, 255, 255, 0.96));
}

.payment-account-box {
  padding: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(148, 42, 64, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(84, 23, 38, 0.05);
}

.payment-account-box span,
.payment-account-box strong {
  display: block;
}

.payment-account-box strong {
  margin-top: 4px;
  font-size: 1.2rem;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }

  .navbar-toggler {
    display: none !important;
  }

  .mobile-bottom-nav {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 991.98px) {
  :root {
    --tt-header-height: 184px;
  }

  .header-main {
    padding: 10px 0;
  }

  .header-main-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-menu {
    min-height: 0;
  }

  .header-menu > .container {
    min-height: 0;
  }

  .main-nav-offcanvas {
    width: min(340px, 86vw) !important;
    height: 100dvh !important;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-right: 1px solid var(--tt-border);
    box-shadow: 18px 0 48px rgba(35, 40, 58, 0.16);
    overflow: hidden;
  }

  .main-nav-offcanvas .offcanvas-header {
    min-height: 58px;
    flex: 0 0 auto;
    position: relative;
    padding: 10px 18px;
    border-bottom: 1px solid var(--tt-border);
  }

  .main-nav-offcanvas .offcanvas-title {
    color: var(--tt-text);
    font-size: 1.18rem;
  }

  .main-nav-offcanvas .btn-close {
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 14px;
    background-color: #fff7f8;
    background-size: 14px;
    opacity: 1;
    right: 0;
    position: absolute;
  }

  .main-nav-offcanvas .btn-close:hover,
  .main-nav-offcanvas .btn-close:focus {
    opacity: 1;
    box-shadow: 0 0 0 0.18rem rgba(255, 107, 107, 0.16);
  }

  .main-nav-offcanvas .offcanvas-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 10px 12px 16px;
    overflow-y: auto;
  }

  .site-header .navbar-nav {
    align-items: stretch !important;
  }

  .site-header .navbar-nav .nav-link {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 12px;
  }

  .main-nav-offcanvas .nav-menu {
    gap: 2px;
  }

  .main-nav-offcanvas .nav-link:hover,
  .main-nav-offcanvas .nav-link:focus,
  .main-nav-offcanvas .nav-link.active {
    color: var(--tt-logo);
    background: var(--tt-soft-pink);
  }

  .language-toggle {
    width: auto;
    max-width: 180px;
    margin: 4px 0;
  }

  .header-search {
    width: 100%;
    order: 4;
    margin-top: 10px;
  }

  .header-search-display {
    flex-basis: 100%;
    max-width: none;
  }

  .header-search.header-search-icon {
    width: auto;
    order: 0;
    margin-top: 0;
    margin-left: auto !important;
  }

  .header-actions-list {
    order: 2;
    margin-left: auto;
  }

  .navbar-toggler {
    order: 3;
  }

  .navbar-brand {
    order: 1;
    min-width: 168px;
  }

  .brand-logo {
    width: 168px;
    height: 64px;
  }

  .mega-menu {
    width: 100%;
    box-shadow: none;
  }

  .hero-slide {
    min-height: 480px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section-padding {
    padding: 56px 0;
  }

  .filter-panel {
    position: static;
  }

  .carousel-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

@media (max-width: 991.98px) and (max-height: 430px) {
  .main-nav-offcanvas .offcanvas-header {
    min-height: 50px;
    padding: 7px 14px;
  }

  .main-nav-offcanvas .offcanvas-title {
    font-size: 1.05rem;
  }

  .main-nav-offcanvas .btn-close {
    width: 34px;
    height: 34px;
  }

  .main-nav-offcanvas .offcanvas-body {
    padding: 6px 10px 10px;
  }

  .site-header .navbar-nav .nav-link {
    min-height: 34px;
    padding: 5px 10px;
    font-size: 0.92rem;
  }
}

@media (max-width: 767.98px) {
  .top-strip {
    display: none;
  }

  .quick-view-dialog {
    width: calc(100vw - 18px);
    margin: 9px auto;
  }

  .quick-view-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-height: calc(100dvh - 18px);
    overflow-y: auto;
  }

  .quick-view-media {
    padding: 14px;
  }

  .quick-view-gallery-main {
    aspect-ratio: 1 / 1;
  }

  .quick-view-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .quick-view-info {
    padding: 4px 18px 20px;
  }

  .quick-view-info-scroll {
    max-height: none;
    padding-right: 0;
    overflow: visible;
  }

  .quick-view-close {
    top: 12px;
    right: 12px;
  }

  .navbar-brand {
    min-width: 150px;
  }

  .brand-logo {
    width: 150px;
    height: 58px;
  }

  .hero-slide {
    min-height: 430px;
  }

  .hero-slide::before {
    background: linear-gradient(90deg, rgba(20, 23, 31, 0.84), rgba(20, 23, 31, 0.42));
  }

  .hero-content {
    padding: 58px 0;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .product-actions {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .product-cart-btn {
    width: 44px;
  }

  .carousel-track {
    grid-auto-columns: minmax(240px, 82%);
  }

  .newsletter-form {
    display: grid;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-item {
    grid-template-columns: 76px 1fr;
  }

  .cart-item img {
    width: 76px;
    height: 76px;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .payment-method-grid {
    grid-template-columns: 1fr;
  }

  .delivery-location-grid {
    grid-template-columns: 1fr;
  }

  .delivery-location-card {
    min-height: 72px;
  }

  .payment-method-card {
    min-height: 48px;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
