.ag-cart-trigger {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: #111827;
  cursor: pointer;
}

.ag-cart-trigger:hover {
  color: #000;
}

.ag-cart-trigger:focus-visible,
.ag-cart-close:focus-visible,
.ag-cart-quantity button:focus-visible,
.ag-cart-remove:focus-visible,
.ag-cart-checkout:focus-visible,
.ag-cart-continue:focus-visible,
.ag-cart-empty a:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 3px;
}

.ag-cart-count {
  position: absolute;
  top: 1px;
  right: -1px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.ag-cart-backdrop {
  position: fixed;
  z-index: 1000000;
  inset: 0;
  background: rgba(17, 24, 39, .52);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.ag-cart-backdrop[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.ag-cart-drawer {
  position: fixed;
  z-index: 1000001;
  top: 0;
  right: 0;
  display: flex;
  width: min(450px, 100%);
  height: 100dvh;
  flex-direction: column;
  background: #fff;
  color: #111827;
  box-shadow: -20px 0 48px rgba(17, 24, 39, .14);
  font-family: Arial, sans-serif;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .28s ease, visibility .28s ease;
}

.ag-cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
  visibility: visible;
}

body.ag-cart-open {
  overflow: hidden;
}

.ag-cart-header {
  display: flex;
  min-height: 78px;
  padding: 18px 24px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
}

.ag-cart-header h2 {
  margin: 0;
  font-family: var(--theme-font-headings, Arial, sans-serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.ag-cart-close {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: #111827;
}

.ag-cart-delivery {
  margin: 0;
  padding: 12px 20px;
  background: #eff8eb;
  color: #367c3b;
  font-size: .88rem;
  text-align: center;
}

.ag-cart-content {
  display: flex;
  min-height: 0;
  padding: 24px;
  flex: 1;
  flex-direction: column;
  overflow-y: auto;
}

.ag-cart-empty {
  margin: auto 0;
  text-align: center;
}

.ag-cart-empty svg {
  margin-bottom: 18px;
  color: #6b7280;
}

.ag-cart-empty h3 {
  margin: 0 0 8px;
  font-family: var(--theme-font-headings, Arial, sans-serif);
  font-size: 1.4rem;
}

.ag-cart-empty p {
  max-width: 290px;
  margin: 0 auto 24px;
  color: #6b7280;
  font-size: .92rem;
}

.ag-cart-empty a,
.ag-cart-checkout {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  border-radius: 5px;
  background: #000;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.ag-cart-product {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.ag-cart-product > img {
  width: 104px;
  height: 104px;
  border-radius: 6px;
  background: #f7f7f5;
  object-fit: cover;
}

.ag-cart-product-copy {
  min-width: 0;
}

.ag-cart-product-title {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
}

.ag-cart-product-title strong {
  font-family: var(--theme-font-headings, Arial, sans-serif);
  font-size: 1.18rem;
}

.ag-cart-product-title span {
  flex-shrink: 0;
  font-size: .92rem;
  font-weight: 700;
}

.ag-cart-product-copy > small {
  display: block;
  margin-top: 3px;
  color: #6b7280;
}

.ag-cart-product-actions {
  display: flex;
  margin-top: 20px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.ag-cart-quantity {
  display: grid;
  grid-template-columns: 34px 32px 34px;
  height: 36px;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  text-align: center;
}

.ag-cart-quantity button {
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 1.1rem;
}

.ag-cart-quantity span {
  font-size: .88rem;
}

.ag-cart-remove,
.ag-cart-continue {
  padding: 3px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #6b7280;
  font-size: .78rem;
}

.ag-cart-summary {
  margin-top: auto;
  padding-top: 24px;
}

.ag-cart-summary > div {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
}

.ag-cart-summary > small {
  display: block;
  margin-bottom: 18px;
  color: #6b7280;
  font-size: .77rem;
}

.ag-cart-checkout {
  width: 100%;
}

.ag-cart-checkout:disabled {
  cursor: wait;
  opacity: .7;
}

.ag-cart-continue {
  display: block;
  margin: 15px auto 0;
  color: #111827;
}

@media (max-width: 767px) {
  nav.navbar .nav-sidelinks > li:last-child {
    width: 42px;
    height: 42px;
  }

  .ag-cart-trigger {
    width: 42px;
    height: 42px;
  }

  .ag-cart-content {
    padding: 20px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ag-cart-backdrop,
  .ag-cart-drawer {
    transition: none;
  }
}
