/* birusta.az - Premium CSS */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #D0021B;
  --primary-dark: #A80016;
  --primary-light: #FF1A35;
  --black: #111111;
  --dark: #1A1A1A;
  --gray-900: #222222;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-300: #BBBBBB;
  --gray-100: #F5F5F5;
  --gray-50: #FAFAFA;
  --white: #FFFFFF;
  --vip-color: #F59E0B;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --border: #E8E8E8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --font: 'Onest', system-ui, sans-serif;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font); }

/* ============ LOADER ============ */
.page-loader {
  position: fixed; inset: 0;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s, visibility 0.4s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-size: 24px; font-weight: 800; }
.loader-logo span { color: var(--primary); }
.loader-bar {
  width: 200px; height: 3px;
  background: var(--gray-100);
  border-radius: 99px;
  margin-top: 20px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--primary);
  border-radius: 99px;
  animation: loaderSlide 1s ease infinite;
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(600%); }
}

/* ============ TOPBAR ============ */
.topbar {
  background: var(--dark);
  color: var(--gray-300);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 20px;
}
.topbar a { color: var(--gray-300); transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: all var(--transition);
}
.topbar-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex; align-items: center; gap: 20px;
}
.navbar-brand {
  font-size: 22px; font-weight: 800;
  flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
}
.navbar-brand .logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px; font-weight: 900;
}
.brand-red { color: var(--primary); }
.brand-dot { color: var(--gray-500); font-weight: 400; }

