
.custom-container2 {
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-pink);
  margin: 2rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-section {
  background: linear-gradient(135deg, #ffffff, #fef8fc);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-pink);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-pink);
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--dark-pink);
}

.required-marker {
  color: var(--dark-pink);
  margin-left: 5px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
}

.option-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.option-item {
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 12px;
  padding: 15px 10px;
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.option-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #ff6eb4, #fe1764);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.option-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.option-item:hover:before {
  opacity: 1;
}

.option-item.selected {
  border: 3px solid var(--primary-pink);
  background-color: var(--light-pink);
  transform: scale(1.05);
}

.option-item.selected:before {
  opacity: 1;
}

.option-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, #f8f8f8, #e6e6e6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.9rem;
  border: 2px solid #eee;
  transition: all 0.3s ease;
  border-radius: 100%;
}
.option-itemd .option-image {
  width: 180px;
  height: 180px;
}

.option-image img{ 
  width: 100%;
  border-radius: 5%;
}

.option-item.selected .option-image {
  border-color: var(--primary-pink);
  box-shadow: 0 0 15px rgba(255, 110, 180, 0.4);
}

.option-label {
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
}

.note-text {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
  margin-top: 15px;
  padding: 10px 15px;
  background-color: var(--light-pink);
  border-radius: 8px;
  border-left: 3px solid var(--dark-pink);
}

.sub-options {
  margin-top: 20px;
  padding: 20px;
  background-color: var(--light-purple);
  border-radius: 10px;
  display: none;
}

.summary-box {
  background: linear-gradient(135deg, #fff0f5, #ffe6ee);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.summary-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-pink);
  margin-bottom: 20px;
  text-align: center;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e6c5d5;
}

.price-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-pink);
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #e6c5d5;
}

.btn-purchase {
  background: linear-gradient(to right, #ff6eb4, #fe1764);
  color: white;
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  margin-top: 25px;
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.btn-purchase:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.form-control:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 0.25rem rgba(255, 110, 180, 0.25);
}

.guarantee-section {
  background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
  border-radius: 15px;
  padding: 25px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.guarantee-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e88e5;
  margin-bottom: 20px;
  text-align: center;
}

.guarantee-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.guarantee-item i {
  font-size: 1.5rem;
  color: #1e88e5;
  margin-right: 15px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .option-grid {
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
      gap: 15px;
  }
  
  .option-image {
      width: 70px;
      height: 70px;
  }
  
  .page-title {
      font-size: 2rem;
  }
}

.container {
  width: 100%;
  text-align: center;
}

h1 {
  color: #2c3e50;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card.selected {
  border-color: #fd0759;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  transform: translateY(-5px);
}

.card.selected::after {
  content: "✓ Selected";
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fd0759;
  color: white;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 20px;
}

.plan-name {
  font-size: 2.2rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 15px;
}

.plan-subtitle {
  font-size: 1.4rem;
  color: #fd0759;
  font-weight: 600;
}

.plan-description {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
  text-align: left;
  padding: 0 10px;
}

.plan-description ul {
  list-style-type: none;
  padding-left: 0;
}

.plan-description li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.plan-description li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e6c5d5;
  font-weight: bold;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #e74c3c;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .cards-container {
      flex-direction: column;
      align-items: center;
  }
  
  .card {
      width: 100%;
      max-width: 400px;
  }
  
  h1 {
      font-size: 2rem;
  }
}