/* ==========================================================================
   SHIFU - Modern Men's Wear Design System
   Theme: Minimalist Luxury Blue Theme | Single Typography: Plus Jakarta Sans
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Brand Color Tokens */
  --shifu-bg: #FFFFFF;
  --shifu-bg-subtle: #F8FAFC;
  --shifu-bg-muted: #F1F5F9;

  --shifu-navy-950: #080D1A;
  --shifu-navy-900: #0F172A;
  --shifu-navy-800: #1E293B;
  --shifu-navy-700: #334155;

  --shifu-blue-600: #2563EB;
  --shifu-blue-700: #1D4ED8;
  --shifu-blue-800: #1E40AF;
  --shifu-blue-50: #EFF6FF;
  --shifu-blue-100: #DBEAFE;

  --shifu-text-primary: #0F172A;
  --shifu-text-secondary: #475569;
  --shifu-text-muted: #94A3B8;
  --shifu-text-on-dark: #F8FAFC;

  --shifu-border: #E2E8F0;
  --shifu-border-focus: #3B82F6;

  --shifu-gold: #F59E0B;
  --shifu-success: #10B981;
  --shifu-danger: #EF4444;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.1), 0 4px 10px -2px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 35px -8px rgba(15, 23, 42, 0.15);

  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-main);
  background-color: var(--shifu-bg);
  color: var(--shifu-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  max-width: 100%;
}

/* Container */
.shifu-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .shifu-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ==========================================================================
   Announcement Bar (Seamless Infinite Ticker Ribbon)
   ========================================================================== */
.top-announcement-bar {
  background: var(--shifu-navy-950);
  color: var(--shifu-text-on-dark);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0;
  letter-spacing: 0.03em;
  height: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1001;
  user-select: none;
}

.top-announcement-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: shifuAnnouncementTicker 40s linear infinite;
  will-change: transform;
}

.top-announcement-track:hover {
  animation-play-state: paused;
}

.top-announcement-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.top-announcement-item span {
  display: inline-block;
  white-space: nowrap;
}

.announcement-mid-dot {
  display: inline-block;
  margin: 0 1.25rem !important;
  color: #60A5FA;
  font-size: 0.85rem;
  opacity: 0.85;
}

.top-announcement-bar strong {
  color: var(--shifu-blue-100);
}

.announcement-separator {
  display: inline-block;
  margin: 0 1.75rem !important;
  color: #60A5FA;
  font-size: 0.95rem;
  opacity: 0.85;
}

@keyframes shifuAnnouncementTicker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--shifu-border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: all var(--transition-normal);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

@media (max-width: 768px) {
  .nav-wrapper {
    height: 70px;
  }

  .site-logo-img {
    height: 48px !important;
    max-height: 48px !important;
  }
}

.site-logo-link {
  display: flex;
  align-items: center;
  max-height: 70px;
}

.site-logo-img {
  height: 56px;
  max-height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.08));
  transition: transform var(--transition-fast);
}

.site-logo-link:hover .site-logo-img {
  transform: scale(1.03);
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none !important;
  }
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--shifu-navy-800);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--shifu-blue-600);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--shifu-blue-600);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

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

/* ==========================================================================
   SHIFU Customer Portal & User Panel System (Luxury Blue & Glassmorphism)
   ========================================================================== */
.user-portal-wrapper {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

.user-portal-hero {
  background: linear-gradient(135deg, #071228 0%, #0F1A30 50%, #172544 100%);
  border-radius: 18px;
  padding: 1.75rem 2rem;
  color: white;
  margin-bottom: 1.75rem;
  box-shadow: 0 15px 35px -5px rgba(7, 18, 40, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.user-portal-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
}

.user-hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 1rem;
}

.user-hero-info {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.user-avatar-wrapper {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.user-avatar-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.user-avatar-crown {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.user-hero-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-hero-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}

.user-club-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
  margin: 3px 0;
}

.user-hero-meta {
  font-size: 0.8rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.user-hero-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}

.user-hero-edit-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.user-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 1.25rem;
}

.user-hero-stat-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: background 0.2s ease;
}

.user-hero-stat-pill:hover {
  background: rgba(255, 255, 255, 0.1);
}

.user-stat-icon {
  color: #60A5FA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.user-hero-stat-pill .val {
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
}

.user-hero-stat-pill .lbl {
  font-size: 0.68rem;
  color: #94A3B8;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* 2-Column Portal Layout */
.user-portal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.user-nav-sidebar {
  background: white;
  border: 1px solid var(--shifu-border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.user-nav-sidebar-heading {
  font-size: 0.78rem;
  font-weight: 800;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 0.5rem 0.75rem;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 0.75rem;
}

.user-nav-pills-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
}

.user-nav-item:hover {
  background: #F8FAFC;
  color: #0F172A;
  transform: translateX(3px);
}

.user-nav-item.active {
  background: #EFF6FF;
  color: #2563EB;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}

.user-nav-signout-wrapper {
  border-top: 1px solid #F1F5F9;
  margin-top: 1rem;
  padding-top: 0.75rem;
}

.user-nav-signout-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #EF4444;
  text-decoration: none;
  transition: all 0.2s;
}

.user-nav-signout-btn:hover {
  background: #FEF2F2;
  color: #DC2626;
}

/* User Luxury Cards */
.user-card {
  background: white;
  border: 1px solid var(--shifu-border);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

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

.user-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 0.75rem;
}

/* Verification Badges */
.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #DCFCE7;
  border: 1px solid #BBF7D0;
  color: #15803D;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
}

.badge-encrypted {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: #2563EB;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
}

/* Luxury Input Field with Icons */
.portal-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.portal-input-prefix-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748B;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  z-index: 5;
}

.portal-input-prefix-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #64748B !important;
  flex-shrink: 0;
}

.portal-input-wrapper .portal-input,
.portal-input-wrapper input,
.portal-input {
  width: 100% !important;
  padding-left: 2.85rem !important;
  padding-right: 1rem !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 10px !important;
  font-size: 0.92rem !important;
  color: #0F172A !important;
  background: #FFFFFF !important;
  font-weight: 600 !important;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box !important;
}

.portal-input-wrapper input:focus,
.portal-input:focus {
  border-color: #2563EB !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
  outline: none !important;
}

.portal-input-wrapper input:read-only,
.portal-input:read-only {
  background: #F8FAFC !important;
  color: #64748B !important;
  cursor: not-allowed !important;
}

.portal-input-wrapper .portal-input.has-eye,
.portal-input-wrapper input.has-eye,
.portal-input.has-eye {
  padding-right: 2.85rem !important;
}

.portal-input-eye-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94A3B8;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: color 0.15s;
}

.portal-input-eye-btn:hover {
  color: #0F172A;
}

/* Full Width Button & Footer Note */
.portal-btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.8rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.portal-card-footer-note {
  text-align: center;
  color: #94A3B8;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.85rem;
}

.portal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.portal-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #F1F5F9;
}

.user-portal-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.user-portal-page-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.user-portal-page-subtitle {
  font-size: 0.9rem;
  color: #64748B;
  margin: 4px 0 0;
  line-height: 1.4;
}

