/* ═══════════════════════════════════════════════════════════════════════
   STYLE OK BD — LUXURY DYNAMIC RESPONSIVE DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Anek+Bangla:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+Bengali:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

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

:root {
  --primary-cyan: #00bcd4;
  --primary-cyan-hover: #00acc1;
  --primary-gradient: linear-gradient(135deg, #00bcd4 0%, #0284c7 100%);
  --accent-orange: #ff6b00;
  --accent-gradient: linear-gradient(135deg, #ff5722 0%, #f43f5e 100%);
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --bg-white: #ffffff;
  --bg-body: #f8fafc;
  --bg-footer: #0f172a;
  --text-dark: #0b1329;
  --text-body: #1e293b;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --border-card: #e5e7eb;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --font-main: 'Plus Jakarta Sans', 'Noto Sans Bengali', 'Anek Bangla', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Noto Sans Bengali', sans-serif;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  background-color: var(--bg-body);
  color: var(--text-body);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: linear-gradient(90deg, #0284c7 0%, #00bcd4 50%, #0284c7 100%);
  background-size: 200% auto;
  animation: shineGradient 6s linear infinite;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 188, 212, 0.25);
}
@keyframes shineGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── HEADER ── */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand-logo {
  display: flex;
  align-items: center;
}
.brand-logo img {
  height: 38px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu a {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--primary-cyan);
  border-radius: 2px;
  transition: width 0.2s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #0284c7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f1f5f9;
  color: var(--text-dark);
  border: 1px solid #e2e8f0;
  font-size: 15px;
  transition: all 0.2s ease;
  position: relative;
}
.header-icon-pill:hover {
  background: #ffffff;
  border-color: var(--primary-cyan);
  color: #0284c7;
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.15);
  transform: translateY(-1px);
}
.header-counter-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #00bcd4, #0284c7);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 188, 212, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  font-size: 18px;
  color: var(--text-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 20px;
}
.mobile-nav-drawer.active {
  display: block;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* ── HERO BANNER ── */
.hero-wrapper {
  margin: 16px 0 20px;
}
.hero-banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.25s ease;
}
.hero-banner-card:hover {
  transform: translateY(-2px);
}
.hero-banner-card img {
  width: 100%;
  height: auto;
}

/* ── TRUST BAR ── */
.trust-strip-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 16px 0 28px;
}
.trust-strip-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}
.trust-strip-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.trust-strip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.trust-strip-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}
.trust-strip-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── SECTION TITLES ── */
.section-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}
.section-title-wrap::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2.5px;
  background: var(--primary-cyan);
  border-radius: 2px;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.2px;
  color: var(--text-dark);
  text-transform: uppercase;
}
.section-more-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.section-more-link:hover {
  gap: 8px;
  color: #00bcd4;
}

/* ── CATEGORIES (GRID) ── */
.categories-grid-styleok {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.category-card-styleok {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}
.category-card-styleok:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.15);
}
.cat-img-box {
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform 0.2s ease;
}
.category-card-styleok:hover .cat-img-box {
  transform: scale(1.08);
}
.cat-img-box img {
  max-height: 80px;
  max-width: 85px;
  object-fit: contain;
}
.cat-title-text {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* ── PRODUCT CARDS (5-COL GRID) ── */
.products-grid-styleok {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.product-card-styleok {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  position: relative;
}
.product-card-styleok:hover {
  border-color: #00bcd4;
  box-shadow: 0 12px 30px rgba(0, 188, 212, 0.18), 0 2px 6px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
}
.prod-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: #f8fafc;
  overflow: hidden;
}
.prod-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card-styleok:hover .prod-img-container img {
  transform: scale(1.07);
}
.discount-tag-orange {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ff5722 0%, #f43f5e 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(244, 63, 94, 0.4);
  z-index: 2;
  letter-spacing: 0.3px;
}

.prod-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #ffffff;
}
.prod-name-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}
.prod-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.price-cyan {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: #0284c7;
  letter-spacing: -0.3px;
}
.price-strikethrough {
  font-family: var(--font-heading);
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
}

