/* ====================================
   SHOPPING CART PAGE STYLES
   ==================================== */

.pigee-cart-page {
  background: #f9fafb;
  min-height: 100vh;
  padding: 40px 0;
}

.pigee-cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cart Header */
.pigee-cart-header {
  margin-bottom: 32px;
}

.pigee-cart-header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.pigee-cart-count {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Cart Grid Layout */
.pigee-cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

/* Cart Items */
.pigee-cart-items-wrapper {
  background: white;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.pigee-cart-item {
  display: grid;
  grid-template-columns: auto 80px 1fr auto;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
}

.pigee-cart-item:last-child {
  border-bottom: none;
}

.pigee-cart-item-select {
  display: flex;
  align-items: center;
}

.pigee-item-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0064A8;
}

.pigee-cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
}

.pigee-cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pigee-cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pigee-cart-item-name {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

.pigee-cart-item-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.pigee-cart-item-quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.pigee-qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pigee-qty-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.pigee-qty-input {
  width: 50px;
  height: 32px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  text-align: center;
  font-size: 0.875rem;
  color: #111827;
}

.pigee-qty-input:focus {
  outline: none;
  border-color: #0064A8;
}

.pigee-cart-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.pigee-price-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.pigee-remove-item {
  background: none;
  border: none;
  color: #dc2626;
  cursor: pointer;
  padding: 4px;
  transition: all 0.2s;
  border-radius: 4px;
}

.pigee-remove-item:hover {
  background: #fee2e2;
}

/* Cart Summary Sidebar */
.pigee-cart-summary {
  background: white;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  position: sticky;
  top: 20px;
}

.pigee-cart-summary h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 20px;
}

.pigee-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 0.875rem;
}

.pigee-summary-label {
  color: #6b7280;
}

.pigee-summary-value {
  color: #111827;
  font-weight: 500;
}

.pigee-summary-total {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.pigee-summary-total .pigee-summary-value {
  font-size: 1.25rem;
  color: #0064A8;
}

.pigee-checkout-btn {
  width: 100%;
  padding: 14px 24px;
  background: #0064A8;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 20px;
}

.pigee-checkout-btn:hover:not(:disabled) {
  background: #00539a;
}

.pigee-checkout-btn:disabled {
  background: #d1d5db;
  cursor: not-allowed;
}

.pigee-continue-shopping {
  display: block;
  text-align: center;
  color: #0064A8;
  text-decoration: none;
  font-size: 0.875rem;
  margin-top: 16px;
  font-weight: 500;
  transition: color 0.2s;
}

.pigee-continue-shopping:hover {
  color: #00539a;
}

/* Empty Cart */
.pigee-empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.pigee-empty-icon {
  font-size: 64px;
  margin-bottom: 24px;
  opacity: 0.5;
}

.pigee-empty-cart h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.pigee-empty-cart p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 24px;
}

.pigee-btn-primary {
  padding: 12px 24px;
  background: #0064A8;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}

.pigee-btn-primary:hover {
  background: #00539a;
}

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

  .pigee-cart-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .pigee-cart-item {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .pigee-cart-item-select {
    grid-row: 1;
  }

  .pigee-cart-item-image {
    grid-row: 1 / 3;
  }

  .pigee-cart-item-details {
    grid-column: 2;
  }

  .pigee-cart-item-price {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

@media (max-width: 480px) {
  .pigee-cart-item-quantity-controls {
    flex-wrap: wrap;
  }

  .pigee-qty-btn,
  .pigee-qty-input {
    height: 28px;
  }

  .pigee-qty-btn {
    width: 28px;
  }
}