.user-empty-state-card {
  background: white;
  border: 1px solid var(--shifu-border);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.user-order-item-card {
  background: #FFFFFF;
  border: 1px solid var(--shifu-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.user-order-header {
  background: #F8FAFC;
  border-bottom: 1px solid var(--shifu-border);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.user-order-header-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-order-lbl {
  font-size: 0.72rem;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.user-order-val {
  font-weight: 700;
  font-size: 0.92rem;
  color: #0F172A;
}

.user-order-val.price {
  font-weight: 900;
  font-size: 1.05rem;
  color: #2563EB;
}

.user-order-header-status {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.user-order-num {
  font-size: 0.78rem;
  font-family: monospace;
  font-weight: 800;
  color: #475569;
}

/* Responsive Adaptations for Portal on Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .user-portal-wrapper {
    padding-top: 1.75rem !important;
    padding-bottom: 4rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .user-portal-hero {
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
  }

  /* Professional 2-Column Tablet Grid */
  .user-portal-grid {
    grid-template-columns: 200px 1fr !important;
    gap: 1.25rem !important;
    align-items: start;
  }

  .user-nav-sidebar {
    background: white;
    border: 1px solid var(--shifu-border);
    border-radius: 16px;
    padding: 0.85rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
  }

  .user-nav-item {
    padding: 0.7rem 0.75rem;
    font-size: 0.84rem;
    margin-bottom: 3px;
    border-radius: 8px;
    gap: 8px;
  }

  .user-order-header {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    padding: 1.15rem 1.25rem !important;
  }

  .user-order-header-item.dest {
    grid-column: span 1;
  }

  .user-order-header-status {
    text-align: right;
    align-items: flex-end;
  }
}

/* Responsive Adaptations for Portal on Mobile (<= 768px) */
@media (max-width: 768px) {
  .user-portal-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .user-portal-wrapper {
    padding-top: 1.25rem !important;
    padding-bottom: 6.5rem !important;
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
    box-sizing: border-box !important;
  }

  .user-portal-hero {
    padding: 1.25rem 1.15rem;
    border-radius: 16px;
    margin-bottom: 1.25rem;
  }

  .user-hero-info {
    gap: 0.85rem;
  }

  .user-avatar-circle {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .user-hero-name {
    font-size: 1.2rem;
  }

  .user-hero-meta {
    font-size: 0.78rem;
    gap: 6px;
  }

  .user-hero-stats {
    gap: 6px !important;
    margin-top: 1rem !important;
  }

  .user-hero-stat-pill {
    padding: 0.65rem 0.25rem !important;
    border-radius: 10px !important;
  }

  .user-hero-stat-pill .val {
    font-size: 1.05rem !important;
  }

  .user-hero-stat-pill .lbl {
    font-size: 0.62rem !important;
  }

  /* Mobile Navigation Bar */
  .user-nav-sidebar {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 1.25rem !important;
    position: static !important;
    box-shadow: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .user-nav-sidebar-heading {
    display: none !important;
  }

  .user-nav-pills-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
    margin-bottom: 8px !important;
  }

  .user-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 8px 4px !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    color: #475569 !important;
    text-decoration: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  .user-nav-item svg {
    width: 16px !important;
    height: 16px !important;
  }

  .user-nav-item.active {
    background: #2563EB !important;
    color: #FFFFFF !important;
    border-color: #2563EB !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25) !important;
  }

  .user-nav-item.active svg {
    stroke: #FFFFFF !important;
  }

  .user-nav-signout-wrapper {
    width: 100% !important;
    border-top: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .user-nav-signout-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
    padding: 10px 14px !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 10px !important;
    color: #0F172A !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03) !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  .user-card {
    padding: 1.25rem 1rem !important;
    border-radius: 14px !important;
    margin-bottom: 1.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .user-card-title {
    font-size: 1.05rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.65rem !important;
  }

  .user-portal-page-header {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    margin-bottom: 1.25rem !important;
  }

  .user-portal-page-title {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 2px !important;
  }

  .user-portal-page-subtitle {
    font-size: 0.82rem !important;
    color: #64748B !important;
    line-height: 1.4 !important;
  }

  .user-portal-page-header .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.7rem 1rem !important;
    border-radius: 10px !important;
  }

  .user-empty-state-card {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 16px !important;
    padding: 2.25rem 1.25rem !important;
    text-align: center !important;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04) !important;
    margin-bottom: 2rem !important;
  }

  .user-empty-state-card .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 10px !important;
  }
}

/* Order Item Cards in Portal */
.user-order-item-card {
  background: white;
  border: 1px solid var(--shifu-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 1.5rem;
}

.user-order-item-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon-btn {
  background: transparent;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shifu-navy-900);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.nav-icon-btn:hover {
  background: var(--shifu-bg-subtle);
  color: var(--shifu-blue-600);
}

.nav-icon-btn:active,
.nav-icon-btn.active {
  transform: scale(0.92);
  background: var(--shifu-blue-50);
  color: var(--shifu-blue-600);
}

.mobile-hamburger-btn,
.mobile-menu-toggle {
  display: none !important;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4.5px;
  color: #0F172A;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.mobile-hamburger-btn .hamburger-bar,
.mobile-menu-toggle .hamburger-bar {
  display: block;
  width: 20px;
  height: 2.2px;
  background-color: #0F172A !important;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.mobile-hamburger-btn:hover,
.mobile-menu-toggle:hover {
  background: var(--shifu-bg-subtle);
  border-color: #0F172A;
}

.mobile-hamburger-btn:hover .hamburger-bar,
.mobile-menu-toggle:hover .hamburger-bar {
  background-color: var(--shifu-blue-600) !important;
}

@media (max-width: 1024px) {

  .mobile-hamburger-btn,
  .mobile-menu-toggle {
    display: flex !important;
  }
}

.cart-badge,
.wishlist-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--shifu-blue-600);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.user-menu-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  background: var(--shifu-bg);
  border: 1px solid var(--shifu-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  z-index: 200;
  animation: fadeIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-menu-dropdown.active .dropdown-menu {
  display: flex;
}

.dropdown-item {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--shifu-navy-800);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-item:hover {
  background: var(--shifu-blue-50);
  color: var(--shifu-blue-700);
}

.dropdown-divider {
  height: 1px;
  background: var(--shifu-border);
  margin: 0.4rem 0;
}

/* Category Navigation Dropdown System */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cat-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #FFFFFF;
  border: 1px solid var(--shifu-border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  z-index: 300;
  animation: fadeIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item-dropdown:hover .cat-dropdown-menu {
  display: flex;
}

.cat-dropdown-header {
  padding: 0.55rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #F1F5F9;
}

.cat-dropdown-item {
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.18s ease;
}

.cat-dropdown-item:hover,
.cat-dropdown-item.active {
  background: #F8FAFC;
  color: #2563EB;
  padding-left: 1.35rem;
}

.cat-dropdown-divider {
  height: 1px;
  background: #F1F5F9;
  margin: 0.35rem 0;
}

.cat-view-all {
  color: #2563EB;
  font-weight: 700;
}

/* ==========================================================================
   Minimal Auth Pages Header & Redesigned Auth Experience
   ========================================================================== */
.auth-minimal-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--shifu-border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.auth-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--shifu-navy-700);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--shifu-bg-subtle);
  border: 1px solid var(--shifu-border);
  transition: all 0.2s ease;
}

.auth-back-link:hover {
  color: var(--shifu-blue-600);
  border-color: #93C5FD;
  background: #EFF6FF;
}

.auth-switch-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2563EB;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.auth-switch-btn:hover {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}

/* Password Eye Toggle System */
.password-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-input-wrap input {
  padding-right: 2.75rem !important;
  width: 100%;
}

.password-toggle-btn {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: #94A3B8;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}

.password-toggle-btn:hover {
  color: #2563EB;
}

@media (max-width: 640px) {
  .auth-back-text {
    display: none;
  }

  .auth-back-link {
    padding: 0.45rem 0.65rem;
  }
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background: var(--shifu-blue-600);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--shifu-blue-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-dark {
  background: var(--shifu-navy-950);
  color: white;
}

.btn-dark:hover {
  background: var(--shifu-navy-800);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--shifu-border);
  color: var(--shifu-navy-900);
}

.btn-outline:hover {
  border-color: var(--shifu-blue-600);
  color: var(--shifu-blue-600);
  background: var(--shifu-blue-50);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--shifu-navy-900);
  color: var(--shifu-navy-900);
}

.btn-outline-dark:hover {
  background: var(--shifu-navy-900);
  color: white;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF !important;
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #FFFFFF !important;
  color: #0F172A !important;
  border-color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

.badge-blue {
  background: var(--shifu-blue-50);
  color: var(--shifu-blue-700);
  border: 1px solid var(--shifu-blue-100);
}

.badge-dark {
  background: var(--shifu-navy-950);
  color: white;
}

.badge-sale {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FEE2E2;
}

.badge-fit {
  background: #F1F5F9;
  color: var(--shifu-navy-800);
  border: 1px solid #E2E8F0;
  font-weight: 600;
}

/* ==========================================================================
   Hero Banner Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: var(--shifu-navy-950);
  color: white;
  min-height: calc(100vh - 120px);
  height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 13, 26, 0.92) 0%, rgba(8, 13, 26, 0.78) 36%, rgba(8, 13, 26, 0.40) 65%, rgba(8, 13, 26, 0.18) 100%);
  z-index: 2;
}

.hero-slide .hero-bg-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.hero-slide .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 1;
  opacity: 1;
  transform: scale(1.05);
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-bg-image {
  transform: scale(1);
}

.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.25s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Hero Banner - Bottom Right Brand Watermark Seal (Desktop & Tablet)
   ========================================================================== */
.hero-bottom-corner-logo {
  position: absolute;
  bottom: 2.75rem;
  right: 2.25rem;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.85rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 0 35px rgba(37, 99, 235, 0.22);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  pointer-events: none;
}

.hero-slide.active .hero-bottom-corner-logo {
  opacity: 1;
  transform: translateY(0);
}

.hero-corner-glow {
  position: absolute;
  inset: -12px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.35) 0%, rgba(59, 130, 246, 0.15) 50%, rgba(255, 255, 255, 0) 75%);
  border-radius: 28px;
  filter: blur(14px);
  z-index: -1;
  animation: heroCornerGlowPulse 4s ease-in-out infinite alternate;
}

.hero-corner-logo-img {
  height: 76px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

@keyframes heroCornerGlowPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.96);
  }

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

/* Tablets (768px - 1024px): Scaled Proportionally so Full Banner is Visible */
@media (max-width: 1024px) and (min-width: 768px) {
  .hero-section {
    height: 540px !important;
    min-height: 540px !important;
    max-height: 60vh !important;
  }

  .hero-slide .hero-bg-image {
    object-position: left center !important;
  }

  .hero-slide .hero-content {
    padding: 2.5rem 0 !important;
    max-width: 500px !important;
  }

  .hero-title {
    font-size: 2.35rem !important;
    margin-bottom: 0.85rem !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-bottom-corner-logo {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 16px;
  }

  .hero-corner-logo-img {
    height: 50px;
    max-width: 150px;
  }
}

/* Mobile Viewports (< 768px): Hide watermark to give 100% focus to tall portrait photoshoot */
@media (max-width: 767px) {
  .hero-section {
    height: calc(100vh - 120px) !important;
    min-height: 520px !important;
  }

  .hero-bottom-corner-logo {
    display: none;
  }

  .hero-slide .hero-bg-image {
    object-position: center top;
  }

  .hero-slide .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(8, 13, 26, 0.75) 0%, rgba(8, 13, 26, 0.55) 50%, rgba(8, 13, 26, 0.92) 100%);
  }

  .creed-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

/* ==========================================================================
   The SHIFU Creed Metrics
   ========================================================================== */
.creed-metrics-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.creed-metric-item {
  border-left: 3px solid #2563EB;
  padding-left: 1rem;
}

.creed-metric-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #2563EB;
  line-height: 1;
}

.creed-metric-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748B;
  margin-top: 4px;
}

.creed-badge-card {
  display: inline-block;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  padding: 2.25rem 2.75rem;
  border-radius: 24px;
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.08), 0 0 35px rgba(37, 99, 235, 0.06);
  position: relative;
  text-align: center;
}

.creed-badge-logo {
  max-height: 120px;
  max-width: 190px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
}

.creed-badge-title {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #0F172A;
}

.creed-badge-tagline {
  font-size: 0.92rem;
  font-style: italic;
  color: #64748B;
  margin-top: 4px;
}

/* Single-Line Compact Layout on Mobile */
@media (max-width: 768px) {
  .creed-section {
    padding: 2.75rem 0 !important;
  }

  .creed-metrics-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }

  .creed-metric-item {
    border-left: 2.5px solid #2563EB !important;
    padding-left: 0.45rem !important;
    min-width: 0 !important;
  }

  .creed-metric-num {
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .creed-metric-label {
    font-size: 0.62rem !important;
    line-height: 1.25 !important;
    margin-top: 2px !important;
  }

  .creed-badge-card {
    padding: 1.15rem 1.35rem !important;
    border-radius: 16px !important;
    max-width: 200px !important;
    box-shadow: 0 8px 22px -6px rgba(15, 23, 42, 0.08) !important;
    margin-top: 0.5rem;
  }

  .creed-badge-logo {
    max-height: 60px !important;
    max-width: 110px !important;
    margin-bottom: 0.5rem !important;
  }

  .creed-badge-title {
    font-size: 0.95rem !important;
    letter-spacing: 0.08em !important;
  }

  .creed-badge-tagline {
    font-size: 0.72rem !important;
    margin-top: 2px !important;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--shifu-blue-100);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: #60A5FA;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Slider Floating Arrows (Hidden as requested) */
.hero-slider-arrow {
  display: none !important;
}

/* Slider Indicator Badges */
.hero-slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
}

.hero-indicator {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

.hero-indicator.active {
  background: rgba(37, 99, 235, 0.45);
  border-color: #60A5FA;
  color: white;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.4);
}

.hero-indicator .indicator-progress {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.hero-indicator.active .indicator-progress {
  background: #60A5FA;
  box-shadow: 0 0 8px #60A5FA;
}

/* ==========================================================================
   Value Props / Store Features Ribbon (Balanced Responsive Grid)
   ========================================================================== */
.site-features-ribbon {
  background: #F8FAFC;
  border-bottom: 1px solid var(--shifu-border);
  padding: 1.6rem 0;
}

.site-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.site-feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EFF6FF;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}

.site-feature-text {
  text-align: left;
}

.site-feature-title {
  font-weight: 800;
  font-size: 0.92rem;
  color: #0F172A;
  line-height: 1.25;
}

.site-feature-subtitle {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.35;
  margin-top: 2px;
}

/* Tablet Viewports (600px - 1024px): Symmetrical 2 x 2 Balanced Grid */
@media (max-width: 1024px) {
  .site-features-ribbon {
    padding: 1.5rem 0;
  }

  .site-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem 2.5rem !important;
  }

  .site-feature-item {
    justify-content: flex-start !important;
  }
}

/* Mobile Viewports (< 600px): Compact 2 x 2 Grid */
@media (max-width: 600px) {
  .site-features-ribbon {
    padding: 1.25rem 0;
  }

  .site-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem 0.85rem !important;
  }

  .site-feature-item {
    gap: 0.6rem;
  }

  .site-feature-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .site-feature-title {
    font-size: 0.8rem;
  }

  .site-feature-subtitle {
    font-size: 0.68rem;
  }
}

/* ==========================================================================
   Homepage 3-Card Promo Banner Showcase (Reference Layout from lmdfashion.in)
   ========================================================================== */
.homepage-promo-section {
  padding: 3.5rem 0 1.5rem;
  background: var(--shifu-bg);
}

.homepage-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.promo-card-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  aspect-ratio: 16 / 10;
  min-height: 260px;
  background: #080D1A;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.promo-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  border-color: #93C5FD;
}

.promo-card-link-wrap {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: white;
}

.promo-card-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.promo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-card-item:hover .promo-card-img {
  transform: scale(1.06);
}

.promo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 26, 0.15) 0%, rgba(8, 13, 26, 0.55) 50%, rgba(8, 13, 26, 0.90) 100%);
  z-index: 2;
  transition: background 0.35s ease;
}

.promo-card-item:hover .promo-card-overlay {
  background: linear-gradient(180deg, rgba(8, 13, 26, 0.10) 0%, rgba(8, 13, 26, 0.65) 45%, rgba(8, 13, 26, 0.94) 100%);
}

.promo-card-content {
  position: absolute;
  inset: 0;
  padding: 2rem 1.75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.promo-card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #93C5FD;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(147, 197, 253, 0.35);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 0.6rem;
  backdrop-filter: blur(4px);
}