.btn-cyan-order {
  width: 100%;
  background: linear-gradient(135deg, #00bcd4 0%, #0284c7 100%);
  color: #ffffff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
  box-shadow: 0 4px 14px rgba(0, 188, 212, 0.3);
}
.btn-cyan-order:hover {
  background: linear-gradient(135deg, #00acc1 0%, #0369a1 100%);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.5);
  transform: scale(1.02);
}

/* ── MIDDLE 2 BANNERS ── */
.middle-banners-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 14px;
}
.middle-banner-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.middle-banner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.middle-banner-card img {
  width: 100%;
  height: auto;
}

/* ── FOOTER ── */
.footer-styleok {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 24px;
  margin-top: 60px;
  font-size: 13.5px;
  border-top: 3px solid #00bcd4;
}
.footer-grid-styleok {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col-links {
  list-style: none;
}
.footer-col-links li {
  margin-bottom: 8px;
}
.footer-col-links a {
  color: #94a3b8;
  transition: color 0.15s;
}
.footer-col-links a:hover {
  color: #00bcd4;
  padding-left: 4px;
}
.footer-bottom-bar {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════
   QUICK ORDER & QUICK VIEW MODAL (HIGH LUXURY)
   ═══════════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeInModal 0.2s ease-out;
}
.modal-overlay.active {
  display: flex;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box-styleok {
  background: #ffffff;
  border-radius: 14px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  animation: slideUpModal 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
@keyframes slideUpModal {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header-navy {
  background: #0f172a;
  color: #ffffff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-prod-pic {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.2);
}
.modal-prod-headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-prod-tag {
  color: #00bcd4;
  font-weight: 800;
  font-size: 13px;
}
.modal-close-icon, .modal-nav-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s;
}
.modal-close-icon:hover, .modal-nav-btn:hover {
  color: #ffffff;
}
.modal-title-center {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  flex: 1;
  padding: 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-stepper-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #f8fafc;
  border-bottom: 1px solid #eaedf0;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
}
.modal-stepper-bar .active-step {
  color: #00bcd4;
  font-weight: 800;
}

.modal-inner-content {
  padding: 16px 18px;
  overflow-y: auto;
  flex: 1;
}

.modal-img-slider-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  margin-bottom: 12px;
}
.modal-img-slider-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}
.slider-arrow-btn.prev { left: 8px; }
.slider-arrow-btn.next { right: 8px; }

.modal-price-pill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.price-pill-left {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-pill-bold {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #00838f;
}
.price-pill-strike {
  font-family: var(--font-heading);
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
}
.discount-cyan-tag {
  background: #e0f7fa;
  color: #00838f;
  font-size: 11.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #b2ebf2;
}

.size-picker-beige-box {
  background: #fdfbf7;
  border: 1px solid #f0e6d6;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.size-picker-header {
  font-weight: 800;
  font-size: 12.5px;
  color: #334155;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.size-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.size-pill-btn {
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
}
.size-pill-btn:hover {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}
.size-pill-btn.active {
  background: #00bcd4;
  border-color: #00bcd4;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 188, 212, 0.35);
}
.size-shake {
  animation: sizeShake 0.5s ease !important;
}
@keyframes sizeShake {
  0%,100% { transform: translateX(0); }
  15%     { transform: translateX(-8px); }
  30%     { transform: translateX(8px); }
  45%     { transform: translateX(-6px); }
  60%     { transform: translateX(6px); }
  75%     { transform: translateX(-3px); }
  90%     { transform: translateX(3px); }
}

.qty-row-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #f1f5f9;
  margin-top: 6px;
}
.qty-counter-box {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  overflow: hidden;
}
.qty-change-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f8fafc;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  color: #334155;
}
.qty-val-box {
  width: 36px;
  height: 32px;
  border: none;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: #0f172a;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 4px;
  margin-top: 8px;
}
.field-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 13px;
  color: #0f172a;
  outline: none;
  box-sizing: border-box;
}
.field-input:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
}
.field-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.order-summary-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 12px 0;
  font-size: 12.5px;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  color: #475569;
}
.sum-row.total-row {
  border-top: 1px solid #cbd5e1;
  padding-top: 6px;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
}

