/* Zosouq shopping bag — desktop only */

.zs-bag {
  display: none;
  font-family: Inter, "Noto Sans", sans-serif;
  color: #2d2d2d;
  max-width: var(--zs-page, 1180px);
  margin: 0 auto;
  padding: 8px 24px 48px;
}

@media (min-width: 1024px) {
  body.zs-bag-on .zs-bag {
    display: flex;
    gap: 48px;
    align-items: flex-start;
  }

  body.zs-bag-on .zs-bag-hide {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    padding: 0 !important;
    margin: -1px !important;
  }
}

.zs-bag-main {
  flex: 1 1 66%;
  min-width: 0;
}

.zs-bag-side {
  flex: 0 0 32%;
  max-width: 360px;
  padding-left: 28px;
  border-left: 1px solid #ececec;
}

.zs-bag-title {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.32px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 16px;
}

.zs-bag-yay {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #219653;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  padding: 12px 15px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.zs-bag-yay-icon {
  width: 45px;
  height: 18px;
  flex-shrink: 0;
  overflow: hidden;
}

.zs-bag-yay-icon svg {
  width: 45px;
  height: 18px;
  display: block;
}

.zs-bag-free {
  border-radius: 8px;
  overflow: hidden;
  margin: 8px 0 20px;
  cursor: default;
}

.zs-bag-free-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
  background: #f4f4f4;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 16px;
  color: #000;
}

.zs-bag-free-top strong {
  color: #219654;
  font-weight: 600;
}

.zs-bag-express {
  display: inline-flex;
  align-items: center;
  margin: 0 8px;
  padding: 0 8px;
  height: 16px;
  border-radius: 4px;
  background: #219653;
  color: #f2f2f2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  position: relative;
  top: -1px;
}

.zs-bag-need {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  padding: 12px 15px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.zs-bag-need strong {
  font-weight: 700;
  color: #b8f0c8;
}

.zs-ship-nudge {
  margin: 8px 0 12px;
}

.zs-bag-bar-track {
  height: 4px;
  background: #e4e4e4;
  width: 100%;
}

.zs-bag-bar {
  height: 4px;
  background: #219653;
  width: 0;
}

.zs-bag-eta {
  background: #e8f5e9;
  padding: 10px;
  font-size: 12px;
  color: #000;
}

.zs-bag-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  column-gap: 20px;
  row-gap: 8px;
  align-items: start;
  padding: 16px 0 20px;
  position: relative;
  background: #fff;
}

.zs-bag-thumb {
  grid-column: 1;
  grid-row: 1 / span 4;
  position: relative;
  display: block;
  width: 150px;
  overflow: hidden;
  border-radius: 3px;
}

.zs-bag-thumb img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: cover;
  background: #f4f4f4;
}

.zs-bag-left {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 9px;
  font-weight: 600;
  color: #424242;
  background: #fde8e0;
  padding: 2px 6px;
  letter-spacing: 0.3px;
}

.zs-bag-info {
  display: contents;
}

.zs-bag-copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.zs-bag-brand,
.zs-bag-name {
  display: block;
  text-align: left;
  unicode-bidi: isolate;
}

.zs-bag-brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #000;
  line-height: 1.3;
}

.zs-bag-name {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: #828282;
  margin-top: 4px;
}

.zs-bag-ctrls {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
}

.zs-bag-qty {
  display: flex;
  align-items: center;
  width: 70px;
  height: 27px;
  border-radius: 4px;
  background: #ecece4;
}

.zs-bag-qty button,
.zs-bag-qty span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #2d2d2d;
  height: 100%;
  padding: 0;
}

.zs-bag-qty button:disabled {
  opacity: 0.25;
  cursor: default;
}

.zs-bag-price {
  grid-column: 3;
  grid-row: 1;
  text-align: right;
  white-space: nowrap;
  padding-top: 0;
}

.zs-bag-now {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #000;
}

.zs-bag-was {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 2px;
}

.zs-bag-was del {
  font-size: 12px;
  font-weight: 400;
  color: #a2a2a2;
  text-decoration: line-through;
}

.zs-bag-off {
  font-size: 12px;
  font-weight: 700;
  color: #d64045;
}

.zs-bag-nudge {
  grid-column: 2;
  grid-row: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0;
  background: #d64045;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 2px 10px 2px 8px;
  border-radius: 4px;
  width: fit-content;
}

.zs-bag-actions {
  grid-column: 2 / 4;
  grid-row: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  padding-top: 0;
}

.zs-bag-actions button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25px;
  color: #000;
}

.zs-bag-shukran {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.zs-bag-shukran-top {
  padding: 16px 16px 0;
}

.zs-bag-shukran-top p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.zs-bag-shukran-top strong {
  display: block;
  margin: 5px 0 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #b9904b;
}

.zs-bag-shukran-bot {
  background: #e2d0a6;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.zs-bag-shukran-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  color: #2f373c;
}

.zs-bag-star {
  width: 32px;
  height: 32px;
}

.zs-bag-rows {
  font-size: 12px;
  line-height: 16px;
  color: #a2a2a2;
}

.zs-bag-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #a2a2a2;
}

.zs-bag-row span:last-child {
  color: #2d2d2d;
}

.zs-bag-row .zs-bag-free-txt {
  color: #46b275;
}

.zs-bag-row del {
  color: #a2a2a2;
  margin-right: 6px;
}

.zs-bag-hr {
  border: 0;
  border-top: 1px solid #ececec;
  margin: 12px 0 13px;
}

.zs-bag-grand {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.48px;
  color: #2d2d2d;
}

.zs-bag-saved {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 8px;
  border-radius: 3px;
  font-size: 11px;
  line-height: 20px;
  color: #219653;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.zs-bag-cta {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 15px;
  border: 0;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.zs-bag-cta:hover {
  color: #fff;
  opacity: 0.92;
}

html[dir="rtl"] .zs-bag-side {
  padding-left: 0;
  padding-right: 28px;
  border-left: 0;
  border-right: 1px solid #ececec;
}

html[dir="rtl"] .zs-bag-brand,
html[dir="rtl"] .zs-bag-name {
  text-align: right;
}

html[dir="rtl"] .zs-bag-price {
  text-align: left;
}

html[dir="rtl"] .zs-bag-left {
  left: auto;
  right: 0;
}
