.order-wrapper {
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(200, 230, 201, 0.4) 100%);
  backdrop-filter: blur(10px);
}

.dropdown-group {
  margin-bottom: 1.5rem;
}

.dropdown-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #004d00;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-group select {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  border: 2px solid rgba(129, 199, 132, 0.5);
  background: rgba(255, 255, 255, 0.8);
  font-family: inherit;
  font-size: 0.95rem;
  color: #1b5e20;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232e7d32' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  transition: all 0.3s ease;
}

.dropdown-group select:focus {
  border-color: #2e7d32;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.no-product-selected {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  border: 2px dashed #81c784;
  margin-bottom: 1.5rem;
  color: #4caf50;
  font-weight: 600;
  font-size: 0.95rem;
}

.no-product-selected i {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Add to Cart Button */
.btn-add-to-cart {
  background: linear-gradient(135deg, #ff8f00, #ff6d00);
  border: none;
  width: 100%;
  padding: 0.8rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.3);
}

.btn-add-to-cart:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  transform: translateY(-2px);
}

.btn-add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #999;
}

/* Cart Container */
.cart-container {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 2px solid #c8e6c9;
  backdrop-filter: blur(10px);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #c8e6c9;
}

.cart-header h3 {
  color: #004d00;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.btn-clear-cart {
  background: #ff4444;
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-clear-cart:hover {
  background: #cc0000;
  transform: scale(1.05);
}

/* Cart Items */
.cart-items {
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(200, 230, 201, 0.3);
  border-radius: 15px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(129, 199, 132, 0.3);
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: rgba(200, 230, 201, 0.5);
  border-color: #66bb6a;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid white;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 700;
  color: #1b5e20;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.cart-item-price {
  color: #4caf50;
  font-size: 0.8rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 1px solid #66bb6a;
  color: #2e7d32;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-qty-btn:hover {
  background: #66bb6a;
  color: white;
}

.cart-item-qty {
  font-weight: 700;
  min-width: 25px;
  text-align: center;
  color: #004d00;
}

.cart-item-total {
  font-weight: 800;
  color: #2e7d32;
  font-size: 1rem;
  min-width: 60px;
  text-align: right;
}

.cart-item-remove {
  color: #ff4444;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  padding: 0.2rem;
}

.cart-item-remove:hover {
  transform: scale(1.2);
  color: #cc0000;
}

/* Cart Summary */
.cart-summary {
  background: #f1f8e9;
  border-radius: 15px;
  padding: 1rem;
  border: 1px solid #c8e6c9;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: #1b5e20;
}

.cart-grand-total {
  font-size: 1.3rem;
  font-weight: 800;
  color: #2e7d32;
  border-top: 2px solid #c8e6c9;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

/* Empty Cart Message */
.cart-empty {
  text-align: center;
  padding: 2rem;
  color: #81c784;
}

.cart-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cart-empty p {
  font-size: 0.9rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #004d00;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  border: 2px solid rgba(129, 199, 132, 0.5);
  background: rgba(255, 255, 255, 0.6);
  color: #1b5e20;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2e7d32;
  background: rgba(255, 255, 255, 0.9);
}

.form-row {
  display: flex;
  gap: 0.8rem;
}

.form-row .form-group {
  flex: 1;
}

textarea {
  resize: vertical;
  min-height: 70px;
}

.btn-order {
  background: linear-gradient(135deg, #4caf50, #2e7d32, #1b5e20);
  border: none;
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.5rem 0 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.btn-order:hover:not(:disabled) {
  background: linear-gradient(135deg, #66bb6a, #4caf50, #2e7d32);
  transform: translateY(-2px);
}

.btn-order:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #999;
}

.guarantee {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.guarantee span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.3rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(129, 199, 132, 0.4);
}

/* Responsive Cart */
@media screen and (max-width: 480px) {
  .cart-item {
    flex-wrap: wrap;
  }
  
  .cart-item-img {
    width: 50px;
    height: 50px;
  }
  
  .cart-item-controls {
    width: 100%;
    justify-content: space-between;
    margin-top: 0.5rem;
  }
}