/*!***************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/cart/cart.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************/
.cart-page {
  padding: 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f5f5f5;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.cart-header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.cart-count {
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  margin-left: 0.5rem;
}

.empty-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #003d7a;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.empty-cart-btn:hover {
  background-color: #f0f5fa;
}

.empty-cart-btn svg {
  width: 18px;
  height: 18px;
}

.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 2rem auto;
}

.empty-icon {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-icon svg {
  width: 180px;
  height: 180px;
}

.empty-cart h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #333;
}

.empty-cart p {
  color: #6c757d;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.empty-cart .btn {
  background: #003d7a;
  color: white;
  padding: 0.875rem 3rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.empty-cart .btn:hover {
  background: #002a55;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 61, 122, 0.3);
}

.cart-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  grid-gap: 1.25rem;
  gap: 1.25rem;
  padding: 0 1rem;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: background-color 0.2s ease;
}

.cart-item:hover {
  background-color: #fafafa;
}

.item-image {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.placeholder-icon {
  font-size: 3rem;
}

.item-info {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.item-title {
  font-size: 1rem;
  font-weight: 500;
  color: #2b2b2b;
  line-height: 1.5;
  margin: 0;
}

.item-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.current-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
}

.discount-badge {
  background-color: #16a34a;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.original-price {
  font-size: 0.875rem;
  color: #8b8b8b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.strikethrough {
  text-decoration: line-through;
  font-weight: 500;
}

.tax-info {
  color: #999;
  font-size: 0.8rem;
}

.delivery-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00a699;
  font-size: 0.875rem;
  font-weight: 500;
}

.delivery-info svg {
  flex-shrink: 0;
}

.item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  overflow: hidden;
  background: white;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: white;
  cursor: pointer;
  font-weight: bold;
  color: #4b5563;
  transition: background-color 0.2s ease;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background-color: #f5f5f5;
}

.qty-display {
  width: 44px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border-left: 1px solid #d1d5db;
  border-right: 1px solid #d1d5db;
  padding: 0.35rem 0;
}

.action-buttons {
  display: flex;
  gap: 0.75rem;
}

.wishlist-btn,
.remove-btn {
  background: white;
  border: 1px solid #d1d5db;
  color: #003d7a;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.wishlist-btn:hover,
.remove-btn:hover {
  color: #002a55;
  border-color: #003d7a;
  background: #f5f8ff;
  text-decoration: none;
}

.cart-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
}

.coupon-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.coupon-section:hover {
  background-color: #fafafa;
}

.coupon-section svg:first-child {
  flex-shrink: 0;
}

.coupon-section > span {
  flex: 1 1;
}

.coupon-section svg:last-child {
  flex-shrink: 0;
}

.payment-summary {
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
}

.payment-summary h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 1.25rem 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.summary-row span:first-child {
  color: #666;
}

.summary-row span:last-child {
  color: #000;
  font-weight: 500;
}

.discount-row {
  color: #22c55e;
}

.discount-row span {
  color: #22c55e;
}

.discount-amount {
  font-weight: 600;
}

.free-delivery {
  color: #00A699 !important;
  font-weight: 600 !important;
}

.total-row {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.total-row span {
  font-weight: 700 !important;
  color: #000 !important;
}

.total-amount {
  font-size: 1.25rem !important;
}

.checkout-btn {
  width: 100%;
  padding: 0.9rem;
  background: #0b2f6b;
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: #002a55;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 61, 122, 0.3);
}

.trust-badges {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 8px;
}

.trust-badges svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.trust-text {
  flex: 1 1;
}

.trust-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .cart-container {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    position: static;
    order: 2;
  }

  .cart-items {
    order: 1;
  }
}

@media (max-width: 768px) {
  .cart-page {
    padding: 1rem 0;
  }

  .cart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cart-header h1 {
    font-size: 1.25rem;
  }

  .empty-cart-btn {
    align-self: flex-end;
  }

  .cart-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .item-image {
    width: 100%;
    height: 200px;
  }

  .item-info {
    width: 100%;
  }

  .item-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .item-quantity {
    width: 140px;
  }

  .action-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .empty-icon svg {
    width: 120px;
    height: 120px;
  }

  .empty-cart h2 {
    font-size: 1.25rem;
  }

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

