/* TRI-WAX Page Styles */

.breadcrumb {
  position: relative;
  z-index: 2;
}

.wax-hero-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  margin-top: -96px;
  padding-top: 110px;
}

.wax-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.wax-hero-section .z-1 {
  position: relative;
  z-index: 1;
}

.wax-hero-section h1 {
  text-shadow: 2px 2px 4px var(--rfq-dark);
}

.wax-hero-section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.wax-hero-tomatoes {
  animation: float 5s ease-in-out infinite;
  height: auto;
  max-width: 100%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pallet Pricing Row - Equal Height Cards */

.pricing-row .card {
  height: 100%;
}

.pricing-row .card-body {
  flex-grow: 1;
}

.pricing-row .card-body img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center bottom;
}

/* Ensure buttons stick to bottom */

.pricing-row .btn:not(.mt-auto) {
  margin-top: auto;
}

.wax-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wax-benefit-item {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 8px;
  border-left: 4px solid #4CAF50;
  gap: 10px;
}

.wax-benefit-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.wax-features-box {
  border: 2px solid #4CAF50;
}

.wax-features-box h5:last-child {
  margin-bottom: 0;
}

.wax-features-box h5::before {
  content: "";
  margin-right: 8px;
}

/* Responsive adjustments */

@media (max-width: 768px) {
  .wax-hero-section {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .wax-hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .wax-hero-section .btn {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .wax-benefit-item {
    font-size: 0.9rem;
  }
}