.navbar-search {
  flex: 1;
  position: relative;
}
.navbar-search input {
  width: 100%;
  padding: 10px 48px 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--gray-50);
  transition: all var(--transition);
}
.navbar-search input:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}
.navbar-search button {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 44px;
  background: var(--primary);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.navbar-nav {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.navbar-nav .nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.navbar-nav .nav-link:hover { background: var(--gray-100); color: var(--black); }
.navbar-nav .nav-link.active { color: var(--primary); }

.btn-nav-login {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.btn-nav-login:hover { background: var(--primary); color: white; }

.btn-nav-register {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.btn-nav-register:hover { background: var(--primary-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black);
  border-radius: 99px;
  transition: all var(--transition);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 200;
}
.mobile-menu.open { display: block; }
.mobile-menu-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.mobile-menu-panel {
  position: absolute; top: 0; right: 0;
  width: 280px; height: 100%;
  background: white;
  padding: 24px 20px;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.mobile-menu-close {
  width: 36px; height: 36px;
  border: none; background: var(--gray-100);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-links a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  color: var(--gray-700);
  display: flex; align-items: center; gap: 12px;
  transition: all var(--transition);
}
.mobile-menu-links a:hover { background: var(--gray-100); color: var(--black); }
.mobile-menu-links .divider {
  height: 1px; background: var(--border);
  margin: 8px 0;
}
.mobile-menu-btns {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 20px;
}

/* ============ CONTAINER ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #D0021B 0%, #8B0012 100%);
  color: white;
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  opacity: 0.88;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
}
.hero-search {
  display: flex; gap: 0;
  max-width: 640px;
  margin: 0 auto 40px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.hero-search input {
  flex: 1;
  padding: 16px 20px;
  border: none; outline: none;
  font-size: 16px;
  color: var(--black);
  background: transparent;
}
.hero-search button {
  background: var(--vip-color);
  color: white;
  border: none;
  padding: 16px 28px;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--transition);
}
.hero-search button:hover { background: #D97706; }
.hero-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 36px; font-weight: 900;
  display: block; line-height: 1;
}
.stat-label { font-size: 13px; opacity: 0.8; margin-top: 4px; }

/* ============ SECTION ============ */
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.3px;
}
.section-subtitle {
  color: var(--gray-500);
  font-size: 14px;
  margin-top: 4px;
}
.section-link {
  color: var(--primary);
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.section-link:hover { text-decoration: underline; }

/* ============ CARDS ============ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* Listing Card */
.listing-card { display: flex; flex-direction: column; }
.listing-card-img {
  position: relative;
  padding-top: 62%;
  overflow: hidden;
  background: var(--gray-100);
}
.listing-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.listing-card:hover .listing-card-img img { transform: scale(1.04); }
.listing-card-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 6px;
}
.badge-vip {
  background: var(--vip-color);
  color: white;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}
.listing-card-fav {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: all var(--transition);
  color: var(--gray-400);
}
.listing-card-fav:hover { color: var(--primary); transform: scale(1.1); }
.listing-card-fav.active { color: var(--primary); }

.listing-card-body {
  padding: 16px;
  flex: 1;
  display: flex; flex-direction: column;
}
.listing-card-price {
  font-size: 18px; font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.listing-card-price span { font-size: 13px; font-weight: 400; color: var(--gray-500); }
.listing-card-title {
  font-size: 15px; font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.listing-card-desc {
  font-size: 13px; color: var(--gray-500);
  margin-bottom: 12px; flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.listing-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--gray-500);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.listing-card-meta-item {
  display: flex; align-items: center; gap: 4px;
}

/* Product Card */
.product-card { position: relative; }
.product-card-img {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  background: var(--gray-100);
}
.product-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body { padding: 14px 16px 16px; }
.product-card-name {
  font-size: 14px; font-weight: 600;
  margin-bottom: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}
.product-card-company {
  font-size: 12px; color: var(--gray-500);
  margin-bottom: 10px;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card-price {
  font-size: 17px; font-weight: 800;
  color: var(--primary);
}
.btn-cart {
  width: 34px; height: 34px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.btn-cart:hover { background: var(--primary-dark); }

/* Category Card */
.category-card {
  padding: 20px 16px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer;
}
.category-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.category-card:hover .category-icon {
  background: var(--primary);
  color: white;
}
.category-card.active .category-icon {
  background: var(--primary);
  color: white;
}
.category-card.active {
  border-color: var(--primary);
}
.category-card-name { font-size: 15px; font-weight: 600; }
.category-card-desc { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

/* Company Card */
.company-card { overflow: hidden; }
.company-card-cover {
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
}
.company-card-logo {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  border: 3px solid white;
  background: white;
  overflow: hidden;
  position: absolute;
  bottom: -24px; left: 20px;
  box-shadow: var(--shadow-sm);
}
.company-card-logo img { width: 100%; height: 100%; object-fit: cover; }
.company-card-body { padding: 36px 20px 20px; }
.company-card-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.company-card-meta { font-size: 12px; color: var(--gray-500); display: flex; gap: 12px; }

/* ============ GRIDS ============ */
.grid-listings {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.grid-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.grid-companies {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all var(--transition);
  text-align: center; justify-content: center;
  line-height: 1.4;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-dark { background: var(--black); color: white; }
.btn-dark:hover { background: var(--gray-900); }
.btn-light { background: var(--gray-100); color: var(--black); }
.btn-light:hover { background: var(--gray-200, #E5E5E5); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-vip { background: var(--vip-color); color: white; }
.btn-vip:hover { background: #D97706; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--white);
  color: var(--black);
  transition: border-color var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
}
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--gray-500); margin-top: 6px; }

/* ============ ALERTS ============ */
.alert {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.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; }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { color: white; font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.7; opacity: 0.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gray-300);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--gray-300); transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* ============ PAGE HEADER ============ */
.page-header {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.page-header h1 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; margin-bottom: 4px; }
.page-header p { color: var(--gray-500); font-size: 14px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-500);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb-sep { color: var(--gray-300); }

/* ============ SIDEBAR LAYOUT ============ */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.sidebar {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  position: sticky; top: 90px;
}
.sidebar-title {
  font-size: 15px; font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.filter-group { margin-bottom: 20px; }
.filter-label { font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 10px; }

/* ============ PAGINATION ============ */
.pagination {
  display: flex; align-items: center; gap: 6px;
  justify-content: center;
  margin-top: 40px;
}
.page-item {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray-700);
}
.page-item:hover { border-color: var(--primary); color: var(--primary); }
.page-item.active { background: var(--primary); border-color: var(--primary); color: white; }
.page-item.disabled { opacity: 0.4; cursor: not-allowed; }

/* ============ VIP SECTION ============ */
.vip-section { background: var(--gray-50); }
.vip-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--vip-color);
  color: white;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============ DETAIL PAGE ============ */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.detail-gallery { margin-bottom: 20px; }
.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 10px;
}
.gallery-main img {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky; top: 90px;
}
.detail-price {
  font-size: 28px; font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}
.detail-price-type { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; }

/* ============ USER PANEL ============ */
.panel-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}
.panel-nav {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky; top: 90px;
}
.panel-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  font-size: 14px; font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.panel-nav a:last-child { border-bottom: none; }
.panel-nav a:hover { background: var(--gray-50); color: var(--black); }
.panel-nav a.active { color: var(--primary); background: #FFF5F5; }

.panel-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
}
.panel-card-header {
  font-size: 18px; font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}

/* Balance card */
.balance-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.balance-label { font-size: 13px; opacity: 0.85; margin-bottom: 6px; }
.balance-amount { font-size: 36px; font-weight: 900; }
.balance-currency { font-size: 18px; font-weight: 400; opacity: 0.75; }

/* ============ ADMIN ============ */
.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--dark);
  color: white;
  padding: 0;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}
.admin-logo {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 18px; font-weight: 800;
}
.admin-nav { padding: 12px; }
.admin-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 2px;
}
.admin-nav-item:hover { background: rgba(255,255,255,0.08); color: white; }
.admin-nav-item.active { background: var(--primary); color: white; }
.admin-nav-section {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.35);
  padding: 16px 12px 6px;
}
.admin-main { background: var(--gray-50); padding: 28px; overflow: auto; }
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.admin-topbar h1 { font-size: 22px; font-weight: 800; }

/* Stats cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
}
.stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.stat-icon.red { background: #FEE2E2; color: var(--primary); }
.stat-icon.blue { background: #DBEAFE; color: #1D4ED8; }
.stat-icon.green { background: #D1FAE5; color: #065F46; }
.stat-icon.yellow { background: #FEF3C7; color: #92400E; }
.stat-icon.purple { background: #EDE9FE; color: #5B21B6; }
.stat-value { font-size: 24px; font-weight: 800; }
.stat-name { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

/* Admin table */
.admin-table-wrap {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  background: var(--gray-50);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }
.admin-table-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 16px; font-weight: 700;
}

/* ============ TABS ============ */
.tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}
.tab-btn {
  padding: 12px 20px;
  font-size: 14px; font-weight: 600;
  border: none; background: none;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--black); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%; max-width: 480px;
  padding: 28px;
  transform: scale(0.95);
  transition: transform var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.modal-title { font-size: 20px; font-weight: 800; }
.modal-close {
  width: 32px; height: 32px;
  border: none; background: var(--gray-100);
  border-radius: 50%; cursor: pointer;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
}

/* ============ EMPTY STATE ============ */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}
.empty-state-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.empty-state h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* ============ CART ============ */
.cart-float {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--primary);
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(208,2,27,0.4);
  z-index: 99;
  transition: transform var(--transition);
}
.cart-float:hover { transform: scale(1.08); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--vip-color);
  color: white;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

