/* Shoe Cart Specific Styles */
.product-section {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

.cart-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cart-header h2 {
  font-size: 2.5rem;
  color: #2d2d2d;
  margin-bottom: 1rem;
}

.cart-header p {
  color: #666;
  font-size: 1.1rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.cart-item {
  display: flex;
  gap: 25px;
  border: 1px solid #e0e0e0;
  padding: 25px;
  border-radius: 12px;
  background-color: #fff;
  align-items: center;
  transition: box-shadow 0.3s ease;
  position: relative;
}

.cart-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cart-item-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

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

.cart-item-name {
  margin: 0 0 12px 0;
  font-weight: 600;
  font-size: 1.3rem;
  color: #2d2d2d;
}

.cart-item-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #666;
}

.cart-item-price {
  font-weight: 700;
  color: #ff6b35;
  font-size: 1.4rem;
  margin: 15px 0;
}

.cart-item-quantity {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-item-quantity label {
  font-weight: 500;
  color: #333;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 35px;
  height: 35px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}

.quantity-input {
  width: 60px;
  padding: 8px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.shoe-size-display {
  background: #f8f9fa;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  color: #333;
  display: inline-block;
  margin-right: 10px;
}

.btn {
  cursor: pointer;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff6b35;
  color: white;
}

.btn-primary:hover {
  background-color: #ff8b5c;
  transform: translateY(-2px);
}

.btn-primary:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

.btn-danger {
  background-color: #ff4444;
  color: white;
  margin-right: 10px;
}

.btn-danger:hover {
  background-color: #ff6666;
}

.btn-secondary {
  background-color: #666;
  color: white;
}

.btn-secondary:hover {
  background-color: #888;
}

.btn-wishlist {
  background-color: transparent;
  color: #666;
  border: 1px solid #ddd;
}

.btn-wishlist:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}

.stock-alert {
  color: #ff6b35;
  font-weight: 600;
  margin: 10px 0;
  padding: 8px 12px;
  background: #fff8e1;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.price-breakdown,
.coupon-section,
.checkout-options,
.trust-signals,
.checkout-progress {
  background-color: #f8f9fa;
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-breakdown h3,
.coupon-section label,
.checkout-options h3,
.trust-signals h3,
.checkout-progress h3 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #2d2d2d;
  font-size: 1.4rem;
}

.price-breakdown p {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.price-breakdown hr {
  margin: 20px 0;
  border: none;
  border-top: 2px solid #ddd;
}

.price-breakdown .grand-total {
  font-size: 1.5rem;
  color: #2d2d2d;
  font-weight: 700;
  border: none;
  padding-top: 20px;
}

.coupon-section input[type="text"] {
  padding: 12px 16px;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  width: 250px;
  margin-right: 10px;
  font-family: 'Poppins', sans-serif;
}

.coupon-section input[type="text"]:focus {
  border-color: #ff6b35;
  outline: none;
}

.coupon-message {
  margin-top: 12px;
  font-weight: 600;
}

.coupon-message.success {
  color: #28a745;
}

.coupon-message.error {
  color: #dc3545;
}

.checkout-options label {
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

.payment-methods {
  margin: 20px 0;
}

.payment-methods p {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.payment-methods label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.payment-methods label:hover {
  border-color: #ff6b35;
  background: #fff8e1;
}

.payment-icon {
  font-size: 1.5rem;
  margin-right: 5px;
}

.shipping-estimation {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.shipping-estimation input[type="text"] {
  width: 200px;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  margin-right: 10px;
  font-family: 'Poppins', sans-serif;
}

.trust-signals ul {
  list-style: none;
  padding: 0;
}

.trust-signals ul li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-signals ul li:last-child {
  border-bottom: none;
}

.trust-icon {
  color: #ff6b35;
  font-size: 1.2rem;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 3px;
  background: #e0e0e0;
  z-index: 1;
}

.progress-step {
  text-align: center;
  padding-top: 40px;
  font-weight: 600;
  color: #999;
  position: relative;
  z-index: 2;
  flex: 1;
}

.progress-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #e0e0e0;
  border-radius: 50%;
  z-index: 2;
}

.progress-step.active {
  color: #ff6b35;
}

.progress-step.active::before {
  background: #ff6b35;
  color: white;
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.progress-step.completed::before {
  background: #28a745;
  color: white;
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.cart-summary {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #eee;
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
}

.empty-cart .empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ddd;
}

.empty-cart h3 {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 15px;
}

.empty-cart p {
  color: #999;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  
  .cart-item-image {
    width: 100%;
    height: auto;
    max-height: 250px;
  }
  
  .cart-item-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .quantity-controls {
    width: 100%;
    justify-content: center;
  }
  
  .price-breakdown,
  .coupon-section,
  .checkout-options,
  .trust-signals,
  .checkout-progress {
    padding: 20px;
  }
  
  .coupon-section input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .shipping-estimation input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .progress-step {
    font-size: 0.9rem;
  }
  
  .progress-step::before {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .product-section {
    padding: 0 15px;
  }
  
  .cart-header h2 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .progress-step {
    font-size: 0.8rem;
    padding-top: 35px;
  }
}