main {
  margin-top: 14vh;
}
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 14px;
  margin-bottom: 16px;
  color: #6b7280;
}
.breadcrumbs a {
  color: #374151;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  .card {
    align-items: center;
    .card-content {
      display: flex;
      flex-direction: column;
      /* gap: 16px; */
    }
  }
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Image */
.product-image {
  border-radius: 8px;
  overflow: hidden;
  background: #f9fafb;
}
.product-image img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
}

/* Details */
.header-section h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Antonio", sans-serif;
}
.category {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Options */
.product-meta h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.size-options,
.capacity-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size-badge,
.capacity-badge {
  padding: 8px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.2s ease;
}
.size-badge:hover,
.capacity-badge:hover {
  background: #e5e7eb;
}
.size-badge.active,
.capacity-badge.active {
  background: #030213;
  color: #fff;
  border-color: #030213;
}

/* Buttons */
.actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: #030213;
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: #1f2937;
}
.btn-outline {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
}
.btn-outline:hover {
  background: #f9fafb;
}

/* Icons */
.icon {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}
/* Specifications */
.specifications {
  margin-top: 48px;
}
.specifications h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 22px;
}
@media (min-width: 768px) {
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}
.spec-key {
  font-weight: 500;
  color: #374151;
}
.spec-value {
  color: #6b7280;
}
/* --------- */
/* Actions */
.actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Row with enquire + share */
.primary-row {
  display: flex;
  gap: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn.full {
  flex: 1; /* make button take full width */
}

/* Primary button (dark) */
.btn-primary {
  background: #0a0a1a; /* deep navy/black */
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: #111827;
}

/* Outline button (secondary) */
.btn-outline {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111827;
}
.btn-outline:hover {
  background: #f3f4f6;
}

/* Small icon-only button */
.btn-icon {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 12px;
  border-radius: 8px;
}
.btn-icon:hover {
  background: #f9fafb;
}
.share-btn {
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 55%),
    rgb(255 255 255 / 66%)
  );
}
/* Icons */
.icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}
/* Section Title */
.capacities h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 16px 0 8px;
  color: #111827;
}

/* Capacity Options */
.capacity-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.option-badge {
  padding: 8px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: #f9fafb;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.option-badge:hover {
  background: #f3f4f6;
}
.option-badge.active {
  background: #0a0a1a;
  color: #fff;
  border-color: #0a0a1a;
}
/*  */
/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.category-page-container {
  padding: 1rem 6vw;
}
/* Category Card */
.category-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  display: flex;
  justify-content: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.category-content-grid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.category-content-grid h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.glass-style {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.42),
    rgba(255, 255, 255, 0.26)
  );
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(12, 18, 36, 0.08);
}
.product-grid h2 {
  font-size: 2rem;
}
