:root {
  --primary-color: #000;
  --secondary-color: #666;
  --border-color: #e5e5e5;
  --hover-color: #f5f5f5;
  --light-gray: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary-color);
  background: var(--light-gray);
}

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

/* Header */
.checkout-header {
  background: white;
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.continue-shopping-btn {
  background: white;
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
  background: var(--hover-color);
}

/* Checkout Progress Bar */
.checkout-progress {
  background: white;
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: white;
  position: relative;
}

.progress-step.active .step-circle {
  border-color: var(--primary-color);
  border-width: 2px;
  background: white;
}

.progress-step.active .step-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color);
}

.step-label {
  font-size: 12px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-step.active .step-label {
  color: var(--primary-color);
  font-weight: 600;
}

.progress-line {
  width: 80px;
  height: 1px;
  background: transparent;
  border-top: 2px dashed var(--border-color);
  margin: 0 8px;
  margin-top: -16px;
}

/* Main Content */
.checkout-main {
  padding: 24px 0;
  min-height: 60vh;
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* Cart Section */
.cart-section {
  background: white;
  border-radius: 0;
  padding: 24px;
}

.cart-title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.products-section {
  margin-top: 20px;
}

.products-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.package-section {
  margin-bottom: 20px;
}

.package-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.package-notice {
  font-size: 12px;
  color: var(--secondary-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.cart-item-image {
  width: 100px;
  height: 130px;
  object-fit: cover;
  border-radius: 0;
  background: var(--light-gray);
  flex-shrink: 0;
}

.cart-item-images-dual {
  display: flex;
  gap: 4px;
  width: 100px;
  height: 130px;
  flex-shrink: 0;
}

.cart-item-images-dual .cart-item-image {
  width: 48px;
  height: 130px;
  object-fit: cover;
  border-radius: 0;
}

.cart-item-images-dual video {
  width: 48px;
  height: 130px;
  object-fit: cover;
  border-radius: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-variant {
  font-size: 11px;
  color: var(--secondary-color);
  margin-bottom: 1px;
  text-transform: uppercase;
  line-height: 1.3;
}

.cart-item-actions-top {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.delete-btn,
.edit-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 6px;
  color: var(--secondary-color);
  font-size: 12px;
  transition: color 0.3s ease;
}

.delete-btn:hover,
.edit-btn:hover {
  color: var(--primary-color);
}

.gift-wrap-option {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.gift-checkbox {
  width: 14px;
  height: 14px;
  cursor: pointer;
  flex-shrink: 0;
}

.gift-wrap-option label {
  font-size: 11px;
  color: var(--primary-color);
  cursor: pointer;
  line-height: 1.2;
}

.delivery-info {
  margin-top: 4px;
}

.delivery-cost {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.delivery-price {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
}

.delivery-time,
.delivery-type {
  font-size: 11px;
  color: var(--secondary-color);
}

.cart-item-price-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-item-old-price {
  font-size: 12px;
  color: var(--secondary-color);
  text-decoration: line-through;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

.item-total {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 6px;
}

.cashback-info-item {
  margin-top: 4px;
}

.cashback-info-item span {
  font-size: 11px;
  color: #22c55e;
  font-weight: 500;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 3px;
  margin-top: 4px;
  width: fit-content;
}

.quantity-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--primary-color);
  transition: background 0.2s ease;
}

.quantity-btn:hover {
  background: var(--hover-color);
}

.quantity-value {
  min-width: 32px;
  text-align: center;
  font-size: 13px;
}

.remove-item-btn {
  background: none;
  border: none;
  color: var(--secondary-color);
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

.remove-item-btn:hover {
  color: var(--primary-color);
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.empty-cart p {
  font-size: 14px;
  color: var(--secondary-color);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.choose-products-btn {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.choose-products-btn:hover {
  background: #333;
}

/* Order Summary */
.order-summary-section {
  position: sticky;
  top: 20px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-summary {
  background: white;
  border-radius: 0;
  padding: 20px;
  border: 1px solid var(--border-color);
}

.order-summary > h3 {
  display: none;
}

.summary-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--secondary-color);
}

.summary-row.total {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  margin-top: 4px;
}


/* Cashback Info */
.cashback-info {
  margin: 12px 0;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 0;
  text-align: center;
}

.cashback-info p {
  font-size: 11px;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.cashback-info span {
  font-size: 14px;
  font-weight: 600;
  color: #22c55e;
}

/* Finalize Button */
.finalize-btn {
  width: 100%;
  padding: 14px;
  background: #11AB6B;
  color: white;
  border: none;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 12px;
}

.finalize-btn:hover {
  background: #0d8a56;
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cancel-btn,
.save-btn,
.confirm-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cancel-btn {
  background: white;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
}

.cancel-btn:hover {
  background: var(--hover-color);
}

.save-btn {
  background: var(--light-gray);
  color: var(--primary-color);
}

.save-btn:hover {
  background: var(--border-color);
}

.confirm-btn {
  background: var(--primary-color);
  color: white;
}

.confirm-btn:hover {
  background: #333;
}

/* Delivery Modal */
.delivery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.delivery-modal.active {
  display: flex;
}

.delivery-modal-content {
  background: white;
  border-radius: 0;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.delivery-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

.delivery-modal-header h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-color);
}

.close-delivery-modal-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--secondary-color);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.close-delivery-modal-btn:hover {
  color: var(--primary-color);
}

.delivery-options {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.delivery-option {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delivery-option:hover {
  border-color: var(--primary-color);
}

.delivery-option input[type="radio"] {
  margin-right: 16px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.delivery-option input[type="radio"]:checked + .delivery-option-content {
  color: var(--primary-color);
}

.delivery-option:has(input[type="radio"]:checked) {
  border-color: var(--primary-color);
  background: var(--hover-color);
}

.delivery-option-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.delivery-option-content > div:first-child {
  flex: 1;
}

.delivery-option-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.delivery-option-details {
  font-size: 14px;
  color: var(--secondary-color);
}

.delivery-option-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-left: 16px;
}

.delivery-modal-actions {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-top: 1px solid var(--border-color);
}

.back-delivery-btn,
.confirm-delivery-btn {
  flex: 1;
  padding: 16px;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.back-delivery-btn {
  background: white;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
}

.back-delivery-btn:hover {
  background: var(--hover-color);
}

.confirm-delivery-btn {
  background: #11AB6B;
  color: white;
}

.confirm-delivery-btn:hover {
  background: #0d8a56;
}

/* Responsive Delivery Modal */
@media (max-width: 768px) {
  .delivery-modal {
    padding: 0;
  }
  
  .delivery-modal-content {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .delivery-modal-header {
    padding: 16px;
  }
  
  .delivery-modal-header h2 {
    font-size: 20px;
  }
  
  .delivery-options {
    padding: 16px;
    gap: 12px;
  }
  
  .delivery-option {
    padding: 12px;
  }
  
  .delivery-option-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .delivery-option-price {
    align-self: flex-end;
    font-size: 16px;
  }
  
  .delivery-modal-actions {
    padding: 16px;
    flex-direction: column;
  }
  
  .back-delivery-btn,
  .confirm-delivery-btn {
    width: 100%;
  }
}

/* Footer */
.checkout-footer {
  background: white;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 40px;
  margin-top: 60px;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.footer-info-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-info-item p {
  font-size: 14px;
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 16px;
}

.payment-cards {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.card-logo {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 500;
}

.card-icon {
  font-size: 32px;
  color: var(--primary-color);
  display: inline-block;
  line-height: 1;
}

.other-payment {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--secondary-color);
}

.pix-logo {
  height: 24px;
  width: auto;
}

.pix-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

.security-cert {
  font-size: 12px;
  text-transform: lowercase;
  color: var(--secondary-color);
  font-weight: 500;
}

.company-info {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.company-info p {
  font-size: 12px;
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Payment Modal */
.payment-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.payment-modal.active {
  display: flex;
}

.payment-modal-content {
  background: white;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.payment-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

.payment-modal-header h2 {
  font-size: 24px;
  font-weight: 600;
}

.close-modal-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--secondary-color);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal-btn:hover {
  color: var(--primary-color);
}

.payment-methods {
  display: flex;
  gap: 12px;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

.payment-method-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 2px solid var(--border-color);
  background: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.payment-method-btn:hover {
  border-color: var(--primary-color);
}

.payment-method-btn.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
}

.payment-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  line-height: 1;
  color: inherit;
  vertical-align: middle;
}

.payment-icon svg {
  width: 100%;
  height: 100%;
}

.payment-method-btn.active .payment-icon {
  color: white;
}

.payment-method-btn.active .payment-icon svg {
  fill: white;
}

.info-icon i {
  font-size: 24px;
  display: inline-block;
  line-height: 1;
}

.payment-form {
  padding: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.generate-pix-btn {
  width: 100%;
  padding: 16px;
  background: #38AB6B;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.generate-pix-btn:hover {
  background: #2d8a56;
}

.pix-display-area {
  margin-top: 24px;
  text-align: center;
}

.pix-header h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.pix-timer {
  color: var(--secondary-color);
  font-size: 14px;
  margin-bottom: 24px;
}

.pix-qrcode-container {
  margin: 24px 0;
  display: flex;
  justify-content: center;
}

.pix-qrcode {
  max-width: 300px;
  width: 100%;
  height: auto;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  background: white;
}

.pix-copy-container {
  display: flex;
  gap: 8px;
  margin: 24px 0;
}

.pix-copy-input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 12px;
  font-family: "Manrope", sans-serif;
}

.pix-copy-btn {
  padding: 12px 24px;
  background: #ffc700;
  color: var(--primary-color);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.pix-copy-btn:hover {
  background: #ffb700;
}

.pix-details {
  text-align: left;
  background: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
  margin-top: 24px;
}

.pix-details p {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--primary-color);
}

.pix-details p:last-child {
  margin-bottom: 0;
}

/* Card Payment Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group select:hover {
  border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 968px) {
  .checkout-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .order-summary-section {
    position: static;
  }
  
  .checkout-main {
    padding: 16px 0;
  }
  
  .cart-section {
    padding: 16px;
  }
  
  .cart-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .products-section {
    margin-top: 16px;
  }
  
  .package-section {
    margin-bottom: 16px;
  }
  
  .cart-item {
    gap: 12px;
    padding: 12px 0;
  }
  
  .cart-item-image {
    width: 70px;
    height: 90px;
  }
  
  .cart-item-title {
    font-size: 13px;
  }
  
  .cart-item-variant {
    font-size: 10px;
  }
  
  .delivery-info {
    margin-top: 2px;
  }
  
  .delivery-price {
    font-size: 11px;
  }
  
  .delivery-time,
  .delivery-type {
    font-size: 10px;
  }
  
  .cart-item-price {
    font-size: 14px;
  }
  
  .cart-item-old-price {
    font-size: 11px;
  }
  
  .item-total {
    font-size: 13px;
  }
  
  .cashback-info-item span {
    font-size: 10px;
  }
  
  .gift-wrap-option label {
    font-size: 10px;
  }
  
  .order-summary {
    padding: 16px;
  }
  
  .summary-content {
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .summary-row {
    font-size: 12px;
  }
  
  .summary-row.total {
    font-size: 15px;
    padding-top: 10px;
  }
  
  .cashback-info {
    margin: 10px 0;
    padding: 8px;
  }
  
  .cashback-info p {
    font-size: 10px;
  }
  
  .cashback-info span {
    font-size: 13px;
  }
  
  .finalize-btn {
    padding: 12px;
    font-size: 12px;
    margin-top: 10px;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .continue-shopping-btn {
    width: 100%;
    padding: 10px;
    font-size: 12px;
  }

  .progress-steps {
    flex-wrap: wrap;
    gap: 4px;
    padding: 12px 0;
  }

  .progress-line {
    width: 30px;
    margin: 0 3px;
  }

  .step-label {
    font-size: 9px;
  }

  .checkout-main {
    padding: 12px 0;
  }
  
  .cart-section {
    padding: 12px;
  }
  
  .cart-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .products-section {
    margin-top: 12px;
  }
  
  .products-title {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  .package-section {
    margin-bottom: 12px;
  }
  
  .package-title {
    font-size: 11px;
    margin-bottom: 4px;
  }
  
  .package-notice {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .cart-item {
    gap: 10px;
    padding: 10px 0;
  }

  .cart-item-image {
    width: 60px;
    height: 75px;
  }
  
  .cart-item-details {
    gap: 4px;
  }
  
  .cart-item-title {
    font-size: 12px;
    margin-bottom: 2px;
  }
  
  .cart-item-variant {
    font-size: 9px;
    margin-bottom: 0;
  }
  
  .cart-item-actions-top {
    gap: 6px;
    margin-top: 4px;
  }
  
  .delete-btn,
  .edit-btn {
    font-size: 11px;
    padding: 2px 4px;
  }
  
  .gift-wrap-option {
    gap: 4px;
    margin-top: 2px;
  }
  
  .gift-checkbox {
    width: 12px;
    height: 12px;
  }
  
  .gift-wrap-option label {
    font-size: 9px;
  }
  
  .delivery-info {
    margin-top: 2px;
  }
  
  .delivery-cost {
    gap: 1px;
  }
  
  .delivery-price {
    font-size: 10px;
  }
  
  .delivery-time,
  .delivery-type {
    font-size: 9px;
  }
  
  .cart-item-price-container {
    gap: 6px;
    margin-top: 4px;
  }
  
  .cart-item-old-price {
    font-size: 10px;
  }
  
  .cart-item-price {
    font-size: 13px;
  }
  
  .quantity-control {
    gap: 4px;
    padding: 2px;
    margin-top: 2px;
  }
  
  .quantity-btn {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
  
  .quantity-value {
    min-width: 28px;
    font-size: 12px;
  }
  
  .item-total {
    font-size: 12px;
    margin-top: 4px;
  }
  
  .cashback-info-item {
    margin-top: 2px;
  }
  
  .cashback-info-item span {
    font-size: 9px;
  }
  
  .order-summary-section {
    gap: 12px;
  }
  
  .order-summary {
    padding: 12px;
  }
  
  .summary-content {
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .summary-row {
    font-size: 11px;
  }
  
  .summary-row.total {
    font-size: 14px;
    padding-top: 8px;
    margin-top: 2px;
  }
  
  .cashback-info {
    margin: 8px 0;
    padding: 8px;
  }
  
  .cashback-info p {
    font-size: 9px;
  }
  
  .cashback-info span {
    font-size: 12px;
  }
  
  .finalize-btn {
    padding: 12px;
    font-size: 11px;
    margin-top: 8px;
  }

  .summary-actions {
    gap: 8px;
  }

  .cancel-btn,
  .save-btn,
  .confirm-btn {
    width: 100%;
    padding: 10px;
    font-size: 12px;
  }
}


