/** Shopify CDN: Minification failed

Line 89:0 Unexpected "}"

**/
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 360px; max-width: 90vw;
  height: 100%;
  background: #ffffff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.35s ease-in-out;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  overflow-y: auto;
}

.cart-drawer.open {
  transform: translateX(0);
}

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

.cart-drawer-header h2 {
  margin: 0; font-size: 1.3rem;
  color: #014d4e;
}

.cart-drawer-header button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #ff4300;
}

.cart-item {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1rem;
  align-items: center;
}

.cart-item img {
  width: 60px; height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
  color: #333;
}

.cart-drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cart-drawer-footer .btn {
  display: block;
  text-align: center;
  background: #ff4300;
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.cart-drawer-footer .btn:hover {
  background: #e43d00;
}

}
#cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  z-index: 9999;
}
.cart-drawer-panel {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  padding: 1rem 1.2rem 6rem 1.2rem;
}
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.cart-drawer-close {
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}
.cart-drawer-content {
  padding-top: 1rem;
}
.cart-item {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}
.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}
.cart-title {
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.cart-price {
  color: #26a69a;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.cart-qty-input {
  width: 60px;
  padding: 0.4rem;
  margin-right: 0.4rem;
}
.cart-remove {
  background: none;
  border: none;
  color: #ff4300;
  font-weight: bold;
  cursor: pointer;
}
.cart-checkout-btn {
  display: block;
  width: 100%;
  background: #26a69a;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 1.5rem;
  text-decoration: none;
}
.cart-checkout-btn:hover {
  background: #ff4300;
}

.cart-drawer-upsell {
  margin-top: 2rem;
}
.cart-drawer-upsell h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.cart-upsell-grid {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.upsell-item {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 0.8rem;
}
.upsell-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}
.upsell-title {
  font-weight: 600;
  font-size: 0.95rem;
}
.upsell-price {
  color: #111;
  font-size: 0.88rem;
}
.add-upsell {
  margin-left: auto;
  background: #26a69a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  font-size: 0.88rem;
  cursor: pointer;
}
.add-upsell:hover {
  background: #ff4300;
}
