/* Import Premium Modern Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Global Variables & Theme System */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 4rem;

  /* Spacing Scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
  --space-32: 128px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 9999px;

  /* Day Theme Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-inverted: #ffffff;
  
  --color-primary: #02428a; /* 10X FUEL Royal Blue */
  --color-primary-hover: #012b5c;
  --color-primary-glow: rgba(2, 66, 138, 0.15);
  --color-secondary: #ff5c00; /* 10X FUEL Brand Orange */
  --color-accent: #ff5c00;

  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  --border-subtle: rgba(0,0,0,.04);
  --border-default: rgba(0,0,0,.08);
  --border-strong: rgba(0,0,0,.16);
  --border-light: rgba(0,0,0,.08);
  --border-focus: #02428a;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.15);
  --shadow-glow: 0 0 30px rgba(2,66,138,.35);
  --shadow-glow-pink: 0 0 30px rgba(255,92,0,.30);
  
  --transition-fast: all 0.15s cubic-bezier(0, 0, 0.3, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  /* Brand Theme Specifics */
  --color-brand-blue: #02428a;
  --color-brand-orange: #ff5c00;
  --nav-bg: rgba(255, 255, 255, 0.9);
  --nav-border: rgba(2, 66, 138, 0.1);
  --nav-link: #374151;
  --search-bg: rgba(2, 66, 138, 0.04);
  --search-border: rgba(2, 66, 138, 0.12);
  --search-text: #0c192c;
  --search-focus-bg: #ffffff;
  --price-color: #ff5c00;
  --price-orig-color: #9ca3af;
  --footer-bg: #0c192c;
  --footer-text: rgba(255, 255, 255, 0.6);
  --footer-title: #ffffff;
}

/* Night Theme Palette Override (Default) */
[data-theme="night"] {
  --bg-primary: #050816;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  --bg-card: rgba(15,23,42,.70);
  --bg-card-hover: rgba(30,41,59,.80);

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  --text-inverted: #0f172a;

  --border-subtle: rgba(255,255,255,.06);
  --border-default: rgba(255,255,255,.10);
  --border-strong: rgba(255,255,255,.20);
  --border-light: rgba(255,255,255,.10);
  --border-focus: #ff5c00;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.4);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.5);

  /* Brand Theme Specific Overrides */
  --nav-bg: rgba(5, 8, 22, 0.9);
  --nav-border: rgba(255, 255, 255, 0.1);
  --nav-link: #e2e8f0;
  --search-bg: rgba(255, 255, 255, 0.05);
  --search-border: rgba(255, 255, 255, 0.15);
  --search-text: #ffffff;
  --search-focus-bg: #0f172a;
  --price-color: #ff5c00;
  --price-orig-color: #475569;
  --footer-bg: #050816;
  --footer-text: rgba(255, 255, 255, 0.6);
  --footer-title: #ffffff;
}

/* Premium Visual Effects */
.glass {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-default);
}
[data-theme="day"] .glass {
  background: rgba(255, 255, 255, 0.7);
}

.aurora {
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(120,119,198,.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139,92,246,.1), transparent),
    radial-gradient(ellipse 50% 70% at 50% 50%, var(--bg-primary), transparent);
}

/* Base resets and overrides */
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: var(--transition-smooth);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0;
}

a {
  color: var(--color-primary);
  transition: var(--transition-fast);
  text-decoration: none;
}
a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

/* Modern Header Bar styling */
#top {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  transition: var(--transition-smooth);
}
#top a, #top-links a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}
#top a:hover {
  color: var(--color-primary);
}

/* Glassmorphism Header */
header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

[data-theme="night"] header {
  background: rgba(9, 13, 22, 0.8);
}

/* Logo styling */
#logo h1 a {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Search input container */
.input-group .form-control {
  border: 1px solid var(--border-light);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
  height: 46px;
  padding-left: 16px;
  font-size: 14px;
  transition: var(--transition-fast);
}
.input-group .form-control:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}
.input-group .btn-lg {
  border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
  height: 46px;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transition: var(--transition-fast);
  padding: 0 20px;
}
.input-group .btn-lg:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Mini Cart Button styling */
#cart > .btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary));
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  height: 46px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}
#cart > .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

/* Day/Night Toggle Switch styling */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.theme-toggle-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.theme-toggle-btn:hover {
  transform: scale(1.1);
  background: var(--color-primary-glow);
  color: var(--color-primary);
}

