/* =========================================
   MEESHO CLONE — DESIGN SYSTEM
   Vanilla CSS — Mobile-First Responsive
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  --radius: 0.625rem;
  --background: #ffffff;
  --foreground: oklch(0.2 0.02 280);
  --card: #ffffff;
  --card-foreground: oklch(0.2 0.02 280);
  --primary: #9f2089;
  --primary-foreground: #ffffff;
  --secondary: #fdf2f9;
  --secondary-foreground: #9f2089;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --accent: #fdf2f9;
  --accent-foreground: #9f2089;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e2e8f0;
  --input: #cbd5e1;
  --ring: #9f2089;
  --success: oklch(0.6 0.16 150);
  --offer-gold: #e7b74d;
  --offer-card-bg: #fff5f7;
  --offer-card-border: #ffb347;
  --offer-label: #8b1454;
  --green: oklch(0.5 0.14 150);
  --price-color: oklch(0.45 0.02 280);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  border: none;
  outline: none;
}

#search-input:focus,
#search-input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

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

ul,
ol {
  list-style: none;
}

/* ── Typography ── */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-through {
  text-decoration: line-through;
}

.text-center {
  text-align: center;
}

/* ── Colors ── */
.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-destructive {
  color: var(--destructive);
}

.text-green {
  color: var(--green);
}

.text-foreground {
  color: var(--foreground);
}

.text-white {
  color: #fff;
}

/* ── Layout ── */
.min-h-screen {
  min-height: 100dvh;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1 1 0%;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.shrink-0 {
  flex-shrink: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.min-w-0 {
  min-width: 0;
}

.grid {
  display: grid;
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-50 {
  z-index: 50;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-auto {
  overflow-x: auto;
}

/* ── Spacing ── */
.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pb-32 {
  padding-bottom: 8rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

/* ── Backgrounds ── */
.bg-background {
  background-color: var(--background);
}

.bg-muted {
  background-color: var(--muted);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-card {
  background-color: var(--card);
}

.bg-gray {
  background-color: #f4f4f4;
}

.bg-white {
  background-color: #ffffff !important;
}

/* ── Borders ── */
.border {
  border: 1px solid var(--border);
}

.border-t {
  border-top: 1px solid var(--border);
}

.border-b {
  border-bottom: 1px solid var(--border);
}

.border-primary {
  border: 1px solid var(--primary);
}

.rounded {
  border-radius: 0.375rem;
}

.rounded-md {
  border-radius: var(--radius);
}

.rounded-lg {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* ── Shadows ── */
.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.15s ease;
  border: none;
  gap: 0.375rem;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: #9f2089 !important;
  color: #ffffff !important;
  border-radius: 12px;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: #80186d !important;
  opacity: 1;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: color-mix(in srgb, var(--primary) 8%, transparent);
}

.btn-sm {
  padding: 0.4rem 0.875rem;
  font-size: 0.8rem;
  height: 2.25rem;
}

.btn-lg {
  height: 3rem;
  font-size: 1rem;
  font-weight: 700;
}

/* ── Input ── */
.input {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--muted);
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 20%, transparent);
}

.input-dark {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-weight: 500;
}

.input-dark::placeholder {
  color: #94a3b8;
}

.input-dark:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(159, 32, 137, 0.12);
}

.field-error {
  font-size: 0.6875rem;
  color: var(--destructive);
  margin-top: 0.25rem;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff !important;
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: lowercase;
  letter-spacing: -0.03em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  color: var(--foreground);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 1rem;
  height: 1rem;
  padding: 0 2px;
  border-radius: 9999px;
  background: var(--destructive);
  color: var(--destructive-foreground);
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Search Bar ── */
.search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.625rem 0.75rem;
  margin: 0 1rem 0.75rem;
  max-width: 80rem;
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--foreground);
}

.search-bar input::placeholder {
  color: var(--muted-foreground);
}

/* ── Bottom Nav ── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  z-index: 20;
}

.bottom-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 80rem;
  margin: 0 auto;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.625rem 0.25rem;
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.bottom-nav-item.active {
  color: var(--primary);
}

.bottom-nav-item svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ── Announcement Bar ── */
.announcement-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  background: oklch(0.97 0.02 250);
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
  font-size: 0.75rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

/* ── Product Card ── */
.product-card {
  background: var(--card);
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  overflow: hidden;
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

/* Wishlist heart button */
.product-card-wish-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 20;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  color: var(--muted-foreground);
}

.product-card-wish-btn:hover {
  background: #fff;
  color: var(--primary);
}

.product-card-body {
  padding: 0.5rem 0.5rem 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.product-card-title {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--foreground);
  min-height: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.125rem;
}

.product-card-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.product-card-mrp {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.product-card-discount {
  font-size: 0.6875rem;
  color: oklch(0.6 0.16 150);
  font-weight: 600;
}

.product-card-offer {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  line-height: 1.3;
}

.product-card-delivery {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.product-card-rating-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.product-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: oklch(0.6 0.16 150);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  flex-shrink: 0;
}

.product-card-reviews {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0 0.75rem;
}

@media (min-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ── Deal Timer Badge ── */
.deal-timer-badge {
  display: inline-block;
  max-width: calc(100% - 0.5rem);
  padding: 3px 6px;
  border-radius: 4px;
  background: #ffe7fb;
  color: #9f2089;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

/* ── Checkout Progress ── */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  gap: 0;
  background: var(--background);
}

.checkout-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  max-width: 5rem;
}

.checkout-progress-dot {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  border: 2px solid var(--border);
  background: var(--muted);
  color: var(--muted-foreground);
}

.checkout-progress-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.checkout-progress-dot.done {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.checkout-progress-label {
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.checkout-progress-label.active {
  color: var(--primary);
}

.checkout-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  max-width: 3rem;
  margin-bottom: 1rem;
}

.checkout-progress-line.done {
  background: var(--green);
}

/* ── Cart Drawer ── */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 28rem);
  z-index: 50;
  background: var(--background);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 0 1rem;
}

.cart-drawer-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.04);
}

