@font-face {
  font-family: 'NRT';
  src: url('../fonts/NRT-Reg.eot');
  src: url('../fonts/NRT-Reg.eot?#iefix') format('embedded-opentype'),
       url('../fonts/NRT-Reg.woff') format('woff'),
       url('../fonts/NRT-Reg.ttf') format('truetype'),
       url('../fonts/NRT-Reg.svg#NRT-Reg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'NRT';
  src: url('../fonts/NRT-Bd.eot');
  src: url('../fonts/NRT-Bd.eot?#iefix') format('embedded-opentype'),
       url('../fonts/NRT-Bd.woff') format('woff'),
       url('../fonts/NRT-Bd.ttf') format('truetype'),
       url('../fonts/NRT-Bd.svg#NRT-Bd') format('svg');
  font-weight: bold;
  font-style: normal;
}
:root{--gold:#c9a84c;--gold-light:#e8c97e;--gold-dark:#9a7a30;--black:#0d0d0d;--dark:#1a1a2e;--dark2:#16213e;--dark3:#0f3460;--surface:#1e1e2e;--surface2:#2a2a3e;--white:#ffffff;--off-white:#f8f5f0;--text-light:#c8c8d8;--text-muted:#888899;--accent:#e91e8c;--success:#2ecc71;--warning:#f39c12;--danger:#e74c3c;--info:#3498db;--border:rgba(201,168,76,0.2);--shadow:0 8px 32px rgba(0,0,0,0.4);--shadow-gold:0 4px 20px rgba(201,168,76,0.3);--radius:12px;--radius-lg:20px;--transition:all 0.3s cubic-bezier(0.4,0,0.2,1);--font:'NRT','Segoe UI',sans-serif}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font);background:var(--dark);color:var(--white);direction:rtl;text-align:right;line-height:1.7;min-height:100vh;overflow-x:hidden}
::-webkit-scrollbar{width:6px}::-webkit-scrollbar-track{background:var(--dark)}::-webkit-scrollbar-thumb{background:var(--gold);border-radius:3px}
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.3}
h1{font-size:clamp(1.8rem,4vw,3rem)}h2{font-size:clamp(1.4rem,3vw,2.2rem)}h3{font-size:clamp(1.1rem,2vw,1.6rem)}
p{color:var(--text-light)}a{color:var(--gold);text-decoration:none;transition:var(--transition)}a:hover{color:var(--gold-light)}
.container{max-width:1280px;margin:0 auto;padding:0 20px;overflow-x:hidden}.section{padding:80px 0}
.header{position:fixed;top:0;width:100%;z-index:1000;background:rgba(13,13,13,0.92);backdrop-filter:blur(20px);border-bottom:1px solid var(--border);transition:var(--transition)}
.header.scrolled{background:rgba(13,13,13,0.98);box-shadow:var(--shadow)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 20px;max-width:1280px;margin:0 auto}
.logo{display:flex;align-items:center;gap:10px;font-size:1.6rem;font-weight:700;color:var(--gold)}.logo span{color:var(--white)}.logo-icon{font-size:2rem}
.nav{display:flex;align-items:center;gap:8px}.nav a{padding:8px 16px;border-radius:8px;color:var(--text-light);font-size:0.95rem;transition:var(--transition)}.nav a:hover,.nav a.active{color:var(--gold);background:rgba(201,168,76,0.1)}
.header-actions{display:flex;align-items:center;gap:12px}
.cart-btn{position:relative;padding:10px 20px;background:var(--gold);color:var(--black);border-radius:30px;font-weight:700;display:flex;align-items:center;gap:8px;transition:var(--transition)}.cart-btn:hover{background:var(--gold-light);color:var(--black);transform:translateY(-2px)}
.cart-count{position:absolute;top:-6px;right:-6px;background:var(--accent);color:#fff;width:20px;height:20px;border-radius:50%;font-size:0.7rem;font-weight:700;display:flex;align-items:center;justify-content:center}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px}.hamburger span{width:24px;height:2px;background:var(--gold);border-radius:2px;transition:var(--transition)}
.hero-section {
  padding-top: 95px;
  padding-bottom: 20px;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.hero-section .container {
  max-width: 1520px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.hero-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  min-height: 250px;
  color: var(--white);
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.3);
  transition: var(--transition);
  z-index: 1;
}
.hero-banner:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.hero-banner:hover::before {
  background: rgba(13,13,13,0.15);
}
.main-banner {
  min-height: 520px;
}
.hero-right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.small-banner {
  flex: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  text-align: right;
}
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.badge-trimmer {
  background: rgba(233,30,140,0.15);
  border-color: rgba(233,30,140,0.2);
  color: var(--accent);
}
.badge-cream {
  background: rgba(46,204,113,0.15);
  border-color: rgba(46,204,113,0.2);
  color: var(--success);
}
.hero-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  font-weight: bold;
  color: var(--white);
  line-height: 1.3;
}
.hero-banner h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--white);
  line-height: 1.3;
}
.hero-banner p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.shop-now-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.hero-banner:hover .shop-now-link {
  color: var(--gold-light);
  transform: translateX(-5px);
}
.hero-brands-showcase {
  margin-top: 30px;
  padding: 30px 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.brands-title {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}
.brands-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.brand-item {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-light);
  opacity: 0.5;
  letter-spacing: 2px;
  transition: var(--transition);
  user-select: none;
}
.brand-item:hover {
  opacity: 1;
  color: var(--gold);
  transform: scale(1.15);
  text-shadow: 0 0 12px rgba(201,168,76,0.4);
}
@media(max-width:992px){
  .hero-section {
    padding-top: 100px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .main-banner {
    min-height: 420px;
  }
}
@media(max-width:576px){
  .hero-banner {
    padding: 24px;
    min-height: 220px;
  }
  .main-banner {
    min-height: 320px;
  }
  .brands-list {
    gap: 20px;
  }
  .brand-item {
    font-size: 1.1rem;
  }
}
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 28px;border-radius:30px;font-family:var(--font);font-size:1rem;font-weight:600;cursor:pointer;border:none;transition:var(--transition);text-decoration:none}
.btn-gold{background:linear-gradient(135deg,var(--gold),var(--gold-light));color:var(--black)}.btn-gold:hover{transform:translateY(-3px);box-shadow:var(--shadow-gold);color:var(--black)}
.btn-outline{background:transparent;color:var(--gold);border:2px solid var(--gold)}.btn-outline:hover{background:var(--gold);color:var(--black);transform:translateY(-3px)}
.btn-sm{padding:8px 18px;font-size:0.85rem}.btn-lg{padding:16px 40px;font-size:1.1rem}
.btn-danger{background:var(--danger);color:#fff}.btn-success{background:var(--success);color:#fff}.btn-dark{background:var(--surface2);color:var(--white);border:1px solid var(--border)}
.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:var(--transition)}.card:hover{transform:translateY(-6px);box-shadow:var(--shadow-gold);border-color:var(--gold)}
.product-card{position:relative}.product-card .img-wrap{aspect-ratio:1;overflow:hidden;background:var(--surface2)}.product-card img{width:100%;height:100%;object-fit:cover;transition:var(--transition)}.product-card:hover img{transform:scale(1.08)}
.product-card .badges{position:absolute;top:12px;right:12px;display:flex;flex-direction:column;gap:6px}
.badge{padding:4px 10px;border-radius:20px;font-size:0.75rem;font-weight:700;display:inline-block}
.badge-gold{background:var(--gold);color:var(--black)}.badge-accent{background:var(--accent);color:#fff}.badge-success{background:var(--success);color:#fff}.badge-danger{background:var(--danger);color:#fff}.badge-warning{background:var(--warning);color:var(--black)}.badge-info{background:var(--info);color:#fff}.badge-dark{background:var(--surface2);color:var(--text-light);border:1px solid var(--border)}
.product-card .card-body{padding:16px}.product-card .category{font-size:0.8rem;color:var(--gold);margin-bottom:4px}.product-card h3{font-size:1rem;margin-bottom:8px;color:var(--white)}.product-card .price{font-size:1.2rem;font-weight:700;color:var(--gold)}.product-card .price-old{font-size:0.85rem;color:var(--text-muted);text-decoration:line-through;margin-right:8px}.product-card .card-actions{display:flex;gap:8px;margin-top:12px}
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:24px}
.stat-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:24px;display:flex;align-items:center;gap:16px}
.stat-icon{width:56px;height:56px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:1.6rem;flex-shrink:0}
.stat-icon.gold{background:rgba(201,168,76,0.15)}.stat-icon.accent{background:rgba(233,30,140,0.15)}.stat-icon.success{background:rgba(46,204,113,0.15)}.stat-icon.info{background:rgba(52,152,219,0.15)}.stat-icon.warning{background:rgba(243,156,18,0.15)}
.stat-value{font-size:1.6rem;font-weight:700;color:var(--white)}.stat-label{font-size:0.85rem;color:var(--text-muted)}
.section-header{text-align:center;margin-bottom:50px}.section-header h2{margin-bottom:12px}.section-header h2 em{color:var(--gold);font-style:normal}.section-header p{color:var(--text-muted);max-width:500px;margin:0 auto}
.section-line{width:60px;height:3px;background:linear-gradient(90deg,var(--gold),var(--accent));border-radius:2px;margin:16px auto}
.categories-scroll{display:flex;gap:12px;overflow-x:auto;padding-bottom:8px;scrollbar-width:thin}
.cat-chip{flex-shrink:0;padding:10px 20px;background:var(--surface);border:1px solid var(--border);border-radius:30px;cursor:pointer;transition:var(--transition);display:flex;align-items:center;gap:8px;font-family:var(--font);font-size:0.9rem;color:var(--text-light)}.cat-chip:hover,.cat-chip.active{background:var(--gold);color:var(--black);border-color:var(--gold);font-weight:600}
.form-group{margin-bottom:20px}.form-label{display:block;margin-bottom:8px;font-size:0.9rem;color:var(--text-light);font-weight:500}
.form-control{width:100%;padding:12px 16px;background:var(--surface2);border:1px solid var(--border);border-radius:var(--radius);color:var(--white);font-family:var(--font);font-size:0.95rem;transition:var(--transition);outline:none}.form-control:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,168,76,0.15)}.form-control::placeholder{color:var(--text-muted)}
select.form-control{cursor:pointer}textarea.form-control{resize:vertical;min-height:100px}
.table-wrap{overflow-x:auto;border-radius:var(--radius)}.table{width:100%;border-collapse:collapse}.table th{background:var(--surface2);color:var(--gold);padding:14px 16px;font-size:0.85rem;font-weight:600;text-align:right;white-space:nowrap;border-bottom:2px solid var(--border)}.table td{padding:14px 16px;color:var(--text-light);font-size:0.9rem;border-bottom:1px solid rgba(255,255,255,0.05);vertical-align:middle}.table tr:hover td{background:rgba(201,168,76,0.04)}.table tr:last-child td{border-bottom:none}
.alert{padding:14px 18px;border-radius:var(--radius);border-right:4px solid;margin-bottom:20px;display:flex;align-items:center;gap:10px;font-size:0.95rem}.alert-success{background:rgba(46,204,113,0.1);border-color:var(--success);color:var(--success)}.alert-danger{background:rgba(231,76,60,0.1);border-color:var(--danger);color:#ff6b6b}.alert-warning{background:rgba(243,156,18,0.1);border-color:var(--warning);color:var(--warning)}.alert-info{background:rgba(52,152,219,0.1);border-color:var(--info);color:var(--info)}
.modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.8);z-index:2000;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity 0.3s}.modal-overlay.open{opacity:1;pointer-events:all}.modal{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px;max-width:560px;width:90%;transform:translateY(20px);transition:var(--transition);max-height:90vh;overflow-y:auto}.modal-overlay.open .modal{transform:translateY(0)}.modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.modal-close{background:none;border:none;color:var(--text-muted);cursor:pointer;font-size:1.4rem;transition:var(--transition)}.modal-close:hover{color:var(--white)}
.cart-sidebar{position:fixed;left:0;top:0;height:100vh;width:380px;max-width:95vw;background:var(--surface);border-right:1px solid var(--border);z-index:2100;transform:translateX(-100%);transition:var(--transition);display:flex;flex-direction:column}.cart-sidebar.open{transform:translateX(0);box-shadow:var(--shadow)}.cart-sidebar .cart-header{padding:20px;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:center}.cart-sidebar .cart-body{flex:1;overflow-y:auto;padding:20px}.cart-sidebar .cart-footer{padding:20px;border-top:1px solid var(--border)}
.cart-item{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid rgba(255,255,255,0.05)}.cart-item img{width:64px;height:64px;object-fit:cover;border-radius:8px;flex-shrink:0}.cart-item-info{flex:1}.cart-item-name{font-size:0.9rem;color:var(--white);margin-bottom:4px}.cart-item-price{font-size:0.85rem;color:var(--gold)}
.qty-control{display:flex;align-items:center;gap:8px;margin-top:8px}.qty-btn{width:28px;height:28px;border-radius:6px;background:var(--surface2);border:1px solid var(--border);color:var(--white);cursor:pointer;font-size:1rem;display:flex;align-items:center;justify-content:center;transition:var(--transition)}.qty-btn:hover{background:var(--gold);color:var(--black);border-color:var(--gold)}.qty-display{min-width:24px;text-align:center;font-weight:600}
.toast-container{position:fixed;bottom:24px;left:24px;z-index:9999;display:flex;flex-direction:column;gap:10px}.toast{background:var(--surface2);border:1px solid var(--border);border-radius:var(--radius);padding:14px 20px;display:flex;align-items:center;gap:10px;min-width:280px;box-shadow:var(--shadow);animation:slideIn 0.3s ease;font-size:0.9rem}.toast.success{border-color:var(--success)}.toast.danger{border-color:var(--danger)}.toast.warning{border-color:var(--warning)}
@keyframes slideIn{from{transform:translateX(-100%);opacity:0}to{transform:translateX(0);opacity:1}}
.pagination{display:flex;justify-content:center;gap:8px;margin-top:40px;flex-wrap:wrap}.page-btn{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:8px;background:var(--surface);border:1px solid var(--border);color:var(--text-light);cursor:pointer;transition:var(--transition);font-family:var(--font)}.page-btn:hover,.page-btn.active{background:var(--gold);color:var(--black);border-color:var(--gold);font-weight:700}
.footer{background:var(--black);border-top:1px solid var(--border);padding:60px 0 24px}.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}.footer-brand .logo{margin-bottom:16px}.footer-brand p{font-size:0.9rem;color:var(--text-muted)}.footer h4{color:var(--gold);margin-bottom:16px;font-size:1rem}.footer ul{list-style:none;display:flex;flex-direction:column;gap:10px}.footer ul li a{color:var(--text-muted);font-size:0.9rem}.footer ul li a:hover{color:var(--gold)}.footer-bottom{border-top:1px solid var(--border);padding-top:24px;text-align:center;color:var(--text-muted);font-size:0.85rem}
.social-links{display:flex;gap:10px;margin-top:16px}.social-link{width:38px;height:38px;border-radius:10px;background:var(--surface);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text-light);transition:var(--transition);font-size:1.1rem}.social-link:hover{background:var(--gold);color:var(--black);border-color:var(--gold)}
.search-bar{display:flex;max-width:500px;background:var(--surface2);border:1px solid var(--border);border-radius:30px;overflow:hidden;transition:var(--transition)}.search-bar:focus-within{border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,168,76,0.15)}.search-bar input{flex:1;padding:12px 20px;background:none;border:none;color:var(--white);font-family:var(--font);outline:none}.search-bar input::placeholder{color:var(--text-muted)}.search-bar button{padding:12px 20px;background:var(--gold);border:none;color:var(--black);cursor:pointer;font-size:1.1rem;transition:var(--transition)}.search-bar button:hover{background:var(--gold-light)}
.empty-state{text-align:center;padding:60px 20px}.empty-state .icon{font-size:4rem;margin-bottom:16px}.empty-state h3{color:var(--text-light);margin-bottom:8px}.empty-state p{color:var(--text-muted);font-size:0.9rem}
.spinner{width:36px;height:36px;border-radius:50%;border:3px solid var(--border);border-top-color:var(--gold);animation:spin 0.8s linear infinite;margin:0 auto}
@keyframes spin{to{transform:rotate(360deg)}}
.glass{background:rgba(255,255,255,0.05);backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,0.1);border-radius:var(--radius-lg)}
.gold-divider{height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);margin:40px 0}
.steps{display:flex;justify-content:center;gap:0;margin-bottom:40px}.step{display:flex;align-items:center;flex-direction:column}.step-circle{width:40px;height:40px;border-radius:50%;background:var(--surface2);border:2px solid var(--border);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:0.9rem;color:var(--text-muted);transition:var(--transition)}.step.active .step-circle{background:var(--gold);border-color:var(--gold);color:var(--black)}.step.done .step-circle{background:var(--success);border-color:var(--success);color:#fff}.step-line{width:60px;height:2px;background:var(--border);margin-top:19px}.step.done .step-line,.step.active .step-line{background:var(--gold)}.step-label{font-size:0.8rem;text-align:center;color:var(--text-muted);margin-top:6px}.step.active .step-label{color:var(--gold)}
.form-grid{display:grid;gap:16px}.form-grid.cols-2{grid-template-columns:repeat(2,1fr)}.form-grid.cols-3{grid-template-columns:repeat(3,1fr)}
.products-filters{display:flex;flex-direction:column;gap:24px;margin-bottom:40px}
.cart-page-grid{display:grid;grid-template-columns:1fr;gap:20px}
.product-form-grid{display:grid;grid-template-columns:1fr;gap:20px}
.product-detail-grid{display:grid;grid-template-columns:1fr;gap:40px}
.required::after{content:' *';color:var(--accent);font-weight:normal}
.form-hint{font-size:0.78rem;color:var(--text-muted);margin-top:4px}
@media(min-width:768px){.products-filters{flex-direction:row;align-items:center}.cart-page-grid{grid-template-columns:2fr 1fr}.product-form-grid{grid-template-columns:2fr 1fr}.product-detail-grid{grid-template-columns:1fr 1fr}.form-grid.cols-2{grid-template-columns:repeat(2,1fr)}.form-grid.cols-3{grid-template-columns:repeat(3,1fr)}}
.hide-mobile{display:none}
@media(min-width:600px){.hide-mobile{display:inline}}
@media(max-width:768px){.form-grid.cols-2,.form-grid.cols-3{grid-template-columns:1fr}}
@media(max-width:1024px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){.nav{display:none;position:fixed;inset:0;background:rgba(13,13,13,0.97);flex-direction:column;justify-content:center;align-items:center;gap:16px;z-index:999}.nav.open{display:flex}.nav a{font-size:1.2rem}.hamburger{display:flex;z-index:1001}.hero{padding:100px 20px 60px}.section{padding:50px 0}.footer-grid{grid-template-columns:1fr;gap:30px}.products-grid{grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:16px}.cart-sidebar{width:100%}}
@media(max-width:480px){.hero h1{font-size:1.6rem}.products-grid{grid-template-columns:1fr 1fr;gap:12px}}

/* Header Two-Row Redesign */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.98);
  border-bottom: none;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
}

