* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
  font-size: 14px;
  color: #555;
  margin-top: 30px;
  margin-bottom: 30px;
}

.breadcrumb a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ================= LAYOUT ================= */
.product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ================= IMAGE ================= */
.product-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ================= INFO ================= */
.product-info h1 {
  font-size: 36px;
  color: #2e7d32;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-category {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.product-category span {
  font-weight: 600;
  color: #555;
}

/* ================= CART ROW ================= */
.cart-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

/* ================= ADD TO CART BUTTON ================= */
.add-cart {
  height: 50px;
  padding: 0 30px;
  border: none;
  border-radius: 8px;
  background: #2e7d32;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.add-cart:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.4);
}

/* ================= DETAIL ROWS ================= */
.details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: #f9fdf9;
  border-radius: 10px;
  border: 1px solid rgba(46, 125, 50, 0.1);
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-row i {
  font-size: 18px;
  color: #2e7d32;
  margin-top: 2px;
  min-width: 20px;
}

.detail-row strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.detail-row p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* ================= SHARE ================= */
.share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.share span {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.share i {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  transition: all 0.2s ease;
}

.share i:hover {
  background: #2e7d32;
  color: #fff;
  border-color: #2e7d32;
}

/* ================= GLOBAL CART BADGE ================= */
.cart-btn {
  position: relative;
}

#cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #2e7d32;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 18px;
  text-align: center;
}

#cart-count:empty {
  display: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .product-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-info h1 {
    font-size: 28px;
  }
}