.promo-card-title {
  font-size: clamp(1.2rem, 1.75vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.promo-card-subtitle {
  font-size: 0.84rem;
  color: #E2E8F0;
  margin: 0 0 1.15rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.92;
  text-align: center;
}

.promo-card-btn-wrap {
  margin-top: 0.25rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.promo-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(15, 23, 42, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 7px 18px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.promo-card-item:hover .promo-card-btn {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

/* Tablet Viewports (601px - 1024px): Side-by-Side 3-Column Grid */
@media (min-width: 601px) and (max-width: 1024px) {
  .homepage-promo-section {
    padding: 2.5rem 0 1.5rem;
  }

  .homepage-promo-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.85rem !important;
    width: 100% !important;
  }

  .promo-card-item {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    aspect-ratio: 16 / 12 !important;
    min-height: 250px !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
  }

  .promo-card-overlay {
    background: linear-gradient(180deg, rgba(8, 13, 26, 0.1) 0%, rgba(8, 13, 26, 0.55) 45%, rgba(8, 13, 26, 0.92) 100%) !important;
  }

  .promo-card-content {
    padding: 1.25rem 0.65rem !important;
  }

  .promo-card-badge {
    font-size: 0.58rem !important;
    padding: 2px 7px !important;
    margin-bottom: 0.35rem !important;
    background: rgba(37, 99, 235, 0.35) !important;
    border-color: rgba(147, 197, 253, 0.5) !important;
    letter-spacing: 0.1em !important;
  }

  .promo-card-title {
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.2 !important;
    margin-bottom: 0.2rem !important;
  }

  .promo-card-subtitle {
    font-size: 0.72rem !important;
    margin-bottom: 0.55rem !important;
    opacity: 0.95;
    line-height: 1.25 !important;
  }

  .promo-card-btn {
    padding: 5px 12px !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    gap: 4px !important;
    white-space: nowrap !important;
    background: rgba(15, 23, 42, 0.85) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  }

  .promo-card-btn svg {
    width: 11px !important;
    height: 11px !important;
  }
}

/* Mobile Viewports (< 600px): Stacked Cards */
@media (max-width: 600px) {
  .homepage-promo-section {
    padding: 1.75rem 0 1rem;
  }

  .homepage-promo-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.15rem !important;
    width: 100% !important;
  }

  .promo-card-item {
    aspect-ratio: 16 / 9.5 !important;
    min-height: 190px !important;
    border-radius: 16px !important;
  }

  .promo-card-content {
    padding: 1.25rem 1rem !important;
  }

  .promo-card-badge {
    font-size: 0.62rem !important;
    padding: 2px 8px !important;
    margin-bottom: 0.35rem !important;
  }

  .promo-card-title {
    font-size: 1.2rem !important;
  }

  .promo-card-subtitle {
    font-size: 0.76rem !important;
    margin-bottom: 0.65rem !important;
  }

  .promo-card-btn {
    padding: 6px 14px !important;
    font-size: 0.7rem !important;
  }
}

/* ==========================================================================
   Category Highlight Cards
   ========================================================================== */
.categories-section {
  padding: 5rem 0 3rem;
  background: var(--shifu-bg);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--shifu-blue-600);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--shifu-navy-950);
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--shifu-text-secondary);
  font-size: 1rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--shifu-bg-subtle);
  border: 1px solid var(--shifu-border);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--shifu-blue-600);
}

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

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth);
}

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

.category-card-body {
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: white;
}

.category-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--shifu-navy-950);
  margin-bottom: 0.35rem;
}

.category-card-desc {
  font-size: 0.85rem;
  color: var(--shifu-text-secondary);
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--shifu-blue-600);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.category-card-link:hover {
  gap: 0.55rem;
}

/* ==========================================================================
   Product Cards & Grid
   ========================================================================== */
.products-section {
  padding: 4rem 0 5rem;
  background: var(--shifu-bg-subtle);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--shifu-bg);
  border: 1px solid var(--shifu-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

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

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

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth);
}

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

.product-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 2;
  pointer-events: none;
}

.product-badges .badge {
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 4px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-badges .badge-sale {
  background: #EF4444;
  color: #FFFFFF;
  border: none;
  box-shadow: 0 2px 5px rgba(239, 68, 68, 0.35);
}

.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--shifu-navy-950);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.product-card-title:hover {
  color: var(--shifu-blue-600);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.65rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}

.price-current {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--shifu-navy-950);
  white-space: nowrap;
  line-height: 1;
}

.price-original {
  font-size: 0.82rem;
  color: var(--shifu-text-muted);
  text-decoration: line-through;
  white-space: nowrap;
  line-height: 1;
}

.price-discount {
  font-size: 0.72rem;
  font-weight: 800;
  color: #DC2626;
  background: #FEF2F2;
  border: 1px solid #FEE2E2;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* ==========================================================================
   Product Detail Page (PDP) & Multi-Image Gallery
   ========================================================================== */
.pdp-breadcrumb {
  padding: 1rem 0 0.5rem;
  font-size: 0.85rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.pdp-breadcrumb::-webkit-scrollbar {
  display: none;
}

.pdp-breadcrumb a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.15s;
}

.pdp-breadcrumb a:hover {
  color: #2563EB;
}

.pdp-breadcrumb .breadcrumb-current {
  color: #0F172A;
  font-weight: 600;
}

.pdp-section {
  padding: 1.5rem 0 5rem;
}

@media (max-width: 768px) {
  .pdp-section {
    padding: 1rem 0 5rem;
  }
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

/* PDP Gallery (Main Image Top, Thumbnail Row Underneath) */
.pdp-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.pdp-details {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.pdp-main-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 580px;
  background: #F8FAFC;
  border-radius: 12px;
  border: 1px solid var(--shifu-border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

.pdp-thumbnails {
  display: flex;
  flex-direction: row;
  gap: 0.85rem;
  width: 100%;
  overflow-x: auto;
  padding: 4px 2px;
}

.thumbnail-btn {
  width: 82px;
  height: 104px;
  flex-shrink: 0;
  border: 2px solid var(--shifu-border);
  border-radius: 8px;
  background: white;
  padding: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 5px;
}

.thumbnail-btn:hover {
  border-color: #60A5FA;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.thumbnail-btn.active {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3), 0 4px 12px rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
}

/* Similar Products Showcase */
.similar-product-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.similar-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1) !important;
  border-color: #CBD5E1 !important;
}

/* PDP Details */
.pdp-details {
  display: flex;
  flex-direction: column;
}

.pdp-header {
  border-bottom: 1px solid var(--shifu-border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.pdp-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--shifu-navy-950);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pdp-price-box {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 1rem;
}

.pdp-price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--shifu-navy-950);
}

.pdp-price-original {
  font-size: 1.2rem;
  color: var(--shifu-text-muted);
  text-decoration: line-through;
}

/* PDP Size & Fit Selector */
.pdp-option-group {
  margin-bottom: 1.75rem;
}

.pdp-option-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.pdp-option-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--shifu-navy-900);
}

.size-chart-trigger {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--shifu-blue-600);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.size-pill-label {
  cursor: pointer;
}

.size-pill-radio {
  display: none;
}

.size-pill-box {
  min-width: 52px;
  height: 48px;
  border: 1px solid var(--shifu-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--shifu-navy-800);
  background: white;
  transition: all var(--transition-fast);
  padding: 0 0.75rem;
}

.size-pill-radio:checked+.size-pill-box {
  background: var(--shifu-navy-950);
  color: white;
  border-color: var(--shifu-navy-950);
}

.size-pill-box.out-of-stock {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* PDP Action Buttons */
.pdp-actions {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.qty-counter {
  display: flex;
  align-items: center;
  border: 1px solid var(--shifu-border);
  border-radius: var(--radius-sm);
  background: white;
  height: 52px;
}

.qty-btn {
  width: 40px;
  height: 100%;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--shifu-navy-800);
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  font-weight: 700;
  color: var(--shifu-navy-950);
}

/* Feature Highlights List */
.pdp-highlights {
  background: var(--shifu-bg-subtle);
  border: 1px solid var(--shifu-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--shifu-text-secondary);
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item strong {
  color: var(--shifu-navy-950);
}

/* ==========================================================================
   Shop Catalog & Filters
   ========================================================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  padding: 3rem 0 5rem;
}

.shop-sidebar {
  background: var(--shifu-bg);
  border: 1px solid var(--shifu-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.filter-group {
  border-bottom: 1px solid var(--shifu-border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.filter-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--shifu-navy-950);
  margin-bottom: 0.75rem;
}

.filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--shifu-text-secondary);
  cursor: pointer;
}

.filter-item input[type="radio"],
.filter-item input[type="checkbox"] {
  accent-color: var(--shifu-blue-600);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--shifu-border);
}

/* ==========================================================================
   Shopping Bag / Cart - Modern Luxury & Mobile Perfect UI
   ========================================================================== */
.cart-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 1rem;
}

.cart-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 4px;
  line-height: 1.2;
}

.cart-main-subtitle {
  color: #64748B;
  font-size: 0.92rem;
  margin: 0;
}

.cart-header-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: #2563EB;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 2.25rem;
  padding: 1rem 0 3rem;
  align-items: flex-start;
}

.desktop-cart-view {
  width: 100%;
  border-collapse: collapse;
}

.desktop-cart-view th {
  text-align: left;
  padding: 1rem;
  border-bottom: 2px solid #E2E8F0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748B;
}

.desktop-cart-view td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #E2E8F0;
  vertical-align: middle;
}

.cart-item-flex {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: #94A3B8;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.cart-remove-btn:hover {
  color: #EF4444;
  background: #FEF2F2;
}

/* Mobile Stacked Items */
.mobile-cart-view {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-cart-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.mobile-cart-card-inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.mobile-cart-img-link {
  display: block;
  flex-shrink: 0;
}

.mobile-cart-img {
  width: 86px;
  height: 86px;
  border-radius: 12px;
  object-fit: cover;
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  display: block;
}

.mobile-cart-content {
  flex: 1;
  min-width: 0;
}

.mobile-cart-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  text-decoration: none;
  line-height: 1.3;
  display: block;
  margin-bottom: 3px;
}

.mobile-cart-subtitle {
  font-size: 0.78rem;
  color: #64748B;
  margin-bottom: 6px;
}

.mobile-cart-size-pill {
  display: inline-block;
  background: #EFF6FF;
  color: #2563EB;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.mobile-cart-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mobile-cart-price {
  font-size: 1.18rem;
  font-weight: 800;
  color: #2563EB;
}

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

.mobile-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  background: #FFFFFF;
  height: 32px;
  padding: 0 2px;
}

.mobile-qty-btn {
  width: 28px;
  height: 100%;
  border: none;
  background: transparent;
  color: #475569;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.mobile-qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.mobile-qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
}

.mobile-trash-btn {
  background: none;
  border: none;
  color: #64748B;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.mobile-trash-btn:hover {
  color: #EF4444;
}

.cart-continue-wrap {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.cart-continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.75rem 1.25rem;
  border: 1.5px solid #0F172A;
  border-radius: 12px;
  background: #FFFFFF;
  color: #0F172A;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cart-continue-btn:hover {
  background: #0F172A;
  color: #FFFFFF;
}

/* Order Summary Box */
.order-summary-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  position: sticky;
  top: 100px;
}

.summary-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.summary-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-title-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.summary-free-ship-banner {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #166534;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-free-ship-banner strong {
  font-weight: 800;
}

/* Promo Box */
.cart-promo-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.85rem;
  margin-bottom: 1rem;
}

.cart-promo-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.cart-promo-box-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-promo-tag-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EFF6FF;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-promo-box-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.cart-promo-box-sub {
  font-size: 0.74rem;
  color: #64748B;
}

.cart-promo-badge-pill {
  background: #EFF6FF;
  border: none;
  color: #2563EB;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.cart-promo-input-row {
  display: flex;
  gap: 6px;
}

.cart-promo-code-input {
  flex: 1;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: #0F172A;
  font-weight: 600;
}

.cart-promo-code-input:focus {
  outline: none;
  border-color: #2563EB;
  background: #FFFFFF;
}

.cart-promo-apply-button {
  background: #0F172A;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-promo-apply-button:hover {
  background: #2563EB;
}