.modal-actions-flex {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.btn-back-grey {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.btn-confirm-cyan {
  flex: 1;
  background: linear-gradient(135deg, #00bcd4 0%, #0284c7 100%);
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13.5px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 188, 212, 0.3);
}

.details-toggle-link {
  text-align: center;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: #0284c7;
  cursor: pointer;
}
.details-toggle-link:hover {
  text-decoration: underline;
}

.size-chart-table-cyan {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 12.5px;
}
.size-chart-table-cyan th {
  background: #e0f7fa;
  color: #00838f;
  padding: 8px 10px;
  font-weight: 800;
  text-align: left;
  border: 1px solid #b2ebf2;
}
.size-chart-table-cyan td {
  padding: 7px 10px;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  color: #334155;
}
.size-chart-table-cyan tr:nth-child(even) td {
  background: #f8fafc;
}

/* ── RECENT SALE POPUP ── */
.recent-sale-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 10px 14px;
  display: none;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 998;
  max-width: 320px;
  animation: slideInLeft 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.recent-sale-popup.active {
  display: flex;
}
@keyframes slideInLeft {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.sale-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
}

/* ── FLOATING CHAT HUB ── */
.floating-chat-hub {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}
.floating-chat-trigger {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00bcd4 0%, #0284c7 100%);
  color: #ffffff;
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-chat-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(0, 188, 212, 0.6);
}
.chat-open-icon { display: block; }
.chat-close-icon { display: none; }
.floating-chat-hub.open .chat-open-icon { display: none; }
.floating-chat-hub.open .chat-close-icon { display: block; }

.chat-hub-menu {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 270px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: none;
  animation: slideUpModal 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-chat-hub.open .chat-hub-menu {
  display: block;
}
.chat-hub-header {
  background: linear-gradient(135deg, #0284c7 0%, #00bcd4 100%);
  padding: 14px 16px;
  color: #ffffff;
}
.chat-hub-links {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chat-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.15s;
  color: var(--text-dark);
}
.chat-link-item:hover {
  background: #f1f5f9;
}
.chat-link-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.chat-link-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12.5px;
  color: var(--text-dark);
}
.chat-link-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── LUXURY CUSTOM PAGINATION SYSTEM ── */
.luxury-pagination-wrap {
  width: 100%;
  padding: 14px 20px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px;
  flex-wrap: wrap;
}
.pagination-info {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}
.pagination-info span {
  font-weight: 800;
  color: #0f172a;
}
.pagination-buttons {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-left: auto !important;
}
.page-pill {
  min-width: 34px !important;
  height: 34px !important;
  padding: 0 10px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  border: 1px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #334155 !important;
  transition: all 0.15s ease !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
}
.page-pill:hover:not(.disabled) {
  border-color: #00bcd4 !important;
  color: #00bcd4 !important;
  background: #f0fdfa !important;
  transform: translateY(-1px);
}
.page-pill.active {
  background: linear-gradient(135deg, #00bcd4 0%, #0284c7 100%) !important;
  border-color: #00bcd4 !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  box-shadow: 0 3px 10px rgba(0, 188, 212, 0.3) !important;
}
.page-pill.disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
}

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 1100px) {
  .products-grid-styleok { grid-template-columns: repeat(4, 1fr); }
  .trust-strip-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
  .nav-menu { display: none; }
  .mobile-menu-btn { display: flex; }
  .categories-grid-styleok { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .products-grid-styleok { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .middle-banners-row { grid-template-columns: 1fr; }
  .footer-grid-styleok { grid-template-columns: 1fr 1fr; gap: 24px; }
  .recent-sale-popup { display: none; }
}

@media (max-width: 500px) {
  .categories-grid-styleok { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .trust-strip-bar { grid-template-columns: 1fr; }
  .cat-img-box { height: 65px; }
  .cat-img-box img { max-height: 60px; max-width: 65px; }
  .cat-title-text { font-size: 10px; }
  .footer-grid-styleok { grid-template-columns: 1fr; }
  .modal-overlay { padding: 6px; }
}

/* ═══════════════════════════════════════════════════
   EXIT INTENT POPUP — Premium Design
   ═══════════════════════════════════════════════════ */
.exit-popup-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 32px 28px;
  max-width: 420px;
  width: 90%;
  margin: auto;
  position: relative;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.8);
  animation: exitPopIn .38s cubic-bezier(.16,1,.3,1) both;
}
@keyframes exitPopIn {
  from { opacity:0; transform:scale(.88) translateY(20px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}

/* Gift emoji bouncing */
.exit-popup-box > div:first-child {
  animation: exitBounce 1.2s ease-in-out infinite alternate;
  display: inline-block;
}
@keyframes exitBounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-7px); }
}

/* Badge pill */
.exit-popup-box > div:nth-child(2) {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg,#fef3c7,#fde68a) !important;
  color: #92400e !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  padding: 4px 14px !important;
  border-radius: 30px !important;
  margin-bottom: 10px !important;
  border: 1px solid #fcd34d !important;
  letter-spacing: .3px;
}

/* Headline */
.exit-popup-box h3 {
  font-family: var(--font-heading), 'Hind Siliguri', sans-serif;
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  margin-bottom: 8px !important;
  letter-spacing: -.3px;
  line-height: 1.25;
}

/* Discount badge */
.exit-discount-tag {
  display: inline-block;
  background: linear-gradient(135deg, #00bcd4, #0284c7);
  color: #ffffff;
  font-family: var(--font-heading), sans-serif;
  font-size: 26px;
  font-weight: 900;
  padding: 10px 28px;
  border-radius: 14px;
  margin: 8px 0 12px;
  letter-spacing: -.5px;
  box-shadow: 0 6px 20px rgba(0,188,212,.35);
}

/* Description */
.exit-popup-box p {
  font-size: 13.5px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  margin-bottom: 14px !important;
}

/* Timer row */
.exit-timer-digits {
  display: inline-block;
  background: #0f172a;
  color: #00bcd4;
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 9px;
  letter-spacing: 2px;
  border: 1.5px solid #1e293b;
}

/* CTA button */
.btn-exit-order {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #00bcd4 0%, #0284c7 100%);
  color: #ffffff;
  border: none;
  border-radius: 13px;
  font-family: var(--font-heading), 'Hind Siliguri', sans-serif;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: -.2px;
  box-shadow: 0 6px 20px rgba(0,188,212,.4);
  transition: all .22s;
  margin-top: 16px;
}
.btn-exit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,188,212,.5);
  filter: brightness(1.06);
}

/* Dismiss link */
.exit-popup-box [onclick="ExitIntent.close()"]:not(button),
.exit-popup-box span[onclick] {
  display: inline-block;
  margin-top: 12px;
  color: #94a3b8 !important;
  font-size: 12.5px !important;
  cursor: pointer;
  transition: color .15s;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.exit-popup-box span[onclick]:hover { color: #475569 !important; }

/* Close X button */
.exit-popup-box > .modal-nav-btn {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9 !important;
  border-radius: 8px !important;
  color: #64748b !important;
  font-size: 14px !important;
  transition: all .15s;
}
.exit-popup-box > .modal-nav-btn:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
}

/* Decorative ring behind popup */
.exit-popup-box::before {
  content: '';
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: 27px;
  background: linear-gradient(135deg, rgba(0,188,212,.25), rgba(2,132,199,.15), transparent 60%);
  z-index: -1;
}

/* ═══════════════════════════════════════════════════════════════════════
   FLOATING CART WIDGET & SLIDE-IN CART DRAWER
   ═══════════════════════════════════════════════════════════════════════ */
#floatingCartWidget {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  cursor: pointer;
  user-select: none;
}

#floatingBasketBtn {
  background: linear-gradient(145deg, #00bcd4, #0284c7);
  color: #fff;
  width: 58px;
  padding: 16px 8px 12px 12px;
  border-radius: 14px 0 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  box-shadow: -5px 3px 24px rgba(0, 188, 212, 0.45);
  transition: all .25s ease;
  position: relative;
}

#floatingCartWidget:hover #floatingBasketBtn {
  padding-left: 16px;
  box-shadow: -8px 4px 32px rgba(0, 188, 212, 0.65);
}

