/* Additional Boat Customizer Styles */
.water-ripple {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  overflow: hidden;
  z-index: 0;
}

.ripple-circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300%;
  height: 0;
  padding-bottom: 300%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: ripple 4s infinite linear;
}

@keyframes ripple {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0;
  }
}

/* Add some 3D perspective to the boat model */
.boat-3d-container {
  perspective: 1200px;
}

#boat-3d-model {
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

/* Add some shadows and depth to boat components */
.boat-body {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.boat-roof {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Add some animation to the customization options */
.customization-option {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.customization-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.customization-option.active {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Add a glow effect to the active option */
.customization-option.active::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: var(--radius);
  background: linear-gradient(45deg, var(--primary), transparent);
  z-index: -1;
  opacity: 0.5;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.6;
  }
}

/* Add some animation to the price display */
#boat-price {
  transition: color 0.3s ease;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  0% {
    text-shadow: 0 0 5px rgba(14, 165, 233, 0.3);
  }
  100% {
    text-shadow: 0 0 15px rgba(14, 165, 233, 0.7);
  }
}

/* Enhance the business plan section */
.plan-section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.plan-section-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), transparent);
}

.plan-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 3px solid var(--primary);
}

.plan-item:hover {
  transform: translateX(5px);
}

.design-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.design-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  border-bottom: 1px solid var(--card-border);
  transition: background-color var(--transition);
}

.design-row:hover {
  background-color: rgba(24, 24, 27, 0.5);
}

.design-row.header {
  font-weight: 600;
  background-color: rgba(14, 165, 233, 0.2);
  color: var(--primary);
}

.design-row > div {
  padding: 0.75rem;
}

@media (max-width: 768px) {
  .design-row {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
  }

  .design-row > div {
    padding: 0.5rem;
    border-bottom: 1px dashed var(--card-border);
  }

  .design-row > div:last-child {
    border-bottom: none;
  }

  .design-row.header > div {
    font-weight: 600;
    color: var(--primary);
  }
}
