/* ========================================
   裸金属服务器页面样式 - 2026版
   Baremetal Server Page Styles
======================================== */

:root {
  --primary: #2B6DE8;
  --primary-light: #6366F1;
  --secondary: #8B5CF6;
  --accent: #F59E0B;
  --success: #10B981;
  --danger: #EF4444;
  --text-primary: #1a1a2e;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --bg-light: #f8fafc;
  --border-light: #e2e8f0;
  --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Hero Section */
.baremetal-hero {
  position: relative;
  padding: 120px 0 80px;
  margin-top: 70px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  overflow: hidden;
}

.baremetal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.baremetal-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.baremetal-hero-content {
  max-width: 600px;
}

.baremetal-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  font-size: 14px;
  color: #60a5fa;
  margin-bottom: 24px;
}

.baremetal-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.baremetal-hero-title span {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.baremetal-hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

.baremetal-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.baremetal-hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.baremetal-hero-feature svg {
  width: 18px;
  height: 18px;
  color: #60a5fa;
}

.baremetal-hero-illustration {
  width: 380px;
  flex-shrink: 0;
}

/* Main Content */
.baremetal-main {
  background: var(--bg-light);
  padding: 50px 0 80px;
}

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

/* Line Tabs */
.line-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.line-tab {
  padding: 12px 28px;
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
}

.line-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.line-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(43, 109, 232, 0.3);
}

/* Line Content */
.line-content {
  display: none;
}

.line-content.active {
  display: block;
}

/* Line Info */
.line-info {
  text-align: center;
  margin-bottom: 40px;
}

.line-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #b45309;
  margin-bottom: 12px;
}

.line-info p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Server Grid */
.server-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Server Card */
.server-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.server-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.server-card-header {
  padding: 24px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  text-align: center;
}

.server-card-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.server-card-body {
  padding: 24px;
  flex: 1;
}

.server-specs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.server-specs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.server-specs li:last-child {
  border-bottom: none;
}

.spec-label {
  width: 70px;
  flex-shrink: 0;
  color: var(--text-muted);
  font-weight: 500;
}

.spec-value {
  color: var(--text-primary);
  flex: 1;
}

.spec-value.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* IP Select */
.ip-select-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ip-select {
  flex: 1;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-primary);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s;
}

.ip-select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Server Card Footer */
.server-card-footer {
  padding: 20px 24px;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.server-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.price-unit {
  font-size: 14px;
  color: var(--text-muted);
}

.discount-tag {
  display: inline-block;
  padding: 2px 8px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #b45309;
  margin-left: 8px;
}

.btn-buy-server {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
}

.btn-buy-server:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(43, 109, 232, 0.4);
}

/* Advantages Section */
.baremetal-advantages {
  padding: 80px 0;
  background: #fff;
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-light);
  border-radius: 16px;
  transition: all 0.3s;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.advantage-icon.blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.advantage-icon.purple {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  color: #7c3aed;
}

.advantage-icon.orange {
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  color: #ea580c;
}

.advantage-icon.green {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}

.advantage-icon svg {
  width: 36px;
  height: 36px;
}

.advantage-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 10px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 40px;
  background: #fff;
  border-radius: 16px;
}

.empty-state svg {
  width: 80px;
  height: 80px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 18px;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.empty-state p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ========================================
   Responsive Styles
======================================== */
@media (max-width: 1200px) {
  .server-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .baremetal-hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .baremetal-hero-content {
    max-width: 100%;
  }
  
  .baremetal-hero-features {
    justify-content: center;
  }
  
  .baremetal-hero-illustration {
    display: none;
  }
}

@media (max-width: 768px) {
  .baremetal-hero {
    padding: 100px 0 60px;
  }
  
  .baremetal-hero-title {
    font-size: 32px;
  }
  
  .baremetal-hero-subtitle {
    font-size: 15px;
  }
  
  .server-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .line-tabs {
    gap: 8px;
  }
  
  .line-tab {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .baremetal-hero-title {
    font-size: 26px;
  }
  
  .baremetal-hero-feature {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .server-card-header {
    padding: 20px;
  }
  
  .server-card-body {
    padding: 20px;
  }
  
  .server-card-footer {
    padding: 16px 20px;
  }
  
  .price-amount {
    font-size: 28px;
  }
}

/* ========================================
   裸金属购买页面样式 - Buy Page Styles
======================================== */

/* Buy Page Theme - Blue */
.baremetal-buy-page {
  --bm-primary: #2563eb;
  --bm-primary-dark: #1d4ed8;
  --bm-primary-light: #eff6ff;
  --bm-gradient: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  --bm-accent: #f97316;
  --bm-accent-light: #fff7ed;
  
  background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
  min-height: 100vh;
}

.baremetal-buy-page .baremetal-hero {
  background: var(--bm-gradient);
}

.baremetal-buy-page .baremetal-hero::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.4) 0%, transparent 50%);
}

.baremetal-hero-compact {
  padding: 60px 0 45px;
}

.baremetal-hero-compact .baremetal-hero-title {
  font-size: 30px;
}

/* Buy Main Layout */
.buy-main {
  padding: 40px 0 80px;
}

.buy-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

/* Config Area */
.buy-config-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.baremetal-buy-page .config-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: visible;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.baremetal-buy-page .config-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
}

.baremetal-buy-page .config-card-header h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.baremetal-buy-page .config-card-header svg {
  width: 18px;
  height: 18px;
  color: var(--bm-primary);
}