/* Swiper / Banner redesign */
.swiper-container, .slideshow {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Product Card Design */
.product-layout {
  margin-bottom: 30px;
}
.product-thumb {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-thumb:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-glow);
}
.product-thumb .image {
  background-color: var(--bg-tertiary);
  padding: 20px;
  text-align: center;
  transition: var(--transition-smooth);
  overflow: hidden;
}
.product-thumb:hover .image img {
  transform: scale(1.06);
}
.product-thumb .image img {
  transition: var(--transition-smooth);
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto;
}
.product-thumb .caption {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-thumb h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
}
.product-thumb h4 a {
  color: var(--text-primary);
}
.product-thumb h4 a:hover {
  color: var(--color-primary);
}
.product-thumb .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: auto;
}
.product-thumb .price-new {
  font-weight: 700;
}
.product-thumb .price-old {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--text-tertiary);
  margin-left: 8px;
}
.product-thumb .button-group {
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-tertiary);
  display: flex;
}
.product-thumb .button-group button {
  flex: 1;
  background: none;
  border: none;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.product-thumb .button-group button:hover {
  background-color: var(--color-primary-glow);
  color: var(--color-primary);
}
.product-thumb .button-group button + button {
  border-left: 1px solid var(--border-light);
}

/* Modern Footer styling */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px 0;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}
footer h5 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  color: var(--text-secondary);
  font-size: 14px;
}
footer ul li a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}
footer hr {
  border-color: var(--border-light);
  margin: 30px 0;
}

/* Navigation Menu overrides */
#menu {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-default);
}
#menu .nav > li > a {
  color: var(--text-primary);
  font-weight: 600;
  padding: 15px 20px;
}
#menu .nav > li > a:hover, #menu .nav > li.open > a {
  background-color: var(--color-primary-glow);
  color: var(--color-primary);
  border-radius: var(--radius-md);
}

/* Animations classes */
.slide-up-on-load {
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ───────────────── Premium Style Extensions ───────────────── */

/* Global Button Overrides */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md) !important;
  padding: 8px 16px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}
.btn-primary {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--text-inverted) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}
.btn-default {
  background-color: var(--bg-tertiary) !important;
  border-color: var(--border-default) !important;
  color: var(--text-secondary) !important;
}
.btn-default:hover {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
}

/* Rating Stars */
.rating .fa-star {
  color: #f59e0b !important; /* Gold */
  font-size: 14px;
}
.rating .fa-star-o {
  color: var(--text-muted) !important;
  font-size: 14px;
}

/* Sidebar List Group Items (Categories sidebar) */
.list-group {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-default);
}
.list-group-item {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border: none !important;
  border-bottom: 1px solid var(--border-subtle) !important;
  padding: 12px 20px !important;
  font-weight: 500;
  transition: var(--transition-fast);
}
.list-group-item:last-child {
  border-bottom: none !important;
}
.list-group-item:hover, .list-group-item.active {
  background-color: var(--color-primary-glow) !important;
  color: var(--color-primary) !important;
  padding-left: 24px !important;
}

/* Panels (Filter and Category sections) */
.panel-default {
  background-color: var(--bg-secondary) !important;
  border: 1px solid var(--border-default) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden;
}
.panel-default > .panel-heading {
  background-color: var(--bg-tertiary) !important;
  color: var(--text-primary) !important;
  border-bottom: 1px solid var(--border-default) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 20px;
}
.panel-body {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  padding: 20px;
}

/* Tables and Lists */
.table {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-default) !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.table th {
  background-color: var(--bg-tertiary) !important;
  color: var(--text-secondary) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  border-bottom: 1px solid var(--border-default) !important;
  padding: 12px 16px !important;
}
.table td {
  border-bottom: 1px solid var(--border-subtle) !important;
  padding: 14px 16px !important;
  color: var(--text-primary) !important;
}
.table-hover > tbody > tr:hover {
  background-color: var(--bg-tertiary) !important;
}

/* Breadcrumbs */
.breadcrumb {
  background: none !important;
  padding: 12px 0 !important;
  margin-bottom: 24px !important;
  font-size: 13px;
  font-weight: 500;
}
.breadcrumb > li, .breadcrumb > li a {
  color: var(--text-secondary) !important;
}
.breadcrumb > li a:hover {
  color: var(--color-primary) !important;
}
.breadcrumb > li + li:before {
  color: var(--text-muted) !important;
  content: "→" !important;
  padding: 0 8px;
}

