.svg-round {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: white;
}

:root {
  --card-radius: 14px;
  --muted: #6c757d;
  --accent: #0d6efd;
  --shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #f6f8fb;
  color: #111827;
}

.page-header {
  padding: 36px 0 18px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.hero-card {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.hero-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.hero-card h4 {
  font-size: 18px;
  margin-top: 12px;
  font-weight: 600;
}

.hero-card p {
  color: #555;
  margin: 5px 0 0;
}

.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hero-left img {
  height: 460px;
}

.hero-right img {
  height: 220px;
}

@media (max-width: 991.98px) {

  .hero-left img,
  .hero-right img {
    height: auto;
  }
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 12px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fafbff 0%, #f5f7fb 100%);
  margin-bottom: 10px;
  position: relative;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 8px;
  font-size: 12px;
  border-radius: 8px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--accent);
  font-weight: 600;
  backdrop-filter: blur(2px);
}

.product-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #0f1724;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.price-current {
  font-weight: 700;
  font-size: 1.05rem;
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.swatches {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
}

.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform .12s;
  display: inline-block;
}

.swatch:hover {
  transform: scale(1.12);
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
}

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

.btn-ghost {
  border: 1px solid #e6e9ef;
  background: transparent;
  padding: 6px 9px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.9rem;
}

.topbar-select {
  min-width: 220px;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.sector-card {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sector-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 200px;
}

.sector-card h5 {
  margin-top: 10px;
  font-weight: 600;
}

.sector-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}