:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e2e8f0;
  --primary: #0b78d1;
  --primary-dark: #095ea5;
  --success: #10b981;
  --danger: #ef4444;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
 background: #fcfbfb;
  color: var(--text);
  font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; transition: 0.2s; }
img { max-width: 100%; display: block; }

.container { width: min(1200px, 94%); margin: 0 auto; }

.header-wrapper {

    padding: 14px 0;
    border-radius: 0 0 15px 15px;

}

.header-capsule {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
}

.top-bar-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 5px;
    background: #fbfbfb;
    border-radius: 14px;
    margin-bottom: 10px;
    border: 1px solid #dfdfdf;
}
.top-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 11px;
  color: rgb(0 0 0 / 97%);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
  background: transparent;
}

.top-tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.top-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.top-tab.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar-right,
.top-bar-left { display: flex; align-items: center; gap: 20px; }

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.92;
  white-space: nowrap;
}

.top-bar-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.coupon-code {
  color: #f59e0b;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
}

.top-bar-coupon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.95;
}

.coupon-desc {
  white-space: nowrap;
}

.coupon-copy-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.coupon-copy-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.header-main {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  background: var(--card);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9e9e9;
}

.header-search-bar { flex: 1; max-width: 480px; }

.header-search-bar form {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.header-search-bar form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 120, 209, 0.1);
}

.header-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
}

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

.header-search-btn {
  background: var(--primary);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.header-search-btn:hover { background: var(--primary-dark); }

.brand { display: flex; align-items: center; gap: 8px; }

.brand-logo {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.brand-box {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  display: grid; place-items: center;
}

.brand h1 { font-size: 17px; margin: 0; color: var(--primary); font-weight: 800; }
.brand small { display: block; color: var(--muted); font-size: 11px; font-weight: 600; }

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

.icon-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: #4b5563;
  font-size: 18px;
  cursor: pointer;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  background: #f8fafc;
  color: var(--primary);
  border-color: #e2e8f0;
  transform: translateY(-2px);
}

.icon-btn.cart-btn { position: relative; }

.cart-count {
  position: absolute;
  top: -4px; right: -2px;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  border: 2px solid #fff;
  font-size: 10px;
  font-weight: 800;
  display: grid; place-items: center;
}

.icon-svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-svg.sm { width: 18px; height: 18px; }

.call-btn {
  background: #ffffff !important;
  color: #111111 !important;
  border-color: #c9c9c9 !important;
  animation: call-ring 2s ease-in-out infinite;
}






.call-btn:hover {
  background: #059669 !important;
  border-color: #059669 !important;
  color: #fff !important;
}

@keyframes call-ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(12deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(8deg); }
  40% { transform: rotate(-6deg); }
  50%, 100% { transform: rotate(0deg); }
}

.hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #103a6c, #0b78d1);
  min-height: 280px;
  box-shadow: var(--shadow-hover);
}

.hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }

.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 40px; color: #fff; text-align: right;
}

.hero h2 { margin: 0 0 12px; font-size: clamp(24px, 4vw, 38px); font-weight: 800; }
.hero p { margin: 0 0 16px; color: rgba(255,255,255,0.9); font-size: 15px; max-width: 500px; }

.btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(11, 120, 209, 0.3); }

.features {
  margin: 26px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

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

.feature {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  background: #fff;
  border: 1px solid #edf1f6;
  border-radius: 12px;
  padding: 10px 12px;
}

.feature-icon {
  width: 30px; height: 30px;
  border-radius: 10px;
  background: #eaf3ff;
  color: var(--primary);
  display: grid; place-items: center;
  flex: 0 0 auto;
}

.feature strong { display: block; font-size: 12px; margin-bottom: 2px; }
.feature div div { font-size: 11px; color: #8b97a8; }

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px;
}

.section-title h3 { margin: 0; font-size: 20px; font-weight: 800; color: var(--text); }
.section-title a { color: var(--primary); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; border-radius: 99px; padding: 6px 12px; background: rgba(11, 120, 209, 0.08); }
.section-title a:hover { background: rgba(11, 120, 209, 0.15); }

.section-title-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-cat-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.section-warranty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
}