.header-bottom {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #85641b 100%);
  height: 48px;
  display: flex;
  align-items: center;
}

.header-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Search Bar Styling */
.header-search-bar {
  display: flex;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  max-width: 550px;
  height: 40px;
  transition: var(--transition);
}

.header-search-bar:focus-within {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.search-cat-select {
  border-left: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
}

.search-cat-select select {
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 0 15px 0 30px;
  font-family: var(--font);
  font-size: 0.85rem;
  height: 100%;
  outline: none;
  cursor: pointer;
}

.header-search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 15px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
}

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

.search-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0 25px;
  height: 100%;
  font-family: var(--font);
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--gold-light);
}

/* Actions & Contact */
.header-top-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.contact-number {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--gold);
  text-decoration: none;
}

.header-user-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-icon-btn {
  font-size: 1.2rem;
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.action-icon-btn:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.action-user-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
}

.action-user-btn .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.btn-login-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.9rem;
}

/* Categories Dropdown */
.categories-dropdown {
  position: relative;
  height: 100%;
}

.cat-dropdown-btn {
  background: var(--white);
  color: var(--black);
  border: none;
  height: 48px;
  padding: 0 20px;
  font-family: var(--font);
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.cat-dropdown-btn:hover {
  background: #eee;
}

.cat-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0 0 6px 6px;
  min-width: 220px;
  display: none;
  flex-direction: column;
  z-index: 100;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.cat-dropdown-menu a {
  padding: 12px 18px;
  color: var(--text-light);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.cat-dropdown-menu a:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  padding-right: 22px;
}

/* Nav links in Gold bar */
.header-bottom .nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-bottom .nav a {
  color: var(--white) !important;
  padding: 6px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  background: transparent;
  transition: var(--transition);
}

.header-bottom .nav a:hover,
.header-bottom .nav a.active {
  background: rgba(255, 255, 255, 0.15) !important;
  color: var(--white) !important;
}

/* Weekly Deals */
.weekly-deals a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}