/* Alerts */
.alert {
  border-radius: var(--radius-md) !important;
  border: none !important;
  box-shadow: var(--shadow-sm);
  padding: 16px 20px !important;
}
.alert-danger {
  background-color: rgba(239, 68, 68, 0.1) !important;
  color: var(--danger) !important;
}
.alert-success {
  background-color: rgba(16, 185, 129, 0.1) !important;
  color: var(--success) !important;
}
.alert-warning {
  background-color: rgba(245, 158, 11, 0.1) !important;
  color: var(--warning) !important;
}

/* Form inputs & controls */
.form-control, select {
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--border-default) !important;
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  transition: var(--transition-fast) !important;
  box-shadow: none !important;
}
.form-control:focus, select:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px var(--color-primary-glow) !important;
}
label, .control-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-secondary);
}

/* Wellbeing overrides */
.well {
  background-color: var(--bg-secondary) !important;
  border: 1px solid var(--border-default) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ───────────────── Custom Hero Section Video Background Redesign ───────────────── */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  padding: 100px 0;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(15, 23, 42, 0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(56, 142, 60, 0.15);
  border: 1px solid rgba(56, 142, 60, 0.3);
  color: #81c784;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(56, 142, 60, 0.1);
}

.hero-title {
  font-size: var(--text-5xl) !important;
  font-weight: 800 !important;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 40%, #81c784 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  margin-bottom: 48px;
}

.hero-actions .btn-lg {
  height: 54px;
  padding: 0 32px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md);
}

.hero-features {
  display: flex;
  gap: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  max-width: 680px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  font-size: var(--text-sm);
}

.hero-feature-item i {
  color: var(--color-primary);
  font-size: 16px;
}

/* Floating Mockups / Image Section */
.hero-image-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: rotate(-3deg);
  transition: var(--transition-smooth);
}

.hero-main-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-glow);
  border-color: rgba(99, 102, 241, 0.3);
}

.hero-main-card img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-tertiary);
}

.hero-card-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.hero-card-tag h4 {
  font-weight: 700;
  margin: 0;
  font-size: var(--text-lg);
}

.hero-card-tag span {
  font-weight: 800;
  color: var(--color-primary);
  font-size: var(--text-lg);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0;
    text-align: center;
    min-height: auto;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-features {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image-wrapper {
    margin-top: 50px;
  }
}

/* Category Quickbar styles */
.quick-link-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-default);
  color: var(--text-primary) !important;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.quick-link-item:hover {
  transform: translateY(-2px);
  background-color: var(--color-primary-glow);
  color: var(--color-primary) !important;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.quick-link-item .icon-wrap {
  font-size: 16px;
  color: var(--color-primary);
}

/* Trust Cards */
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--color-primary-glow) !important;
}

/* Featured Header styling */
h3 {
  font-size: 26px !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--text-primary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 50px !important;
  margin-bottom: 30px !important;
}
h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin-top: 8px;
}

/* ───────────────── Flipkart-Style Product Page Redesign ───────────────── */

.product-left-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  position: sticky;
  top: 90px;
}

.product-image-box {
  text-align: center;
  margin-bottom: 24px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-xl);
  padding: 30px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.product-image-box img {
  max-height: 400px;
  margin: 0 auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

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

.additional-thumbnails-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0;
  margin-bottom: 24px;
  justify-content: center;
}