.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  white-space: nowrap;
}

.warranty-badge svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .section-title-brand {
    flex-wrap: wrap;
    gap: 8px;
  }
  .section-warranty {
    flex-wrap: wrap;
    gap: 6px;
    margin-right: 0;
  }
  .warranty-badge {
    font-size: 11px;
    padding: 4px 8px;
  }
}

.categories { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; }
.category { min-width: 95px; text-align: center; }

.brands-slider { padding: 10px 4px; margin: -10px -4px; }
.brands-slider .swiper-slide { height: auto; }
.brands-slider .category img { height: 60px; width: auto; max-width: 100%; object-fit: contain; }
.brands-slider .swiper-slide { height: auto; }
.brands-slider .category { min-width: unset; display: flex; flex-direction: column; align-items: center; }

.brands-slider .swiper-button-prev,
.brands-slider .swiper-button-next {
  color: var(--primary);
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.brands-slider .swiper-button-prev::after,
.brands-slider .swiper-button-next::after {
  font-size: 14px;
  font-weight: bold;
}

.category .avatar {
  width: 100%;
  height: auto;
  border-radius: 0;
  margin: 0 auto 6px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.category:hover .avatar { box-shadow: none; transform: none; border: none; }

.category .avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  padding: 0;
}
.category div { font-weight: 700; font-size: 14px; color: var(--text); }

.products-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }

.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.product-image {
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}

.product-image img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.product-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.product-brand-logo img {
  width: 70px;
  height: 40px;
  object-fit: contain;
}

.product-cooling-badge,
.product-capacity-tag {
  display: none;
}

.product-specs-bar {
  display: flex;
  width: 100%;
  border-top: 1px solid #f0f0f0;
}

.spec-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(11, 120, 209, 0.04);
}

.spec-item:not(:last-child) {
  border-left: 1px solid #f0f0f0;
}

.spec-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.spec-item.cold {
  color: #0891b2;
  background: rgba(8, 145, 178, 0.04);
}

.spec-item.hot {
  color: #ea580c;
  background: rgba(234, 88, 12, 0.04);
}

.spec-item.empty {
  background: transparent;
}

.product-wishlist {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #9ca3af;
  z-index: 2;
}

.product-wishlist:hover {
  color: var(--danger);
  background: #fff;
  border-color: rgba(239, 68, 68, 0.2);
  transform: scale(1.1);
}

.product-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  border-top: 1px solid #f3f4f6;
}

.product-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #374151;
  transition: color 0.2s;
  min-height: 39px;
}

.product-name:hover { color: var(--primary); }

.product-rating {
  display: flex;
  align-items: center;
}

.product-rating .stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.product-rating .star-empty {
  color: #d1d5db;
}

.meta { display: flex; gap: 8px; margin: 10px 0; flex-wrap: wrap; align-items: center; }

.meta .category-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.chip {
  background: rgba(11, 120, 209, 0.08);
  color: var(--primary-dark);
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
}

.price-section {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

.old-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 12px;
  font-weight: 600;
}

.full { width: 100%; }

.btn.add-to-cart {
  width: 100%;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
  background: var(--primary);
  color: #fff;
  border: none;
}

.btn.add-to-cart:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(11, 120, 209, 0.3);
}

.layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; }

