/* Restore paragraph spacing stripped by Tailwind base reset */
.product p {
  margin-bottom: 1em;
}

.g80-product-faq-accordion {
  max-width: 100%;
  margin: 20px 0;
}

.g80-product-faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.g80-product-faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px 40px 15px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.g80-product-faq-question:hover {
  color: #9f0712;
}

.g80-product-faq-question::after {
  content: '+';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #9f0712;
  transition: transform 0.3s;
}

.g80-product-faq-item.active .g80-product-faq-question::after {
  content: '−';
}

.g80-product-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 15px;
}

.g80-product-faq-item.active .g80-product-faq-answer {
  max-height: 500px;
  padding: 0 15px 15px;
  transition: max-height 0.3s ease-in, padding 0.3s ease-in;
}

/* In the Box list */
.g80-product-in-the-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.g80-product-in-the-box-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.g80-product-in-the-box-list li:last-child {
  border-bottom: none;
}

.g80-product-in-the-box-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #9f0712;
  font-weight: bold;
  font-size: 16px;
}

.g80-product-item-qty {
  background: #f5f5f5;
  color: #333;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 8px;
  min-width: 22px;
  text-align: center;
  display: inline-block;
}

/* Kit product cards */
.g80-kit-product-card {
  background: #fafafa;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #eee;
  transition: box-shadow 0.3s ease;
}

.g80-kit-product-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.g80-kit-product-number {
  display: inline-block;
  background: #9f0712;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}

.g80-kit-product-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #1a1a1a;
}

.g80-kit-product-subtitle {
  font-size: 14px;
  color: #9f0712;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.g80-kit-product-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.g80-kit-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.g80-kit-feature-list li {
  font-size: 14px;
  color: #333;
  padding-left: 20px;
  position: relative;
}

.g80-kit-feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #9f0712;
  font-weight: bold;
}

@media (max-width: 600px) {
  .g80-kit-feature-list {
    grid-template-columns: 1fr;
  }
}

/* Why Buy the Kit section */
.g80-why-kit-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 45px 40px;
  margin: 20px 0;
  border: 1px solid #e8e8e8;
}

.g80-why-kit-heading {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  display: inline-block;
  border-bottom: 3px solid #9f0712;
  padding-bottom: 8px;
}

.g80-why-kit-subhead {
  color: #666;
  font-size: 15px;
  margin-bottom: 40px;
}

.g80-why-kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.g80-why-kit-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8f8f8;
  border-radius: 8px;
}

.g80-why-kit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: #fef2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g80-why-kit-icon svg {
  width: 26px;
  height: 26px;
  stroke: #9f0712;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.g80-why-kit-item-title {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.g80-why-kit-item-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .g80-why-kit-section {
    padding: 35px 25px;
  }
  .g80-why-kit-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* What You'll Need grid */
.g80-needs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.g80-needs-item {
  background: #f8f8f8;
  border-left: 3px solid #9f0712;
  padding: 15px 20px;
  font-size: 15px;
}

.g80-needs-item strong {
  display: block;
  margin-bottom: 3px;
  color: #1a1a1a;
}

.g80-needs-item span {
  color: #666;
  font-size: 13px;
}

@media (max-width: 600px) {
  .g80-needs-grid {
    grid-template-columns: 1fr;
  }
}
