/* Accessibility */
.cgbt-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cgbt-size-select:focus,
.cgbt-add-to-cart:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.cgcu-drawer {
  display: none;
}
.cgcu-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: opacity;
  background-color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;      
}

.cgcu-drawer__header {
  padding: 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
}

.cgcu-drawer__header-top {
  padding: 16px calc(24px - 10px) 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cgcu-drawer__title {
  font-size: 16px;
  font-weight: 700;
}

.cgcu-drawer__title span {
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
}

.cgcu-drawer__close {
  margin: 0;
  padding: 8px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  margin-left: 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.cgcu-drawer__close:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 1px;
}

.cgcu-drawer__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  max-width: 500px;
  z-index: 9999;
  overflow: auto;
  transition: transform 0.3s;
  will-change: transform;
  background-color: #fff;
  display: flex;
  flex-direction: column; 
  -webkit-transform: translate3d(103%, 0, 0);
  transform: translate3d(103%, 0, 0); /* extra 3% because of box-shadow */ 
  -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
  box-shadow: 0 2px 6px #777;
}

.cgcu-drawer__announcement-bar {
  margin-bottom: -1px;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 24px;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cgcu-drawer__announcement-messages {
  position: relative;
  width: 100%;
  height: 20px;
  overflow: hidden;
}

.cgcu-drawer__announcement-message {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  line-height: 20px;
  text-align: center;
  visibility: hidden;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}

.cgcu-drawer__announcement-message.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cgcu-drawer__announcement-message:not(.active) {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cgcu-drawer__content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cgcu-drawer__footer {
  flex-shrink: 0;
  padding: 20px 24px;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.cgcu-drawer__footer-summary {
  margin-bottom: 16px;
}

.cgcu-drawer__footer-summary dt,
.cgcu-drawer__footer-summary dd {
  display: inline-block;
  margin: 0;
  padding: 4px 0;
}

.cgcu-drawer__footer-summary dt {
  float: left;
  clear: left;
  width: 60%;
}

.cgcu-drawer__footer-summary dd {
  float: right;
  width: 40%;
  text-align: right;
}

.cgcu-drawer__footer-summary::after {
  content: "";
  display: table;
  clear: both;
}

.cgcu-drawer__footer-label {
  font-size: 14px;
  color: #595858;
}

.cgcu-drawer__footer-value {
  font-size: 14px;
  font-weight: 700;
}

.cgcu-drawer__footer-savings {
  color: #059669;
}

.cgcu-drawer__checkout-btn {
  width: 100%;
  padding: 16px;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cgcu-drawer__checkout-text {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.cgcu-drawer__lock-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cgcu-drawer__checkout-arrow {
  position: absolute;
  left: 100%;
  margin-left: 8px;
  top: 50%;
  opacity: 0;
  transform: translateX(-10px) translateY(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
}

.cgcu-drawer__checkout-btn:hover {
  background-color: #000;
}

.cgcu-drawer__checkout-btn:hover .cgcu-drawer__checkout-text {
  transform: translateX(-8px);
}

.cgcu-drawer__checkout-btn:hover .cgcu-drawer__lock-icon {
  transform: translateX(-8px);
}

.cgcu-drawer__checkout-btn:hover .cgcu-drawer__checkout-arrow {
  opacity: 1;
  transform: translateX(0) translateY(-50%);
}

.cgcu-drawer__checkout-btn:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 2px;
}

.cgcu-drawer__lock-icon {
  width: 16px;
  height: 16px;
  color: white;
}

.cgcu-drawer__guarantee {
  font-size: 12px;
  color: #595858;
  text-align: center;
  margin: 0;
}

/* Promo Code Section */
.cgcu-drawer__promo-section {
  margin-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.cgcu-drawer__promo-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.cgcu-drawer__promo-toggle:hover span {
  text-decoration: underline;
}

.cgcu-drawer__promo-toggle:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 2px;
  border-radius: 4px;
}

.cgcu-drawer__promo-caret {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #222;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.cgcu-drawer__promo-toggle[aria-expanded="true"] .cgcu-drawer__promo-caret {
  transform: rotate(180deg);
}

.cgcu-drawer__promo-input-wrapper {
  overflow: hidden;
}

.cgcu-drawer__promo-input-wrapper.is-fully-visible {
  overflow: visible;
}

.cgcu-drawer__promo-input-container {
  display: flex;
  flex-direction: column;
  gap: 0px;
  height: 0;
  transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.25s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 0;
  padding-bottom: 0;
}

.cgcu-drawer__promo-input-container.is-visible {
  padding-top: 8px;
}

.cgcu-drawer__promo-error {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 8px 12px;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  width: 100%;
}

.cgcu-drawer__promo-error-icon {
  color: #dc2626;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.cgcu-drawer__promo-error-text {
  flex: 1;
  font-size: 12px;
  color: #991b1b;
}

.cgcu-drawer__promo-error-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #dc2626;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.cgcu-drawer__promo-error-close:hover {
  background-color: #fecaca;
}

.cgcu-drawer__promo-error-close:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

.cgcu-drawer__promo-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cgcu-drawer__promo-input {
  flex: 1;
  padding: 0 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #374151;
  background: #fff;
  transition: border-color 0.2s ease;
  height: 44px;
  box-sizing: border-box;
}

.cgcu-drawer__promo-input:focus {
  outline: none;
  border-color: #999;
}

[data-whatinput="keyboard"] .cgcu-drawer__promo-input:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 2px;
  position: relative;
  z-index: 1;
}

.cgcu-drawer__promo-input::placeholder {
  color: #9ca3af;
}

.cgcu-drawer__promo-apply-btn {
  padding: 0 28px;
  background: #f3f3f3;
  color: #333;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease, width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
  height: 44px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  width: auto;
}

.cgcu-drawer__promo-apply-btn:hover {
  background: #e2e2e2;
}

.cgcu-drawer__promo-apply-btn--loading .cgcu-drawer__promo-apply-btn-text {
  display: none;
}

.cgcu-drawer__promo-apply-btn--loading .cgcu-drawer__promo-apply-btn-spinner {
  display: block !important;
  width: 16px;
  height: 16px;
  border: 2px solid #333;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 0.65s linear infinite;
}

.cgcu-drawer__promo-apply-btn:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 2px;
  position: relative;
  z-index: 1;
}

/* Applied Coupons */
.cgcu-drawer__applied-coupons {
  margin-bottom: 8px;
}

.cgcu-drawer__applied-coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cgcu-drawer__applied-coupon-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 8px;
  background-color: #f0fdf4;
  border-radius: 6px;
  flex-shrink: 0;
}

.cgcu-drawer__applied-coupon-icon {
  color: #059669;
  flex-shrink: 0;
}

.cgcu-drawer__applied-coupon-code {
  font-size: 12px;
  color: #059669;
}

.cgcu-drawer__applied-coupon-amount {
  font-size: 14px;
  font-weight: 700;
  color: #059669;
  flex-shrink: 0;
}

.cgcu-drawer__applied-coupon-remove {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #059669;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.cgcu-drawer__applied-coupon-remove:hover {
  color: #016847;
}

.cgcu-drawer__applied-coupon-remove:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

.cgcu-drawer__testimonial {
  position: relative;
  top: -1px;
  padding: 32px 24px 28px 24px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  margin-top: auto;
}

.cgcu-drawer__upsells + .cgcu-drawer__testimonial {
  margin-top: 0;
}

.cgcu-drawer__stars {
  display: flex;
  justify-content: center;
  gap: 1.5px;
  margin-bottom: 8px;
}

.cgcu-drawer__stars svg {
  width: 14px;
  height: 14px;
  fill: #b8bfca;
}

.cgcu-drawer__testimonial-text {
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
  margin: 0 0 8px 0;
}

.cgcu-drawer__testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  font-style: normal;
}

