#cgm-dynamic-cart-panel {
  right: 0;
  width: min(767px, 100%);
  max-height: calc(100vh - var(--cgm-panel-top, 0px) - var(--cgm-panel-bottom, 0px));
  max-height: calc(100dvh - var(--cgm-panel-top, 0px) - var(--cgm-panel-bottom, 0px));
  display: flex;
  position: fixed;
  z-index: 999999;
  background: #fff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  box-sizing: border-box;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(var(--cgm-panel-hidden-x, 100%));
  transition:
    transform 300ms ease,
    opacity 200ms ease,
    visibility 0s linear 300ms;
}

#cgm-dynamic-cart-panel[data-horizontal-position="left"] {
  left: 0;
  right: auto;
  --cgm-panel-hidden-x: -100%;
}

#cgm-dynamic-cart-panel[data-horizontal-position="center"] {
  left: 50%;
  right: auto;
  --cgm-panel-visible-x: -50%;
  --cgm-panel-hidden-x: calc(-50vw - 100%);
}

#cgm-dynamic-cart-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(var(--cgm-panel-visible-x, 0px));
  transition:
    transform 300ms ease,
    opacity 200ms ease,
    visibility 0s;
}

.cgm-cart-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  background: #e7dddd;
  border-bottom: 1px solid #f7f4ef;
  padding-left: 16px;
  flex-shrink: 0;
}

.cgm-cart-title {
  font-size: 20px;
  font-weight: 700;
  color: #3f2919;
  margin: 0;
}

.cgm-cart-close-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  color: #3f2919;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
  padding-right: 30px;
}

.cgm-cart-close-btn:hover {
  background: #e4e4e4;
  color: #000;
}

#cgm-dynamic-cart-panel .cgm-cart-content-wrapper {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  font-size: 1.2em;
}

#cgm-dynamic-cart-panel .woocommerce-mini-cart {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  scrollbar-gutter: stable;
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
         * Producto:
         *
         * [ imagen ][ nombre             ]
         * [ imagen ][ - cantidad + precio ]
         */
#cgm-dynamic-cart-panel .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 8px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

#cgm-dynamic-cart-panel .cgm-cart-product-image {
  grid-column: 1;
  grid-row: 1 / 3;
  display: block;
  width: 88px;
  height: 88px;
  overflow: hidden;
  border-radius: 6px;
  background: #f7f4ef;
}

#cgm-dynamic-cart-panel .cgm-cart-product-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  float: none !important;
  object-fit: cover;
  transform: scale(1.4);
  transform-origin: center;
}

#cgm-dynamic-cart-panel .cgm-cart-product-name {
  grid-column: 2;
  grid-row: 1;
  display: block;
  min-width: 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

#cgm-dynamic-cart-panel .cgm-cart-product-name:hover {
  color: #b37550;
}

#cgm-dynamic-cart-panel .cgm-cart-product-meta {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

#cgm-dynamic-cart-panel .cgm-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4f4f4;
  margin: 0;
  border: 1px solid #dcdcdc;
  border-radius: 28px;
}

#cgm-dynamic-cart-panel .cgm-qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  background: #f4f4f4;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  color: #b37550;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

#cgm-dynamic-cart-panel .cgm-qty-btn:hover {
  background: #e0e0e0;
}

#cgm-dynamic-cart-panel .cgm-qty-count {
  min-width: 1.4em;
  text-align: center;
  font-weight: 700;
}

#cgm-dynamic-cart-panel .cgm-qty-price {
  margin-left: 4px;
  font-weight: 600;
  white-space: nowrap;
}

#cgm-dynamic-cart-panel.cgm-busy .cgm-qty-btn {
  pointer-events: none;
  opacity: 0.5;
}

#cgm-dynamic-cart-panel .remove_from_cart_button,
#cgm-dynamic-cart-panel .woocommerce-mini-cart__buttons,
#cgm-dynamic-cart-panel p.buttons {
  display: none !important;
}

#cgm-dynamic-cart-panel .woocommerce-mini-cart__total {
  flex: 0 0 auto;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #eee;
  text-align: right;
  font-size: 1.2em;
}

#cgm-dynamic-cart-panel .cgm-cart-footer-btn {
  padding: 8px;
  background: #f7f7f7;
  border-top: 1px solid #eee;
  text-align: center;
  flex-shrink: 0;
}

#cgm-dynamic-cart-panel .cgm-cart-footer-btn a {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 12px;
  background: #3f2919;
  color: #e7dddd;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

#cgm-dynamic-cart-panel .cgm-cart-footer-btn a:hover {
  background: #555;
}

@media (max-width: 480px) {
  #cgm-dynamic-cart-panel .cgm-cart-content-wrapper {
    padding: 14px;
  }

  #cgm-dynamic-cart-panel .woocommerce-mini-cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 12px;
  }

  #cgm-dynamic-cart-panel .cgm-cart-product-image {
    width: 72px;
    height: 72px;
  }
  #cgm-dynamic-cart-panel .cgm-cart-product-name {
    font-size: 14px;
  }
  #cgm-dynamic-cart-panel .cgm-qty-btn {
    width: 32px;
    height: 32px;
  }
}

#cgm-dynamic-cart-panel .cgm-minicart-notice {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: #555;
}

#cgm-dynamic-cart-panel .cgm-cart-footer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#cgm-dynamic-cart-panel .cgm-cart-footer-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid #3f2919;
  line-height: 1.3;
}

#cgm-dynamic-cart-panel .cgm-cart-footer-actions .cgm-cart-view-cart {
  background: transparent;
  color: #3f2919;
}

#cgm-dynamic-cart-panel .cgm-cart-footer-actions .cgm-cart-view-cart:hover {
  background: #e7dddd;
}

@media (max-width: 360px) {
  #cgm-dynamic-cart-panel .cgm-cart-footer-actions {
    grid-template-columns: 1fr;
  }
}
