/** Shopify CDN: Minification failed

Line 153:3 Expected "}" to go with "{"

**/
/* ============================================================
   THE PARTY GIRL — Rush Production Toggle Cards
   ============================================================ */

/* Rush Options Container */
.tpg-rush-wrap {
  margin: 20px 0 8px;
}

.tpg-rush-label {
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b5e53;
  margin-bottom: 10px;
  display: block;
}

/* Card Grid */
.tpg-rush-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Individual Card */
.tpg-rush-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid #e8e0d8;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
  position: relative;
}

.tpg-rush-card:hover {
  border-color: #c4b5a5;
  background: #fdfbf9;
}

.tpg-rush-card.selected {
  border-color: #2c2c2c;
  background: #faf8f5;
}

/* Checkmark Circle */
.tpg-rush-radio {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: 2px solid #d4ccc3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: #fff;
}

.tpg-rush-card.selected .tpg-rush-radio {
  border-color: #2c2c2c;
  background: #2c2c2c;
}

.tpg-rush-radio-dot {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.15s ease;
}

.tpg-rush-radio-dot::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -1px;
}

.tpg-rush-card.selected .tpg-rush-radio-dot {
  transform: scale(1);
}

/* Card Text */
.tpg-rush-info {
  flex: 1;
}

.tpg-rush-title {
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88em;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px;
  line-height: 1.3;
}

.tpg-rush-desc {
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78em;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

/* Price Badge */
.tpg-rush-price {
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82em;
  font-weight: 600;
  color: #2c2c2c;
  white-space: nowrap;
  padding: 4px 10px;
  background: #f3ede6;
  border-radius: 4px;
}

.tpg-rush-price.free {
  color: #6b5e53;
  background: transparent;
}

/* Mobile */
@media (max-width: 600px) {
  .tpg-rush-card {
    padding: 12px 14px;
    gap: 10px;
  }
  
  .tpg-rush-title {
    font-size: 0.84em;
  }
  
  .tpg-rush-desc {
    font-size: 0.74em;
  }