.cgcu-drawer__check-icon {
  stroke: #059669;
}

/* Upsells Section */
.cgcu-drawer__upsells {
  background: #f9f9f9;
  margin-top: auto;
  padding: 24px 0 32px 0;
  border-top: 1px solid #e5e7eb;
}

.cgcu-drawer__upsells-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 24px;
}

.cgcu-drawer__upsells-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.cgcu-drawer__upsells-controls {
  display: flex;
  gap: 8px;
}

.cgcu-drawer__upsells-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
}

.cgcu-drawer__upsells-arrow:hover {
  border-color: #9ca3af;
  color: #374151;
}

.cgcu-drawer__upsells-arrow:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 2px;
}

.cgcu-drawer__upsells-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cgcu-drawer__upsells-container {
  overflow: hidden;
}

.cgcu-drawer__upsells-track {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding-right: 24px;
}

.cgcu-drawer__upsells-track::before {
  content: '';
  flex: 0 0 24px;
}

.cgcu-drawer__upsells-track::-webkit-scrollbar {
  display: none;
}

.cgcu-drawer__upsell-item {
  flex: 0 0 calc(100% - 52px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  scroll-snap-align: start;
  scroll-margin-left: 24px;
}

.cgcu-drawer__upsell-content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cgcu-drawer__upsell-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin: 0;
}