.cart-promo-best-pill-row {
  margin-top: 8px;
  background: #F0FDF4;
  border: 1px solid #DCFCE7;
  border-radius: 8px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-promo-best-pill-row:hover {
  background: #DCFCE7;
}

.best-green-tag {
  background: #16A34A;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.best-offer-text {
  font-size: 0.78rem;
  color: #166534;
}

.tap-apply-link {
  font-size: 0.72rem;
  font-weight: 800;
  color: #16A34A;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Delivery Box */
.summary-delivery-box {
  background: #F0FDF4;
  border: 1px solid #DCFCE7;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}

.delivery-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #059669;
}

.delivery-progress-bar {
  height: 4px;
  background: #10B981;
  border-radius: 99px;
  margin: 0.65rem 0;
  width: 100%;
}

.delivery-progress-fill {
  height: 100%;
  width: 100%;
  background: #10B981;
  border-radius: 99px;
}

.delivery-est-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #64748B;
}

.delivery-est-text strong {
  color: #334155;
}

/* Price Breakdown */
.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: #475569;
}

.summary-val-dark {
  font-weight: 700;
  color: #0F172A;
}

.gst-subtext {
  font-size: 0.74rem;
  color: #64748B;
  margin-top: 2px;
}

.strikethrough-ship {
  font-size: 0.85rem;
  color: #94A3B8;
  text-decoration: line-through;
}

/* Legacy & standard Summary Row compatibility */
.summary-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #E2E8F0;
}

.summary-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  margin-bottom: 0.75rem !important;
  font-size: 0.92rem !important;
  color: #475569 !important;
}

.summary-row>div:first-child,
.summary-row>span:first-child {
  text-align: left;
}

.summary-row>span:last-child,
.summary-row>div:last-child {
  text-align: right;
  font-weight: 700;
  color: #0F172A;
}

.summary-row.total {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  border-top: 1px solid #E2E8F0 !important;
  padding-top: 1rem !important;
  margin-top: 0.75rem !important;
}

.summary-row.total>span:last-child {
  color: #2563EB !important;
  font-size: 1.45rem !important;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E2E8F0;
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.total-label {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
}

.total-amount {
  font-size: 1.45rem;
  font-weight: 800;
  color: #2563EB;
}

.summary-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #2563EB;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 1.25rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
}

.summary-checkout-btn:hover {
  background: #1D4ED8;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.summary-secure-badge {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   Checkout Page - Modern Multi-Section Luxury & Mobile Perfect UI
   ========================================================================== */
.checkout-stepper-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.25rem 0 1.75rem;
  max-width: 440px;
}

.checkout-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.checkout-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-step-circle.active {
  background: #2563EB;
  color: #FFFFFF;
  border: 2px solid #2563EB;
}

.checkout-step-circle.inactive {
  background: #FFFFFF;
  color: #64748B;
  border: 1.5px solid #CBD5E1;
}

.checkout-step-label {
  font-size: 0.76rem;
  font-weight: 700;
}

.checkout-step-label.active {
  color: #2563EB;
}

.checkout-step-label.inactive {
  color: #64748B;
}

.checkout-step-line {
  height: 2px;
  background: #E2E8F0;
  flex-grow: 1;
  margin: 0 8px 16px;
}

.checkout-section-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
}

.checkout-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.checkout-card-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-step-badge {
  background: #2563EB;
  color: #FFFFFF;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}

.checkout-card-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.checkout-card-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2563EB;
  font-weight: 700;
  font-size: 0.78rem;
}

.checkout-edit-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2563EB;
  font-weight: 700;
  font-size: 0.78rem;
  text-decoration: none;
}

.checkout-edit-cart-link:hover {
  text-decoration: underline;
}

/* Inline Compact Stepper for Checkout Items */
.checkout-qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 6px;
  overflow: hidden;
  height: 28px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  box-sizing: border-box;
}

.checkout-stepper-btn {
  width: 28px;
  height: 100%;
  border: none;
  background: #F8FAFC;
  color: #0F172A;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  user-select: none;
  padding: 0;
  line-height: 1;
  text-decoration: none !important;
  box-sizing: border-box;
}

.checkout-stepper-btn:hover:not(.disabled) {
  background: #EFF6FF;
  color: #2563EB;
}

.checkout-stepper-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
  background: #F8FAFC;
}

.checkout-stepper-val {
  min-width: 26px;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #0F172A;
  padding: 0 4px;
  background: #FFFFFF;
  line-height: 28px;
  display: inline-block;
}

.checkout-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.checkout-form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.checkout-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.form-icon-wrap {
  position: relative;
  width: 100%;
}

.form-icon-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.checkout-form-input {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: #0F172A;
  font-weight: 600;
  outline: none;
  transition: all 0.2s;
}

.checkout-form-input.form-icon-input {
  padding-left: 2.65rem !important;
}

.checkout-form-input:focus {
  border-color: #2563EB;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.payment-method-card {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  background: #FFFFFF;
  transition: all 0.2s;
}

.payment-method-card.active {
  border: 1.5px solid #2563EB;
  background: #EFF6FF;
}

.badge-powered-rzp {
  background: #2563EB;
  color: #FFFFFF;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.badge-pay-doorstep {
  background: #F1F5F9;
  color: #475569;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.payment-badges-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.pay-logo-pill {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #1E293B;
  display: inline-flex;
  align-items: center;
}

.checkout-item-row {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 4px 0;
}

.checkout-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  flex-shrink: 0;
}

.checkout-item-info {
  flex-grow: 1;
  min-width: 0;
}

.checkout-item-name {
  font-weight: 700;
  color: #0F172A;
  font-size: 0.88rem;
  line-height: 1.3;
  margin-bottom: 2px;
}

.checkout-item-meta {
  font-size: 0.76rem;
  color: #64748B;
}

.checkout-item-price {
  font-weight: 800;
  color: #0F172A;
  font-size: 0.95rem;
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cart-main-title {
    font-size: 1.65rem;
  }

  .desktop-cart-view {
    display: none !important;
  }

  .mobile-cart-view {
    display: flex !important;
  }

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0.5rem 0 2.5rem;
  }

  .order-summary-card {
    position: static;
  }
}

/* ==========================================================================
   Reviews Page & Component
   ========================================================================== */
.reviews-section {
  padding: 4rem 0 5rem;
}

.reviews-summary-box {
  background: var(--shifu-navy-950);
  color: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.reviews-summary-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rating-big-score {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: white;
  border: 1px solid var(--shifu-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--shifu-navy-950);
  font-size: 1rem;
}

.verified-badge {
  color: var(--shifu-success);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.review-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--shifu-navy-950);
  margin-bottom: 0.5rem;
}

.review-comment {
  font-size: 0.925rem;
  color: var(--shifu-text-secondary);
  line-height: 1.6;
}

/* Star Rating */
.star-rating {
  display: inline-flex;
  color: var(--shifu-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.star-rating .star {
  color: #CBD5E1;
}

.star-rating .star.filled {
  color: var(--shifu-gold);
}

/* ==========================================================================
   Forms & Modals
   ========================================================================== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--shifu-navy-900);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--shifu-border);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--shifu-navy-950);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--shifu-blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Modal */
.shifu-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.shifu-modal-overlay.active {
  display: flex;
}

.shifu-modal-card {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalScale 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--shifu-border);
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--shifu-navy-950);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--shifu-text-muted);
}

.modal-close:hover {
  color: var(--shifu-navy-950);
}

/* ==========================================================================
   Alerts & Toasts
   ========================================================================== */
.shifu-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.alert-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.alert-warning {
  background: #FFFBEB;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.alert-info {
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}

.shifu-alert-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: inherit;
}

/* Toast Container */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--shifu-navy-950);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid var(--shifu-blue-600);
  animation: slideInRight 0.3s ease;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--shifu-navy-950);
  color: #94A3B8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid #1E293B;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-title {
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.25rem;
}

.footer-col-title {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-size: 0.9rem;
  color: #94A3B8;
}

.footer-link:hover {
  color: #60A5FA;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.5;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

/* 1. Instagram - Official Royal Sunset Gradient */
.footer-social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* 2. Facebook - Official Blue */
.footer-social-icon.facebook {
  background: #1877F2;
}

/* 3. WhatsApp - Official Green */
.footer-social-icon.whatsapp {
  background: #25D366;
}

/* 4. X / Twitter - Sleek Jet Black */
.footer-social-icon.x-twitter {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* 5. YouTube - Official Vivid Red */
.footer-social-icon.youtube {
  background: #FF0000;
}

/* 6. Pinterest - Official Crimson */
.footer-social-icon.pinterest {
  background: #E60023;
}

.footer-social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(1.15);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  width: 100%;
}

.footer-copyright {
  font-size: 0.84rem;
  color: #94A3B8;
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-legal-link {
  color: #94A3B8;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.footer-legal-link:hover {
  color: #60A5FA;
  text-decoration: underline;
}

.footer-legal-dot {
  color: #475569;
  font-size: 0.75rem;
  user-select: none;
}

/* ==========================================================================
   Header Customer Profile Button & Luxury Account Dropdown Menu
   ========================================================================== */
.user-menu-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.user-avatar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 5px;
  border-radius: 99px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: #0F172A;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.user-avatar-btn:hover,
.user-avatar-btn.active {
  background: #EFF6FF;
  border-color: #2563EB;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.user-avatar-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2563EB;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.35);
}

.user-name-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0F172A;
  max-width: 95px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

.user-chevron-icon {
  color: #64748B;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.user-avatar-btn.active .user-chevron-icon {
  transform: rotate(180deg);
  color: #2563EB;
}

/* Luxury User Profile Dropdown Menu */
.user-profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 275px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.18);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  pointer-events: none;
}

.user-menu-wrapper:hover .user-profile-dropdown,
.user-profile-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.user-dropdown-header {
  background: #0F172A;
  padding: 1.15rem 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
}

.user-dropdown-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2563EB;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}

.user-dropdown-meta {
  flex-grow: 1;
  min-width: 0;
  overflow: hidden;
}

.user-dropdown-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  margin-bottom: 2px;
}

.user-dropdown-email {
  font-size: 0.75rem;
  color: #94A3B8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  margin-bottom: 5px;
}

.role-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 99px;
  padding: 2px 8px;
}

.role-pill.admin {
  color: #60A5FA;
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.role-pill.member {
  color: #93C5FD;
  background: rgba(147, 197, 253, 0.15);
  border: 1px solid rgba(147, 197, 253, 0.3);
}

.user-dropdown-body {
  padding: 0.5rem;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}

.user-dropdown-item:hover {
  background: #F1F5F9;
  color: #2563EB;
}

.user-dropdown-item.admin-link:hover {
  background: #EFF6FF;
  color: #1D4ED8;
}

.user-dropdown-item.logout-link:hover {
  background: #FEF2F2;
  color: #EF4444;
}

.user-dropdown-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 0.35rem 0.5rem;
}

@media (max-width: 600px) {

  .user-name-label,
  .user-chevron-icon {
    display: none !important;
  }

  .user-avatar-btn {
    padding: 3px !important;
    gap: 0 !important;
  }

  .user-avatar-circle {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
  }
}

/* ==========================================================================
   Mobile Navigation Drawer & Hamburger
   ========================================================================== */
.mobile-hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--shifu-border);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--shifu-navy-950);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-hamburger-btn:hover {
  background: var(--shifu-bg-subtle);
  color: var(--shifu-blue-600);
  border-color: var(--shifu-blue-600);
}

/* Lock body scroll when mobile nav is open */
html.drawer-open,
body.drawer-open {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none;
}

body.drawer-open .floating-wa-widget {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(0.8);
  transition: all 0.2s ease;
}

body.drawer-open .mobile-bottom-nav {
  z-index: 990 !important;
}