/* ============ STATUS BADGE ============ */
.status { padding: 4px 10px; border-radius: 99px; font-size: 12px; font-weight: 600; }
.status-active { background: #D1FAE5; color: #065F46; }
.status-pending { background: #FEF3C7; color: #92400E; }
.status-inactive { background: #FEE2E2; color: #991B1B; }
.status-approved { background: #D1FAE5; color: #065F46; }
.status-rejected { background: #FEE2E2; color: #991B1B; }

/* ============ PHOTO UPLOAD ============ */
.photo-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
}
.photo-upload-area:hover { border-color: var(--primary); }
.photo-upload-icon { font-size: 36px; margin-bottom: 12px; opacity: 0.4; }
.photo-upload-text { font-size: 14px; color: var(--gray-500); }
.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.photo-preview {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-remove {
  position: absolute; top: 4px; right: 4px;
  width: 20px; height: 20px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .topbar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .layout-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .panel-layout { grid-template-columns: 1fr; }
  .panel-nav { position: static; }
}

@media (max-width: 768px) {
  .navbar-search, .navbar-nav, .btn-nav-login, .btn-nav-register { display: none; }
  .hamburger { display: flex; }
  .navbar .container { flex-wrap: wrap; }
  
  .hero { padding: 40px 0 50px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 28px; }
  
  .section { padding: 40px 0; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  
  .grid-listings { grid-template-columns: 1fr 1fr; }
  .grid-products { grid-template-columns: 1fr 1fr; }
  .grid-categories { grid-template-columns: 1fr; }
  .grid-companies { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  
  .panel-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-listings { grid-template-columns: 1fr; }
  .grid-products { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
  .hero-search { flex-direction: column; border-radius: var(--radius); }
  .hero-search input { padding: 14px 16px; }
  .hero-search button { border-radius: 0 0 var(--radius) var(--radius); padding: 14px; }
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--gray-500); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.font-bold { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.p-0 { padding: 0; }
.hidden { display: none !important; }

/* ── NEW v6 additions ──────────────────────────── */

/* Hide loader immediately */
.page-loader { display: none !important; }

/* Partners ticker */
.partners-ticker {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: partnersTick 30s linear infinite;
}
.partners-ticker:hover { animation-play-state: paused; }
@keyframes partnersTick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Confirm popup */
.confirm-popup {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 5000; display: none; align-items: center; justify-content: center; padding: 16px;
}
.confirm-popup.show, .confirm-popup[style*="flex"] { display: flex !important; }
.confirm-box {
  background: #fff; border-radius: 16px; padding: 28px;
  max-width: 380px; width: 100%; text-align: center;
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
  animation: popIn .2s ease;
}
@keyframes popIn { from { transform: scale(.92); opacity: 0; } to { transform: none; opacity: 1; } }
.confirm-icon  { font-size: 44px; margin-bottom: 10px; }
.confirm-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.confirm-msg   { color: #666; font-size: 14px; margin-bottom: 22px; line-height: 1.6; }
.confirm-btns  { display: flex; gap: 10px; }

/* Form field validation states */
.form-control.is-err {
  border-color: var(--danger, #EF4444) !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important;
}
.form-control.is-ok {
  border-color: #10B981 !important;
  box-shadow: 0 0 0 3px rgba(16,185,129,.08) !important;
}
.field-err {
  color: var(--danger, #EF4444);
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

/* Password strength bar */
.pw-strength-wrap { margin-top: 6px; }
.pw-strength-bar-track {
  height: 4px; background: #f0f0f0; border-radius: 99px; overflow: hidden;
}
.pw-strength-bar {
  height: 100%; width: 0; border-radius: 99px;
  transition: width .3s ease, background .3s ease;
}
.pw-strength-label { font-size: 11px; margin-top: 3px; color: var(--gray-500); }

/* Button spinner */
.btn-spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: white;
  border-radius: 50%; animation: spin .65s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* AJAX form alert */
.form-alert {
  padding: 11px 14px; border-radius: 9px;
  font-size: 13.5px; font-weight: 500; margin-bottom: 14px;
}

/* Mobile menu MM divider */
.mm-divider { height: 1px; background: var(--border); margin: 7px 16px; }

/* Profession select */
.profession-select { cursor: pointer; }

/* Forgot password link */
.forgot-link {
  font-size: 12.5px; color: var(--primary); font-weight: 600;
  text-decoration: none; float: right; margin-top: 2px;
}
.forgot-link:hover { text-decoration: underline; }

/* Admin Bootstrap-style tables in admin panel */
[data-bs-theme] .adm-table th { background: var(--bs-secondary-bg); }

/* ═══════════════════════════════════════════
   V6 NEW ADDITIONS — appended to v5 base
   ═══════════════════════════════════════════ */

/* Hide loader on all pages (no freeze) */
.page-loader { display: none !important; }

/* Partners ticker */
.partners-ticker {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: partnersTick 30s linear infinite;
}
.partners-ticker:hover { animation-play-state: paused; }
@keyframes partnersTick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Confirm popup (used by confirmDelete) */
.confirm-popup {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.confirm-popup.show { display: flex !important; }
.confirm-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 48px rgba(0,0,0,.2);
  animation: cpIn .2s ease;
}
.confirm-icon  { font-size: 44px; margin-bottom: 10px; }
.confirm-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.confirm-msg   { color: #666; font-size: 14px; margin-bottom: 22px; line-height: 1.6; }
.confirm-btns  { display: flex; gap: 10px; }
@keyframes cpIn { from { transform: scale(.92); opacity: 0; } to { transform: none; opacity: 1; } }

/* Field validation */
.form-control.is-err {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important;
}
.form-control.is-ok {
  border-color: #10B981 !important;
  box-shadow: 0 0 0 3px rgba(16,185,129,.08) !important;
}
.field-err {
  color: #EF4444;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

/* Password strength */
.pw-strength-wrap { margin-top: 6px; }
.pw-strength-bar-track { height: 4px; background: #f0f0f0; border-radius: 99px; overflow: hidden; }
.pw-strength-bar  { height: 100%; width: 0; border-radius: 99px; transition: width .3s, background .3s; }
.pw-strength-label{ font-size: 11px; margin-top: 3px; }

/* Button spinner */
.btn-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: white;
  border-radius: 50%;
  animation: btnSpin .65s linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }

/* Forgot password link */
.forgot-link { font-size: 12.5px; color: var(--primary); font-weight: 600; text-decoration: none; }
.forgot-link:hover { text-decoration: underline; }

/* Mobile menu divider */
.mobile-menu-links .mm-divider { height: 1px; background: var(--border); margin: 7px 16px; }

/* Admin stat purple */
.stat-icon.purple { background: #EDE9FE; }

/* Admin panel */
.admin-topbar { display:flex; align-items:center; gap:12px; margin-bottom:20px; flex-wrap:wrap; }
.admin-topbar h1 { font-size:22px; font-weight:800; margin:0; }
.admin-topbar-hamburger { display: none; }
@media(max-width:900px) { .admin-topbar-hamburger { display:flex !important; } }

/* ── CART BUTTON REDESIGN ─────────────────────── */
.cart-btn {
  position: relative;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(208,2,27,.3);
  transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
  text-decoration: none;
}
.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208,2,27,.4);
}
.cart-btn .cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: #F59E0B;
  color: white;
  font-size: 10px; font-weight: 800;
  min-width: 18px; height: 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid white;
  animation: cartPop .2s ease;
}
@keyframes cartPop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* Cart floating button */
.cart-float {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--primary);
  color: white;
  border: none; cursor: pointer;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(208,2,27,.4);
  transition: transform .15s;
  z-index: 100;
}
.cart-float:hover { transform: scale(1.08); }
.cart-float .cart-count {
  position: absolute; top: -4px; right: -4px;
  background: #F59E0B; color: white;
  font-size: 10px; font-weight: 800;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

/* ── AD BANNER (category page) ─────────────────── */
.ad-banner-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.ad-banner-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: adSlide 25s linear infinite;
}
.ad-banner-track:hover { animation-play-state: paused; }
@keyframes adSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ad-banner-item {
  height: 90px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.ad-banner-item:hover { background: var(--gray-50); }
.ad-banner-item img { max-height: 60px; max-width: 180px; object-fit: contain; }
.ad-banner-item span { font-size: 13px; font-weight: 700; color: var(--gray-500); }
.ad-banner-fade-l, .ad-banner-fade-r {
  position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.ad-banner-fade-l { left: 0; background: linear-gradient(to right, #fff, transparent); }
.ad-banner-fade-r { right: 0; background: linear-gradient(to left, #fff, transparent); }

/* ── ADMIN LAYOUT FIX ─────────────────────────── */
body.admin-body { background: var(--gray-50); }
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 220px;
  background: #1a1d2e;
  flex-shrink: 0;
  min-height: 100vh;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  overflow-y: auto;
}
.admin-main {
  flex: 1;
  min-height: 100vh;
  background: var(--gray-50);
  overflow-x: hidden;
}
.admin-logo {
  padding: 20px 18px;
  font-size: 20px;
  font-weight: 900;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-nav { padding: 10px 8px; }
.admin-nav-section {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.25);
  padding: 12px 10px 4px;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: .14s;
  margin-bottom: 1px;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.admin-nav-item:hover {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.9);
}
.admin-nav-item.active {
  background: rgba(208,2,27,.2);
  color: #ff6b6b;
  font-weight: 700;
}
.admin-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 3px;
  background: var(--primary);
  border-radius: 0 3px 3px 0;
}
.admin-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.admin-topbar h1 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}
/* Responsive admin */
@media(max-width: 900px) {
  .admin-layout { display: block; }
  .admin-sidebar {
    position: fixed;
    left: -230px;
    top: 0; bottom: 0;
    z-index: 200;
    transition: left .28s;
    height: 100vh;
  }
  .admin-sidebar.open { left: 0; }
  .admin-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 199;
  }
  .admin-overlay.show { display: block; }
  .admin-main { margin-left: 0 !important; }
  .admin-topbar-hamburger { display: flex !important; }
}