.cgcu-drawer__upsell-image a {
  display: block;
}

.cgcu-drawer__upsell-image a:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 2px;
  border-radius: 6px;
}

.cgcu-drawer__upsell-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  background-color: #f5f3f3;
}

.cgcu-drawer__upsell-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4px;
}

.cgcu-drawer__upsell-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cgcu-drawer__upsell-stars {
  display: flex;
  gap: 1px;
}

.cgcu-drawer__upsell-stars .star {
  fill: #d1d5db;
}

.cgcu-drawer__upsell-reviews {
  font-size: 11px;
  color: #595858;
}

.cgcu-drawer__upsell-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cgcu-drawer__upsell-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 13.6px;
}

.cgcu-drawer__upsell-size-row {
  width: 100%;
}

.cgcu-drawer__upsell-size-select {
  width: 100%;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}

.cgcu-drawer__upsell-size-select:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 2px;
}

.cgcu-drawer__upsell-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

.cgcu-drawer__upsell-title a {
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
}

.cgcu-drawer__upsell-title a:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 2px;
}

.cgcu-drawer__upsell-price {
  font-size: 13px;
  color: #1f2937;
}

.cgcu-drawer__upsell-sale-price {
  color: #059669;
  font-weight: 700;
}

.cgcu-drawer__upsell-original-price {
  font-size: 12px;
  color: #6b7280;
  text-decoration: line-through;
}

.cgcu-drawer__upsell-btn {
  padding: 8px 16px;
  background: #059669;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.cgcu-drawer__upsell-btn:hover {
  background: #047857;
}

.cgcu-drawer__upsell-btn:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 2px;
}

.cgcu-drawer__upsell-btn--loading .cgcu-drawer__upsell-btn-text {
  display: none;
}

.cgcu-drawer__upsell-btn--loading .cgcu-drawer__upsell-btn-spinner {
  display: block !important;
  width: 12px;
  height: 12px;
  border: 1px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 0.65s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cgcu-drawer__upsell-btn--loading {
  pointer-events: none;
}

.cgcu-drawer__upsell-btn {
  min-width: 60px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Collapsed upsells design */
.cgcu-drawer__upsells--collapsed .cgcu-drawer__upsells-controls {
  display: none;
}

.cgcu-drawer__upsells--collapsed .cgcu-drawer__upsells-track {
  flex-direction: column;
  gap: 12px;
  padding-left: 24px;
}

.cgcu-drawer__upsells--collapsed .cgcu-drawer__upsells-track::before {
  display: none;
}

.cgcu-drawer__upsells--collapsed .cgcu-drawer__upsell-item {
  flex: none;
  width: 100%;
  scroll-margin-left: 0;
}

.cgcu-drawer__cart-item {
  display: flex;
  gap: 16px;
  padding: 24px 24px;
  border-top: 1px solid #e5e7eb;
}

.cgcu-drawer__cart-item:first-child {
  border-top: none;
}

.cgcu-drawer__cart-item-image {
  flex-shrink: 0;
  width: 100px;
}

.cgcu-drawer__cart-item-image a {
  display: block;
}

.cgcu-drawer__cart-item-image a:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 2px;
  border-radius: 6px;
}

.cgcu-drawer__cart-item-image img {
  display: block;
  width: 100%;
  border-radius: 6px;
  background-color: #f5f3f3;
}

.cgcu-drawer__cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4.8px;
}

