/** Shopify CDN: Minification failed

Line 412:47 Unexpected "{"

**/
.drawer {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(var(--color-foreground), 0.5);
  transition: visibility var(--duration-default) ease;
}

.drawer.active {
  visibility: visible;
}

.drawer__inner {
  height: 100%;
  width: 100%;
  max-width: 600px;
  padding: 30px;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-right: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-default) ease;
}

.drawer__inner-empty {
  height: 100%;
  padding: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

.cart-drawer__warnings .cart-drawer__empty-content h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  color: var(--color-black);
}

.cart-drawer__warnings .drawer__close {
  top: 30px;
}

cart-drawer.is-empty .drawer__inner {
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 0;
}

cart-drawer.is-empty .drawer__header {
  display: none;
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
  display: none;
}

.cart-drawer__warnings--has-collection .cart__login-title {
  margin-top: 2.5rem;
}

.drawer.active .drawer__inner {
  transform: translateX(0);
}

.drawer__header {
  position: relative;
  padding: 0 0 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__heading {
  margin: 0;
  font-size: 30px;
  line-height: 38px;
}

.drawer__close {
  display: inline-block;
  padding: 0;
  /* min-width: 4.4rem;
  min-height: 4.4rem; */
  /* box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0); */
  position: absolute;
  top: 8px;
  right: 0px;
  color: rgb(var(--color-foreground));
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.cart-drawer__warnings .drawer__close {
  right: 30px;
}

.drawer__close .svg-wrapper {
  height: 20px;
  width: 20px;
}

.drawer__close .svg-wrapper svg {
  height: 15px;
  width: 15px;
}

.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.drawer__footer {
  border-top: 1px solid #E9E9E9;
  padding: 30px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-drawer__totals-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-drawer__totals-container .cart-drawer__totals-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-drawer__totals-container .cart-drawer__totals-left h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--color-black-deep);
}

.cart-drawer__totals-container .cart-drawer__totals-left p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #767676;
}

.cart-drawer__totals-container .cart-drawer__totals-right span {
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
  color: var(--color-black-deep);
  display: block;
}

.cart-drawer__footer-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-drawer__footer-actions .button-checkout {
  flex: 1;
}

.cart-drawer__footer-actions .button-view-cart {
  border: 1px solid var(--color-black);
}

cart-drawer-items.is-empty + .drawer__footer {
  display: none;
}

.cart-drawer__quick-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-drawer__quick-links .quick-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer__quick-links .quick-link-item svg {
  width: 20px;
  height: 20px;
}

.cart-drawer__quick-links .quick-link-item span {
  display: block;
  font-weight: 500;
  color: var(--color-black-deep);
}

.drawer__footer > details {
  margin-top: -1.5rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.drawer__footer > details[open] {
  padding-bottom: 1.5rem;
}

.drawer__footer summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 2.8rem 1.5rem 0;
}

.drawer__footer > details + .cart-drawer__footer {
  padding-top: 1.5rem;
}

cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cart-drawer__overlay:empty {
  display: block;
}

.cart-drawer__form {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}

.cart-drawer__collection {
  margin: 0 2.5rem 1.5rem;
}

.cart-drawer .drawer__cart-items-wrapper {
  flex-grow: 1;
}

.cart-drawer .cart-items,
.cart-drawer tbody {
  display: block;
  width: 100%;
}

.cart-drawer thead {
  display: inline-table;
  width: 100%;
}

cart-drawer-items {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  flex: 1;
  border-top: 1px solid #E9E9E9;
  padding-top: 30px;
  padding-right: 20px;
}

cart-drawer-items::-webkit-scrollbar {
  width: 6px !important; 
}

cart-drawer-items::-webkit-scrollbar-track {
  background-color: #E5E5E5 !important;
  border-radius: 10px !important;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background-color: #C7C7C7 !important;
  border-radius: 10px !important;
  border: 1px solid transparent !important;
}

cart-drawer-items::-webkit-scrollbar-thumb:hover {
  background-color: #C7C7C7 !important;
}

cart-drawer-items {
  scrollbar-width: thin !important;
  scrollbar-color: #C7C7C7 #E5E5E5 !important;
}

@media screen and (max-height: 650px) {
  cart-drawer-items {
    overflow: visible;
  }

  .drawer__inner {
    overflow: scroll;
  }
}

.cart-drawer .cart-item {
  display: grid;
  grid-template: repeat(2, auto) / repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 0;
}

.cart-drawer .cart-item__media {
  grid-row: 1 / 3;
}