/* Background Scroll Lock for Mobile Navigation Drawer */
html.drawer-open,
body.drawer-open {
  overflow: hidden !important;
  height: 100vh !important;
  max-height: 100vh !important;
  touch-action: none !important;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: none;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 325px;
  max-width: 88vw;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 99999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid #F1F5F9;
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-nav-close {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

.mobile-user-card {
  margin: 0.85rem 1rem 0.5rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.mobile-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-user-details {
  flex-grow: 1;
  min-width: 0;
}

.mobile-user-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: #93C5FD;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.mobile-guest-card {
  margin: 0.85rem 1rem 0.5rem;
  padding: 1.15rem;
  border-radius: 14px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
}

.mobile-guest-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
}

.mobile-guest-desc {
  font-size: 0.78rem;
  color: #64748B;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

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

.mobile-guest-btn {
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.mobile-guest-btn.primary {
  background: #2563EB;
  color: #FFFFFF;
  border: 1px solid #2563EB;
}

.mobile-guest-btn.secondary {
  background: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid #CBD5E1;
}

.mobile-nav-section-title {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  padding: 0.85rem 1.25rem 0.35rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0.15rem 0.75rem;
  gap: 2px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.72rem 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E293B;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mobile-nav-item svg {
  flex-shrink: 0;
  color: #64748B;
  transition: color 0.2s;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: #EFF6FF;
  color: #2563EB;
  font-weight: 700;
}

.mobile-nav-item:hover svg,
.mobile-nav-item.active svg {
  color: #2563EB;
}

.mobile-nav-chip {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.mobile-nav-chip.blue {
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #DBEAFE;
}

.mobile-nav-chip.gray {
  background: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
}

.mobile-nav-chip.red {
  background: #FEF2F2;
  color: #EF4444;
  border: 1px solid #FEE2E2;
}

.mobile-nav-footer {
  margin-top: auto;
  padding: 1.15rem 1.25rem 1.5rem;
  border-top: 1px solid #F1F5F9;
  background: #FAFAFA;
}

.mobile-drawer-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 0.85rem;
}

.mobile-support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-support-link:hover {
  border-color: #2563EB;
  color: #2563EB;
}

/* ==========================================================================
   SHIFU Mobile Bottom Navigation Bar System
   ========================================================================== */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px !important;
  }

  .floating-wa-widget {
    bottom: 74px !important;
    right: 14px !important;
  }

  .mobile-bottom-nav {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid #E2E8F0 !important;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08) !important;
    z-index: 995 !important;
    height: 60px !important;
  }

  .mobile-bottom-nav-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    height: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    padding: 0 0.5rem !important;
  }

  .mobile-bottom-tab {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    height: 100% !important;
    color: #64748B !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .mobile-bottom-icon-wrap {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 2px !important;
    transition: transform 0.2s ease !important;
  }

  .mobile-bottom-label {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    transition: color 0.2s ease !important;
  }

  .mobile-bottom-tab.active,
  .mobile-bottom-tab:active {
    color: #2563EB !important;
  }

  .mobile-bottom-tab.active .mobile-bottom-icon-wrap {
    transform: translateY(-1px) scale(1.06) !important;
  }

  .mobile-bottom-tab.active .mobile-bottom-label {
    color: #2563EB !important;
    font-weight: 800 !important;
  }

  .mobile-tab-badge {
    position: absolute !important;
    top: -4px !important;
    right: -8px !important;
    color: white !important;
    font-size: 0.62rem !important;
    font-weight: 800 !important;
    min-width: 16px !important;
    height: 16px !important;
    border-radius: 99px !important;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 3px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
    z-index: 5 !important;
  }

  .mobile-tab-badge.is-hidden,
  .mobile-tab-badge[style*="display: none"] {
    display: none !important;
  }

  /* Header adjustments on mobile */
  .site-header {
    min-height: 60px;
  }

  .nav-wrapper {
    height: 60px !important;
  }

  .site-logo-img {
    height: 44px !important;
    width: auto;
  }

  .nav-actions {
    gap: 8px !important;
  }

  .nav-icon-btn {
    width: 36px !important;
    height: 36px !important;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

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

@keyframes modalScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

/* Responsive */
@media (max-width: 992px) {
  .mobile-hamburger-btn {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .hero-section {
    min-height: 560px;
    align-items: center;
  }

  .hero-picture-wrapper {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    height: 100% !important;
  }

  .hero-bg-image {
    width: 100% !important;
    height: 100% !important;
    object-position: center right !important;
    opacity: 0.85;
  }

  .hero-bg-overlay {
    background: radial-gradient(circle at 70% 40%, rgba(37, 99, 235, 0.2), transparent 70%),
                linear-gradient(180deg, rgba(8, 13, 26, 0.45) 0%, rgba(8, 13, 26, 0.78) 65%, rgba(8, 13, 26, 0.96) 100%) !important;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 3.5rem 0;
  }

  .hero-pill {
    margin: 0 auto 1.25rem;
  }

  .hero-subtitle {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    color: #E2E8F0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  }

  .hero-cta-group {
    justify-content: center;
  }

  .pdp-grid {
    grid-template-columns: 1fr;
  }

  .pdp-gallery-container {
    position: static !important;
    top: auto !important;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static !important;
    top: auto !important;
    margin-bottom: 2rem;
    box-shadow: none;
    z-index: 1;
  }

  .user-nav-sidebar {
    position: static !important;
    top: auto !important;
    margin-bottom: 1.5rem;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .account-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
  }

  .footer-bottom {
    margin-top: 2.5rem !important;
    padding-top: 1.75rem !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.15rem !important;
    width: 100% !important;
  }

  .footer-legal-links {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.6rem 0.85rem !important;
    width: 100% !important;
  }

  .footer-copyright {
    text-align: center !important;
    width: 100% !important;
  }

  .reviews-summary-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.75rem;
  }

  .reviews-summary-left {
    border-right: none !important;
    border-bottom: 1px solid #1E293B;
    padding-right: 0 !important;
    padding-bottom: 1.75rem;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    height: 64px;
  }

  .site-logo-img {
    height: 42px !important;
  }

  .nav-actions {
    gap: 0.35rem !important;
  }

  .nav-icon-btn {
    width: 36px !important;
    height: 36px !important;
  }

  /* 2 Products Per Row on Mobile */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .product-badges {
    top: 6px !important;
    left: 6px !important;
    gap: 2px !important;
  }

  .product-badges .badge {
    padding: 2px 5px !important;
    font-size: 8.5px !important;
    border-radius: 3px !important;
    line-height: 1.1 !important;
  }

  .product-card {
    border-radius: 10px !important;
  }

  .product-card-body {
    padding: 0.75rem 0.6rem !important;
  }

  .product-card-title {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.35rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.2rem;
  }

  .product-price-row {
    flex-wrap: nowrap !important;
    gap: 3.5px !important;
    padding-top: 0.35rem !important;
    align-items: baseline !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  .price-current {
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }

  .price-original {
    font-size: 0.7rem !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }

  .price-discount,
  .badge-sale {
    font-size: 0.6rem !important;
    padding: 1.5px 3.5px !important;
    border-radius: 3px !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
  }

  .product-card-actions {
    margin-top: 0.5rem;
  }

  .product-card-actions .btn {
    padding: 0.5rem 0.4rem !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
  }

  .catalog-wish-btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.85rem !important;
    top: 6px !important;
    right: 6px !important;
  }

  .pdp-breadcrumb {
    padding: 0.6rem 0 0.2rem !important;
    font-size: 0.78rem !important;
  }

  .pdp-section {
    padding: 0.75rem 0 3.5rem !important;
  }

  .pdp-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .pdp-gallery-container {
    flex-direction: column !important;
    position: static !important;
    top: auto !important;
    gap: 0.65rem !important;
  }

  .pdp-main-image-wrap {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    max-height: 480px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #F8FAFC !important;
  }

  .pdp-thumbnails {
    flex-direction: row !important;
    width: 100% !important;
    overflow-x: auto !important;
    gap: 0.5rem !important;
    padding: 2px 0 6px !important;
    scrollbar-width: none;
  }

  .pdp-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .thumbnail-btn {
    width: 58px !important;
    height: 74px !important;
    flex-shrink: 0 !important;
    border-radius: 6px !important;
  }

  .pdp-title {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
  }

  .pdp-price-box {
    gap: 0.65rem !important;
  }

  .pdp-price-current {
    font-size: 1.6rem !important;
  }

  .pdp-actions {
    display: grid !important;
    grid-template-columns: 110px 1fr !important;
    gap: 0.65rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .pdp-actions .qty-counter {
    width: 100% !important;
    min-width: 0 !important;
  }

  .pdp-actions #add-to-bag-btn {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.9rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  .pdp-actions #buy-now-btn {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-section {
    min-height: calc(100vh - 110px);
    height: auto;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5.5rem;
    padding-top: 2rem;
    position: relative;
    overflow: hidden;
  }

  .hero-slide {
    align-items: flex-end;
    padding-bottom: 5.5rem;
    padding-top: 2rem;
  }

  .hero-slide .hero-bg-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 12% !important;
    opacity: 0.95 !important;
    z-index: 1 !important;
  }

  .hero-slide .hero-bg-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(8, 13, 26, 0.15) 0%, rgba(8, 13, 26, 0.45) 40%, rgba(8, 13, 26, 0.92) 80%, #080D1A 100%) !important;
    z-index: 2 !important;
  }

  .hero-slide .hero-content {
    position: relative;
    z-index: 3;
    padding: 0 !important;
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    color: #E2E8F0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
  }

  .hero-cta-group {
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-slider-arrow {
    display: none !important;
  }

  .hero-slider-indicators {
    bottom: 1.25rem;
    gap: 0.5rem;
  }

  .hero-indicator .indicator-label {
    display: none;
  }

  .hero-indicator {
    padding: 6px 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 1.15rem !important;
  }

  .footer-legal-links {
    justify-content: center !important;
    gap: 0.4rem 0.65rem !important;
    line-height: 1.8 !important;
  }

  .footer-legal-link {
    font-size: 0.78rem !important;
  }

  .footer-copyright {
    font-size: 0.75rem !important;
    color: #64748B !important;
  }

  .category-card-body {
    text-align: center;
    align-items: center;
  }

  .section-header-flex {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 1.25rem;
  }

  .desktop-cart-view {
    display: none !important;
  }

  .mobile-cart-cards {
    display: flex !important;
    flex-direction: column;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   Luxury Modern Coupons & Promo Engine UI (Redesigned & Spacious)
   ========================================================================== */
.cart-promo-container {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.15rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}

.cart-promo-container:hover {
  border-color: #CBD5E1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.cart-promo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  cursor: pointer;
}

.cart-promo-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-promo-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #EFF6FF;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-promo-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.cart-promo-subtitle {
  font-size: 0.74rem;
  color: #64748B;
  margin-top: 2px;
}

.cart-promo-view-all-btn {
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: #2563EB;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cart-promo-view-all-btn:hover {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}

/* Embedded Input Field */
.cart-promo-input-form {
  margin: 0;
}

.cart-promo-input-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.cart-promo-input {
  width: 100%;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  padding: 10px 85px 10px 14px;
  font-family: monospace;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0F172A;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.cart-promo-input:focus {
  outline: none;
  border-color: #2563EB;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.cart-promo-input::placeholder {
  color: #94A3B8;
  font-family: inherit;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.82rem;
}

.cart-promo-submit-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: none;
  padding: 0 14px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-promo-submit-btn:hover {
  background: #2563EB;
}

/* Quick One-Tap Best Offer Pill */
.cart-promo-best-pill {
  margin-top: 0.75rem;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.78rem;
}

.cart-promo-best-pill:hover {
  background: #DCFCE7;
  border-color: #86EFAC;
}

.best-pill-badge {
  background: #15803D;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.best-pill-text {
  color: #166534;
  font-size: 0.75rem;
  margin: 0 6px;
}

.best-pill-apply {
  color: #15803D;
  font-weight: 800;
  font-size: 0.72rem;
}

/* Applied Voucher Card */
.cart-coupon-applied-banner {
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
  border: 1.5px solid #6EE7B7;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
  animation: fadeIn 0.3s ease;
}

.applied-banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.applied-check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #10B981;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.applied-banner-code {
  display: flex;
  align-items: center;
  gap: 8px;
}

.applied-banner-code span:first-child {
  font-family: monospace;
  font-weight: 900;
  font-size: 0.92rem;
  color: #065F46;
}

.applied-discount-val {
  background: #D1FAE5;
  color: #047857;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
}

.applied-banner-subtext {
  font-size: 0.75rem;
  color: #047857;
  margin-top: 2px;
}

.applied-remove-btn {
  background: #FFFFFF;
  border: 1px solid #FCA5A5;
  color: #DC2626;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.applied-remove-btn:hover {
  background: #FEF2F2;
  border-color: #EF4444;
}

@keyframes couponPop {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }

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

.coupon-applied-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coupon-applied-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px dashed #059669;
  border-radius: 6px;
  padding: 3px 10px;
  font-family: monospace;
  font-weight: 800;
  font-size: 0.95rem;
  color: #059669;
}

.coupon-applied-savings {
  font-size: 0.82rem;
  color: #047857;
  font-weight: 700;
  margin-top: 4px;
}

/* Luxury Voucher Drawer (Slide-Over) */
.luxury-coupon-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10005;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.luxury-coupon-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.luxury-coupon-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #FFFFFF;
  z-index: 10006;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
}

.luxury-coupon-drawer-backdrop.active .luxury-coupon-drawer {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8FAFC;
}

.drawer-body {
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

/* Luxury Ticket Design */
.voucher-ticket-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.15rem;
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.voucher-ticket-card.eligible {
  border-color: #BFDBFE;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.voucher-ticket-card.eligible:hover {
  border-color: #2563EB;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

.voucher-ticket-card.locked {
  background: #F8FAFC;
  opacity: 0.75;
}

.voucher-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.voucher-code-badge {
  font-family: monospace;
  font-weight: 800;
  font-size: 1rem;
  color: #2563EB;
  background: #EFF6FF;
  border: 1px dashed #93C5FD;
  padding: 3px 8px;
  border-radius: 6px;
}

.voucher-discount-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: #0F172A;
  margin-top: 4px;
}

.voucher-savings-pill {
  display: inline-block;
  background: #ECFDF5;
  color: #059669;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

.voucher-apply-btn {
  background: #2563EB;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 7px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.voucher-apply-btn:hover {
  background: #1D4ED8;
}

/* Modern Party Popper Confetti Canvas */
#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 99999;
}

voucher-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.voucher-code-badge {
  font-family: monospace;
  font-weight: 800;
  font-size: 1rem;
  color: #2563EB;
  background: #EFF6FF;
  border: 1px dashed #93C5FD;
  padding: 3px 8px;
  border-radius: 6px;
}

.voucher-discount-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: #0F172A;
  margin-top: 4px;
}

.voucher-savings-pill {
  display: inline-block;
  background: #ECFDF5;
  color: #059669;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

.voucher-apply-btn {
  background: #2563EB;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 7px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.voucher-apply-btn:hover {
  background: #1D4ED8;
}



/* ==========================================================================
   Slide-Over Mini-Cart Drawer & Frosted Backdrop Blur
   ========================================================================== */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100%;
  background: #FFFFFF;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.3);
  display: flex;
  flex-direction: column;
}

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

/* Drawer Header */
.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #F1F5F9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
}

.cart-drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-drawer-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.cart-drawer-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748B;
}

.cart-drawer-close {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-drawer-close:hover {
  background: #EFF6FF;
  color: #2563EB;
  border-color: #BFDBFE;
}

/* Free Shipping Ribbon */
.cart-drawer-shipping {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  padding: 0.85rem 1.5rem;
}

.drawer-shipping-notice {
  font-size: 0.82rem;
  color: #334155;
  margin-bottom: 6px;
}

.drawer-progress-track {
  height: 6px;
  background: #E2E8F0;
  border-radius: 99px;
  overflow: hidden;
}

.drawer-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563EB 0%, #10B981 100%);
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrollable Items Body */
.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.drawer-items-wrap {
  display: flex;
  flex-direction: column;
}

.drawer-item-card {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #F1F5F9;
  position: relative;
  transition: opacity 0.25s;
}

.drawer-item-img {
  width: 72px;
  height: 86px;
  border-radius: 10px;
  object-fit: cover;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  flex-shrink: 0;
}

.drawer-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drawer-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.drawer-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F172A;
  text-decoration: none;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.drawer-item-title:hover {
  color: #2563EB;
}

.drawer-item-remove {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #94A3B8;
  padding: 2px;
  transition: color 0.2s;
}

.drawer-item-remove:hover {
  color: #EF4444;
}

.drawer-item-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 6px;
}

.drawer-size-badge {
  background: #EFF6FF;
  color: #2563EB;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #BFDBFE;
}

.drawer-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  overflow: hidden;
  background: #F8FAFC;
}