.cgcu-drawer__cart-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
  display: block;
}

.cgcu-drawer__cart-item-title a {
  color: #1f2937;
  text-decoration: none;
}

.cgcu-drawer__cart-item-title a:focus-visible {
  outline: 2px solid #2491ff;
  outline-offset: 2px;
}

.cgcu-drawer__cart-item-attributes {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cgcu-drawer__cart-item-attribute {
  font-size: 13px;
  color: #595858;
  line-height: 1.3;
}

.cgcu-drawer__cart-item-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Regular price (not on sale) */
.cgcu-drawer__cart-item-current-price {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.cgcu-drawer__cart-item-sale-price {
  font-size: 16px;
  font-weight: 700;
  color: #059669;
}

.cgcu-drawer__cart-item-original-price {
  font-size: 13px;
  color: #828b9b;
  text-decoration: line-through;
}

.cgcu-drawer__cart-item-savings {
  font-size: 11px;
  color: #037b55;
  background: #d1fae5;
  padding: 2px 6px;
  border-radius: 4px;
}

.cgcu-drawer__cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.cgcu-drawer__quantity-controls {
  display: flex;
  align-items: center;
  position: relative;
}

.cgcu-drawer__quantity-btn {
  background: #f9fafb;
  border: 1px solid #d1d5db;
  padding: 8px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: background-color 0.2s;
}

.cgcu-drawer__quantity-btn:hover {
  background: #e5e7eb;
}

.cgcu-drawer__quantity-btn--decrease {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.cgcu-drawer__quantity-btn--increase {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cgcu-drawer__quantity-btn:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid #2491ff;
  outline-offset: 1px;
}

.cgcu-drawer__quantity-input:focus {
  outline: none;
}

/* Only show outline when navigating with keyboard */
[data-whatinput="keyboard"] .cgcu-drawer__quantity-input:focus {
  outline: 2px solid #2491ff;
  outline-offset: 1px;
  z-index: 1;
}

.cgcu-drawer__quantity-btn--decrease:focus-visible {
  border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.cgcu-drawer__quantity-btn--increase:focus-visible {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cgcu-drawer__quantity-input {
  width: 50px;
  height: 34px;
  border-top: 1px solid #d1d5db;
  border-bottom: 1px solid #d1d5db;
  border-left: none;
  border-right: none;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  color: #374151;
  background: white;
  outline: none;
  border-radius: 0; 
  -webkit-border-radius: 0; /* for iOS */
}

.cgcu-drawer__quantity-input::-webkit-outer-spin-button,
.cgcu-drawer__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cgcu-drawer__quantity-input[type=number] {
  -moz-appearance: textfield;
}

.cgcu-drawer__remove-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -8px;
}

.cgcu-drawer__remove-btn:hover {
  background: #fef2f2;
  color: #dc2626;
}

.cgcu-drawer__remove-btn:focus {
  outline: 2px solid #dc2626;
  outline-offset: -1px;
}

.cgcu-drawer--left .cgcu-drawer__wrapper {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.cgcu-drawer.is-active {
  display: block;
}

.cgcu-drawer.is-visible .cgcu-drawer__wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.cgcu-drawer.is-visible .cgcu-drawer__overlay {
  opacity: 0.5;
}

.cgcu-drawer--floating .cgcu-drawer__wrapper {
  margin: 10px;
  border-radius: 12px;
  overflow: hidden;
  height: calc(100% - 20px);
  right: 0;
  width: calc(100% - 20px);
  max-width: calc(500px - 20px);
}

.cgcu-drawer--wide .cgcu-drawer__wrapper {
  max-width: 700px;
}