/** Shopify CDN: Minification failed

Line 480:15 Expected "]" to go with "["

**/
/* General Cart Styles */
.custom-cart-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #FFFDF6;
}

.custom-cart-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #343330;
}

.custom-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
}

@media (max-width: 768px) {
  .custom-cart-layout {
    grid-template-columns: 1fr;
  }
}

/* Cart Items Container */
.custom-cart-items-container {
  background-color: #FFFDF6;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.custom-cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E5E5;
  font-weight: 500;
  color: #343330;
}

.custom-cart-items {
  margin-top: 20px;
}

/* Cart Item */
.custom-cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 40px;
  padding: 20px 0;
  border-bottom: 1px solid #E5E5E5;
  align-items: center;
}

.custom-cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.custom-cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 13px;
  overflow: hidden;
}

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

.custom-cart-item-details {
  flex: 1;
  max-width: 235px;
}

.custom-cart-item-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #343330;
}

.custom-cart-item-variant {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Quantity Controls */
/* .custom-cart-item-quantity {
  display: flex;
  align-items: center;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  width: 100px;
  height: 40px;
}

.custom-quantity-button {
  background: none;
  border: none; 
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.custom-quantity-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.custom-quantity-input {
  width: 36px;
  border: none;
  text-align: center;
  font-size: 14px;
  -moz-appearance: textfield;
}

.custom-quantity-input::-webkit-outer-spin-button,
.custom-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} */

/* Price and Remove Button */
.custom-cart-item-price {
  font-weight: 600;
  color: #343330;
      text-align: center;
    margin-right: 15px;
}

.custom-cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart Note */
.custom-cart-note {
  margin-top: 30px;
}

.custom-cart-note label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #343330;
}

.custom-cart-note textarea {
  width: 100%;
  height: 100px;
  padding: 12px;
  border: 1px solid #222222;
  border-radius: 8px;
  resize: vertical;
  font-family: inherit;
  background: transparent;
}

/* Cart Summary */
.custom-cart-sidebar {
  position: sticky;
  top: 20px;
}

.custom-cart-summary {
  background-color: #E8E0C6;
    border-radius: 16px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.custom-cart-summary-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #343330;
}

.custom-cart-summary-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0 0 24px;
}

.custom-cart-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 24px;
}

.custom-cart-total-label {
  font-weight: 500;
  color: #343330;
}

.custom-cart-total-price {
  font-weight: 600;
  color: #343330;
}

/* App Block Styling */
.custom-cart-blocks {
  margin-top: 24px;
}

.custom-cart-app-block {
  margin-bottom: 24px;
}

/* Style the Bird app elements to match our design */
.custom-cart-app-block .bird-container {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.custom-cart-app-block .bird-container input[type="text"],
.custom-cart-app-block .bird-container input[type="date"],
.custom-cart-app-block .bird-container input[type="time"],
.custom-cart-app-block .bird-container select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  font-family: inherit; 
  margin-bottom: 16px;
}

.custom-cart-app-block .bird-container label {
  display: block; 
  margin-bottom: 8px;
  font-weight: 500;
  color: #343330; 
}

.custom-cart-app-block .bird-container button {
  background-color: #F5F5F5;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
}

/* Checkout Button */
.custom-cart-checkout {
  margin-bottom: 16px;
}

.custom-checkout-button {
  width: 100%;
  height: 48px;
  background-color: #343330;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}

.custom-checkout-button:hover {
  background-color: #222222;
}

/* Payment Buttons */
.custom-cart-payment-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-shop-pay-button {
  height: 48px;
  background-color: #5A31F4;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.custom-shop-pay-button span {
  font-weight: 500;
}

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

.custom-cart-empty h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #343330;
}

.custom-cart-empty p {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}

.custom-cart-empty-button {
  display: inline-block;
}

.custom-cart-empty-button .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #019145 !important;
  color: #FFFFFF;
  border-radius: 12px !important;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.custom-cart-empty-button .btn:hover {
  background-color: #222222;
}
.btn-arrow-icon svg{
  margin-top: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .custom-cart-header {
    grid-template-columns: 2fr 1fr 1fr 40px;
  }
  
  .custom-cart-item {
    grid-template-columns: 2fr 1fr 1fr 40px;
  }
  
  .custom-cart-item-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .custom-cart-item-image {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .custom-cart-header {
    display: none;
  }
  
  .custom-cart-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .custom-cart-item-info {
    flex-direction: row;
  }
  
  .custom-cart-item-quantity,
  .custom-cart-item-price,
  .custom-cart-item-remove {
    justify-self: flex-start;
  }
  
    .custom-cart-item-remove {
        position: absolute;
        top: 20px;
        right: -11px;
    }
  .custom-cart-item-title{
    width: 80% !important;
  }
}

.quantity-wrapper {
  display: flex;
  justify-content: center;
  margin-right: 55px;
}

.quantity-selector {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 166px;
  height: 34px;
}

.quantity-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 34px;
  border: 1px solid #222222;
  background: none;
  cursor: pointer;
}

.quantity-down {
  border-radius: 8px 0 0 8px;
}

.quantity-up {
  border-radius: 0 8px 8px 0;
}

.quantity-input {
  width: 56px;
  height: 34px;
  border: 1px solid #222222;
  border-left: none;
  border-right: none;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  -moz-appearance: textfield;
  background-color: #FFFDF6;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.total_span{
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
input.bcdp-widget-input{
      background: transparent;
  border: 1px solid #222222;
  border-radius: 8px;
}
.bcdp-icon-wrap{
  background: transparent !important;
}
svg[Attributes Style] {
    width: 18;
    height: 19;
    fill: #00000 !important;
}
.custom-checkout-button{
  background: #019145;
  border-radius: 12px;
}