#floatingCartBadge {
  position: absolute;
  top: -9px;
  left: 6px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  border: 2px solid #fff;
}
#floatingCartBadge.visible {
  display: flex;
}

#floatingBasketBtn i {
  font-size: 22px;
}
#floatingBasketBtn span:not(#floatingCartBadge) {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .3px;
  white-space: nowrap;
}

/* ── Cart Drawer Overlay & Slide Container ── */
#cartDrawerOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  transition: opacity .3s ease;
}
#cartDrawerOverlay.open {
  display: block;
  opacity: 1;
}

#cartDrawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  box-shadow: -10px 0 40px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(0.16, 1, 0.3, 1);
}
#cartDrawer.open {
  right: 0 !important;
}

.cart-drawer-header {
  padding: 16px 20px;
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cart-drawer-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
}
.cart-drawer-badge {
  background: rgba(0, 188, 212, 0.2);
  color: #00bcd4;
  border: 1px solid rgba(0, 188, 212, 0.4);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
}
.cart-drawer-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all .2s;
}
.cart-drawer-close:hover {
  background: #ef4444;
}

/* Free Delivery Progress */
.cart-drawer-progress {
  background: #f0fdf4;
  border-bottom: 1px solid #bbf7d0;
  padding: 10px 18px;
}
.progress-text {
  font-size: 12px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 6px;
  text-align: center;
}
.progress-bar-track {
  height: 6px;
  background: #dcfce7;
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #059669);
  transition: width .3s ease;
}

