:root {
  --sr-primary: #00aaef;
  --sr-primary-light: #0088bf;
  --sr-accent: #2997aa;
  --sr-accent-light: #cae6e8;
  --sr-dark: #454f5e;
  --sr-gray: #64748b;
  --sr-light-gray: #e9f8f9;
  --sr-bg: #ffffff;
  --sr-text: #0f172a;
  --sr-text-muted: #64748b;
  --sr-border: #e2e8f0;
  --sr-gold: #f59e0b;
  --sr-success: #10b981;
  --sr-radius: 8px;
  --sr-font: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--sr-font);
  color: var(--sr-text);
  background: var(--sr-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--sr-primary);
  color: #fff;
  font-size: 0.75rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--sr-accent);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: #fff; }
.top-bar-left a { margin-right: 16px; opacity: 0.85; transition: opacity 0.2s; }
.top-bar-left a:hover { opacity: 1; }
.top-bar-center { opacity: 0.85; }
.top-bar-center i { color: var(--sr-accent-light); margin-right: 4px; }
.top-bar-right a { margin-left: 8px; opacity: 0.85; transition: opacity 0.2s; }
.top-bar-right a:hover { opacity: 1; }

/* ===== HEADER / NAV ===== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--sr-border);
  overflow: visible;
}
.main-header .container {
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo img { height: 38px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.header-nav > li {
  list-style: none;
  position: relative;
}
.header-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--sr-primary);
  transition: color 0.2s;
  white-space: nowrap;
}
.header-nav > li > a:hover { color: var(--sr-accent); }
.header-nav > li > a .arrow { font-size: 0.45rem; margin-left: 3px; }

.header-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--sr-border);
  min-width: 230px;
  padding: 8px 0;
  display: none;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-radius: 6px;
}
.header-nav li:hover > .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.82rem;
  color: var(--sr-text);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--sr-light-gray); color: var(--sr-accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-actions a {
  font-size: 0.85rem;
  color: var(--sr-primary);
  position: relative;
  transition: color 0.2s;
}
.header-actions a:hover { color: var(--sr-accent); }
.header-actions .icon { font-size: 1.15rem; }
.header-actions .badge-count {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--sr-accent);
  color: #fff;
  font-size: 0.55rem;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(225,29,72,0.3);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--sr-light-gray);
}
.hero-slide {
  display: none;
  position: relative;
}
.hero-slide.active { display: block; }
.hero-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 420px;
}
.hero-slide-content {
  padding: 60px 40px 60px 0;
}
.hero-slide-content .tag {
  display: inline-block;
  background: var(--sr-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.hero-slide-content h1 {
  font-family: 'Staatliches', display;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--sr-dark);
}
.hero-slide-content h1 span { color: var(--sr-accent); }
.hero-slide-content p {
  font-size: 1rem;
  color: var(--sr-gray);
  margin-bottom: 24px;
  max-width: 480px;
  line-height: 1.6;
}
.hero-slide-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.hero-slide-image img {
  max-height: 350px;
  object-fit: contain;
  border-radius: 12px;
}
.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--sr-primary);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.hero-slider-dots button.active { background: var(--sr-primary); }

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Staatliches', display;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
  color: var(--sr-dark);
}
.section-subtitle {
  text-align: center;
  color: var(--sr-gray);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius);
  padding: 16px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.2s;
  position: relative;
}
.product-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }

.product-card .img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fafafa;
  border-radius: 6px;
}
.product-card .img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.product-card:hover .img-wrap img { transform: scale(1.05); }

.product-card .img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,23,42,0.85);
  display: flex;
  justify-content: center;
  gap: 2px;
  padding: 8px;
  transform: translateY(100%);
  transition: transform 0.25s;
}
.product-card:hover .img-overlay { transform: translateY(0); }
.img-overlay a, .img-overlay button {
  background: #fff;
  border: none;
  color: var(--sr-dark);
  font-size: 0.72rem;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 500;
}
.img-overlay a:hover, .img-overlay button:hover { background: #f1f5f9; }

.product-card .brand-name {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sr-accent);
  margin-bottom: 4px;
}
.product-card .product-name {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--sr-dark);
  display: block;
  line-height: 1.3;
}
.product-card .product-name:hover { color: var(--sr-primary); }
.product-card .stars {
  font-size: 0.72rem;
  color: var(--sr-gold);
  margin-bottom: 6px;
}
.product-card .stars .count { color: var(--sr-text-muted); margin-left: 4px; font-size: 0.7rem; }
.product-card .price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sr-dark);
  margin-bottom: 10px;
}
.product-card .price .old {
  color: var(--sr-text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 6px;
  font-size: 0.85rem;
}
.product-card .price .sale { color: var(--sr-accent); }

.sale-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--sr-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 2;
}

.add-to-cart-btn {
  display: inline-block;
  background: var(--sr-primary);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.add-to-cart-btn:hover { background: var(--sr-primary-light); }

/* ===== PROMO BANNERS ===== */
.promo-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}
.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 320px;
  cursor: pointer;
}
.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.promo-card:hover img { transform: scale(1.05); }
.promo-card .promo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.2) 100%);
}
.promo-card .promo-overlay .brand-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.promo-card .promo-overlay h3 {
  font-family: 'Staatliches', display;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.2;
}
.promo-card .promo-overlay .sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.promo-card .promo-overlay .price-tag {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--sr-dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  width: fit-content;
  transition: all 0.2s;
}
.promo-cta:hover { background: var(--sr-accent); color: #fff; }

/* ===== SECTION HEADER WITH LINK ===== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.section-header .section-title { margin-bottom: 0; text-align: left; }
.section-header .section-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sr-accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.section-header .section-link:hover { gap: 10px; }

/* ===== BRAND CARDS ===== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 320px;
  cursor: pointer;
}
.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.brand-card:hover img { transform: scale(1.05); }
.brand-card .brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(15,23,42,0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.brand-card .brand-overlay h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.brand-card .brand-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
  width: fit-content;
  transition: gap 0.2s;
}
.brand-cta:hover { gap: 10px; }

/* ===== BLOG POSTS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.blog-card {
  border: 1px solid var(--sr-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.blog-card .blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card .blog-body {
  padding: 20px;
}
.blog-card .blog-date {
  font-size: 0.7rem;
  color: var(--sr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.blog-card .blog-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--sr-dark);
}
.blog-card .blog-title:hover { color: var(--sr-accent); }
.blog-card .blog-excerpt {
  font-size: 0.82rem;
  color: var(--sr-gray);
  line-height: 1.5;
}

/* ===== FEATURES BANNER ===== */
.features-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
  padding: 40px 0;
  border-top: 1px solid var(--sr-border);
  border-bottom: 1px solid var(--sr-border);
}
.feature-item {
  text-align: center;
  padding: 0 16px;
}
.feature-item .feature-icon {
  width: 56px;
  height: 56px;
  background: var(--sr-light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
  color: var(--sr-accent);
}
.feature-item h5 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.feature-item p {
  font-size: 0.82rem;
  color: var(--sr-gray);
  margin: 0;
  line-height: 1.4;
}

/* ===== PRODUCT PAGE ===== */
.breadcrumb {
  font-size: 0.78rem;
  color: var(--sr-text-muted);
  padding: 16px 0;
}
.breadcrumb a { color: var(--sr-text-muted); }
.breadcrumb a:hover { color: var(--sr-dark); }
.breadcrumb span { margin: 0 6px; }

.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.gallery-main {
  position: relative;
  background: #fafafa;
  border-radius: var(--sr-radius);
  overflow: hidden;
  margin-bottom: 12px;
}
.gallery-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  cursor: crosshair;
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.gallery-thumbs .thumb {
  width: 70px;
  height: 70px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s;
  flex-shrink: 0;
}
.gallery-thumbs .thumb:hover, .gallery-thumbs .thumb.active { opacity: 1; border-color: var(--sr-primary); }
.gallery-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info .brand-link {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sr-accent);
  margin-bottom: 6px;
  display: block;
}
.product-info .brand-link:hover { color: var(--sr-dark); }
.product-info h1 {
  font-family: 'Staatliches', display;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--sr-dark);
}
.product-info .stars {
  font-size: 0.9rem;
  color: var(--sr-gold);
  margin-bottom: 12px;
}
.product-info .stars .count { color: var(--sr-text-muted); margin-left: 6px; font-size: 0.8rem; }
.product-info .price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.product-info .price .old {
  color: var(--sr-text-muted);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 400;
  margin-right: 8px;
}
.product-info .price .sale-price { color: var(--sr-accent); }
.product-info .stock-status {
  font-size: 0.85rem;
  color: var(--sr-success);
  margin-bottom: 16px;
}
.product-info .stock-status.out { color: var(--sr-accent); }

