/* Hararah Gifts - Storefront styles v1.2.4 */

#hh-gifts-cart,
#hh-gifts-pdp-meter,
#hh-gifts-modal {
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#hh-gifts-cart {
  color: #f7efe5;
  margin: 14px auto 18px;
  max-width: 1380px;
  padding: 0 16px;
}

#hh-gifts-cart .hh-card {
  background: #111;
  border: 1px solid rgba(192, 155, 123, .26);
  border-radius: 10px;
  padding: 14px 16px 16px;
  box-shadow: none;
}

#hh-gifts-cart .hh-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
}

#hh-gifts-cart .hh-title {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

#hh-gifts-cart .hh-status {
  color: #e8b860;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

#hh-gifts-cart .hh-meter,
#hh-gifts-pdp-meter .hh-meter {
  position: relative;
  margin: 8px 6px 18px;
  padding-top: 16px;
  padding-bottom: 30px;
}

#hh-gifts-cart .hh-track,
#hh-gifts-pdp-meter .hh-track {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 5px;
  background: #2a2a2a;
  border-radius: 999px;
}

#hh-gifts-cart .hh-fill,
#hh-gifts-pdp-meter .hh-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #ea4d24, #e8b860);
  border-radius: 999px;
  transition: width .28s ease;
}

#hh-gifts-cart .hh-pin,
#hh-gifts-pdp-meter .hh-pin {
  position: absolute;
  top: 0;
  width: 92px;
  transform: translateX(-50%);
  text-align: center;
}

#hh-gifts-cart .hh-pin.hh-first,
#hh-gifts-pdp-meter .hh-pin.hh-first {
  transform: translateX(0);
  text-align: left;
}

#hh-gifts-cart .hh-pin.hh-first .hh-pin-dot,
#hh-gifts-pdp-meter .hh-pin.hh-first .hh-pin-dot {
  margin-left: 0;
}

#hh-gifts-cart .hh-pin.hh-last,
#hh-gifts-pdp-meter .hh-pin.hh-last {
  transform: translateX(-100%);
  text-align: right;
}

#hh-gifts-cart .hh-pin.hh-last .hh-pin-dot,
#hh-gifts-pdp-meter .hh-pin.hh-last .hh-pin-dot {
  margin-right: 0;
}

#hh-gifts-cart .hh-pin-dot,
#hh-gifts-pdp-meter .hh-pin-dot {
  width: 20px;
  height: 20px;
  margin: 0 auto 5px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #181818;
  border: 1px solid rgba(255,255,255,.18);
  color: #bdb5ad;
  font-size: 10px;
}

#hh-gifts-cart .hh-pin.hh-on .hh-pin-dot,
#hh-gifts-pdp-meter .hh-pin.hh-on .hh-pin-dot {
  background: #ea4d24;
  border-color: #ea4d24;
  color: #fff;
}

#hh-gifts-cart .hh-pin-lbl,
#hh-gifts-pdp-meter .hh-pin-lbl {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

#hh-gifts-cart .hh-pin-val,
#hh-gifts-pdp-meter .hh-pin-val {
  display: block;
  margin-top: 1px;
  color: #9f978e;
  font-size: 10px;
}

#hh-gifts-cart .hh-pin.hh-on .hh-pin-val {
  color: #7abfa3;
}

#hh-gifts-cart .hh-sec {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}

#hh-gifts-cart .hh-sec-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 8px;
}

#hh-gifts-cart .hh-sec-title {
  margin: 0;
  color: #f7efe5;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

#hh-gifts-cart .hh-sec-meta {
  color: #9f978e;
  font-size: 12px;
}

#hh-gifts-cart .hh-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(116px, 1fr));
  gap: 8px;
}

#hh-gifts-cart .hh-tile {
  position: relative;
  min-height: 100px;
  border: 1px solid rgba(192,155,123,.18);
  border-radius: 8px;
  padding: 8px;
  background: #171717;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