.drawer-qty-control button {
  background: transparent;
  border: none;
  width: 28px;
  height: 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.drawer-qty-control button:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.drawer-qty-val {
  padding: 0 8px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0F172A;
}

.drawer-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
}

/* Empty State */
.drawer-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.drawer-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* Drawer Footer */
.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.04);
}

.drawer-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.drawer-checkout-btn {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%) !important;
  color: white !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
}

.drawer-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.drawer-view-bag-btn {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  color: #334155 !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.drawer-view-bag-btn:hover {
  background: #F1F5F9;
  border-color: #94A3B8;
}

.drawer-trust-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #F8FAFC;
}

.drawer-trust-item {
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
  }
}

/* ==========================================================================
   PDP Features: Offers Carousel (Brand Blue Theme) & Pincode Delivery Check
   ========================================================================== */

/* 1. Offers Carousel - SHIFU Brand Blue Palette */
.pdp-offers-section {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E2E8F0;
}

.pdp-offers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.pdp-offers-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.pdp-offers-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.pdp-offers-carousel {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 2px 8px;
  width: 100%;
}

.pdp-offers-carousel::-webkit-scrollbar {
  display: none;
}

.pdp-offer-card {
  position: relative;
  min-width: 175px;
  max-width: 190px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.1rem 0.95rem 0.95rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.pdp-offer-card:hover {
  border-color: #2563EB;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.12);
}

.offer-badge-floating {
  position: absolute;
  top: -10px;
  left: 10px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.offer-card-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.35rem;
}

.offer-icon {
  font-size: 1.1rem;
}

.offer-heading {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.offer-subtext {
  font-size: 0.73rem;
  color: #64748B;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  min-height: 26px;
}

/* Authentic Brand-Themed Coupon Voucher Button */
.coupon-copy-btn {
  background: #EFF6FF;
  border: 1.5px dashed #2563EB;
  color: #1D4ED8;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08);
  width: 100%;
}

.coupon-copy-btn:hover {
  background: #2563EB;
  color: #FFFFFF;
  border-style: solid;
  border-color: #2563EB;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.coupon-copy-btn.copied {
  background: #10B981 !important;
  color: #FFFFFF !important;
  border-color: #10B981 !important;
  border-style: solid !important;
}

.pdp-offers-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.pdp-offers-next-btn {
  position: absolute;
  right: 2px;
  width: 28px;
  height: 48px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  z-index: 10;
  color: #0F172A;
  transition: all 0.2s;
}

.pdp-offers-next-btn:hover {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}

/* 2. Delivery Pincode Check Section - Spacious & High-Converting */
.pdp-delivery-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid #E2E8F0;
  width: 100%;
  max-width: 100%;
}

.pdp-delivery-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.pdp-estimated-delivery-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border: 1.5px solid #DBEAFE;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  max-width: 460px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.04);
}

.pdp-del-icon-wrap {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-del-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pdp-del-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.pdp-del-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pdp-del-target {
  font-size: 1rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.pdp-del-sub {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.35;
}

.pdp-pincode-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 12px;
  padding: 8px 10px 8px 14px;
  max-width: 460px;
  width: 100%;
  box-sizing: border-box;
  gap: 8px;
  transition: all 0.2s;
}

.pdp-pincode-box:focus-within {
  border-color: #2563EB;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.pdp-pincode-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.pdp-pincode-input-wrap input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F172A;
  width: 100%;
  min-width: 0;
}

.pdp-pincode-input-wrap input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F172A;
  width: 100%;
}

.pdp-pincode-input-wrap input::placeholder {
  color: #94A3B8;
  font-weight: 500;
}

.pincode-check-btn {
  background: #0F172A;
  border: none;
  font-size: 0.9rem;
  font-weight: 800;
  color: #FFFFFF;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.2s;
}

.pincode-check-btn:hover {
  background: #2563EB;
  transform: translateY(-1px);
}

.pincode-results-container {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.15rem 1.25rem;
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: 12px;
  font-size: 0.88rem;
  color: #166534;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 4px 14px rgba(22, 101, 52, 0.08);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

/* ==========================================================================
   Shopping Bag (Cart Page) Responsive Views & Table Styles
   ========================================================================== */
.desktop-cart-view {
  display: table !important;
  width: 100%;
}

.mobile-cart-view {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-cart-view {
    display: none !important;
  }

  .mobile-cart-view {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================================================
   Hero CTA Buttons - Sleek & Compact Responsive Size
   ========================================================================== */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-cta-group .btn,
.hero-cta-group .btn-lg {
  padding: 0.65rem 1.25rem !important;
  font-size: 0.88rem !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  min-height: unset !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}

@media (max-width: 640px) {
  .hero-cta-group {
    gap: 0.5rem !important;
    width: 100%;
    flex-wrap: nowrap !important;
  }

  .hero-cta-group .btn,
  .hero-cta-group .btn-lg {
    padding: 0.55rem 0.85rem !important;
    font-size: 0.8rem !important;
    border-radius: 8px !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
}

/* ==========================================================================
   SHIFU Website Opening Splash Screen (4-5s Full-Screen White Branded Entrance)
   ========================================================================== */
body.splash-active {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none;
}

.shifu-splash-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  z-index: 99999999;
  background-color: #FFFFFF !important;
  background: radial-gradient(circle at 50% 45%, #FFFFFF 0%, #FAFAFC 70%, #F4F6F9 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.shifu-splash-screen.is-dismissing {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(1.025);
  pointer-events: none !important;
}

.shifu-splash-screen.is-hidden {
  display: none !important;
}

.shifu-splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  max-width: 440px;
  width: 90%;
  pointer-events: none;
}

.shifu-splash-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.shifu-splash-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  animation: splashGlowPulse 3s ease-in-out infinite alternate;
}

.shifu-splash-logo {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 230px;
  max-height: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(8, 13, 26, 0.06));
  animation: splashLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    splashLogoBreathe 3.5s ease-in-out 1s infinite alternate;
}

.shifu-splash-tagline {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #475569;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(8px);
  animation: splashFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.shifu-splash-loader-bar {
  width: 140px;
  height: 3px;
  background: #E2E8F0;
  border-radius: 999px;
  margin-top: 1.5rem;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: splashFadeIn 0.5s ease 0.5s forwards;
}

.shifu-splash-loader-progress {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #080D1A 0%, #2563EB 60%, #1D4ED8 100%);
  animation: splashProgressFill 4.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.shifu-splash-skip {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid #E2E8F0;
  color: #64748B;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.shifu-splash-skip:hover {
  background: #080D1A;
  color: #FFFFFF;
  border-color: #080D1A;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.shifu-splash-hint {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: #94A3B8;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: splashFadeIn 0.6s ease 1.2s forwards;
}

/* Keyframes */
@keyframes splashLogoIn {
  0% {
    opacity: 0;
    transform: scale(0.86);
    filter: blur(4px);
  }

  60% {
    opacity: 1;
    transform: scale(1.02);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes splashLogoBreathe {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 10px 25px rgba(8, 13, 26, 0.06));
  }

  100% {
    transform: scale(1.03);
    filter: drop-shadow(0 14px 32px rgba(37, 99, 235, 0.12));
  }
}

@keyframes splashGlowPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.3);
    opacity: 0.85;
  }
}

@keyframes splashFadeUp {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splashFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes splashProgressFill {
  0% {
    width: 0%;
  }

  20% {
    width: 25%;
  }

  50% {
    width: 60%;
  }

  80% {
    width: 88%;
  }

  100% {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .shifu-splash-logo {
    max-width: 185px;
    max-height: 110px;
  }

  .shifu-splash-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
  }

  .shifu-splash-loader-bar {
    width: 120px;
  }

  .shifu-splash-skip {
    top: 18px;
    right: 18px;
    font-size: 0.72rem;
    padding: 5px 12px;
  }
}

/* ==========================================================================
   WhatsApp Integration - 1-Click Order / Inquire Button (PDP)
   ========================================================================== */
.btn-whatsapp-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0.85rem 1.25rem;
  margin-top: 0.75rem;
  background: #25D366;
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid #1EBE5D;
  border-radius: var(--radius-md, 10px);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.01em;
}