.additional-thumbnails-row .thumbnail-link {
  width: 64px;
  height: 64px;
  padding: 6px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background-color: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.additional-thumbnails-row .thumbnail-link:hover {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.additional-thumbnails-row .thumbnail-link img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Flipkart side-by-side action buttons */
.flipkart-btn-group {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.btn-flipkart {
  flex: 1;
  height: 52px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none !important;
  border-radius: var(--radius-md) !important;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
  color: #fff !important;
}

.btn-add-to-cart-fk {
  background-color: #ff9f00 !important;
}

.btn-add-to-cart-fk:hover {
  background-color: #e68f00 !important;
  transform: translateY(-1px);
}

.btn-buy-now-fk {
  background-color: #fb641b !important;
}

.btn-buy-now-fk:hover {
  background-color: #e25712 !important;
  transform: translateY(-1px);
}

/* Right Details Column */
.product-right-container {
  padding-left: 15px;
  margin-bottom: 40px;
}

.fk-product-title {
  font-size: var(--text-3xl) !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.25;
}

.fk-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.fk-rating-badge {
  background-color: #388e3c;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.fk-rating-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Flipkart pricing rows */
.fk-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.fk-price-special {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.fk-price-original {
  font-size: 16px;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.fk-price-discount {
  font-size: 16px;
  font-weight: 700;
  color: #388e3c; /* green discount */
}

.fk-price-tax-extra {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
}

/* Flipkart style Bank Offers card */
.offers-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.offers-box h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.5;
}

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

.offer-item i {
  color: #388e3c; /* green tag icon */
  font-size: 14px;
  margin-top: 2px;
}

.offer-item span.offer-label {
  font-weight: 700;
}

/* Pincode checker */
.pincode-box {
  margin-bottom: 30px;
}

.pincode-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.pincode-input-wrap {
  display: flex;
  max-width: 320px;
  gap: 8px;
}

.pincode-success-msg {
  color: #388e3c;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Specification styles */
.fk-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.fk-spec-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.fk-spec-table tr:last-child {
  border-bottom: none;
}

.fk-spec-table td {
  padding: 14px 16px;
  font-size: 13px;
}

.fk-spec-table td.spec-name {
  width: 25%;
  color: var(--text-secondary);
  font-weight: 600;
}

.fk-spec-table td.spec-val {
  color: var(--text-primary);
}

/* Seller block */
.seller-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  margin-bottom: 30px;
}

.seller-box span.seller-lbl {
  color: var(--text-secondary);
  font-weight: 600;
}

.seller-box span.seller-name {
  color: var(--color-primary);
  font-weight: 700;
}

.seller-box span.seller-rating {
  background-color: var(--color-primary-glow);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

/* ───────────────── Modern Checkout Accordion & UPI Styles ───────────────── */

#checkout-checkout .panel-group .panel {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

#checkout-checkout .panel-group .panel-heading {
  background-color: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 24px;
}

#checkout-checkout .panel-group .panel-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

#checkout-checkout .panel-group .panel-title a {
  color: var(--text-primary) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

#checkout-checkout .panel-group .panel-title a:hover {
  color: var(--color-primary) !important;
}

#checkout-checkout .panel-body {
  padding: 24px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

/* Payment Method Card Layout */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.payment-method-card {
  border: 2px dashed var(--border-default);
  border-radius: var(--radius-lg);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--bg-tertiary);
  position: relative;
}

.payment-method-card:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary-glow);
}

.payment-method-card.active {
  border-color: var(--color-primary);
  border-style: solid;
  background-color: var(--color-primary-glow);
}

.payment-method-card input[type="radio"] {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
}

.payment-method-card .method-title {
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-method-card .method-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* UPI scan QR Box */
.upi-payment-box {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.upi-payment-box h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
  text-align: center;
}

.upi-qr-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upi-qr-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Laser scan animation line */
.upi-scan-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  animation: qrScanLaser 2s linear infinite;
  box-shadow: 0 0 8px var(--color-primary);
}

@keyframes qrScanLaser {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

.upi-apps-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.85;
}

.upi-app-icon {
  height: 24px;
  object-fit: contain;
}

.upi-vpa-row {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.upi-vpa-input-group {
  display: flex;
  gap: 8px;
}

.upi-vpa-success {
  font-size: 11px;
  font-weight: 600;
  color: #388e3c;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* ───────────────── Modern Product List Horizontal Layout ───────────────── */

@media (min-width: 768px) {
  .product-list .product-thumb {
    flex-direction: row;
    align-items: stretch;
  }
  
  .product-list .product-thumb .image {
    width: 240px;
    min-width: 240px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-light);
  }
  
  .product-list .product-thumb .image img {
    max-height: 160px;
  }
  
  .product-list .product-thumb > div:nth-child(2) {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
  }
  
  .product-list .product-thumb .caption {
    flex-grow: 1;
    padding: 24px;
    border-right: 1px solid var(--border-light);
  }
  
  .product-list .product-thumb .button-group {
    flex-direction: column;
    width: 160px;
    min-width: 160px;
    border-top: none;
    background-color: var(--bg-tertiary);
  }
  
  .product-list .product-thumb .button-group button {
    width: 100%;
    flex: none;
    border-bottom: 1px solid var(--border-light);
    padding: 16px 12px;
  }
  
  .product-list .product-thumb .button-group button + button {
    border-left: none;
  }
}

/* ───────────────── Custom Navigation & Footer & Floating CTA ───────────────── */

.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nav-border);
  padding: 16px 0;
  transition: all 0.3s ease;
}
.glass-nav.scrolled {
  padding: 12px 0;
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-brand span {
  color: var(--color-brand-orange);
}
.logo-brand:hover {
  text-decoration: none;
  color: var(--text-primary);
}
.nav-search-bar {
  position: relative;
  flex-grow: 1;
  max-width: 440px;
  margin: 0 30px;
  display: flex;
  align-items: center;
}
.nav-search-bar input {
  width: 100%;
  height: 42px;
  background: var(--search-bg);
  border: 1px solid var(--search-border);
  border-radius: 30px;
  padding: 0 50px 0 20px;
  color: var(--search-text);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.nav-search-bar input:focus {
  background: var(--search-focus-bg);
  border-color: var(--color-brand-blue);
  outline: none;
  box-shadow: 0 0 15px rgba(2, 66, 138, 0.2);
}
[data-theme="night"] .nav-search-bar input:focus {
  border-color: var(--color-brand-orange);
  box-shadow: 0 0 15px rgba(255, 92, 0, 0.2);
}
.nav-search-bar button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--color-brand-orange);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.nav-search-bar button:hover {
  background: var(--color-brand-blue);
}
.nav-menu {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu a {
  color: var(--nav-link);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-menu a:hover {
  color: var(--color-brand-orange);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-actions a {
  color: var(--text-primary);
  font-size: 16px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-actions a:hover {
  color: var(--color-brand-orange);
}
.theme-toggle-btn {
  border: none;
  background: none;
  padding: 0 8px;
  outline: none;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.2s ease;
}
.theme-toggle-btn:hover {
  color: var(--color-brand-orange);
}

/* Custom Footer */
.custom-footer {
  background-color: var(--footer-bg);
  border-top: 1px solid var(--border-default);
  padding: 80px 0 40px 0;
  margin-top: 60px;
  color: var(--footer-text);
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--footer-title);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover {
  color: var(--color-brand-orange);
}

/* Floating WhatsApp Bubble */
.whatsapp-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
  text-decoration: none !important;
}
.whatsapp-bubble:hover {
  transform: scale(1.1);
  color: #ffffff !important;
}

/* Hide default elements globally across other pages */
#top, header, #menu {
  display: none !important;
}







/* ============================================================
   StoreKart — catalogue (category / search / special) polish
   ============================================================ */
#product-category, #product-search, #product-special, #product-manufacturer, #product-compare {
  padding-top: 24px;
  padding-bottom: 60px;
}
#product-category > h2, #product-search > h1, #product-search > h2,
#product-special > h1, #product-special > h2, #product-manufacturer > h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin: 0 0 4px;
}
#product-category .col-sm-10 > p, #content > h2 + .row p { color: var(--text-secondary); }

/* refine-search category chips */
#product-category > #content > h3, #content > h3 {
  font-size: 16px; font-weight: 700; color: var(--text-primary); margin: 24px 0 14px;
}
#product-category #content > .row ul { list-style: none; padding: 0; margin: 0; }
#product-category #content > .row ul li { margin-bottom: 8px; }
#product-category #content > .row ul li a {
  display: inline-block; padding: 6px 14px; border: 1px solid var(--border-default);
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 600;
  color: var(--text-secondary); background: var(--bg-secondary); transition: var(--transition-fast);
}
#product-category #content > .row ul li a:hover {
  border-color: var(--color-primary); color: var(--color-primary);
  background: var(--color-primary-glow);
}