.cart-drawer-item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

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

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  background: #f8fafc;
  height: 1.75rem;
}

.qty-ctrl button {
  width: 1.75rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: background 0.12s;
  font-size: 0.75rem;
}

.qty-ctrl button:hover {
  background: #e2e8f0;
}

.qty-ctrl span {
  width: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
}

/* ── Modal Dialog ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 24rem;
  width: 100%;
  transform: scale(0.95);
  transition: transform 0.2s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-overlay.open .modal {
  transform: scale(1);
}

/* ── Payment Overlay ── */
.verify-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.verify-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.verify-spinner {
  width: 3rem;
  height: 3rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ── Footer ── */
.site-footer {
  background: #1a1a2e;
  color: #aaa;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
}

.site-footer a {
  color: #ddd;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* ── Sticky Footer Bar ── */
.sticky-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  z-index: 30;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
}

.sticky-footer-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  max-width: 32rem;
  margin: 0 auto;
}

/* ── Price summary ── */
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.price-row+.price-row {
  margin-top: 0.5rem;
}

.price-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 700;
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

/* ── Radio Button ── */
.radio-circle {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radio-circle.checked {
  border-color: var(--primary);
}

.radio-circle.checked::after {
  content: '';
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: var(--primary);
}

.radio-circle.disabled {
  border-color: var(--border);
  background: var(--muted);
}

/* ── Accordion ── */
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
}

.accordion-btn svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.accordion-btn.open svg {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
}

.accordion-body.open {
  display: block;
}