.btn-whatsapp-order:hover {
  background: linear-gradient(135deg, #1EBE5D 0%, #16A34A 100%);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42);
}

.btn-whatsapp-order:active {
  transform: translateY(0);
}

.btn-whatsapp-order svg {
  flex-shrink: 0;
}

/* ==========================================================================
   WhatsApp Integration - Global Floating Quick Concierge Widget
   ========================================================================== */
.floating-wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.floating-wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(8, 13, 26, 0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.floating-wa-btn:hover {
  background: linear-gradient(135deg, #1EBE5D 0%, #16A34A 100%);
  color: #FFFFFF !important;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 6px 16px rgba(8, 13, 26, 0.25);
}

.floating-wa-ripple {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: waRipple 2.2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

.floating-wa-badge {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: #080D1A;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.floating-wa-badge::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #080D1A;
}

.floating-wa-widget:hover .floating-wa-badge {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes waRipple {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .floating-wa-widget {
    bottom: 22px;
    right: 18px;
  }

  .floating-wa-btn {
    width: 52px;
    height: 52px;
  }

  .floating-wa-btn svg {
    width: 26px;
    height: 26px;
  }

  .floating-wa-badge {
    display: none;
  }

  .btn-whatsapp-order {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}

/* ==========================================================================
   SHIFU Impact Page & Auto-Adapting Carousels
   ========================================================================== */
.impact-header-section {
  background: linear-gradient(135deg, #050811 0%, #0B132B 50%, #0F172A 100%);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-header-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(37, 99, 235, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.impact-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.impact-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #93C5FD;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.impact-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38BDF8;
  box-shadow: 0 0 8px #38BDF8;
  animation: pulse 2s infinite;
}

.impact-main-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  line-height: 1.15;
}

.impact-main-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  color: #94A3B8;
  line-height: 1.5;
  font-style: italic;
}

.impact-page-container {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

/* Full-Width Showcase Section Layout */
.impact-section-block {
  margin-bottom: 5rem;
  width: 100%;
}

.impact-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
}

.impact-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #2563EB;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

.impact-section-heading {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.impact-section-desc {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* Slider Wrapper & Aspect Ratio Mechanics */
.impact-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(8, 13, 26, 0.16), 0 4px 16px rgba(8, 13, 26, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #080D1A;
}

.quote-slider {
  aspect-ratio: 21 / 9;
  min-height: 460px;
  height: 500px;
}

.donation-slider {
  min-height: 480px;
  height: auto;
  background: #F8FAFC;
  padding: 0.5rem;
}

.impact-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.impact-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.impact-slide-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.impact-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impact-quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 26, 0.25) 0%, rgba(8, 13, 26, 0.6) 50%, rgba(8, 13, 26, 0.92) 100%);
  z-index: 3;
}

/* Watermark & Monogram */
.impact-slide-watermark {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;
  opacity: 0.85;
  background: rgba(8, 13, 26, 0.4);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.impact-watermark-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Quote Typography Overlay */
.impact-quote-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.25rem 2.5rem;
  z-index: 4;
  color: #FFFFFF;
}

.impact-quote-quote-mark {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.7;
  color: #60A5FA;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.impact-quote-text {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0 0 1rem;
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.impact-quote-divider {
  width: 44px;
  height: 3px;
  background: #3B82F6;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.impact-quote-author {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #93C5FD;
  text-transform: uppercase;
  display: block;
}

/* Nav Arrows */
.impact-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.impact-nav-arrow:hover {
  background: var(--shifu-blue-600);
  border-color: var(--shifu-blue-600);
  transform: translateY(-50%) scale(1.08);
}

.impact-nav-arrow.prev-arrow {
  left: 16px;
}

.impact-nav-arrow.next-arrow {
  right: 16px;
}

/* Dots */
.impact-slider-dots {
  position: absolute;
  bottom: 16px;
  right: 24px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.impact-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.impact-dot.active {
  width: 28px;
  border-radius: 10px;
  background: #3B82F6;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

/* Feature Description Card (Right Column) */
.impact-feature-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2.75rem 2.25rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-feature-card:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}

.impact-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--shifu-blue-600);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.impact-card-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

.impact-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.impact-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
}

.impact-feature-list li strong {
  color: #0F172A;
}

.feature-bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Block 2: Donation Gallery & Multi-Card Showcase
   ========================================================================== */
.donation-desktop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
  min-height: 420px;
}

.donation-mobile-slider {
  display: none;
}

.donation-grid-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
}

.donation-grid-item.photo-item {
  background: #0F172A;
}

.donation-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.donation-grid-item.photo-item:hover .donation-card-img {
  transform: scale(1.05);
}

.donation-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(180deg, rgba(8, 13, 26, 0) 0%, rgba(8, 13, 26, 0.9) 100%);
  color: #FFFFFF;
  z-index: 2;
}

.donation-location-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.donation-item-caption {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: #F8FAFC;
}

/* Signature "Together We Grow" Seal Card */
.quote-seal-item {
  background: linear-gradient(145deg, #0A1128 0%, #001F54 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
}

.donation-seal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donation-seal-emblem {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.donation-emblem-img {
  width: 32px;
  height: auto;
  filter: brightness(0) invert(1);
}

.donation-seal-title {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: #93C5FD;
  margin-bottom: 0.5rem;
}

.donation-seal-quote {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.donation-seal-sub {
  font-size: 0.78rem;
  color: #94A3B8;
  font-style: italic;
  max-width: 160px;
  line-height: 1.4;
}

/* ==========================================================================
   Grand Profit Contribution Showcase Hero
   ========================================================================== */
.impact-contribution-hero {
  background: linear-gradient(135deg, #0A1128 0%, #001F54 50%, #034078 100%);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  margin-bottom: 4.5rem;
  box-shadow: 0 25px 60px -15px rgba(0, 31, 84, 0.4), 0 0 35px rgba(37, 99, 235, 0.15);
  position: relative;
  overflow: hidden;
}

.impact-contribution-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.contribution-hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contribution-pledge-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34D399;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.contribution-main-amount {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.contribution-main-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #93C5FD;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.contribution-main-desc {
  font-size: 0.98rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin: 0;
  max-width: 580px;
}

.contribution-hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.contribution-badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contribution-check-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contribution-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contribution-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #F1F5F9;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
}

/* ==========================================================================
   Block 3: Impact Stats Ribbon
   ========================================================================== */
.impact-stats-ribbon {
  background: #080D1A;
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-bottom: 4.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stats-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-ribbon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.stat-ribbon-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60A5FA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 0.25rem;
}

.stat-sub {
  font-size: 0.78rem;
  color: #94A3B8;
}

/* ==========================================================================
   Block 4: Impact CTA Banner
   ========================================================================== */
.impact-cta-banner {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 1px solid #BFDBFE;
  border-radius: 20px;
  padding: 3.5rem 3rem;
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.08);
}

.impact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.impact-cta-text-col {
  max-width: 680px;
}

.cta-mini-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--shifu-blue-600);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.cta-heading {
  font-size: 1.85rem;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.cta-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.impact-cta-btn-col {
  flex-shrink: 0;
}

/* ==========================================================================
   Responsive Adaptations for Tablets & Mobile Phones
   ========================================================================== */
@media (max-width: 1024px) {
  .impact-block-row {
    grid-template-columns: 1.15fr 1fr;
    gap: 1.75rem;
  }

  .stats-ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stat-ribbon-card:not(:last-child)::after {
    display: none;
  }

  .quote-slider {
    aspect-ratio: 16 / 9;
    min-height: 420px;
    height: 460px;
  }

  .donation-desktop-grid {
    display: none !important;
  }

  .donation-mobile-slider {
    display: block !important;
    aspect-ratio: 16 / 9;
    min-height: 400px;
    height: 450px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }

  .donation-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, transform 0.45s ease;
    transform: scale(0.98);
    border-radius: 24px;
    overflow: hidden;
  }

  .donation-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
  }

  .donation-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .mobile-seal-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0A1128 0%, #001F54 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    box-sizing: border-box;
  }

  .donation-item-overlay.mobile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem;
    background: linear-gradient(180deg, rgba(8, 13, 26, 0) 0%, rgba(8, 13, 26, 0.92) 100%);
    color: #FFFFFF;
    z-index: 3;
  }

  .impact-slider-dots {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: 16px !important;
  }
}

@media (max-width: 768px) {
  .impact-header-section {
    padding: 3.5rem 0 2.5rem;
  }

  .impact-block-row {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 3.5rem;
  }

  .quote-slider {
    aspect-ratio: 4 / 5;
    min-height: 420px;
    height: 440px;
  }

  .donation-mobile-slider {
    aspect-ratio: 4 / 3;
    min-height: 330px;
    height: 360px;
    border-radius: 20px;
  }

  .donation-slide {
    border-radius: 20px;
  }

  .mobile-seal-card {
    padding: 2.25rem 1.5rem;
  }

  .donation-item-overlay.mobile-overlay {
    padding: 1.5rem 1.25rem;
  }

  .impact-slider-dots {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: 14px !important;
  }

  .impact-quote-content {
    padding: 1.5rem 1.25rem;
  }

  .impact-feature-card {
    padding: 1.75rem 1.5rem;
  }

  .impact-contribution-hero {
    padding: 2.25rem 1.5rem;
    border-radius: 18px;
    margin-bottom: 3.5rem;
  }

  .contribution-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contribution-main-amount {
    font-size: 2.4rem;
  }

  .impact-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.75rem;
  }

  .impact-cta-btn-col .btn {
    width: 100%;
  }
}

/* ==========================================================================
   SHIFU Authentication Pages (Login / Register / Forgot Password)
   ========================================================================== */
.shifu-auth-wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 30%, #1E293B 0%, #0B1120 100%);
  padding: 2.5rem 1.25rem;
  box-sizing: border-box;
}

.shifu-auth-card {
  background: #FFFFFF;
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.shifu-auth-logo-wrap {
  text-align: center;
  margin-bottom: 1.75rem;
}

.shifu-auth-logo-img {
  height: 54px;
  width: auto;
  margin: 0 auto 0.85rem;
  display: block;
}

.shifu-auth-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.shifu-auth-subtitle {
  color: #64748B;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.shifu-auth-form-group {
  margin-bottom: 1.2rem;
}

.shifu-auth-label {
  display: block;
  font-weight: 700;
  color: #334155;
  font-size: 0.84rem;
  margin-bottom: 0.4rem;
}

.shifu-auth-input {
  width: 100%;
  height: 48px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 1.5px solid #E2E8F0;
  background-color: #F8FAFC;
  color: #0F172A;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.shifu-auth-input:focus {
  background-color: #FFFFFF;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  outline: none;
}

.shifu-auth-pass-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.shifu-auth-pass-wrap .shifu-auth-input {
  padding-right: 3rem;
}

.shifu-auth-pass-toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: color 0.15s ease;
}

.shifu-auth-pass-toggle:hover {
  color: #2563EB;
}

.shifu-auth-btn {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
}

.shifu-auth-btn:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

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

.shifu-auth-footer-link {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #F1F5F9;
  font-size: 0.88rem;
  color: #64748B;
}

.shifu-auth-footer-link a {
  color: #2563EB;
  font-weight: 700;
  text-decoration: none;
}

.shifu-auth-footer-link a:hover {
  text-decoration: underline;
}

.shifu-auth-return-link {
  text-align: center;
  margin-top: 1rem;
  border-top: 1px solid #F1F5F9;
  padding-top: 0.9rem;
}