.panel {
  background: var(--card);
  border: none;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel h4 { margin: 0 0 16px; font-size: 18px; font-weight: 800; }

.filters { display: grid; gap: 20px; font-size: 14px; }
.filters section { border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.filters section:last-child { border-bottom: none; padding-bottom: 0; }
.filters strong { display: block; margin-bottom: 12px; font-size: 15px; color: var(--text); }
.filters input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; border-radius: 4px; }
.filters div { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; cursor: pointer; color: #4b5563; transition: 0.2s; }
.filters div:hover { color: var(--primary); }

.breadcrumb { margin: 12px 0 24px; color: #9ca3af; font-size: 13px; font-weight: 600; display: flex; gap: 8px; align-items: center; }

.product-layout { display: grid; grid-template-columns: 42% 58%; gap: 32px; align-items: start; max-width: 1050px; margin: 0 auto; }

.gallery-main {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  background: #ffffff;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-main img { width: 100%; height: auto; max-height: 400px; object-fit: contain; }

.thumbs { margin-top: 12px; display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }

.thumbs img {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  padding: 4px;
  height: 70px;
  width: 100%;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.2s ease;
}

.thumbs img:hover { border-color: var(--primary); transform: none; }

.price-box {
  background: rgba(11, 120, 209, 0.05);
  border: 1px dashed rgba(11, 120, 209, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  margin: 20px 0;
}

.checks { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; color: #4b5563; font-weight: 600; }
.checks div { display: flex; align-items: center; gap: 6px; }
.checks div::before { content: "✓"; color: var(--success); font-weight: 900; }

.trust {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  text-align: center;
  gap: 8px;
}

.trust > div { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: var(--muted); }

.footer {
  margin-top: 34px;
  background: #283794;
  border-top: none;
  padding: 40px 0 20px;
  color: #fff;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.footer h5 { margin: 0 0 16px; font-size: 16px; color: #fff; }
.footer p, .footer li { color: rgba(255, 255, 255, 0.8); font-size: 14px; }
.footer a:hover { color: #fff; }
.footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }

.copyright {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.main-nav {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  z-index: 100;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(11, 120, 209, 0.04);
}

.nav-chevron {
  transition: transform 0.3s;
}

.has-mega.open .nav-chevron {
  transform: rotate(180deg);
}

.has-mega.open > .nav-link {
  color: var(--primary);
  background: rgba(11, 120, 209, 0.04);
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 700px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 24px;
  z-index: 200;
}

.has-mega.open .mega-menu {
  display: block;
}

.mega-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  color: var(--primary);
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(11, 120, 209, 0.06);
  margin-bottom: 4px;
  transition: background 0.2s;
}

.mega-cat-title:hover {
  background: rgba(11, 120, 209, 0.12);
}

.mega-cat-title img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
}

.mega-sub-link {
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  border-radius: 6px;
  transition: all 0.15s;
}

.mega-sub-link:hover {
  color: var(--primary);
  background: rgba(11, 120, 209, 0.04);
  padding-right: 14px;
}

.mobile-menu.active { display: block !important; }

.menu-item-group.active > .menu-item-sub { display: block !important; }
.menu-item-group.active > .menu-item-header > .chevron { transform: rotate(180deg); }
.menu-item-group .menu-item-header:hover { background: #f1f5f9 !important; }

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .layout, .product-layout { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; margin-bottom: 8px; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .product-image {  }
  .product-image img { }
  .product-body { padding: 10px 12px 12px; gap: 8px; }
  .product-name { font-size: 12px; min-height: 36px; }
  .price { font-size: 14px; }
  .old-price { font-size: 11px; }
  .btn.add-to-cart { font-size: 12px; padding: 8px; }
  .checks { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
}

.swiper { overflow: hidden; }
.swiper-wrapper { display: flex; }
.swiper-slide { flex-shrink: 0; }

.swiper:not(.swiper-initialized) .swiper-slide { width: 100%; }
.swiper:not(.swiper-initialized) .swiper-slide:nth-child(n+2) { visibility: hidden; position: absolute; }

.home-slider-section { margin-top: 24px; margin-bottom: 24px; }

.home-slider {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.home-slider .swiper-slide a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.home-slider .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.home-slider .swiper-button-prev,
.home-slider .swiper-button-next {
  display: none !important;
}

.home-slider .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 20px;
  border-radius: 10px;
}
.home-slider .swiper-pagination-bullet { transition: width 0.3s }

.category-products-section { margin-top: 22px; }

.cat-products-slider { padding: 4px; margin: -4px; }

.cat-products-slider .swiper-slide { height: auto; }

.cat-products-slider .product-card { height: 100%; border-radius: 5px; }

.cat-products-slider .swiper-button-prev,
.cat-products-slider .swiper-button-next {
  color: var(--primary);
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cat-products-slider .swiper-button-prev::after,
.cat-products-slider .swiper-button-next::after {
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .brands-slider .swiper-button-prev, .brands-slider .swiper-button-next { display: none !important; }
  .cat-products-slider .swiper-button-prev, .cat-products-slider .swiper-button-next { display: none !important; }
  .brands-slider .category { padding: 0 4px; }
  .product-layout { grid-template-columns: 1fr; gap: 16px; }
  .gallery-main img { height: 260px; }
  .thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .thumbs img { height: 56px; }
  .checks { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(3, 1fr); font-size: 11px; }
  .plan-option { flex-wrap: wrap; }
  .plan-option > div { min-width: 0; }
  .layout { grid-template-columns: 1fr; }
  .layout .panel { display: none; }
  .layout .panel:target,
  .layout .panel.mobile-filters-open { display: block; }
  .section-title { flex-wrap: wrap; gap: 8px; }
  .section-title select { width: 100%; }
  .checkout-grid { grid-template-columns: 1fr !important; }
  .header-search-bar { display: none; }
  .top-bar-tabs { gap: 4px; padding: 4px; }
  .top-tab { font-size: 11px; padding: 6px 8px; gap: 5px; }
  .top-tab svg { width: 15px; height: 15px; }
  .header-main { padding: 8px 14px; }
  .main-nav { display: none; }
}

@media (max-width: 480px) {
  .category .avatar { width: 100%; height: auto; }
  .category div { font-size: 11px; }
  .gallery-main img { height: 200px; }
  .gallery-main { padding: 10px; }
  .thumbs img { height: 48px; }
  .product-body { padding: 10px; }
  .btn.add-to-cart { font-size: 12px; padding: 8px; }
  .price { font-size: 14px; }
  .plan-option { padding: 10px !important; gap: 8px !important; }
  .plan-option strong { font-size: 12px !important; }
  .trust { grid-template-columns: 1fr; gap: 10px; }
  .trust > div { flex-direction: row; justify-content: center; gap: 8px; }
}

/* Checkout Page Responsive */
.blog-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body {
  padding: 16px;
}
.blog-card-body h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.5;
}
.blog-card-body p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.blog-card-date {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.checkout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; margin-top: 16px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 768px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* Cart Info - Responsive */
.cart-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }

/* Business Page */
.biz-page { overflow: hidden; }

.biz-slider-section { margin-top: 24px; margin-bottom: 24px; }

.biz-hero-slider {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.biz-hero-slider .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.biz-hero-slider .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 20px;
  border-radius: 10px;
}

.biz-hero-slider .swiper-pagination-bullet {
  transition: width 0.3s;
}

.biz-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(11,120,209,0.08);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.biz-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.biz-section-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--text);
}

/* About Section */
.biz-about {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
}

.biz-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.biz-about-text h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.4;
}

.biz-about-text p {
  margin: 0 0 30px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
}

.biz-stats-row {
  display: flex;
  gap: 32px;
}

.biz-stat {
  text-align: center;
}

.biz-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.biz-stat span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.biz-about-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.biz-about-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card);
  padding: 22px 26px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.biz-about-card:hover {
  transform: translateX(-6px);
  box-shadow: 0 8px 24px rgba(11,120,209,0.1);
}

.biz-about-card.accent {
  background: linear-gradient(135deg, var(--primary), #1a8cff);
  border-color: transparent;
  margin-right: 30px;
}

.biz-about-card.accent h4,
.biz-about-card.accent p,
.biz-about-card.accent svg {
  color: #fff;
  stroke: #fff;
}

.biz-about-card svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--primary);
  stroke: var(--primary);
}

.biz-about-card h4 {
  margin: 0 0 3px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.biz-about-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Services Section */
.biz-services {
  padding: 80px 0;
  background: var(--bg);
}

.biz-showcase {
  margin-top: 48px;
}

.biz-showcase-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 40px;
}

.biz-showcase-tabs::-webkit-scrollbar {
  display: none;
}

.biz-showcase-tab {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: none;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  color: var(--muted);
  font-family: inherit;
  position: relative;
}

.biz-showcase-tab-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--line);
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.biz-showcase-tab-title {
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.biz-showcase-tab:hover {
  background: rgba(11,120,209,0.04);
  color: var(--text);
}

.biz-showcase-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(11,120,209,0.3);
}

.biz-showcase-tab.active .biz-showcase-tab-num {
  color: rgba(255,255,255,0.6);
}

.biz-showcase-panels {
  position: relative;
  min-height: 320px;
}

.biz-showcase-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.biz-showcase-panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.biz-showcase-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.biz-showcase-panel-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(11,120,209,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.biz-showcase-panel-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(11,120,209,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.biz-showcase-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 240px;
}

.biz-showcase-icon-wrap {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--primary), #1a8cff);
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(11,120,209,0.25);
  transition: transform 0.4s ease;
}

.biz-showcase-panel.active .biz-showcase-icon-wrap {
  animation: showcaseIconIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes showcaseIconIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.biz-showcase-icon-wrap svg {
  width: 52px;
  height: 52px;
  stroke: #fff;
}

.biz-showcase-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(11,120,209,0.12);
  border-radius: 50%;
  animation: showcaseSpin 20s linear infinite;
}

.biz-showcase-ring-2 {
  width: 280px;
  height: 280px;
  border-color: rgba(11,120,209,0.06);
  animation-direction: reverse;
  animation-duration: 30s;
}

@keyframes showcaseSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.biz-showcase-info {
  position: relative;
  z-index: 1;
}

.biz-showcase-step {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(11,120,209,0.08);
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.biz-showcase-info h3 {
  font-size: 30px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.3;
}

.biz-showcase-info p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 32px;
}

.biz-showcase-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.biz-showcase-arrow {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text);
  transition: all 0.25s ease;
}

.biz-showcase-arrow:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(11,120,209,0.04);
}