.cart-drawer .cart-item__media .cart-item__link {
  background-color: #f5f5f5;
  border-radius: 14px;
  background-image: url(collection-pattern.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  display: block;
  width: 108px;
  height: 108px;
}

.cart-drawer .cart-item__image {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.cart-drawer .cart-item__nested-line .cart-item__image {
  max-width: 60%;
  float: right;
}

.cart-drawer .cart-items thead {
  margin-bottom: 0.5rem;
}

.cart-drawer .cart-items thead th:first-child,
.cart-drawer .cart-items thead th:last-child {
  width: 0;
  padding: 0;
}

.cart-drawer .cart-items thead th:nth-child(2) {
  width: 50%;
  padding-left: 0;
}

.cart-drawer .cart-items thead tr {
  display: table-row;
  margin-bottom: 0;
}

.cart-drawer .cart-items th {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 32px;
}

.cart-drawer .cart-item .loading__spinner {
  right: 5px;
  padding-top: 2.5rem;
}

.cart-drawer .cart-items td {
  padding-top: 1.7rem;
}

.cart-drawer .cart-items .cart-item__nested-line td:not(.cart-item__quantity) {
  padding-top: 1rem;
}

.cart-drawer .cart-item > td + td {
  padding-left: 0;
}

.cart-drawer .cart-item dl .product-option dt,
.cart-drawer .cart-item dl .product-option dd, {
  font-size: 12px;
  line-height: 20px;
}

.cart-drawer .cart-item dl .product-option dt {
  font-weight: 600;
  color: var(--color-black);
}

.cart-drawer .cart-item dl .product-option dd {
  font-weight: 500;
  color: #767676;
}

.cart-drawer .cart-item__details {
  width: auto;
  grid-column: 2 / 4;
}

.cart-drawer .cart-item__totals {
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.cart-drawer.cart-drawer .cart-item__price-wrapper > *:only-child {
  margin-top: 0;
}

.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 5px;
}

.cart-drawer .unit-price {
  margin-top: 0.6rem;
}

.cart-drawer .cart-items .cart-item__quantity {
  padding-top: 0;
  grid-column: 2 / 5;
}

@media screen and (max-width: 749px) {
  .cart-drawer .cart-item cart-remove-button {
    margin-left: 0;
  }
}

.cart-drawer__footer > * + * {
  margin-top: 1rem;
}

.cart-drawer .totals {
  justify-content: space-between;
}

.cart-drawer .price {
  line-height: 1;
}

.cart-drawer .tax-note {
  margin: 1.2rem 0 2rem auto;
  text-align: left;
}

.cart-drawer .product-option dd {
  word-break: break-word;
}

.cart-drawer details[open] > summary .icon-caret {
  transform: rotate(180deg);
}

.cart-drawer .cart__checkout-button {
  max-width: none;
}

.drawer__footer .cart__dynamic-checkout-buttons {
  max-width: 100%;
}

.drawer__footer #dynamic-checkout-cart ul {
  flex-wrap: wrap !important;
  flex-direction: row !important;
  margin: 0.5rem -0.5rem 0 0 !important;
  gap: 0.5rem;
}

.drawer__footer [data-shopify-buttoncontainer] {
  justify-content: flex-start;
}

.drawer__footer #dynamic-checkout-cart ul > li {
  flex-basis: calc(50% - 0.5rem) !important;
  margin: 0 !important;
}

.drawer__footer #dynamic-checkout-cart ul > li:only-child {
  flex-basis: 100% !important;
  margin-right: 0.5rem !important;
}

@media screen and (min-width: 750px) {
  .drawer__footer #dynamic-checkout-cart ul > li {
    flex-basis: calc(100% / 3 - 0.5rem) !important;
    margin: 0 !important;
  }

  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2) ~ li,
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4) ~ li {
    flex-basis: calc(50% - 0.5rem) !important;
  }
}

cart-drawer-items::-webkit-scrollbar {
  width: 3px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-foreground), 0.7);
  border-radius: 100px;
}

cart-drawer-items::-webkit-scrollbar-track-piece {
  margin-top: 31px;
}

.cart-drawer .quantity-popover-container {
  padding: 0;
}

.cart-drawer .quantity-popover__info.global-settings-popup {
  transform: translateY(0);
  top: 100%;
}

.cart-drawer .cart-item__error {
  margin-top: 0.8rem;
}

.cart-drawer .quantity-popover__info + .cart-item__error {
  margin-top: 0.2rem;
}


.cart-drawer {
  position: relative; /* આ ખુબ જરૂરી છે જેથી પોપઅપ કાર્ટની અંદર સેટ થાય */
}

.drawer-popup {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.drawer-popup.active {
  visibility: visible;
  opacity: 1;
}

/* પાછળનું બ્લેક ટ્રાન્સપરન્ટ બેકગ્રાઉન્ડ */
.drawer-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* કન્ટેન્ટ બોક્સ જે નીચેથી ઉપર સ્લાઈડ થશે */
.drawer-popup__content {
  position: relative;
  background-color: #ffffff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 24px;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.drawer-popup.active .drawer-popup__content {
  transform: translateY(0);
}

/* હેડર ભાગ */
.drawer-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.drawer-popup__header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #121212;
}

.drawer-popup__close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #707070;
  line-height: 1;
}

.discount-form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.discount-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-size: 14px;
  outline: none;
}

.discount-input:focus-visible {
  box-shadow: none;
}

.button-apply-discount {
  background-color: #d1f0fd;
  color: #121212;
  border: none;
  border-radius: 30px;
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.discount-suggestion {
  font-size: 12px;
  color: #707070;
  margin: 0 0 10px 10px;
}

.shipping-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-field {
  flex: 1;
}

.shipping-select, .shipping-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #707070;
}

.shipping-select:focus-visible,
.shipping-input:focus-visible {
  box-shadow: none;
}

.shipping-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
}

.button-save-address {
  background-color: #d1f0fd;
  color: #121212;
  border: none;
  border-radius: 30px;
  padding: 15px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

@media screen and (min-width: 750px) {
  .cart-drawer .cart-item__quantity--info quantity-popover > * {
    padding-left: 0;
  }

  .cart-drawer .cart-item__error {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .drawer__inner {
    max-width: 550px;
  }

  .cart-drawer .cart-item__media .cart-item__link {
    width: 80px;
    height: 80px;
  }

  .cart-drawer__totals-container .cart-drawer__totals-right span {
    font-size: 22px;
    line-height: 26px;
  }
}

@media screen and (max-width: 575px) {
  .drawer__inner {
    max-width: 450px;
  }

  .cart-drawer .cart-item__media .cart-item__link {
    width: 70px;
    height: 70px;
  }

  .cart-drawer__totals-container .cart-drawer__totals-right span {
    font-size: 20px;
    line-height: 24px;
  }
}