.product-info .qty-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.qty-selector button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--sr-border);
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}
.qty-selector button:hover { background: var(--sr-light-gray); }
.qty-selector input {
  width: 50px;
  height: 36px;
  text-align: center;
  border: 1px solid var(--sr-border);
  border-radius: 4px;
  font-size: 0.9rem;
}

.product-info .add-to-cart-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sr-primary);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.product-info .add-to-cart-lg:hover { background: var(--sr-primary-light); }

.product-info .wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--sr-border);
  padding: 14px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  margin-left: 8px;
  transition: all 0.2s;
}
.product-info .wishlist-btn:hover { border-color: var(--sr-accent); color: var(--sr-accent); }

.product-info .short-desc {
  color: var(--sr-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sr-border);
}

.product-tabs { margin-bottom: 48px; }
.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--sr-border);
  gap: 0;
}
.tab-nav button {
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sr-text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-nav button:hover { color: var(--sr-dark); }
.tab-nav button.active { color: var(--sr-dark); border-bottom-color: var(--sr-accent); }
.tab-content { padding: 24px 0; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane p { line-height: 1.7; color: var(--sr-gray); white-space: pre-line; }

.review-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sr-border);
}
.review-avg { text-align: center; }
.review-avg .number { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.review-avg .stars { font-size: 1rem; color: var(--sr-gold); }
.review-bars { flex: 1; }
.review-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 0.78rem;
}
.review-bar .bar-track { flex: 1; height: 6px; background: #eee; border-radius: 3px; overflow: hidden; }
.review-bar .bar-fill { height: 100%; background: var(--sr-gold); border-radius: 3px; }
.review-card {
  padding: 16px 0;
  border-bottom: 1px solid var(--sr-border);
}
.review-card:last-child { border-bottom: none; }
.review-card .review-author { font-weight: 600; font-size: 0.85rem; margin-bottom: 4px; }
.review-card .review-stars { color: var(--sr-gold); font-size: 0.78rem; margin-bottom: 4px; }
.review-card .review-date { font-size: 0.72rem; color: var(--sr-text-muted); margin-left: 8px; }
.review-card .review-text { font-size: 0.85rem; color: var(--sr-gray); line-height: 1.5; }
.verified-badge { font-size: 0.65rem; color: var(--sr-success); margin-left: 6px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--sr-dark);
  color: #fff;
  margin-top: 60px;
}
.footer-main {
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
}
.footer-col p, .footer-col li { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.8; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 4px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--sr-accent-light); }