#hh-gifts-cart .hh-tile:hover {
  border-color: rgba(234,77,36,.72);
  transform: translateY(-1px);
}

#hh-gifts-cart .hh-tile.hh-on {
  background: rgba(234,77,36,.12);
  border-color: #ea4d24;
}

#hh-gifts-cart .hh-tile.hh-mute {
  opacity: .45;
  cursor: not-allowed;
}

#hh-gifts-cart .hh-tile img {
  display: block;
  width: 100%;
  height: 56px;
  object-fit: contain;
  margin-bottom: 5px;
}

#hh-gifts-cart .hh-tile-ph {
  height: 56px;
  display: grid;
  place-items: center;
  color: #e8b860;
  font-size: 20px;
}

#hh-gifts-cart .hh-tile-lbl {
  color: #f7efe5;
  font-size: 11px;
  line-height: 1.25;
}

#hh-gifts-cart .hh-tile-chk,
#hh-gifts-modal .hh-tile-chk {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  place-items: center;
  background: #ea4d24;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

#hh-gifts-cart .hh-tile.hh-on .hh-tile-chk,
#hh-gifts-modal .hh-tile.hh-on .hh-tile-chk {
  display: grid;
}

#hh-gifts-cart .hh-tier {
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(192,155,123,.18);
  border-radius: 8px;
  background: #171717;
}

#hh-gifts-cart .hh-tier.hh-locked {
  opacity: .68;
}

#hh-gifts-cart .hh-tier.hh-on {
  border-color: rgba(122,191,163,.6);
  background: rgba(122,191,163,.08);
}

#hh-gifts-cart .hh-tier-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #222;
  color: #e8b860;
  font-size: 14px;
}

#hh-gifts-cart .hh-tier-name {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

#hh-gifts-cart .hh-tier-sub {
  margin-top: 2px;
  color: #bdb5ad;
  font-size: 12px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#hh-gifts-cart .hh-btn,
#hh-gifts-cart .hh-btn-link {
  border: 1px solid rgba(234,77,36,.75);
  border-radius: 999px;
  background: #ea4d24;
  color: #fff;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

#hh-gifts-cart .hh-btn-link {
  background: transparent;
  color: #ff754f;
}

#hh-gifts-cart .hh-tier-need {
  color: #e8b860;
  font-size: 12px;
  font-weight: 800;
}

#hh-gifts-pdp-meter {
  margin: 12px 0;
}

#hh-gifts-pdp-meter .hh-pdp {
  background: #111;
  border: 1px solid rgba(192,155,123,.22);
  border-radius: 8px;
  padding: 9px 12px 4px;
  color: #f7efe5;
}

#hh-gifts-pdp-meter .hh-pdp-h {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

#hh-gifts-pdp-meter .hh-pdp-title {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

#hh-gifts-pdp-meter .hh-pdp-sub {
  color: #e8b860;
  font-size: 12px;
  font-weight: 700;
}

#hh-gifts-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 16px;
  background: rgba(0,0,0,.62);
}

#hh-gifts-modal.hh-show {
  display: flex;
}

#hh-gifts-modal .hh-mcard {
  position: relative;
  width: min(560px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  background: #111;
  border: 1px solid rgba(192,155,123,.28);
  border-radius: 10px;
  padding: 18px;
  color: #f7efe5;
}

#hh-gifts-modal .hh-mcard h3 {
  margin: 0 34px 4px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

#hh-gifts-modal .hh-mx {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

#hh-gifts-modal .hh-msub {
  margin: 0 0 12px;
  color: #bdb5ad;
  font-size: 13px;
  line-height: 1.5;
}

#hh-gifts-modal .hh-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(124px, 1fr));
  gap: 9px;
}

#hh-gifts-modal .hh-tile {
  position: relative;
  min-height: 126px;
  padding: 9px;
  background: #171717;
  border: 1px solid rgba(192,155,123,.2);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  text-align: center;
}

#hh-gifts-modal .hh-tile:hover {
  border-color: #ea4d24;
}

