/* Gift With Purchase — mini-cart drawer (tablet/desktop) and cart page (mobile) */
.gwp-drawer {
  margin: 0;
  padding: 0 0 1rem;
  border-top: 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}

.gwp-drawer__promo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0.75rem 0 0;
}

.gwp-drawer__promo-icon {
  display: flex;
  flex-shrink: 0;
  color: #121212;
}

.gwp-drawer__promo-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.gwp-drawer__description {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.gwp-drawer__error {
  margin: 0 0 0.75rem;
  color: var(--color-error, #c00);
  font-size: 0.8125rem;
}

.gwp-drawer__gifts--carousel {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.gwp-drawer__gifts--single {
  display: flex;
}

.gwp-gift-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(18, 18, 18, 0.12);
  padding: 1rem;
  background: #fff;
}

.gwp-gift-card--drawer {
  flex: 0 0 calc((100% - 0.75rem) / 1.25);
  min-width: 14rem;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 10px;
  border-radius: 0;
  scroll-snap-align: start;
  background: #F2F2F266;
  border: 0.2px solid #00000066;
}

.gwp-drawer__gifts--single .gwp-gift-card--drawer {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.gwp-gift-card__image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f7f7f7;
  flex-shrink: 0;
}

.gwp-gift-card--drawer .gwp-gift-card__image-wrap {
  width: 106px;
  height: 120px;
  aspect-ratio: 1;
  border-radius: 0;
  border-radius: 0;
  background: #F0F0F0;
}

.gwp-gift-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
  object-position: bottom;
}

.gwp-gift-card__image--placeholder {
  width: 100%;
  height: 100%;
  background: #efefef;
}

.gwp-gift-card__body,
.gwp-gift-card__content {
  display: flex;
  flex: 1;
  min-width: 0;
}

.gwp-gift-card__body {
  flex-direction: column;
  gap: 0.5rem;
}

.gwp-gift-card--drawer .gwp-gift-card__content {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 5px;
}

.gwp-gift-card--drawer .gwp-gift-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gwp-gift-card__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
}

.gwp-gift-card--drawer .gwp-gift-card__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 10px;
  display: block;
}
.gwp-gift-card__title-name{
  display: inline-block;
  padding-right: 3px;
}
.gwp-gift-card__title-color {
  display: inline-block;
  font-weight: 400;
  text-transform: none;
}

.gwp-gift-card__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0.125rem 0 0;
}

.gwp-gift-card__swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 2px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.gwp-gift-card__swatch[aria-pressed='true'] {
  border-color: #121212;
}

.gwp-gift-card__swatch img {
  display: block;
  border-radius: 50%;
}

.gwp-gift-card__swatch-fallback {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #efefef;
}

.gwp-gift-card__swatch--disabled,
.gwp-gift-card__swatch:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.gwp-drawer[data-gwp-selection-locked] .gwp-gift-card__swatch {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.gwp-gift-card__price {
  margin: 14px 0 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gwp-gift-card__price-compare {
  color: #828282;
  font-size: 14px;
}

.gwp-gift-card__price-free {
  font-weight: 500;
}

.gwp-gift-card__price-free--promo {
  color: #E40404;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}

.gwp-gift-card__variant-select {
  width: 100%;
  padding: 0.5rem 0.25rem;
  border: 0;
  border-bottom: 1px solid var(--color-1, #121212);
  background: transparent;
  font: inherit;
  font-size: 0.8125rem;
}

.gwp-gift-card__status {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-error, #c00);
}

.gwp-gift-card__select {
  width: 100%;
  margin-top: auto;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
}
.gwp_price_atc_blck{
  display: flex;
  align-items: center;
}
.gwp-gift-card--drawer .gwp-gift-card__select {
  width: auto;
  flex-shrink: 0;
  min-width: 80px;
  padding: 3.5px 23px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 14px 0 0 auto;
  width: 130px;
  height: 25px;
}

.gwp-gift-card__select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gwp-drawer[data-gwp-selection-locked] .gwp-gift-card__select {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Cart line item — GWP gift */
.line-item--gwp-gift .line-item__qty-container {
  display: none;
}

.line-item--gwp-gift .line-item__price-container--gwp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.line-item--gwp-gift .line-item__price-gwp-compare {
  color: #828282;
  font-size: 0.8125rem;
}

.line-item--gwp-gift .line-item__price-gwp-free {
  color: #E40404;
  font-weight: 700;
  font-size: 0.8125rem;
}

@media screen and (max-width: 767px) {
  .gwp-drawer__promo-text{
    font-size: 0.875rem;
  }
  .gwp-gift-card--drawer .gwp-gift-card__image-wrap {
    width: 86px;
    height: 97px;
  }
  .gwp-gift-card--drawer .gwp-gift-card__content{
    margin-top: 2px;
  }
  .gwp-gift-card--drawer .gwp-gift-card__title{
    margin-bottom: 0px;
    font-size: 13px;
  }
  .gwp-gift-card__swatches{
    gap: 4px;
  }
  .gwp-gift-card__swatch{
    width: 27px;
    height: 27px;
  }
  .gwp-gift-card__price-free--promo{
    font-size: 14px;
  }
  .gwp-gift-card__price-compare {
    font-size: 12px;
  }
  .gwp-gift-card--drawer .gwp-gift-card__select{
    padding: 3.5px 10px;
    width: 122px;
    font-size: 11px;
    height: 25px;
  }
}
@media screen and (max-width: 480px) {
  .currency-inr .gwp-gift-card__price{
    gap: 4px;
  }
  .currency-inr .gwp-gift-card__price-free--promo {
    font-size: 12px;
  }
  .gwp-gift-card__price-compare {
    font-size: 10px;
  }
  .gwp-gift-card--drawer .gwp-gift-card__select{
    width: 110px;
  }
}

@media screen and (max-width: 389px) {
  .gwp-drawer__promo-text {
    font-size: 13px;
}
  .gwp-gift-card--drawer{
    padding: 8px;
  }
  .gwp-gift-card--drawer .gwp-gift-card__image-wrap {
    width: 80px;
    height: 95px;
  }
  .gwp-gift-card--drawer .gwp-gift-card__title{
    font-size: 12px;
  }
  .gwp-gift-card__swatch {
    width: 24px;
    height: 24px;
  }
  .gwp-gift-card--drawer .gwp-gift-card__select {
    padding: 3.5px 5px;
    width: 80px;
    font-size: 10px;
    height: 25px;
  }
  .gwp-gift-card__price-free--promo {
    font-size: 12px;
  }
  .gwp-gift-card__price{
    gap: 5px;
  }
  .gwp-gift-card__price-compare {
    font-size: 10px;
}
}

.gwp-drawer-host--cart-page {
  display: none;
}

@media (max-width: 767px) {
  .gwp-drawer-host--cart-page {
    display: block;
  }
}

