.hero-section {
  background: linear-gradient(135deg, var(--teal-100) 0%, #ffffff 100%);
  border-radius: 2px;
  padding: 3rem;
  margin-bottom: 3rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.category-card {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);

  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-card:hover {
  box-shadow: 0 15px 30px rgba(13, 148, 136, 0.15);
}

.category-header {
  background-color: var(--teal-600);
  color: white;
  padding: 1rem;
  text-align: center;
}

.category-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-description {
  color: #555;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.btn-teal {
  background-color: var(--teal-500);
  color: white;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  font-weight: 400;
  transition: all 0.3s;
  display: block;
  width: 50%;
  text-align: center;
  margin-top: 1rem;
}

.btn-teal:hover {
  background-color: var(--teal-600);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
  color: white;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  background-color: #f8f9fa;
  border-radius: 16px;
}

.product-gallery {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: white;
  height: 100%;
}

.main-image {
  width: 100%;
  height: 450px;
  object-fit: contain;
  padding: 1.5rem;
}

.product-info {
  background-color: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.product-title {
  color: #333;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--teal-100);
  padding-bottom: 1rem;
}

.product-category {
  display: inline-block;
  background-color: var(--teal-100);
  color: var(--teal-600);
  border-radius: 20px;
  padding: 0.25rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.product-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--teal-500);
  margin: 1.5rem 0;
}

.product-description {
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-teal {
  background-color: var(--teal-500);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-teal:hover {
  background-color: var(--teal-600);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-outline-teal {
  background-color: transparent;
  color: var(--teal-500);
  border: 2px solid var(--teal-500);
  border-radius: 10px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  flex: 1;
  min-width: 200px;
}

.btn-outline-teal:hover {
  background-color: var(--teal-100);
  transform: translateY(-3px);
}

.specs-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid #eee;
}

.specs-table td {
  padding: 0.8rem 0;
}

.specs-table td:first-child {
  font-weight: 600;
  width: 30%;
  color: #444;
}

.related-products {
  margin-top: 4rem;
}

.related-title {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.related-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 3px;
  background-color: var(--teal-500);
}

.product-description {
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
}

.add-to-cart-btn {
  background: var(--teal);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.add-to-cart-btn:hover {
  background: var(--dark-teal);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