/* toolbar (sort / limit / grid-list view) */
#content .btn-group .btn-default, #list-view, #grid-view {
  background: var(--bg-secondary) !important; border: 1px solid var(--border-default) !important;
  color: var(--text-secondary) !important; border-radius: var(--radius-sm) !important;
}
#content .btn-group .btn-default:hover, #list-view:hover, #grid-view:hover {
  background: var(--color-primary-glow) !important; color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}
#input-sort, #input-limit {
  border: 1px solid var(--border-default) !important; border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
  background: var(--bg-secondary); color: var(--text-primary); height: 38px; box-shadow: none;
}
.input-group-addon {
  background: var(--bg-tertiary) !important; border: 1px solid var(--border-default) !important;
  color: var(--text-secondary) !important; font-weight: 600; font-size: 12px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
}
#compare-total { color: var(--color-primary); font-weight: 600; }

/* pagination + results count */
.pagination > li > a, .pagination > li > span {
  color: var(--text-primary); background: var(--bg-secondary);
  border-color: var(--border-default); border-radius: var(--radius-sm) !important; margin: 0 3px;
}
.pagination > li > a:hover { background: var(--color-primary-glow); color: var(--color-primary); border-color: var(--color-primary); }
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover {
  background: var(--color-primary) !important; border-color: var(--color-primary) !important; color: #fff !important;
}
#content .text-right { color: var(--text-muted); font-size: 13px; }