/* Drawer Body Items */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 18px;
}
.cart-drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}
.cart-drawer-item:last-child {
  border-bottom: none;
}
.cart-drawer-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.drawer-item-info {
  flex: 1;
  min-width: 0;
}
.drawer-item-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.drawer-item-var {
  font-size: 11px;
  font-weight: 700;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  display: inline-block;
  padding: 1px 6px;
  border-radius: 4px;
  margin: 3px 0;
}
.drawer-item-price {
  font-size: 13.5px;
  font-weight: 900;
  color: #0284c7;
}
.drawer-item-qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 4px;
  width: fit-content;
}
.drawer-item-qty-stepper button {
  width: 24px;
  height: 24px;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.drawer-item-qty-stepper button:hover {
  background: #e2e8f0;
}
.drawer-item-qty-stepper span {
  width: 28px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
}
.drawer-item-remove {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 13px;
  padding: 6px;
  transition: color .15s;
}
.drawer-item-remove:hover {
  color: #ef4444;
}

/* Empty State */
.cart-drawer-empty {
  text-align: center;
  padding: 60px 20px;
  color: #94a3b8;
}
.cart-drawer-empty i {
  font-size: 48px;
  color: #cbd5e1;
  margin-bottom: 12px;
}
.cart-drawer-empty h4 {
  font-size: 15px;
  font-weight: 800;
  color: #334155;
  margin-bottom: 4px;
}
.cart-drawer-empty p {
  font-size: 12.5px;
}

/* Drawer Footer */
.cart-drawer-footer {
  padding: 16px 20px;
  background: #f8fafc;
  border-top: 1.5px solid #e2e8f0;
  flex-shrink: 0;
}
.cart-drawer-summary {
  margin-bottom: 12px;
}
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}
.summary-row strong {
  font-size: 18px;
  font-weight: 900;
  color: #0284c7;
}
.summary-sub {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}
.btn-drawer-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(135deg, #00bcd4, #0284c7);
  color: #fff;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 188, 212, 0.35);
  transition: all .2s;
  text-decoration: none;
}
.btn-drawer-checkout:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.btn-drawer-continue {
  width: 100%;
  padding: 8px;
  background: transparent;
  border: 1px solid #cbd5e1;
  color: #64748b;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
}
.btn-drawer-continue:hover {
  background: #e2e8f0;
  color: #0f172a;
}

