/* ================= Product Page ================= */
.product-navigation,
.product-details,
.shed-options {
  text-align: center;
  padding: 40px 20px;
}

.product-navigation h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.product-intro {
  color: #666;
  margin-bottom: 30px;
}

.product-nav-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.product-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
  width: 180px;
  transition: transform 0.3s ease;
}

.product-nav-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-nav-item:hover {
  transform: translateY(-5px);
}

.product-nav-item span {
  font-weight: 600;
}
@media (max-width: 768px) {
  .product-nav-item {
    width: 150px;
  }

  .product-nav-item img {
    width: 150px;
    height: 150px;
  }
}

/* ================= Product Sections ================= */
.product-details {
  background: #f9f9f9;
  padding: 60px 20px;
}

/* ✅ 2 columns on wide screens */
.product-columns {
  display: flex;
  flex-wrap: wrap;         /* allows multiple cards per row */
  justify-content: center; /* centers cards in row */
  gap: 40px;
  max-width: 1600px;       /* or remove max-width entirely */
  margin: 0 auto;
}

.product-section {
  flex: 0 1 700px;       /* card width */
  max-width: 700px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.product-section h2 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 15px;
}

.product-main-image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 15px;
  display: block;
}

.product-description {
  color: #555;
  max-width: 400px;
  margin: 0 auto 20px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .product-main-image {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 900px) {
  .product-section {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

/* ================= Price Table ================= */
.price-table {
  width: 100%;
  max-width: 300px;
  margin: 10 auto 10px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 5px 0px;              /* ⬅️ More horizontal spacing */
  text-align: center;
}

.price-table th {
  background: var(--main-green);
  color: #000;
  font-weight: 700;
   text-transform: uppercase;
  font-size: 0.9rem;
  padding: 15px;
  border-bottom: 2px solid #ccc;
}

.price-table tr:hover td {
  background: #f1f1f1;
}

.product-section .cta-btn {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-main-image {
    width: 250px;
    height: 250px;
  }
}
.price-table th:nth-child(1),
.price-table td:nth-child(1) {
  min-width: 120px;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2),
.price-table th:nth-child(3),
.price-table td:nth-child(3),
.price-table th:nth-child(4),
.price-table td:nth-child(4) {
  min-width: 140px;
}
.price-table tbody tr:nth-child(odd) {
  background: #f9f9f9;    /* light gray */
}

.price-table tbody tr:nth-child(even) {
  background: #eef8ee;    /* pale green */
}
.price-table tbody tr:hover {
  background: #d7f7d7;    /* brighter green on hover */
  transition: background 0.3s ease;
}
/* Size column */
.price-table td:first-child,
.price-table th:first-child {
  background: #e0f4e0;   /* pale green */
  font-weight: bold;
}

/* Painted column */
.price-table td:nth-child(2),
.price-table th:nth-child(2) {
  background: #eafae7;   /* light green */
}

/* Metal column */
.price-table td:nth-child(3),
.price-table th:nth-child(3) {
  background: #e8f0fa;   /* light blue */
}

/* Vinyl column */
.price-table td:nth-child(4),
.price-table th:nth-child(4) {
  background: #fff8e1;   /* soft yellow */
}
.price-table tbody tr:nth-child(odd) td {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.price-table tbody tr:hover td {
  background: #d6ffd6 !important;  /* light highlight on hover */
  font-weight: bold;
  transition: background 0.3s ease;
}

/* ================= Shed Options Section ================= */
.shed-options {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.shed-options h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.options-intro {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.option-card {
  background: #f9f9f9;
  border-radius: 10px;
  width: 180px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.option-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.option-card h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.option-price {
  font-weight: bold;
  color: var(--main-green);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .option-card {
    width: 140px;
  }
  .option-card img {
    height: 140px;
  }
}
/* Product pricing table spacing */
.product-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.product-pricing-table th,
.product-pricing-table td {
  padding: 6px 10px;        /* ⬅️ More space between columns */
  text-align: center;
}

.product-pricing-table th {
  background: #f8f8f8;
  font-weight: bold;
  border-bottom: 2px solid #ddd;
}

.product-pricing-table td {
  border-bottom: 1px solid #eee;
}

.product-pricing-table tr:hover td {
  background: #f5f5f5;
}