/* ── Section Cards ── */
.section-card {
  background: var(--background);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.section-card+.section-card {
  margin-top: 0.75rem;
}

/* ── Hero Section ── */
.home-hero {
  width: 100%;
  background: #f6f3f8;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-hero-top img {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.home-hero-banner {
  padding: 0;
  margin: 0;
  width: 100%;
  line-height: 0;
  font-size: 0;
}

.home-hero-banner-inner {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.home-hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

/* ── Trust Benefits ── */
.trust-benefits {
  position: relative;
  background: #faf7f2;
  padding: 12px 12px 18px;
}

.trust-benefits img {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  height: auto;
}

.trust-benefits-tnc {
  position: absolute;
  right: 10px;
  bottom: 6px;
  font-size: 9px;
  color: #9e9e9e;
}

/* ── Daily Deals Header ── */
.meesho-daily-deals {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.meesho-daily-deals-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 14px;
  max-width: 28rem;
  margin: 0 auto;
}

.meesho-daily-deals-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: #616161;
}

.meesho-daily-deals-timer {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px 5px 8px;
  border-radius: 6px;
  background: #fff3e8;
  border: 1px solid #f0b88a;
}

.meesho-daily-deals-timer-text {
  font-size: 13px;
  font-weight: 600;
  color: #c2185b;
  font-variant-numeric: tabular-nums;
}

/* ── Offer Zone ── */
.offer-zone-panel {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-zone-sale-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  background: linear-gradient(180deg, #f8e287 0%, #f0d264 45%, #e8c04a 100%);
}

.offer-zone-body {
  padding: 10px 10px 12px;
  background: linear-gradient(180deg, #e8a4c9 0%, #d81b60 55%, #ad1457 100%);
}

.offer-zone-title-badge {
  display: inline-block;
  padding: 6px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid var(--offer-gold);
  background: linear-gradient(180deg, #8d6e63 0%, #5d4037 100%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.offer-zone-countdown-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 3px;
  border-radius: 4px;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

/* ── Loader Dots ── */
.meesho-loader {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meesho-loader-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--primary);
  animation: meesho-loader-bounce 0.9s ease-in-out infinite;
}

.meesho-loader-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.meesho-loader-dot:nth-child(3) {
  animation-delay: 0.3s;
}

/* ── UPI Payment App ── */
.payment-app-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.12s;
}

.payment-app-option:hover {
  background: color-mix(in srgb, var(--muted) 60%, transparent);
}

.payment-app-option.selected {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
  outline: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* ── SVG Icons ── */
svg {
  display: inline-block;
  vertical-align: middle;
}

/* ── Product Detail ── */
.product-img-main {
  aspect-ratio: 1;
  background: var(--muted);
  max-height: min(100vw, 28rem);
  overflow: hidden;
}

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

.size-btn {
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--background);
  color: var(--foreground);
}

.size-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.size-btn.selected {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  color: var(--primary);
  font-weight: 600;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  background: var(--muted);
  border-radius: 9999px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 9999px;
}

/* ── Animations ── */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cart-badge-pop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.45);
  }

  100% {
    transform: scale(1);
  }
}

.cart-badge-pop {
  animation: cart-badge-pop 0.55s ease-out;
}