#hh-gifts-modal .hh-tile img,
#hh-gifts-modal .hh-tile-ph {
  display: grid;
  place-items: center;
  width: 100%;
  height: 72px;
  object-fit: contain;
  margin-bottom: 7px;
}

#hh-gifts-modal .hh-tile-lbl {
  color: #f7efe5;
  font-size: 12px;
  line-height: 1.3;
}

#hh-gifts-modal .hh-tile-meta {
  margin-top: 3px;
  color: #9f978e;
  font-size: 11px;
}

#hh-gifts-modal .hh-step-h {
  margin: 0 0 9px;
  color: #e8b860;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  #hh-gifts-cart {
    padding: 0 10px;
  }

  #hh-gifts-cart .hh-head,
  #hh-gifts-pdp-meter .hh-pdp-h {
    align-items: flex-start;
    flex-direction: column;
  }

  #hh-gifts-cart .hh-pin,
  #hh-gifts-pdp-meter .hh-pin {
    width: 72px;
  }

  #hh-gifts-cart .hh-pin-lbl,
  #hh-gifts-pdp-meter .hh-pin-lbl {
    font-size: 10px;
  }

  #hh-gifts-cart .hh-tier {
    grid-template-columns: 30px minmax(0,1fr);
  }

  #hh-gifts-cart .hh-tier-cta {
    grid-column: 2;
  }
}

/* v1.2.2 compact cart reward strip */
#hh-gifts-cart {
  max-width: 980px;
  margin: 18px auto 22px;
  padding: 0 12px;
}

#hh-gifts-cart .hh-card.hh-compact {
  background: linear-gradient(180deg, #151515 0%, #101010 100%);
  border: 1px solid rgba(192, 155, 123, .22);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
  padding: 14px 16px;
}

#hh-gifts-cart .hh-compact .hh-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

#hh-gifts-cart .hh-compact .hh-title {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

#hh-gifts-cart .hh-compact .hh-status {
  color: #e8b860;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

#hh-gifts-cart .hh-compact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

#hh-gifts-cart .hh-slim-meter {
  margin: 0 0 8px;
}

#hh-gifts-cart .hh-slim-track {
  height: 6px;
  overflow: hidden;
  background: #2a2a2a;
  border-radius: 999px;
}

#hh-gifts-cart .hh-slim-fill {
  height: 100%;
  background: linear-gradient(90deg, #ea4d24, #e8b860);
  border-radius: inherit;
}

#hh-gifts-cart .hh-slim-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
  color: #a9a19a;
  font-size: 12px;
}

#hh-gifts-cart .hh-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

#hh-gifts-cart .hh-chip {
  max-width: 100%;
  padding: 6px 9px;
  overflow: hidden;
  color: #f7efe5;
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
}

#hh-gifts-cart .hh-chip.hh-empty {
  color: #9f978e;
}

#hh-gifts-cart .hh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  min-width: 220px;
}

#hh-gifts-cart .hh-actions .hh-btn,
#hh-gifts-cart .hh-actions .hh-btn-link {
  min-height: 36px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
  line-height: 36px;
  border-radius: 999px;
}

#hh-gifts-cart .hh-actions .hh-btn {
  color: #fff;
  background: #ea4d24;
  border: 1px solid #ea4d24;
}

#hh-gifts-cart .hh-actions .hh-btn-link {
  color: #f7efe5;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .24);
}

#hh-gifts-pdp-meter {
  max-width: 760px;
  margin: 12px 0 18px;
}

#hh-gifts-pdp-meter .hh-pdp {
  padding: 10px 12px;
  background: rgba(17, 17, 17, .92);
  border-radius: 8px;
}

#hh-gifts-pdp-meter .hh-meter {
  margin: 7px 8px 24px;
}