.weekly-deals a:hover {
  opacity: 0.9;
}

/* Page Spacings for Two-Row Navbar */
.hero-section {
  padding-top: 140px;
}

body > div[style*="padding-top:80px"],
body > div[style*="padding-top: 80px"],
body > div[style*="padding-top: 120px"],
body > div[style*="padding-top:120px"] {
  padding-top: 145px !important;
}

/* Mobile responsive fixes */
@media(max-width: 992px) {
  .header-search-bar.hide-mobile-search {
    display: none !important;
  }
  .header-bottom {
    display: none;
  }
  .header-top {
    padding: 12px 0;
  }
  .hero-section {
    padding-top: 90px;
  }
  body > div[style*="padding-top:80px"],
  body > div[style*="padding-top: 80px"],
  body > div[style*="padding-top: 120px"],
  body > div[style*="padding-top:120px"] {
    padding-top: 95px !important;
  }
}

/* Wishlist Badge Styling */
.wishlist-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wishlist-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Trending Products Section */
.trending-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.trending-title-wrap h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.trending-title-wrap h2 em {
  color: var(--gold);
  font-style: normal;
}

.trending-title-wrap p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trending-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.product-card-wrap {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card-wrap.hidden {
  display: none !important;
}

/* Responsive Mobile Search & Navigation styling */
.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-group .hamburger {
  display: none;
}

.hide-mobile-search {
  display: flex !important;
}

.show-mobile-search {
  display: none !important;
}

/* Mobile Search Container Row 2 */
.mobile-search-container {
  padding: 10px 0 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-search-bar {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* Premium Mobile Menu Overlay Drawer */
.mobile-nav-drawer {
  display: none !important;
}

@media(max-width: 768px) {
  .mobile-nav-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #0d0d0d !important;
    backdrop-filter: blur(15px);
    z-index: 3000 !important;
    display: flex !important;
    flex-direction: column;
    padding: 30px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.6);
  }

  .mobile-nav-drawer.open {
    transform: translateX(0) !important;
  }
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.menu-brand {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--white);
}

.menu-close-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.menu-close-btn:hover {
  color: var(--gold);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-links a {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
  display: block;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--gold) !important;
  background: transparent !important;
  padding-right: 10px;
}

.mobile-menu-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-contact span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mobile-menu-contact a {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: bold;
}

@media(max-width: 992px) {
  .hide-tablet {
    display: none !important;
  }
}

@media(max-width: 768px) {
  .logo-group .hamburger {
    display: flex;
  }
  
  .hide-mobile-search {
    display: none !important;
  }
  
  .show-mobile-search {
    display: block !important;
  }
  
  /* Make sure header spacing is adjusted on mobile for the 2-row layout */
  .hero-section {
    padding-top: 145px !important;
  }
  
  body > div[style*="padding-top:80px"],
  body > div[style*="padding-top: 80px"],
  body > div[style*="padding-top: 120px"],
  body > div[style*="padding-top:120px"] {
    padding-top: 155px !important;
  }
}

/* Features Section Styling */
.features-section {
  padding: 50px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0 0 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(201, 168, 76, 0.15);
  transform: scale(1.05);
}

.feature-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-info h4 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Responsiveness for Features Section */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .feature-card {
    padding: 15px;
  }
}