@keyframes meesho-loader-bounce {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.45;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes hero-ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero-ticker-track {
  animation: hero-ticker 22s linear infinite;
}

@keyframes slideIn {
  from {
    transform: translateY(12px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in {
  animation: slideIn 0.3s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.25s ease both;
}

/* ── Cart item in cart page ── */
.cart-item {
  background: var(--background);
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
}

.cart-item-img {
  flex-shrink: 0;
  width: 5.5rem;
  height: 5.5rem;
  background: var(--muted);
  border-radius: 0.5rem;
  overflow: hidden;
}

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

.cart-item-seller {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: var(--muted);
  font-size: 0.75rem;
  color: var(--foreground);
}

/* ── Review product card ── */
.review-card {
  background: var(--background);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.review-card-body {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: var(--muted);
  font-size: 0.75rem;
  border-top: 1px solid var(--border);
}

/* ── Order confirmation ── */
.confirm-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.order-section {
  background: var(--card);
  padding: 1rem;
  margin: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .order-section {
    margin: 0.75rem 0;
  }
}

/* ── Trusted Badge ── */
.trusted-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: color-mix(in srgb, var(--primary) 4%, white);
  border: 1px solid color-mix(in srgb, var(--primary) 15%, transparent);
  border-radius: 0.5rem;
}

/* ── Empty state ── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  text-align: center;
}

.empty-state-icon {
  width: 7rem;
  height: 7rem;
  border-radius: 9999px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

/* ── Responsive helpers ── */
@media (min-width: 768px) {
  .hide-mobile {
    display: block !important;
  }

  .product-img-main {
    max-height: none;
  }

  .search-bar {
    margin: 0 auto 0.75rem;
  }
}

/* ── Utility Classes ── */
.pt-2 {
  padding-top: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.h-auto {
  height: auto;
}

.block {
  display: block;
}

.object-cover {
  object-fit: cover;
}

.items-baseline {
  align-items: baseline;
}

.lowercase {
  text-transform: lowercase;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.border-border {
  border-color: var(--border);
}

.border-none {
  border-style: none;
}

.bg-transparent {
  background-color: transparent;
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.cursor-pointer {
  cursor: pointer;
}

.p-0 {
  padding: 0;
}

.font-inherit {
  font: inherit;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-\[10px\] {
  font-size: 10px;
}

.-top-1\.5 {
  top: -0.375rem;
}

.-right-1\.5 {
  right: -0.375rem;
}

/* ── QR Code ── */
#qr-canvas-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
}

#qr-canvas-wrap canvas {
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

/* ── Photo image fallback ── */
.img-fallback {
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 0.6875rem;
  color: oklch(0.45 0.08 25);
  padding: 0.5rem 0.75rem;
  line-height: 1.6;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 9999px;
}

/* ── Marquee Top Banner ── */
.top-marquee-bar {
  background-color: #970e71 !important;
  color: #ffffff !important;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: flex;
  user-select: none;
  width: 100%;
}

.marquee__inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
  flex-shrink: 0;
}

.marquee__inner span {
  padding: 0 6px;
  color: #ffffff !important;
}

.top-marquee-bar:hover .marquee__inner {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ── User Carousel Structure & Responsiveness ── */
._3lqN6b,
.WhKF32,
.IF3BzC,
._1fhgRH {
  width: 100%;
  margin: 0;
  padding: 0;
}

.container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
}

.col-sm-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden !important;
  touch-action: pan-y;
  background: #ffffff;
  transition: height 0.35s ease-in-out;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item,
.carousel-item:not(.active) {
  position: relative !important;
  display: block !important;
  min-width: 100% !important;
  width: 100% !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  opacity: 1 !important;
  margin: 0 !important;
  visibility: visible !important;
  transform: none !important;
  height: auto !important;
}

.d-block {
  display: block !important;
}

.w-100 {
  width: 100% !important;
}

.carousel-item img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #ffffff !important;
}

/* Hide Carousel Indicators (Dots) */
.carousel-indicators {
  display: none !important;
}

/* Mobile Responsiveness Rules */
@media (max-width: 768px) {
  .carousel {
    max-width: 100%;
  }
  .carousel-item img {
    height: auto !important;
    max-height: none !important;
  }
  .top-marquee-bar {
    font-size: 11px;
    padding: 6px 0;
  }
}

@media (max-width: 480px) {
  .top-marquee-bar {
    font-size: 10.5px;
    letter-spacing: 0.2px;
    padding: 5px 0;
  }
}
/* Men's product hero: same store products, presented in the requested premium multi-panel style. */
.men-product-hero {
  width: 100% !important;
  max-width: none !important;
  background: #f7f4ef;
  overflow: hidden !important;
  border-radius: 0;
}
.men-product-hero-inner { min-height: 410px; }
.men-product-slide {
  min-height: 410px !important;
  height: 410px !important;
  display: grid !important;
  grid-template-columns: 31% 69%;
  align-items: stretch;
  background: linear-gradient(115deg, #eee9e2 0%, #fbfaf8 48%, #e9e4dc 100%);
  padding: 28px 4vw 44px;
  box-sizing: border-box;
}
.men-product-slide-copy {
  align-self: center;
  z-index: 2;
  padding: 10px 24px 10px 1vw;
}
.men-product-eyebrow { letter-spacing: 5px; font-size: 12px; font-weight: 700; color: #4c4036; }
.men-product-slide-copy h2 { font-size: clamp(32px, 4vw, 58px); line-height: .98; margin: 14px 0 14px; color: #1c1714; font-weight: 800; }
.men-product-slide-copy p { max-width: 360px; font-size: 17px; line-height: 1.45; color: #4e4843; margin: 0 0 24px; }
.men-product-cta { display: inline-block; padding: 12px 22px; background: #241b16; color: #fff !important; text-decoration: none !important; font-weight: 700; letter-spacing: .4px; }
.men-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; align-items: end; height: 100%; }
.men-product-mini-card { min-width: 0; height: 100%; max-height: 335px; background: rgba(255,255,255,.88); border: 1px solid rgba(60,50,42,.10); box-shadow: 0 10px 28px rgba(0,0,0,.08); text-decoration: none !important; color: inherit; display: flex; flex-direction: column; overflow: hidden; }
.men-product-mini-image-wrap { flex: 1 1 auto; min-height: 0; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.men-product-mini-image-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; }
.men-product-mini-info { padding: 9px 10px 11px; background: #fff; }
.men-product-mini-title { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 12px; color: #302a26; }
.men-product-mini-price { display: block; margin-top: 4px; font-weight: 800; font-size: 14px; color: #231a15; }
.men-product-dots { position: absolute; left: 31%; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 7px; z-index: 5; }
.men-product-dots span { width: 9px; height: 9px; border-radius: 50%; background: #bdb7b0; display: block; }
.men-product-dots span.active { background: #2b211b; transform: scale(1.15); }
@media (max-width: 900px) {
  .men-product-slide { grid-template-columns: 1fr; height: auto !important; min-height: 520px !important; padding: 22px 16px 42px; }
  .men-product-slide-copy { text-align: center; padding: 8px 10px 18px; }
  .men-product-slide-copy p { margin-left: auto; margin-right: auto; }
  .men-product-grid { height: 300px; }
  .men-product-dots { left: 0; }
}
@media (max-width: 560px) {
  .men-product-slide { min-height: 440px !important; padding: 15px 10px 36px; }
  .men-product-slide-copy h2 { font-size: 31px; }
  .men-product-slide-copy p { font-size: 14px; margin-bottom: 14px; }
  .men-product-grid { height: 250px; gap: 7px; }
  .men-product-mini-card { max-height: 235px; }
  .men-product-mini-info { padding: 6px; }
  .men-product-mini-title { font-size: 9px; }
  .men-product-mini-price { font-size: 11px; }
}

/* Premium men's product carousel — banner-only styling; storefront layout remains unchanged. */
.men-product-hero {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  background: #111;
  border-radius: 0;
}
.men-product-hero-inner { min-height: 500px; }
.men-product-slide {
  min-height: 500px !important;
  height: 500px !important;
  padding: 0 !important;
  display: block !important;
  position: relative;
  overflow: hidden;
  background: #171513;
}
.men-product-editorial {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 24% 76%;
  background: linear-gradient(105deg, #151311 0%, #2a2520 45%, #151311 100%);
}
.men-product-editorial-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 22px 56px 4vw;
  color: #fff;
}
.men-product-editorial-copy .men-product-eyebrow {
  color: #d8b77a;
  font-size: 11px;
  letter-spacing: 4px;
}
.men-product-editorial-copy h2 {
  margin: 14px 0 14px;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: .98;
  font-weight: 800;
}
.men-product-editorial-copy p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.5;
  max-width: 270px;
}
.men-product-editorial-copy .men-product-cta {
  width: fit-content;
  padding: 11px 18px;
  background: #fff;
  color: #171311 !important;
  font-size: 12px;
  letter-spacing: .8px;
}
.men-product-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  height: 100%;
}
.men-product-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: block;
  color: #fff;
  text-decoration: none !important;
  background: #e9e5df;
}
.men-product-panel-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eeeae5 0%, #d8d1c8 100%);
}
.men-product-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.men-product-panel:hover .men-product-panel-image img { transform: scale(1.045); }
.men-product-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 35%, rgba(0,0,0,.78) 100%);
  pointer-events: none;
}
.men-product-panel-overlay {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 12px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.men-product-panel-kicker {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #e2c48e;
}
.men-product-panel-overlay strong {
  font-size: 12px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.men-product-panel-overlay > span:last-child {
  font-size: 14px;
  font-weight: 800;
}
.men-product-dots {
  position: absolute;
  left: 24%;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 8;
}
.men-product-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  display: block;
}
.men-product-dots span.active { background: #fff; transform: scale(1.2); }
@media (max-width: 900px) {
  .men-product-hero-inner, .men-product-slide { min-height: 560px !important; height: 560px !important; }
  .men-product-editorial { grid-template-columns: 1fr; grid-template-rows: 34% 66%; }
  .men-product-editorial-copy { padding: 20px 18px 10px; text-align: center; align-items: center; }
  .men-product-editorial-copy h2 { font-size: 34px; margin: 8px 0; }
  .men-product-editorial-copy p { margin-bottom: 10px; max-width: 430px; }
  .men-product-panel-grid { gap: 2px; }
  .men-product-panel-overlay { left: 8px; right: 7px; bottom: 10px; }
  .men-product-panel-overlay strong { font-size: 10px; }
  .men-product-panel-overlay > span:last-child { font-size: 12px; }
  .men-product-dots { left: 0; }
}
@media (max-width: 560px) {
  .men-product-hero-inner, .men-product-slide { min-height: 520px !important; height: 520px !important; }
  .men-product-editorial { grid-template-rows: 38% 62%; }
  .men-product-editorial-copy { padding: 15px 12px 8px; }
  .men-product-editorial-copy .men-product-eyebrow { font-size: 9px; letter-spacing: 2.5px; }
  .men-product-editorial-copy h2 { font-size: 28px; }
  .men-product-editorial-copy p { font-size: 12px; margin-bottom: 8px; }
  .men-product-editorial-copy .men-product-cta { padding: 8px 14px; font-size: 10px; }
  .men-product-panel-overlay { left: 6px; right: 5px; bottom: 7px; gap: 3px; }
  .men-product-panel-kicker { font-size: 7px; letter-spacing: 1px; }
  .men-product-panel-overlay strong { font-size: 8px; }
  .men-product-panel-overlay > span:last-child { font-size: 10px; }
}


/* Final hero treatment: generic fashion models only, never the store product images. */
.men-product-editorial {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  background: #efe9df !important;
}
.men-generic-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.men-generic-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.03) 72%, rgba(0,0,0,.16) 100%);
}
.men-generic-banner-copy {
  position: absolute;
  z-index: 4;
  left: clamp(18px, 5vw, 72px);
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 360px;
  text-shadow: 0 2px 14px rgba(0,0,0,.22);
}
.men-generic-banner-badge {
  display: inline-block;
  background: #c91616;
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .7px;
}
.men-generic-banner-kicker {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
}
.men-generic-banner-copy h2 {
  margin: 8px 0 4px !important;
  font-size: clamp(34px, 5vw, 68px) !important;
  line-height: .95 !important;
  color: #fff !important;
  font-weight: 900 !important;
}
.men-generic-banner-copy p {
  margin: 8px 0 !important;
  color: rgba(255,255,255,.92) !important;
  font-size: 14px !important;
  max-width: 300px !important;
}
.men-generic-banner-price {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 900;
  color: #fff;
  margin: 8px 0 16px;
}
.men-generic-banner-copy .men-product-cta {
  background: #fff !important;
  color: #171311 !important;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
@media (max-width: 900px) {
  .men-product-hero-inner, .men-product-slide { min-height: 460px !important; height: 460px !important; }
  .men-generic-banner-copy { left: 24px; max-width: 310px; }
  .men-generic-banner-image { object-position: 58% center; }
}
@media (max-width: 560px) {
  .men-product-hero-inner, .men-product-slide { min-height: 390px !important; height: 390px !important; }
  .men-generic-banner-copy { left: 16px; right: 16px; max-width: 250px; }
  .men-generic-banner-kicker { margin-top: 10px; font-size: 9px; letter-spacing: 2px; }
  .men-generic-banner-copy h2 { font-size: 32px !important; }
  .men-generic-banner-copy p { font-size: 11px !important; }
  .men-generic-banner-price { font-size: 32px; margin-bottom: 10px; }
  .men-generic-banner-copy .men-product-cta { padding: 8px 13px; font-size: 10px; }
}

/* Combo hero: 2 images / 3 images / 4 images, auto-advances every 3 seconds. */
.men-product-hero,
.men-product-hero-inner,
.men-product-slide { width: 100% !important; }
.men-product-hero-inner { overflow: hidden !important; }
.men-product-slide {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 7 !important;
  background: #f3efe9 !important;
  overflow: hidden !important;
}
.men-product-editorial {
  display: grid !important;
  grid-template-columns: 30% 70% !important;
  height: 100% !important;
  width: 100% !important;
  background: #f3efe9 !important;
  overflow: hidden !important;
}
.men-combo-copy {
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 3vw, 46px);
  color: #171311;
  background: linear-gradient(90deg,#f5f0e9 0%,#eee8df 100%);
}
.men-combo-copy .men-generic-banner-kicker { color:#514a43; }
.men-combo-copy h2 { color:#171311 !important; text-shadow:none !important; }
.men-combo-copy p { color:#514a43 !important; text-shadow:none !important; }
.men-combo-copy .men-generic-banner-price { color:#c91616; }
.men-combo-images {
  display: grid;
  height: 100%;
  min-width: 0;
  gap: 3px;
  background: #ddd6cc;
}
.men-combo-count-2 { grid-template-columns: repeat(2,1fr); }
.men-combo-count-3 { grid-template-columns: repeat(3,1fr); }
.men-combo-count-4 { grid-template-columns: repeat(4,1fr); }
.men-combo-image { position:relative; overflow:hidden; min-width:0; display:block; background:#e8e1d8; }
.men-combo-image img {
  width:100%; height:100%; display:block;
  object-fit:cover; object-position:center top;
  transition:transform .45s ease;
}
.men-combo-image:hover img { transform:scale(1.025); }
.men-product-hero .men-product-dots { left:30%; right:0; bottom:10px; }
@media (max-width:900px) {
  .men-product-slide { aspect-ratio: 16 / 11 !important; }
  .men-product-editorial { grid-template-columns: 36% 64% !important; }
  .men-combo-copy { padding:16px 12px; }
  .men-combo-copy .men-generic-banner-badge { font-size:8px; padding:5px 8px; }
  .men-combo-copy .men-generic-banner-kicker { font-size:8px; letter-spacing:2px; margin-top:9px; }
  .men-combo-copy h2 { font-size:clamp(22px,5vw,34px) !important; }
  .men-combo-copy p { font-size:10px !important; margin:5px 0 !important; }
  .men-combo-copy .men-generic-banner-price { font-size:28px; margin:4px 0 8px; }
  .men-combo-copy .men-product-cta { padding:7px 10px; font-size:9px; }
  .men-product-hero .men-product-dots { left:36%; }
}
@media (max-width:560px) {
  .men-product-slide { aspect-ratio: 4 / 3 !important; }
  .men-product-editorial { grid-template-columns: 1fr !important; grid-template-rows: 40% 60% !important; }
  .men-combo-copy { align-items:center; text-align:center; padding:9px 8px 4px; }
  .men-combo-copy .men-generic-banner-kicker { margin-top:5px; }
  .men-combo-copy h2 { font-size:27px !important; margin:5px 0 2px !important; }
  .men-combo-copy p { font-size:10px !important; margin:2px 0 !important; }
  .men-combo-copy .men-generic-banner-price { font-size:27px; margin:2px 0 5px; }
  .men-combo-copy .men-product-cta { padding:6px 10px; }
  .men-combo-images { min-height:0; }
  .men-combo-count-4 { grid-template-columns:repeat(4,1fr); }
  .men-product-hero .men-product-dots { left:0; right:0; bottom:5px; }
}

/* Final combo hero: one complete, non-cropped image per slide. */
.men-product-hero,
.men-product-hero-inner,
.men-product-slide,
.men-product-editorial,
.men-complete-banner-link {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
}
.men-product-slide {
  aspect-ratio: auto !important;
  background: #f3efe9 !important;
}
.men-product-editorial {
  display: block !important;
  background: #f3efe9 !important;
}
.men-complete-banner-link {
  display: block !important;
  text-decoration: none !important;
  line-height: 0 !important;
}
.men-complete-banner {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}
@media (max-width: 560px) {
  .men-complete-banner { width: 100% !important; height: auto !important; }
}

/* Final banner fix: stacked, fade carousel prevents missing slides and removes gaps/cropping. */
.home-hero, .home-hero > div, .home-hero .container-fluid, .home-hero .row, .home-hero .col-sm-12, .home-hero ._1fhgRH,
.men-product-hero, .men-product-hero-inner, .men-product-slide, .men-product-editorial, .men-complete-banner-link {
  margin: 0 !important;
  padding: 0 !important;
}
.men-product-hero {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  overflow: hidden !important;
  background: #f3efe9 !important;
  position: relative !important;
}
.men-product-hero-inner {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
  display: block !important;
  transform: none !important;
}
.men-product-slide,
.men-product-slide:not(.active) {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 512 / 390 !important;
  display: block !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .45s ease !important;
  background: #f3efe9 !important;
}
.men-product-slide.active {
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 2 !important;
}
.men-product-editorial {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  background: #f3efe9 !important;
}
.men-complete-banner-link {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  line-height: 0 !important;
}
.men-complete-banner {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #f3efe9 !important;
}
.men-product-dots { z-index: 10 !important; }


/* Final requested carousel behavior: horizontal slide, no blink/fade, no top gap. */
.home-hero { margin-top: 0 !important; padding-top: 0 !important; }
.men-product-hero { margin-top: 0 !important; padding-top: 0 !important; }
.men-product-hero-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  width: 100% !important;
  overflow: hidden !important;
  transform: translate3d(0,0,0);
  transition: transform .65s cubic-bezier(.22,.61,.36,1) !important;
  will-change: transform;
}
.men-product-slide,
.men-product-slide:not(.active),
.men-product-slide.active {
  position: relative !important;
  inset: auto !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  height: auto !important;
  aspect-ratio: 1600 / 1220 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  transition: none !important;
}
.men-complete-banner-link, .men-complete-banner {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}
.men-complete-banner { object-fit: contain !important; object-position: center !important; }


/* FINAL HERO FIX
   One complete 1600x1220 banner per slide.
   Natural image height prevents top/bottom cropping or stretching on desktop/mobile.
*/
.home-hero,
.home-hero > div,
.home-hero .WhKF32,
.home-hero .IF3BzC,
.home-hero ._1fhgRH,
.home-hero .container-fluid,
.home-hero .row,
.home-hero .col-sm-12,
#carouselExampleIndicators,
.men-product-hero,
.men-product-hero-inner,
.men-product-slide,
.men-product-editorial,
.men-complete-banner-link {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

#carouselExampleIndicators.men-product-hero {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: #f3efe9 !important;
}

#carouselExampleIndicators .men-product-hero-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  transform: translate3d(0,0,0);
  will-change: transform;
}

#carouselExampleIndicators .men-product-slide,
#carouselExampleIndicators .men-product-slide.active,
#carouselExampleIndicators .men-product-slide:not(.active) {
  position: relative !important;
  inset: auto !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  overflow: visible !important;
  background: #f3efe9 !important;
}

#carouselExampleIndicators .men-product-editorial,
#carouselExampleIndicators .men-complete-banner-link {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  display: block !important;
  overflow: visible !important;
  line-height: 0 !important;
}

#carouselExampleIndicators .men-complete-banner {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-width: 100% !important;
  object-fit: initial !important;
  object-position: initial !important;
  transform: none !important;
}

#carouselExampleIndicators .men-product-dots {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 10px !important;
  z-index: 20 !important;
}

@media (max-width: 768px) {
  #carouselExampleIndicators .men-complete-banner {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }
}


/* FINAL COMBO CAROUSEL OVERRIDE — 3 complete banners, horizontal slide, no crop/gap. */
#carouselExampleIndicators.men-product-hero { width:100% !important; margin:0 !important; padding:0 !important; overflow:hidden !important; background:#f3efe9 !important; }
#carouselExampleIndicators .men-product-hero-inner { display:flex !important; flex-direction:row !important; flex-wrap:nowrap !important; width:100% !important; margin:0 !important; padding:0 !important; overflow:visible !important; }
#carouselExampleIndicators .men-product-slide,
#carouselExampleIndicators .men-product-slide.active,
#carouselExampleIndicators .men-product-slide:not(.active) { flex:0 0 100% !important; width:100% !important; min-width:100% !important; height:auto !important; min-height:0 !important; margin:0 !important; padding:0 !important; position:relative !important; display:block !important; opacity:1 !important; visibility:visible !important; background:#f3efe9 !important; }
#carouselExampleIndicators .men-product-editorial,
#carouselExampleIndicators .men-complete-banner-link { width:100% !important; height:auto !important; min-height:0 !important; margin:0 !important; padding:0 !important; display:block !important; line-height:0 !important; }
#carouselExampleIndicators .men-complete-banner { width:100% !important; height:auto !important; max-width:100% !important; min-height:0 !important; display:block !important; margin:0 !important; padding:0 !important; object-fit:initial !important; }
#carouselExampleIndicators .men-product-dots { position:absolute !important; left:0 !important; right:0 !important; bottom:8px !important; z-index:20 !important; }
@media (max-width:768px) { #carouselExampleIndicators .men-complete-banner { width:100% !important; height:auto !important; } }
/* FINAL: three-slide track fix — each slide occupies one viewport, track is 3x wide. */
#carouselExampleIndicators.men-product-hero .men-product-hero-inner {
  width: 300% !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  flex-direction: row !important;
  overflow: visible !important;
  transform: translate3d(0,0,0);
  will-change: transform;
}
#carouselExampleIndicators.men-product-hero .men-product-slide,
#carouselExampleIndicators.men-product-hero .men-product-slide.active,
#carouselExampleIndicators.men-product-hero .men-product-slide:not(.active) {
  flex: 0 0 33.333333% !important;
  width: 33.333333% !important;
  min-width: 33.333333% !important;
}

/* ROBUST FINAL HERO SLIDER: one viewport per slide, JS-controlled horizontal track. */
#carouselExampleIndicators.men-product-hero {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: relative !important;
}
#carouselExampleIndicators.men-product-hero .men-product-hero-inner {
  width: 300% !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translate3d(0,0,0);
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
#carouselExampleIndicators.men-product-hero .men-product-slide {
  flex: 0 0 33.333333% !important;
  width: 33.333333% !important;
  min-width: 33.333333% !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: transparent !important;
}
#carouselExampleIndicators.men-product-hero .men-complete-banner-link,
#carouselExampleIndicators.men-product-hero .men-complete-banner {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  line-height: 0 !important;
}

/* FINAL COMBO SLIDER: isolated from Bootstrap carousel so all 3 banners always work. */
#comboHero {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  aspect-ratio: 1600 / 1220 !important;
  background: #f3efe9 !important;
}
#comboHero .combo-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 300% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(0) !important;
  transition: transform .65s cubic-bezier(.22,.61,.36,1) !important;
  will-change: transform;
}
#comboHero .men-product-slide {
  display: block !important;
  flex: 0 0 33.333333% !important;
  width: 33.333333% !important;
  min-width: 33.333333% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: hidden !important;
  aspect-ratio: auto !important;
  background: transparent !important;
}
#comboHero .men-complete-banner-link,
#comboHero .men-complete-banner {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}
#comboHero .men-complete-banner {
  object-fit: contain !important;
  object-position: center center !important;
}
#comboHero .men-product-dots { z-index: 20 !important; }
@media (max-width: 560px) {
  #comboHero { aspect-ratio: 1600 / 1220 !important; }
}