@media (max-width: 760px) {
  #hh-gifts-cart .hh-compact-grid {
    grid-template-columns: 1fr;
  }

  #hh-gifts-cart .hh-compact .hh-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  #hh-gifts-cart .hh-compact .hh-status {
    white-space: normal;
  }

  #hh-gifts-cart .hh-actions {
    justify-content: flex-start;
    min-width: 0;
  }
}

/* v1.2.3 liquid glass polish */
#hh-gifts-cart .hh-card.hh-compact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, .56), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(232, 184, 96, .22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .58), rgba(255, 250, 240, .24));
  border: 1px solid rgba(150, 116, 70, .25);
  box-shadow: 0 18px 42px rgba(74, 45, 18, .12), inset 0 1px 0 rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}

#hh-gifts-cart .hh-card.hh-compact:before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, .52), transparent 38%, rgba(255, 255, 255, .22));
  opacity: .65;
}

#hh-gifts-cart .hh-card.hh-compact > * {
  position: relative;
}

#hh-gifts-cart .hh-compact .hh-title {
  color: #1f1711;
  letter-spacing: 0;
}

#hh-gifts-cart .hh-compact .hh-status {
  color: #9b6d25;
}

#hh-gifts-cart .hh-compact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 22px;
}

#hh-gifts-cart .hh-slim-track {
  background: rgba(66, 48, 32, .13);
  box-shadow: inset 0 1px 1px rgba(66, 48, 32, .16);
}

#hh-gifts-cart .hh-slim-fill {
  background: linear-gradient(90deg, #e9542b, #c99b45);
}

#hh-gifts-cart .hh-slim-meta {
  color: #685a4a;
}

#hh-gifts-cart .hh-chip {
  color: #2b2118;
  background: rgba(255, 255, 255, .45);
  border-color: rgba(80, 56, 31, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .46);
}

#hh-gifts-cart .hh-actions {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  min-width: 0;
}

#hh-gifts-cart .hh-tier-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

#hh-gifts-cart .hh-actions .hh-btn,
#hh-gifts-cart .hh-actions .hh-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  height: auto;
  padding: 8px 13px;
  line-height: 1.15;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

#hh-gifts-cart .hh-actions .hh-btn:hover,
#hh-gifts-cart .hh-actions .hh-btn-link:hover {
  transform: translateY(-1px);
}

#hh-gifts-cart .hh-actions .hh-btn-main {
  color: #fff;
  background: linear-gradient(135deg, #f15a31, #c89037);
  border-color: rgba(180, 112, 42, .35);
  box-shadow: 0 10px 22px rgba(190, 91, 37, .22);
}

#hh-gifts-cart .hh-actions .hh-btn-link {
  flex-direction: column;
  gap: 3px;
  color: #2b2118;
  background: rgba(255, 255, 255, .38);
  border-color: rgba(80, 56, 31, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}

#hh-gifts-cart .hh-actions .hh-btn-link span {
  font-size: 12px;
  font-weight: 900;
}

#hh-gifts-cart .hh-actions .hh-btn-link small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #76634e;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 900px) {
  #hh-gifts-cart .hh-compact-grid,
  #hh-gifts-cart .hh-actions {
    grid-template-columns: 1fr;
  }

  #hh-gifts-cart .hh-tier-actions {
    grid-template-columns: 1fr;
  }
}

/* v1.2.4 product page liquid glass meter */
#hh-gifts-pdp-meter {
  width: 100%;
  max-width: none;
  margin: 12px 0 16px;
}

#hh-gifts-pdp-meter .hh-pdp {
  position: relative;
  overflow: hidden;
  padding: 12px 14px 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .5), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(201, 155, 69, .22), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, .58), rgba(255, 250, 240, .26));
  border: 1px solid rgba(150, 116, 70, .24);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(74, 45, 18, .11), inset 0 1px 0 rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}

#hh-gifts-pdp-meter .hh-pdp:before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, .42), transparent 42%, rgba(255, 255, 255, .18));
}

#hh-gifts-pdp-meter .hh-pdp > * {
  position: relative;
}