.biz-showcase-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.biz-showcase-counter {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
}

/* Clients Section */
.biz-clients {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.biz-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.biz-client-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s ease;
}

.biz-client-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.biz-client-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
}

.biz-client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.biz-client-card h5 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.biz-project-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  color: var(--primary);
  background: rgba(11,120,209,0.06);
  border: 1px solid rgba(11,120,209,0.15);
  cursor: pointer;
  transition: all 0.25s ease;
}

.biz-project-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* CTA Section */
.biz-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b2b5c 0%, #0b78d1 100%);
  text-align: center;
  color: #fff;
}

.biz-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 900;
}

.biz-cta p {
  margin: 0 0 28px;
  font-size: 16px;
  opacity: 0.85;
}

.biz-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.biz-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  color: var(--primary);
  border: none;
  transition: all 0.3s ease;
}

.biz-cta-btn:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.biz-cta-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.biz-cta-btn.whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* Modal */
.biz-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.biz-modal {
  background: var(--card);
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  animation: bizModalIn 0.3s ease;
}

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

.biz-modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: 0.2s;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.biz-modal-close:hover {
  background: var(--danger);
  color: #fff;
}

.biz-modal-body {
  display: flex;
  flex-direction: column;
}

.biz-modal-image {
  width: 100%;
  max-height: 360px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.biz-modal-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.biz-modal-info {
  padding: 32px;
}

.biz-modal-info h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.biz-modal-info p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

/* Business Mobile Responsive */
@media (max-width: 768px) {
  .biz-about {
    padding: 50px 0;
  }
  .biz-about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .biz-stats-row {
    gap: 20px;
  }
  .biz-stat strong {
    font-size: 26px;
  }
  .biz-about-card.accent {
    margin-right: 0;
  }
  .biz-services {
    padding: 50px 0;
  }
  .biz-showcase-tabs {
    flex-wrap: nowrap;
    gap: 4px;
    padding: 4px;
  }
  .biz-showcase-tab {
    padding: 10px 14px;
    gap: 6px;
  }
  .biz-showcase-tab-num {
    display: none;
  }
  .biz-showcase-tab-title {
    font-size: 12px;
  }
  .biz-showcase-panel-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .biz-showcase-visual {
    min-height: 180px;
  }
  .biz-showcase-info h3 {
    font-size: 22px;
  }
  .biz-clients {
    padding: 50px 0;
  }
  .biz-clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .biz-cta {
    padding: 50px 0;
  }
  .biz-cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .biz-modal { max-width: 95%; border-radius: 18px; }
  .biz-modal-image img { height: 200px; }
  .biz-modal-info { padding: 22px; }
}

@media (max-width: 480px) {
  .biz-clients-grid {
    grid-template-columns: 1fr;
  }
  .biz-stats-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  .biz-showcase-panel-inner {
    padding: 28px 18px;
    border-radius: 20px;
  }
  .biz-showcase-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 24px;
  }
  .biz-showcase-icon-wrap svg {
    width: 40px;
    height: 40px;
  }
  .biz-showcase-ring {
    width: 150px;
    height: 150px;
  }
  .biz-showcase-ring-2 {
    width: 210px;
    height: 210px;
  }
}
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-header h2 { margin: 0; font-size: 24px; font-weight: 800; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
}
.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}
.cart-item-info { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.cart-item-title { font-weight: 700; font-size: 16px; color: var(--text); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item-title:hover { color: var(--primary); }
.cart-item-price { color: var(--muted); font-size: 14px; font-weight: 600; }
.cart-item-actions { display: flex; align-items: center; gap: 24px; margin-right: auto; }
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  height: 40px;
}
.cart-item-qty button {
  width: 40px;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
  display: grid;
  place-items: center;
}
.cart-item-qty button:hover { background: #f8fafc; color: var(--primary); }
.cart-item-qty span {
  width: 44px;
  text-align: center;
  font-weight: 700;
  border-inline: 1px solid var(--line);
  line-height: 40px;
}
.cart-item-total { font-weight: 800; font-size: 18px; color: var(--primary); min-width: 90px; text-align: left; }
.cart-item-remove form, .cart-item-remove button { display: flex; align-items: center; justify-content: center; margin: 0; }
.cart-item-remove button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  color: var(--danger);
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.cart-item-remove button:hover { background: var(--danger); color: #fff; transform: translateY(-2px); }
.cart-summary {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 16px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow);
}
.cart-summary > div { display: flex; align-items: center; gap: 12px; }
.cart-total-text { font-size: 18px; font-weight: 700; color: var(--text); }
.cart-total-amount { font-size: 26px; font-weight: 800; color: var(--primary); }

@media (max-width: 768px) {
  .cart-item { 
    flex-direction: column; 
    align-items: stretch; 
    padding: 16px; 
    gap: 16px;
  }
  .cart-item-img { width: 70px; height: 70px; }
  .cart-item > div:first-child { align-items: flex-start; }
  .cart-item-actions { margin-right: 0; justify-content: space-between; width: 100%; border-top: 1px dashed var(--line); padding-top: 16px; }
  .cart-item-remove { position: absolute; top: 16px; left: 16px; }
  .cart-item-remove button { width: 34px; height: 34px; background: transparent; }
  .cart-item-total { font-size: 16px; }
  .cart-summary { flex-direction: column; align-items: stretch; text-align: center; padding: 20px 16px; }
  .cart-summary > div { justify-content: center; margin-bottom: 8px; }
  .cart-total-text { font-size: 16px; }
  .cart-total-amount { font-size: 22px; }
  .cart-summary .btn { width: 100%; }
}