/* Contact Page Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-map-card {
  width: 100%;
  height: 520px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.9) invert(0.9) contrast(1.2); /* Make the map look premium dark-mode */
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-header {
  margin-bottom: 30px;
}

.form-header h2 {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.form-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-form-row {
  margin-bottom: 20px;
}

/* Custom File Upload */
.custom-file-upload {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 12px;
}

.custom-file-upload input[type="file"] {
  display: none;
}

.upload-btn {
  background: #21262d;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  margin: 0;
}

.upload-btn:hover {
  background: #30363d;
  border-color: var(--gold);
}

.file-name-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}

/* Checkbox Styling */
.agreement-checkbox {
  margin: 25px 0;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-right: 30px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-light);
  user-select: none;
  line-height: 1.4;
  text-align: right;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  right: 0;
  height: 20px;
  width: 20px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--gold);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--gold);
  border-color: var(--gold);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0d0d0d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-send {
  width: 100%;
  padding: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  justify-content: center;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.info-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 5px 0;
}

.info-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

/* Responsiveness */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-card {
    height: 400px;
  }
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 25px;
  }
}

/* Layout Toggle Classes */
.products-grid.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr) !important;
    overflow-x: hidden;
    max-width: 100%;
}
.products-grid.grid-cols-4 .product-card .btn {
    font-size: 0.75rem;
    padding: 6px 10px;
}
.products-grid.grid-cols-4 .product-card h3 {
    font-size: 0.9rem;
}
.products-grid.grid-cols-4 .product-card .price {
    font-size: 1.05rem;
}
.products-grid.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
    overflow-x: hidden;
    max-width: 100%;
}
.products-grid.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    overflow-x: hidden;
    max-width: 100%;
}