#hh-gifts-pdp-meter .hh-pdp-h {
  align-items: center;
  margin-bottom: 8px;
}

#hh-gifts-pdp-meter .hh-pdp-title {
  color: #241a12;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

#hh-gifts-pdp-meter .hh-pdp-sub {
  color: #9b6d25;
  font-size: 11px;
  font-weight: 900;
}

#hh-gifts-pdp-meter .hh-meter {
  margin: 0 8px 26px;
  padding-top: 13px;
}

#hh-gifts-pdp-meter .hh-track {
  top: 13px;
  height: 5px;
  background: rgba(66, 48, 32, .13);
  box-shadow: inset 0 1px 1px rgba(66, 48, 32, .16);
}

#hh-gifts-pdp-meter .hh-fill {
  background: linear-gradient(90deg, #e9542b, #c99b45);
}

#hh-gifts-pdp-meter .hh-pin {
  width: 82px;
}

#hh-gifts-pdp-meter .hh-pin-dot {
  width: 16px;
  height: 16px;
  margin-bottom: 4px;
  color: #fff;
  background: linear-gradient(135deg, #f15a31, #c89037);
  border-color: rgba(176, 123, 46, .28);
  box-shadow: 0 5px 13px rgba(137, 86, 33, .16);
}

#hh-gifts-pdp-meter .hh-pin-lbl {
  color: #2b2118;
  font-size: 10px;
  line-height: 1.15;
}

#hh-gifts-pdp-meter .hh-pin-val,
#hh-gifts-pdp-meter .hh-pin.hh-on .hh-pin-val {
  color: #786753;
  font-size: 10px;
}

@media (max-width: 760px) {
  #hh-gifts-pdp-meter .hh-pdp {
    padding: 11px 12px 14px;
  }

  #hh-gifts-pdp-meter .hh-pdp-h {
    align-items: flex-start;
    gap: 4px;
  }

  #hh-gifts-pdp-meter .hh-pin {
    width: 68px;
  }
}

/* v1.2.6 cart-width alignment + Arabiva palette */
#hh-gifts-cart {
  width: 100%;
  max-width: none;
  margin: 18px 0 30px;
  padding: 0;
}

#hh-gifts-cart .hh-card.hh-compact {
  width: 100%;
  background:
    radial-gradient(circle at 8% 8%, rgba(255,255,255,.72), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #fbf4e7 100%);
  border: 1px solid #e1d2b8;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(84, 60, 32, .10), inset 0 1px 0 rgba(255,255,255,.86);
}

#hh-gifts-cart .hh-compact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
}

#hh-gifts-cart .hh-compact .hh-title,
#hh-gifts-cart .hh-chip,
#hh-gifts-cart .hh-actions .hh-btn-link {
  color: #2d2419;
}

#hh-gifts-cart .hh-compact .hh-status,
#hh-gifts-cart .hh-slim-meta strong {
  color: #9b6d25;
}

#hh-gifts-cart .hh-slim-fill,
#hh-gifts-pdp-meter .hh-fill {
  background: linear-gradient(90deg, #c99142, #8a5f2b);
}

#hh-gifts-cart .hh-actions .hh-btn-main {
  background: linear-gradient(135deg, #b9863f, #8a5f2b);
  border-color: rgba(137, 94, 43, .48);
  box-shadow: 0 10px 22px rgba(137, 94, 43, .18);
}

#hh-gifts-cart .hh-actions .hh-btn-link {
  background: rgba(255, 255, 255, .58);
  border-color: rgba(137, 94, 43, .20);
}

#hh-gifts-cart .hh-actions .hh-btn-link small {
  color: #6e5c46;
}

#hh-gifts-cart .hh-pin-dot i,
#hh-gifts-cart .hh-tier-icon i,
#hh-gifts-pdp-meter .hh-pin-dot i {
  line-height: 1;
}

@media (max-width: 900px) {
  #hh-gifts-cart .hh-compact-grid {
    grid-template-columns: 1fr;
  }
}