.shifu-auth-return-link a {
  font-size: 0.84rem;
  font-weight: 700;
  color: #64748B;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}

.shifu-auth-return-link a:hover {
  color: #0F172A;
}

/* Mobile-Specific Refined Experience */
@media (max-width: 640px) {

  html,
  body {
    background-color: #FFFFFF !important;
    min-height: 100% !important;
  }

  .shifu-auth-wrapper {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    min-height: 100vh !important;
    height: auto !important;
    padding: 1.5rem 1.25rem 2rem !important;
    margin: 0 !important;
    justify-content: flex-start !important;
    display: block !important;
  }

  .shifu-auth-card {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 auto !important;
  }

  .shifu-auth-logo-wrap {
    margin-bottom: 1.25rem !important;
  }

  .shifu-auth-logo-img {
    height: 48px !important;
    margin-bottom: 0.5rem !important;
  }

  .shifu-auth-title {
    font-size: 1.55rem !important;
  }

  .shifu-auth-subtitle {
    font-size: 0.84rem !important;
    margin-bottom: 1rem !important;
  }

  .shifu-auth-form-group {
    margin-bottom: 1rem !important;
  }

  .shifu-auth-input {
    font-size: 16px !important;
    /* Prevents auto-zoom on iOS */
    height: 46px !important;
  }

  .shifu-auth-btn {
    height: 48px !important;
    font-size: 0.95rem !important;
    margin-top: 0.5rem !important;
  }

  .shifu-auth-footer-link {
    margin-top: 1rem !important;
    padding-top: 0.85rem !important;
  }

  .shifu-auth-return-link {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
  }
}

/* ==========================================================================
   Order Confirmation / Success Page Styles (Mobile-First & Desktop Optimized)
   ========================================================================== */
.order-success-container {
  max-width: 540px;
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem;
}

.order-success-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.hero-card {
  text-align: center;
  padding: 1.75rem 1.15rem 1.25rem;
}

.confetti-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto 0.5rem;
}

.confetti-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.confetti-diamond {
  position: absolute;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  pointer-events: none;
}

.dot-1 {
  width: 5px;
  height: 5px;
  background: #3B82F6;
  top: -6px;
  left: -14px;
}

.dia-1 {
  background: #F59E0B;
  top: -12px;
  left: 16px;
}

.dot-2 {
  width: 6px;
  height: 6px;
  background: #10B981;
  top: 8px;
  left: -10px;
}

.dia-2 {
  background: #3B82F6;
  top: -10px;
  right: 14px;
}

.dot-3 {
  width: 5px;
  height: 5px;
  background: #F59E0B;
  top: 12px;
  right: -8px;
}

.dot-4 {
  width: 6px;
  height: 6px;
  background: #10B981;
  bottom: -2px;
  right: -12px;
}

.success-check-badge {
  width: 52px;
  height: 52px;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.15);
}

.order-success-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0.65rem 0 0.2rem;
  letter-spacing: -0.01em;
}

.order-success-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748B;
  margin-bottom: 0.65rem;
}

.order-success-desc {
  font-size: 0.76rem;
  color: #64748B;
  line-height: 1.45;
  max-width: 440px;
  margin: 0 auto;
}

.order-success-desc strong {
  color: #0F172A;
}

.order-tracker-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.95rem 0.5rem 0.75rem;
  margin-top: 1.15rem;
}

.order-tracker-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.order-tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  min-width: 54px;
}

.tracker-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.tracker-circle.active {
  background: #2563EB;
  color: #FFFFFF;
}

.tracker-circle.inactive {
  background: #CBD5E1;
  color: #FFFFFF;
}

.tracker-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748B;
  white-space: nowrap;
}

.tracker-label.active {
  font-weight: 800;
  color: #0F172A;
}

.tracker-date {
  font-size: 0.62rem;
  color: #64748B;
  white-space: nowrap;
}

.tracker-line {
  height: 2px;
  background: #E2E8F0;
  flex-grow: 1;
  margin: 0 4px 18px;
}

.tracker-line.active {
  background: #2563EB;
}

/* Card 2: Order Info Bar */
.order-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.15rem;
}

.order-info-heading {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 600;
}

.copy-order-btn {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  transition: background 0.15s ease;
}

.copy-order-btn:hover {
  background: #EFF6FF;
}

.order-info-num {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  margin: 2px 0;
  letter-spacing: -0.01em;
}

.order-info-date {
  font-size: 0.68rem;
  color: #64748B;
}

.order-info-right {
  text-align: right;
}

.payment-status-label {
  font-size: 0.68rem;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 3px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 800;
}

.payment-badge .badge-dot {
  font-size: 0.6rem;
  line-height: 1;
}

.badge-pending {
  background: #FEF3C7;
  color: #B45309;
}

.badge-paid {
  background: #DCFCE7;
  color: #15803D;
}

.payment-method-desc {
  font-size: 0.64rem;
  color: #64748B;
  margin-top: 2px;
}

/* Card 3: Order Details Card */
.order-details-card {
  padding: 1.15rem;
}

.order-section {
  margin-bottom: 1.25rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.75rem;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.order-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.6rem 0.75rem;
  background: #FFFFFF;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
}

.order-item-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  flex-shrink: 0;
}

.order-item-meta {
  flex-grow: 1;
  min-width: 0;
}

.order-item-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
}

.order-item-variant {
  font-size: 0.72rem;
  color: #64748B;
  margin-top: 2px;
}

.order-item-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0F172A;
  white-space: nowrap;
}

/* Delivery To Box */
.delivery-address-box {
  display: flex;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  align-items: flex-start;
}

.delivery-address-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.delivery-address-text {
  font-size: 0.76rem;
  color: #475569;
  line-height: 1.45;
}

.delivery-person strong {
  font-weight: 700;
  color: #0F172A;
}

.delivery-phone {
  font-weight: 500;
  color: #64748B;
}

.delivery-lines {
  margin-top: 2px;
  color: #64748B;
}

/* Order Summary */
.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #475569;
}

.summary-line.discount {
  color: #059669;
  font-weight: 700;
}

.free-shipping {
  color: #059669;
  font-weight: 800;
}

.summary-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 6px 0;
}

.summary-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
}

.total-value {
  font-size: 1.15rem;
  font-weight: 900;
  color: #2563EB;
}

/* Action Buttons */
.order-actions-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.btn-success-invoice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #2563EB;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.8rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-success-invoice:hover {
  background: #1D4ED8;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-success-orders {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  color: #0F172A;
  border: 1.5px solid #CBD5E1;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.72rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-success-orders:hover {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

.btn-success-continue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  color: #0F172A;
  border: 1px solid #CBD5E1;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.72rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-success-continue:hover {
  background: #F8FAFC;
  color: #0F172A;
}

/* ==========================================================================
   User Orders History - Mobile-First Card Layout & Steppers
   ========================================================================== */
.user-order-search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 1.25rem;
  align-items: center;
}

.search-input-wrap {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.search-input-wrap input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.85rem;
  font-family: inherit;
  color: #0F172A;
  width: 100%;
}

.search-input-wrap input::placeholder {
  color: #94A3B8;
  font-size: 0.82rem;
}

.filter-dropdown-wrap {
  flex-shrink: 0;
}

.filter-select-btn {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F172A;
  cursor: pointer;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

/* Compact Order Card Header */
.user-order-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
  padding: 0.9rem 1.15rem;
  gap: 12px;
}

.user-order-header-cols {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr 1.4fr;
  gap: 14px;
  flex-grow: 1;
  align-items: center;
}

.order-hdr-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.order-hdr-status-col {
  align-items: flex-end;
  text-align: right;
}

.order-hdr-title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: #64748B;
  font-weight: 600;
}

.order-hdr-val {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0F172A;
  white-space: nowrap;
}

.order-hdr-val.price {
  color: #2563EB;
  font-size: 0.88rem;
}

.order-hdr-val.date {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}

.order-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  width: fit-content;
  white-space: nowrap !important;
  letter-spacing: 0.02em;
}

.order-status-pill.status-pending {
  background: #FEF3C7;
  color: #B45309;
}

.order-status-pill.status-delivered {
  background: #DCFCE7;
  color: #15803D;
}

.order-status-pill.status-cancelled {
  background: #FEE2E2;
  color: #DC2626;
}

.order-status-pill.status-processing,
.order-status-pill.status-shipped {
  background: #EFF6FF;
  color: #2563EB;
}

.order-hdr-subtext {
  font-size: 0.62rem;
  color: #64748B;
  margin-top: 2px;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .user-order-header-cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 14px !important;
  }

  .user-order-header-cols .order-hdr-col:nth-child(2),
  .user-order-header-cols .order-hdr-col:nth-child(4) {
    align-items: flex-end !important;
    text-align: right !important;
  }
}

/* Order Item Flex Row */
.user-order-item-body {
  padding: 1rem 1.15rem;
}

.user-order-item-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.user-order-item-left {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-grow: 1;
  min-width: 220px;
}

.user-order-thumb {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  flex-shrink: 0;
}

.user-order-item-title {
  font-weight: 800;
  font-size: 0.88rem;
  color: #0F172A;
  line-height: 1.3;
}

.user-order-item-badges {
  font-size: 0.74rem;
  color: #64748B;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.size-black-pill {
  background: #0F172A;
  color: #FFFFFF;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.65rem;
}

.user-order-item-price-tag {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  margin-top: 3px;
}

/* Action Buttons */
.user-order-actions-flex {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-card-invoice {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: #0F172A;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-card-invoice:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
  color: #0F172A;
}

.btn-card-track {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #2563EB;
  border: 1.5px solid #2563EB;
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-card-track:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
  color: #FFFFFF;
}

.btn-card-reorder {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  border: 1.5px solid #3B82F6;
  color: #2563EB;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-card-reorder:hover {
  background: #EFF6FF;
  color: #1D4ED8;
}

.btn-card-cancel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFF5F5;
  border: 1.5px solid #FCA5A5;
  color: #DC2626;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-card-cancel:hover {
  background: #FEE2E2;
  border-color: #EF4444;
  color: #B91C1C;
}

.btn-card-support {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  color: #166534;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-card-support:hover {
  background: #DCFCE7;
  border-color: #22C55E;
  color: #14532D;
  transform: translateY(-1px);
}


.btn-cancel-order-tracking {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFF5F5;
  border: 1.5px solid #FCA5A5;
  color: #DC2626;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.btn-cancel-order-tracking:hover {
  background: #FEE2E2;
  border-color: #EF4444;
  color: #B91C1C;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.12);
}


/* Stepper Bottom Inside Card */
.user-order-tracker-bottom {
  background: #FFFFFF;
  border-top: 1px solid #F1F5F9;
  padding: 0.85rem 0.75rem 0.65rem;
}

.user-tracker-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.user-tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  min-width: 52px;
}

.user-tracker-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  background: #CBD5E1;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.user-tracker-circle.active {
  background: #2563EB;
  color: #FFFFFF;
}

.user-tracker-circle.delivered {
  background: #10B981;
  color: #FFFFFF;
}

.user-tracker-label {
  font-size: 0.66rem;
  font-weight: 600;
  color: #64748B;
  white-space: nowrap;
}

.user-tracker-label.active {
  font-weight: 800;
  color: #0F172A;
}

.user-tracker-date {
  font-size: 0.6rem;
  color: #64748B;
  white-space: nowrap;
}

.user-tracker-line {
  height: 2px;
  background: #E2E8F0;
  flex-grow: 1;
  margin: 0 4px 16px;
}

.user-tracker-line.active {
  background: #2563EB;
}

.user-tracker-line.delivered {
  background: #10B981;
}

@media (max-width: 640px) {
  .user-order-header-cols {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px 10px !important;
  }
}

/* ==========================================================================
   Shopping Bag - Interactive Size & Quantity Editors
   ========================================================================== */
.cart-size-dropdown {
  background: #0F172A;
  color: #FFFFFF;
  border: 1.5px solid #0F172A;
  border-radius: 8px;
  padding: 5px 10px;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  appearance: auto;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}

.cart-size-dropdown:hover,
.cart-size-dropdown:focus {
  background: #1E293B;
  border-color: #2563EB;
}

.cart-size-dropdown-sm {
  background: #F1F5F9;
  color: #0F172A;
  border: 1.5px solid #CBD5E1;
  border-radius: 6px;
  padding: 3px 8px;
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.cart-size-dropdown-sm:hover,
.cart-size-dropdown-sm:focus {
  border-color: #2563EB;
  background: #EFF6FF;
}