/* Force grid children to respect column sizes and not overflow */
.products-grid.grid-cols-3 > *,
.products-grid.grid-cols-4 > * {
    min-width: 0;
    overflow: hidden;
}
.products-grid.grid-list {
    grid-template-columns: 1fr !important;
}
.products-grid.grid-list .product-card-wrap {
    width: 100%;
}
.products-grid.grid-list .product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: right;
}
.products-grid.grid-list .product-card .img-wrap {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}
.products-grid.grid-list .product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 30px;
}
.products-grid.grid-list .product-card .card-actions {
    justify-content: flex-start;
}
.products-grid.grid-list .product-card .btn {
    width: auto !important;
    padding: 8px 30px;
    align-self: flex-start;
}
.products-grid.grid-list .product-card .badges {
    position: absolute;
    top: 12px;
    right: 12px;
}

/* Layout Toggler Buttons */
.layout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.layout-btn:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}
.layout-btn.active {
    background: var(--gold);
    color: var(--black);
}

@media (max-width: 992px) {
    .products-grid.grid-cols-4 {
        gap: 12px !important;
    }
    .products-grid.grid-cols-4 .product-card h3 {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    /* --- Trending header fixes --- */
    .trending-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    .trending-title-wrap h2 {
        font-size: 1.4rem;
    }
    .trending-title-wrap p {
        font-size: 0.8rem;
    }
    .trending-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px;
        padding-bottom: 4px;
    }
    .trending-tabs::-webkit-scrollbar { display: none; }
    .tab-btn {
        flex-shrink: 0;
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    /* --- Layout toggler smaller --- */
    .layout-btn {
        width: 28px;
        height: 28px;
    }
    .layout-btn svg {
        width: 14px;
        height: 14px;
    }

    /* --- List view --- */
    .products-grid.grid-list .product-card {
        flex-direction: column;
    }
    .products-grid.grid-list .product-card .img-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    /* --- 2 columns on mobile (default feel) --- */
    .products-grid.grid-cols-2 {
        gap: 10px !important;
    }

    /* --- Shared compact card rules for 3 & 4 cols --- */
    .products-grid.grid-cols-3 .product-card,
    .products-grid.grid-cols-4 .product-card {
        overflow: hidden;
    }
    .products-grid.grid-cols-3 .product-card .card-body,
    .products-grid.grid-cols-4 .product-card .card-body {
        overflow: hidden;
        max-width: 100%;
    }
    .products-grid.grid-cols-3 .product-card .card-body a,
    .products-grid.grid-cols-4 .product-card .card-body a {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .products-grid.grid-cols-3 .product-card .category,
    .products-grid.grid-cols-4 .product-card .category {
        display: none;
    }

    /* --- 3 columns on mobile --- */
    .products-grid.grid-cols-3 {
        gap: 6px !important;
    }
    .products-grid.grid-cols-3 .product-card .card-body {
        padding: 8px;
    }
    .products-grid.grid-cols-3 .product-card h3 {
        font-size: 0.72rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 4px;
    }
    .products-grid.grid-cols-3 .product-card .price {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    .products-grid.grid-cols-3 .product-card .price-old {
        font-size: 0.65rem;
    }
    .products-grid.grid-cols-3 .product-card .btn {
        font-size: 0.65rem;
        padding: 5px 6px;
        gap: 4px;
        border-radius: 20px;
    }
    .products-grid.grid-cols-3 .product-card .badges .badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    /* --- 4 columns on mobile --- */
    .products-grid.grid-cols-4 {
        gap: 4px !important;
    }
    .products-grid.grid-cols-4 .product-card .card-body {
        padding: 5px;
    }
    .products-grid.grid-cols-4 .product-card h3 {
        font-size: 0.6rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 2px;
    }
    .products-grid.grid-cols-4 .product-card .price {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
    .products-grid.grid-cols-4 .product-card .price-old {
        display: none;
    }
    .products-grid.grid-cols-4 .product-card .btn {
        font-size: 0.55rem;
        padding: 4px 5px;
        gap: 2px;
        border-radius: 16px;
    }
    .products-grid.grid-cols-4 .product-card .badges {
        display: none;
    }
    .products-grid.grid-cols-4 .product-card .img-wrap {
        aspect-ratio: 1;
    }
}

@media (max-width: 420px) {
    /* Extra small phones */
    .products-grid.grid-cols-3 .product-card .btn,
    .products-grid.grid-cols-4 .product-card .btn {
        font-size: 0 !important; /* Hide text */
        padding: 6px !important;
        min-width: 0;
    }
    .products-grid.grid-cols-3 .product-card .btn::before,
    .products-grid.grid-cols-4 .product-card .btn::before {
        content: '🛒';
        font-size: 0.85rem;
    }
}

