/* Options Section */
.options-section {
  padding: 40px 0;
  background: #FFFFFF;
}

.options-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 300px;
}

.section-category {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 2.24px;
  color: #B33D31;
}

.section-title {
  font-family: 'Yu Mincho', serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 40.8px;
  color: #251D03;
  margin: 0;
}

.section-divider {
  margin-top: 8px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}

.option-image {
  width: 100%;
  height: 175.5px;
  overflow: hidden;
}

.option-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-content {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.option-title {
  font-family: 'Yu Mincho', serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28.8px;
  color: #333333;
  text-align: left;
  margin: 0;
}

.option-description {
  font-family: 'Yu Mincho', serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 25.2px;
  color: #251D03;
  text-align: left;
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .options-container {
    padding: 0 16px;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-title {
    font-size: 28px;
    line-height: 34px;
  }
  
  .option-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .options-container {
    padding: 0 12px;
    gap: 30px;
  }
  
  .section-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .option-title {
    font-size: 16px;
    line-height: 24px;
  }
  
  .option-description {
    font-size: 13px;
    line-height: 20px;
  }
}
