/* Custom Product Page Layout */
.wc-acb-custom-product-page {
  background: #fff;
  min-height: 100vh;
}

.wc-acb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wc-acb-breadcrumb {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}

.wc-acb-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

/* Product Gallery */
.wc-acb-product-gallery {
  position: sticky;
  top: 20px;
}

.wc-acb-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.wc-acb-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.wc-acb-thumb-image {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.wc-acb-thumb-image:hover {
  border-color: #007cba;
}

/* Product Details */
.wc-acb-product-details {
  padding: 20px 0;
}

.wc-acb-product-header {
  margin-bottom: 30px;
}

.wc-acb-product-title {
  font-size: 2.5em;
  margin: 0 0 10px 0;
  color: #333;
  font-weight: 700;
}

.wc-acb-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.wc-acb-review-count {
  color: #666;
  font-size: 0.9em;
}

.wc-acb-product-price {
  font-size: 1.8em;
  color: #007cba;
  font-weight: 700;
}

.wc-acb-product-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* Booking Form Styles */
.wc-acb-booking-form-container {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
}

.wc-acb-booking-header {
  text-align: center;
  margin-bottom: 40px;
}

.wc-acb-booking-header h3 {
  font-size: 2em;
  margin: 0 0 10px 0;
  color: #333;
}

.wc-acb-booking-header p {
  color: #666;
  font-size: 1.1em;
  margin: 0;
}

.wc-acb-booking-fields-grid {
  display: grid;
  gap: 25px;
  margin-bottom: 40px;
}

.wc-acb-field-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.wc-acb-field-card:hover {
  border-color: #007cba;
  box-shadow: 0 5px 15px rgba(0, 124, 186, 0.1);
}

.wc-acb-field-header {
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 20px;
}

.wc-acb-field-header h4 {
  margin: 0;
  font-size: 1.3em;
  color: #333;
  flex: 1;
}

.wc-acb-price-info {
  color: #007cba;
  font-weight: 600;
  font-size: 0.9em;
}

.wc-acb-select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1em;
  background: #fff;
  transition: border-color 0.3s ease;
}

.wc-acb-select:focus {
  outline: none;
  border-color: #007cba;
}

/* Booking Type Options */
.wc-acb-booking-type-options {
  display: grid;
  gap: 15px;
}

.wc-acb-option-card {
  display: block;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.wc-acb-option-card:hover {
  border-color: #007cba;
  transform: translateY(-2px);
}

.wc-acb-option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.wc-acb-option-card input[type="radio"]:checked + .wc-acb-option-content {
  border-color: #007cba;
  background: #f0f8ff;
}

.wc-acb-option-content {
  display: block;
}

.wc-acb-option-title {
  display: block;
  font-size: 1.2em;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.wc-acb-option-desc {
  display: block;
  color: #666;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.wc-acb-option-price {
  display: block;
  color: #007cba;
  font-weight: 600;
  font-size: 0.95em;
}

/* Booking Summary */
.wc-acb-booking-summary {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  border: 2px solid #e9ecef;
}

.wc-acb-summary-header {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.wc-acb-summary-header h4 {
  margin: 0;
  color: #333;
  font-size: 1.4em;
}

.wc-acb-summary-details {
  margin-bottom: 25px;
}

.wc-acb-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f8f9fa;
}

.wc-acb-summary-label {
  color: #666;
  font-weight: 500;
}

.wc-acb-summary-value {
  color: #333;
  font-weight: 600;
}

.wc-acb-summary-divider {
  height: 2px;
  background: #e9ecef;
  margin: 15px 0;
}

.wc-acb-total-row {
  font-size: 1.2em;
  border-bottom: none;
  padding-top: 15px;
}

.wc-acb-total-row .wc-acb-summary-label {
  color: #333;
  font-weight: 700;
}

.wc-acb-total-row .wc-acb-summary-value {
  color: #007cba;
  font-weight: 700;
  font-size: 1.3em;
}

.wc-acb-booking-actions {
  text-align: center;
}

.wc-acb-book-now-button {
  background: #007cba;
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-size: 1.2em;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wc-acb-book-now-button:hover {
  background: #005a87;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 124, 186, 0.3);
}

.wc-acb-book-now-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Tabs */
.wc-acb-tabs {
  margin: 60px 0;
}

.wc-acb-tabs-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  border-bottom: 2px solid #e9ecef;
}

.wc-acb-tabs-nav li {
  margin-right: 30px;
}

.wc-acb-tabs-nav a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: #666;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.wc-acb-tabs-nav a.active,
.wc-acb-tabs-nav a:hover {
  color: #007cba;
  border-bottom-color: #007cba;
}

.wc-acb-tab-panel {
  display: none;
  padding: 20px 0;
}

.wc-acb-tab-panel.active {
  display: block;
}

/* Related Products */
.wc-acb-related-products {
  margin: 60px 0;
}

.wc-acb-related-products h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #333;
}

.wc-acb-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.wc-acb-related-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.wc-acb-related-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wc-acb-related-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.wc-acb-related-item h3 {
  margin: 0 0 10px 0;
  font-size: 1.1em;
}

.wc-acb-related-item .price {
  color: #007cba;
  font-weight: 600;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wc-acb-product-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wc-acb-product-title {
    font-size: 2em;
  }

  .wc-acb-booking-fields-grid {
    grid-template-columns: 1fr;
  }

  .wc-acb-field-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .wc-acb-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wc-acb-tabs-nav {
    flex-direction: column;
  }

  .wc-acb-tabs-nav li {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .wc-acb-container {
    padding: 0 15px;
  }

  .wc-acb-booking-form-container {
    padding: 20px;
  }

  .wc-acb-field-card {
    padding: 20px;
  }

  .wc-acb-related-grid {
    grid-template-columns: 1fr;
  }
}