.footer-logo img { height: 32px; width: auto; margin-bottom: 12px; }
.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: block;
}
.footer-col .footer-desc { margin-bottom: 16px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--sr-accent); }

.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item i { color: var(--sr-accent-light); margin-top: 3px; min-width: 16px; }
.footer-contact-item span { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 16px; transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.97);
  z-index: 2000;
  justify-content: center;
  align-items: flex-start;
  padding-top: 120px;
}
.search-overlay.open { display: flex; }
.search-overlay input {
  width: 600px;
  max-width: 90%;
  padding: 18px 24px;
  font-size: 1.2rem;
  border: none;
  border-bottom: 2px solid var(--sr-accent);
  background: transparent;
  color: #fff;
  outline: none;
}
.search-overlay input::placeholder { color: rgba(255,255,255,0.4); }
.search-overlay .close-search {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.search-overlay .close-search:hover { opacity: 0.7; }
.search-overlay .popular-searches {
  text-align: center;
  margin-top: 24px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.search-overlay .popular-searches a {
  color: rgba(255,255,255,0.7);
  margin: 0 8px;
  transition: color 0.2s;
}
.search-overlay .popular-searches a:hover { color: var(--sr-accent-light); }

/* ===== SHOP FILTERS ===== */
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-header .result-count { font-size: 0.85rem; color: var(--sr-text-muted); }
.shop-filters {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.shop-filters select {
  padding: 8px 12px;
  border: 1px solid var(--sr-border);
  border-radius: 4px;
  font-size: 0.8rem;
  background: #fff;
  cursor: pointer;
}

.pagination { display: flex; justify-content: center; gap: 6px; margin: 32px 0; }
.pagination a, .pagination span {
  display: flex;
  width: 36px;
  height: 36px;
  border: 1px solid var(--sr-border);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--sr-primary); }
.pagination .current { background: var(--sr-primary); color: #fff; border-color: var(--sr-primary); }

/* ===== CART ===== */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 12px 8px; border-bottom: 2px solid var(--sr-border); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--sr-text-muted); }
.cart-table td { padding: 16px 8px; border-bottom: 1px solid var(--sr-border); vertical-align: middle; }
.cart-table .product-col { display: flex; align-items: center; gap: 12px; }
.cart-table .product-col img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }
.cart-table .product-col .name { font-weight: 600; }
.cart-table .qty-input { width: 50px; text-align: center; border: 1px solid var(--sr-border); border-radius: 4px; padding: 6px; }
.cart-table .remove-btn { background: none; border: none; color: var(--sr-accent); cursor: pointer; font-size: 1rem; }
.cart-totals { margin-top: 24px; padding: 24px; border: 1px solid var(--sr-border); border-radius: var(--sr-radius); max-width: 400px; margin-left: auto; }
.cart-totals .row { display: flex; justify-content: space-between; padding: 8px 0; }
.cart-totals .total { font-weight: 700; font-size: 1.1rem; border-top: 2px solid var(--sr-border); padding-top: 12px; margin-top: 8px; }
.checkout-btn { display: block; width: 100%; padding: 14px; background: var(--sr-primary); color: #fff; border: none; border-radius: 4px; font-size: 0.9rem; font-weight: 600; cursor: pointer; text-align: center; margin-top: 16px; transition: background 0.2s; }
.checkout-btn:hover { background: var(--sr-primary-light); }

.alert { padding: 12px 16px; border-radius: 4px; margin-bottom: 16px; font-size: 0.85rem; }
.alert-danger { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-slide-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-slide-content { padding: 40px 20px; text-align: center; }
  .hero-slide-content p { margin: 0 auto 24px; }
  .hero-slide-image { display: none; }
}

@media (max-width: 768px) {
  .top-bar-left, .top-bar-center { display: none; }
  .top-bar-inner { justify-content: center; }

  .header-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; border-bottom: 1px solid var(--sr-border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 8px 0; z-index: 999; }
  .header-nav.open { display: flex; }
  .header-nav > li > a { padding: 12px 20px; }
  .header-nav .dropdown-menu { position: static; box-shadow: none; border: none; border-left: 2px solid var(--sr-border); margin-left: 20px; min-width: auto; }
  .header-nav li:hover > .dropdown-menu { display: none; }
  .header-nav li.open > .dropdown-menu { display: block; }
  .header-logo img { height: 30px; }

  .hero-slide-content h1 { font-size: 1.6rem; }
  .hero-slide-content { padding: 30px 15px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card .img-wrap img { height: 160px; }
  .product-card .img-overlay { display: none; }
  .add-to-cart-btn { padding: 6px 12px; font-size: 0.75rem; }

  .promo-banners { grid-template-columns: 1fr; }
  .promo-card { height: 220px; }
  .promo-card .promo-overlay { padding: 24px; }
  .promo-card .promo-overlay h3 { font-size: 1.2rem; }

  .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-card { height: 240px; }

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

  .features-banner { grid-template-columns: 1fr; gap: 16px; }

  .product-page { grid-template-columns: 1fr; gap: 20px; }
  .gallery-main img { height: 300px; }

  .section-title { font-size: 1.3rem; }

  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom a { margin: 0 8px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-card { padding: 10px; }
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px;
  color: var(--sr-primary);
}
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
}

/* ===== STAR RATING INPUT ===== */
.star-rating { direction: rtl; display: inline-flex; }
.star-rating input { display: none; }
.star-rating label { font-size: 1.5rem; cursor: pointer; color: #ddd; transition: color 0.15s; }
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label { color: var(--sr-gold); }

/* ===== SIDE POPUP (Booking Consultation) ===== */
.side-popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; }
.side-popup-overlay.open { display: block; }
.side-popup { position: fixed; top: 0; right: -420px; width: 400px; max-width: 100vw; height: 100%; background: #fff; z-index: 10000; box-shadow: -10px 0 40px rgba(0,0,0,0.15); transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; }
.side-popup.open { right: 0; }
.side-popup-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--sr-gray); z-index: 1; line-height: 1; padding: 4px; }
.side-popup-close:hover { color: var(--sr-dark); }
.side-popup-content { padding: 48px 28px 32px; }
.side-popup-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; color: var(--sr-dark); }
.side-popup-content > p { font-size: 0.82rem; color: var(--sr-gray); margin-bottom: 20px; }
.sp-field { margin-bottom: 14px; }
.sp-field input, .sp-field select, .sp-field textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--sr-border); border-radius: 8px; font-size: 0.85rem; font-family: inherit; background: var(--sr-light-gray); outline: none; transition: border-color 0.2s; }
.sp-field input:focus, .sp-field select:focus, .sp-field textarea:focus { border-color: var(--sr-primary); }
.sp-row { display: flex; gap: 12px; }
.sp-row .sp-field { flex: 1; }
.sp-submit { width: 100%; padding: 12px; background: var(--sr-primary); color: #fff; border: none; border-radius: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.sp-submit:hover { background: var(--sr-primary-light); }
.sp-privacy { font-size: 0.72rem; color: #94a3b8; text-align: center; margin-top: 12px; }

/* ===== FLOATING ACTION BUTTONS ===== */
.fab-container { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 9990; }
.fab-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border: none; border-radius: 50px; font-size: 0.78rem; font-weight: 600; cursor: pointer; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.2s, box-shadow 0.2s; color: #fff; }
.fab-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); color: #fff; }
.fab-booking { background: var(--sr-primary); }
.fab-call { background: #22c55e; }
.fab-whatsapp { background: #25D366; }
.fab-container .fab-btn span { display: none; }
@media (min-width: 640px) { .fab-container .fab-btn span { display: inline; } }

@media (max-width: 768px) {
  .side-popup { width: 100%; right: -100%; }
  .sp-row { flex-direction: column; gap: 0; }
}
