.cart-item {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

#cart-icon {
    position: relative;
    font-size: 1.5rem;
}

#cart-count {
    font-size: 0.7rem;
}

#alerts-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    max-width: 400px;
}

.StripeElement {
    height: 40px;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: white;
}

.StripeElement--focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.StripeElement--invalid {
    border-color: #dc3545;
}

/* Additional styles for e-commerce functionality */
.product-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-img {
  height: 275px;
  object-fit: cover;
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.product-info {
  padding: 15px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #060291;
  font-family: 'Montserrat', sans-serif;
}

.product-price {
  color: #e86130;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background: #f8f9fa;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.cart-icon {
  position: relative;
  font-size: 1.4rem;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e86130;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-modal-body {
  max-height: 60vh;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: #060291;
}

.cart-item-price {
  color: #e86130;
  font-weight: 600;
}

.cart-summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.size-options {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.size-btn {
  border: 2px solid #ddd;
  background: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.size-btn.active {
  border-color: #e86130;
  background: rgba(232, 97, 48, 0.1);
  color: #e86130;
}

.color-options {
  display: flex;
  gap: 12px;
  margin: 15px 0;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
}

.color-option.active {
  border-color: #e86130;
  box-shadow: 0 0 0 3px rgba(232, 97, 48, 0.2);
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 5px;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #e86130;
  margin: 15px auto;
}

.product-detail-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .product-img {
    height: 275px;
  }
}


.color-option {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 5px;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
}

.color-price {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    color: #333;
    transition: bottom 0.3s;
}

.color-option:hover .color-price,
.color-option.active .color-price {
    bottom: 0;
}

.color-option.active {
    border: 2px solid #333;
}