/* list-view product rows on category pages keep card look */
.product-list .product-thumb { border-radius: var(--radius-lg); }

/* ============================================================
   StoreKart — nav cleanup + category sidebar drawer
   ============================================================ */
/* hamburger that opens the category drawer */
.sk-cat-toggle {
  border: 1px solid var(--border-default);
  background: var(--bg-secondary);
  color: var(--text-primary);
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  font-size: 17px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition-fast);
}
.sk-cat-toggle:hover { background: var(--color-primary-glow); color: var(--color-primary); border-color: var(--color-primary); }

/* logo image — constrain so an uploaded photo never blows up the nav */
.glass-nav .logo-brand { flex-shrink: 0; }
.glass-nav .logo-brand img {
  height: 40px !important;
  max-height: 40px !important;
  max-width: 150px;
  width: auto !important;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* overlay behind the drawer */
.sk-cat-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 18, 25, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 1100;
}
.sk-cat-overlay.open { opacity: 1; visibility: visible; }

/* the sliding category sidebar */
.sk-cat-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 300px; max-width: 85vw;
  background: var(--bg-primary);
  border-right: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  z-index: 1110; display: flex; flex-direction: column;
  overflow-y: auto;
}
.sk-cat-drawer.open { transform: translateX(0); }
.sk-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--border-light);
  font-family: var(--font-heading); font-weight: 800; font-size: 18px;
  color: var(--text-primary);
  position: sticky; top: 0; background: var(--bg-primary); z-index: 1;
}
.sk-cat-head button {
  border: none; background: var(--bg-tertiary); color: var(--text-secondary);
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 16px;
}
.sk-cat-head button:hover { background: var(--color-primary-glow); color: var(--color-primary); }
.sk-cat-list { list-style: none; margin: 0; padding: 8px 0 30px; }
.sk-cat-list > li { border-bottom: 1px solid var(--border-subtle); }
.sk-cat-list > li > a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; font-size: 15px; font-weight: 600;
  color: var(--text-primary); text-decoration: none; transition: var(--transition-fast);
}
.sk-cat-list > li > a:hover { background: var(--color-primary-glow); color: var(--color-primary); }
.sk-cat-list > li > a > i:first-child { color: var(--color-primary); width: 18px; text-align: center; }
.sk-cat-caret { margin-left: auto; padding: 6px; transition: transform .2s ease; }
.sk-cat-list > li.expanded .sk-cat-caret { transform: rotate(180deg); }
.sk-cat-sub { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease; background: var(--bg-secondary); }
.sk-cat-list > li.expanded .sk-cat-sub { max-height: 600px; }
.sk-cat-sub li a {
  display: block; padding: 11px 20px 11px 50px; font-size: 14px;
  color: var(--text-secondary); text-decoration: none;
}
.sk-cat-sub li a:hover { color: var(--color-primary); background: var(--color-primary-glow); }

/* mobile nav: keep one tidy row + search on its own full-width line */
@media (max-width: 768px) {
  .nav-container { flex-wrap: wrap; row-gap: 10px; }
  .nav-search-bar { order: 5; flex-basis: 100%; width: 100%; margin: 0; max-width: none; }
  .glass-nav .logo-brand img { max-width: 120px; height: 34px !important; }
  .nav-actions { gap: 16px; margin-left: auto; }
}
@media (min-width: 992px) {
  /* on desktop the top menu shows the categories, drawer is the full a-z list */
  .sk-cat-toggle { display: flex; }
}