.baremetal-buy-page .config-card-body {
  padding: 20px;
}

.baremetal-buy-page .config-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #f1f5f9;
}

.baremetal-buy-page .config-row:last-child {
  border-bottom: none;
}

.baremetal-buy-page .config-label {
  width: 90px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.baremetal-buy-page .config-value {
  flex: 1;
  font-size: 14px;
  color: var(--text-primary);
}

/* Product Info Card */
.product-info-card {
  background: var(--bm-gradient);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.product-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.product-info-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px;
  position: relative;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  position: relative;
}

.product-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.product-spec-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.9;
}

.product-spec-item span {
  opacity: 0.95;
}

/* Form Inputs */
.form-select,
.form-input {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-primary);
  background: #fff;
  transition: all 0.3s;
  outline: none;
}

.form-select:focus,
.form-input:focus {
  border-color: var(--bm-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-select {
  min-width: 180px;
  cursor: pointer;
}

.form-input {
  width: 100%;
  max-width: 280px;
}

/* Duration Options - New Style */
.duration-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
  background: #f8fafc;
  border-radius: 12px;
}

.duration-option {
  position: relative;
  flex: 1;
  min-width: 100px;
}

.duration-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.duration-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  min-height: 70px;
}

.duration-option label:hover {
  border-color: var(--bm-accent);
  background: var(--bm-accent-light);
}

.duration-option input:checked + label {
  border-color: var(--bm-accent);
  background: var(--bm-accent-light);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.duration-option .duration-gift {
  position: absolute;
  top: -10px;
  right: -5px;
  font-size: 10px;
  color: #fff;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
}

.duration-option .duration-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.duration-option .duration-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--bm-accent);
}

.duration-option .duration-price small {
  font-size: 13px;
  font-weight: 500;
}

/* Sidebar - Order Card */
.buy-sidebar {
  position: sticky;
  top: 90px;
}

.order-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.order-card-header {
  padding: 18px 20px;
  background: var(--bm-gradient);
  color: #fff;
}

.order-card-header h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-card-header svg {
  width: 20px;
  height: 20px;
}

.order-card-body {
  padding: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
}

.order-item:last-child {
  border-bottom: none;
}

.order-item-label {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.order-item-label svg {
  width: 14px;
  height: 14px;
  color: var(--bm-primary);
}

.order-item-value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 13px;
}

.order-price-section {
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(135deg, var(--bm-accent-light) 0%, #fef3c7 100%);
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.order-price-label {
  font-size: 12px;
  color: #c2410c;
  margin-bottom: 6px;
}

.order-price-value {
  font-size: 32px;
  font-weight: 800;
  color: #c2410c;
}

.order-price-value small {
  font-size: 14px;
  font-weight: 500;
}

.order-original-price {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-top: 4px;
}

/* Coupon Section */
.coupon-section {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.coupon-btn {
  width: 100%;
  padding: 10px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  font-size: 13px;
  color: var(--bm-primary);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.coupon-btn:hover {
  background: var(--bm-primary-light);
  border-color: var(--bm-primary);
}

.coupon-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: #ecfdf5;
  border-radius: 8px;
  font-size: 13px;
}

.coupon-selected-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #059669;
}

.coupon-selected-info svg {
  width: 16px;
  height: 16px;
}

.coupon-clear {
  color: #94a3b8;
  cursor: pointer;
  font-size: 12px;
}

/* Submit Section */
.order-submit-section {
  padding: 16px 20px;
  border-top: 1px solid #f1f5f9;
}

.agreement-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.agreement-check input {
  margin-top: 2px;
  accent-color: var(--bm-primary);
}

.agreement-check a {
  color: var(--bm-primary);
  text-decoration: none;
}

.btn-submit-order {
  width: 100%;
  padding: 14px;
  background: var(--bm-gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-submit-order:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-submit-order svg {
  width: 18px;
  height: 18px;
}

/* Tips */
.order-tips {
  margin-top: 14px;
  padding: 10px;
  background: #fef3c7;
  border-radius: 8px;
  font-size: 11px;
  color: #92400e;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.order-tips svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Quantity Spinner */
.qty-spinner {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--bm-primary-light);
  color: var(--bm-primary);
}

.qty-input {
  width: 50px;
  height: 34px;
  border: none;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  outline: none;
}

.qty-unit {
  padding: 0 10px;
  font-size: 13px;
  color: var(--text-secondary);
  background: #f8fafc;
  height: 34px;
  display: flex;
  align-items: center;
  border-left: 1px solid #e2e8f0;
}

/* Buy Page Responsive */
@media (max-width: 992px) {
  .buy-layout {
    grid-template-columns: 1fr;
  }
  
  .buy-sidebar {
    position: static;
  }
  
  .product-specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .baremetal-hero-compact {
    padding: 50px 0 35px;
  }
  
  .baremetal-hero-compact .baremetal-hero-title {
    font-size: 24px;
  }
  
  .buy-main {
    padding: 24px 0 50px;
  }
  
  .baremetal-buy-page .config-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .baremetal-buy-page .config-label {
    width: 100%;
  }
  
  .duration-options {
    gap: 8px;
    padding: 8px;
  }
  
  .duration-option {
    min-width: calc(33.33% - 8px);
  }
  
  .duration-option label {
    padding: 12px 8px;
    min-height: 60px;
  }
  
  .duration-option .duration-name {
    font-size: 13px;
  }
  
  .duration-option .duration-price {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .duration-option {
    min-width: calc(50% - 8px);
  }
}
