/** Shopify CDN: Minification failed

Line 936:0 Unexpected "<"
Line 1134:0 Unexpected "<"

**/
/* ============================================================
   NATURE'S VEDA
   PRODUCT MAIN — FIGMA V2
   ============================================================ */

.nv-product-main {
  width: 100%;
  background: #faf7f1;
  color: #2c2b28;
}

.nv-product-main *,
.nv-product-main *::before,
.nv-product-main *::after {
  box-sizing: border-box;
}


/* ============================================================
   CONTAINER
   ============================================================ */

.nv-product-main__container {
  width: calc(100% - 96px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0 64px;
}


/* ============================================================
   BREADCRUMB
   ============================================================ */

.nv-product-main__breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;

  margin: 0 0 16px;

  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  line-height: 15px;
}

.nv-product-main__breadcrumb a {
  color: #8b9775;
  text-decoration: none;
}

.nv-product-main__breadcrumb > span {
  color: #aaa79f;
}

.nv-product-main__breadcrumb-current {
  color: #33332f !important;
}


/* ============================================================
   MAIN GRID
   ============================================================ */

.nv-product-main__grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(360px, 0.95fr);

  gap: 76px;

  align-items: start;
}


/* ============================================================
   GALLERY
   ============================================================ */

.nv-product-main__gallery-wrap {
  width: 100%;
}

.nv-product-main__gallery {
  display: grid;

  grid-template-columns: 53px minmax(0, 1fr);

  gap: 12px;

  width: 100%;
}


/* ============================================================
   THUMBNAILS
   ============================================================ */

.nv-product-main__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;

  width: 53px;
}

.nv-product-main__thumb {
  display: block;

  width: 53px;
  height: 68px;

  padding: 0;

  overflow: hidden;

  border: 1px solid transparent;

  background: #ffffff;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.nv-product-main__thumb:hover {
  opacity: 0.75;
}

.nv-product-main__thumb.is-active {
  border-color: #3d4a2e;
}

.nv-product-main__thumb img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* ============================================================
   MAIN IMAGE
   ============================================================ */

.nv-product-main__image {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: #f0eee8;
}


/* 4:5 */

.nv-product-main--ratio-portrait
.nv-product-main__image {
  aspect-ratio: 4 / 5;
}


/* 1:1 */

.nv-product-main--ratio-square
.nv-product-main__image {
  aspect-ratio: 1 / 1;
}


/* 3:4 */

.nv-product-main--ratio-tall
.nv-product-main__image {
  aspect-ratio: 3 / 4;
}


/* Natural */

.nv-product-main--ratio-natural
.nv-product-main__image {
  height: auto;
  aspect-ratio: auto;
}


/* ============================================================
   IMAGE ITEM
   ============================================================ */

.nv-product-main__image-item {
  display: none;

  width: 100%;
  height: 100%;
}

.nv-product-main__image-item.is-active {
  display: block;
}

.nv-product-main__image-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* Natural image */

.nv-product-main--ratio-natural
.nv-product-main__image-item {
  height: auto;
}

.nv-product-main--ratio-natural
.nv-product-main__image-item img {
  height: auto;

  object-fit: contain;
}


/* ============================================================
   PLACEHOLDER
   ============================================================ */

.nv-product-main__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 400px;

  border: 1px dashed #c9c3b7;

  color: #aaa59a;

  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
}


/* ============================================================
   PRODUCT INFORMATION
   ============================================================ */

.nv-product-main__info {
  width: 100%;
  max-width: 520px;

  padding-top: 5px;
}


/* ============================================================
   EYEBROW
   ============================================================ */

.nv-product-main__eyebrow {
  margin-bottom: 13px;

  color: #52613c;

  font-family: "Inter", Arial, sans-serif;

  font-size: 9px;
  line-height: 13px;

  font-weight: 500;

  letter-spacing: 2px;

  text-transform: uppercase;
}


/* ============================================================
   TITLE
   ============================================================ */

.nv-product-main__title {
  max-width: 500px;

  margin: 0;

  color: #292825;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 42px;
  line-height: 1.04;

  font-weight: 400;

  letter-spacing: -1.1px;
}


/* ============================================================
   SUBTITLE
   ============================================================ */

.nv-product-main__subtitle {
  margin-top: 10px;

  color: #98a286;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;
  line-height: 18px;

  font-style: italic;
}


/* ============================================================
   PRICE
   ============================================================ */

.nv-product-main__price-row {
  display: flex;
  align-items: baseline;

  gap: 10px;

  margin-top: 29px;
}

.nv-product-main__price {
  color: #52613c;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 27px;
  line-height: 34px;

  font-weight: 400;
}

.nv-product-main__tax {
  color: #99988e;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;
  line-height: 15px;
}


/* ============================================================
   SUITABLE FOR
   ============================================================ */

.nv-product-main__suitable {
  display: flex;
  align-items: flex-start;

  width: 100%;

  margin-top: 16px;

  padding: 12px 14px;

  background: #f2e4d3;
}

.nv-product-main__suitable-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 17px;
  min-width: 17px;

  height: 17px;

  margin-right: 10px;
}

.nv-product-main__suitable-icon img {
  display: block;

  width: 17px;
  height: 17px;

  object-fit: contain;
}

.nv-product-main__suitable-text {
  color: #56564e;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;
  line-height: 16px;
}

.nv-product-main__suitable-text strong {
  margin-right: 4px;

  color: #42473a;

  font-weight: 600;
}


/* ============================================================
   EMPTY ICON
   ============================================================ */

.nv-product-main__empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 15px;
  height: 15px;

  border: 1px dashed #9d988e;

  color: #9d988e;

  font-family: Arial, sans-serif;

  font-size: 9px;
}


/* ============================================================
   PRODUCT FORM
   ============================================================ */

.nv-product-main__form {
  width: 100%;
}


/* ============================================================
   VARIANTS
   ============================================================ */

.nv-product-main__variants {
  margin-top: 19px;
}

.nv-product-main__option {
  padding: 0;
  margin: 0 0 15px;

  border: 0;
}

.nv-product-main__option-title {
  padding: 0;
  margin: 0 0 8px;

  color: #55574f;

  font-family: "Inter", Arial, sans-serif;

  font-size: 9px;
  line-height: 14px;

  font-weight: 600;

  text-transform: uppercase;
}

.nv-product-main__option-list {
  display: flex;
  flex-wrap: wrap;

  gap: 7px;
}

.nv-product-main__option-button {
  min-width: 40px;
  height: 34px;

  padding: 0 12px;

  border: 1px solid #d1cabd;

  background: transparent;

  color: #55564f;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  cursor: pointer;

  transition: 0.2s ease;
}

.nv-product-main__option-button:hover {
  border-color: #3d4a2e;
}

.nv-product-main__option-button.is-selected {
  border-color: #3d4a2e;

  background: #3d4a2e;

  color: #ffffff;
}


/* ============================================================
   PURCHASE ROW
   ============================================================ */

.nv-product-main__purchase-row {
  display: grid;

  grid-template-columns: 107px minmax(0, 1fr);

  gap: 12px;

  width: 100%;

  margin-top: 20px;
}


/* ============================================================
   QUANTITY
   ============================================================ */

.nv-product-main__quantity {
  display: grid;

  grid-template-columns: 30px 1fr 30px;

  height: 40px;

  border: 1px solid #d2cbbf;
}

.nv-product-main__quantity button {
  padding: 0;

  border: 0;

  background: transparent;

  color: #55564f;

  font-size: 12px;

  cursor: pointer;
}

.nv-product-main__quantity input {
  width: 100%;

  padding: 0;

  border: 0;
  outline: 0;

  background: transparent;

  color: #44453f;

  text-align: center;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  appearance: textfield;
}

.nv-product-main__quantity input::-webkit-inner-spin-button,
.nv-product-main__quantity input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}


/* ============================================================
   ADD TO CART
   ============================================================ */

.nv-product-main__cart {
  width: 100%;
  height: 40px;

  padding: 0 12px;

  border: 1px solid #0A5232;

  background: #0A5232;

  color: #ffffff;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;
  line-height: 1;

  font-weight: 500;

  letter-spacing: 1.4px;

  cursor: pointer;

  transition: background 0.2s ease;
}

.nv-product-main__cart:hover {
  background: #303b25;
}

.nv-product-main__cart:disabled {
  opacity: 0.5;

  cursor: not-allowed;
}


/* ============================================================
   WISHLIST
   ============================================================ */

.nv-product-main__wishlist {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  width: 100%;
  height: 40px;

  margin-top: 12px;

  padding: 0;

  border: 1px solid #909689;

  background: transparent;

  color: #0A5232;

  font-family: "Inter", Arial, sans-serif;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 1.5px;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nv-product-main__wishlist-heart {
  font-size: 18px;

  line-height: 1;

  font-weight: 300;
}

.nv-product-main__wishlist.is-active {
  background: #0A5232;

  border-color: #0A5232;

  color: #ffffff;
}


/* ============================================================
   BENEFITS
   ============================================================ */

.nv-product-main__benefits {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  column-gap: 20px;
  row-gap: 12px;

  width: 100%;

  margin-top: 18px;

  padding-top: 14px;

  border-top: 1px solid #e1dbd0;
}

.nv-product-main__benefit {
  display: flex;
  align-items: center;

  min-width: 0;

  gap: 7px;
}

.nv-product-main__benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 16px;
  min-width: 16px;

  height: 20px;
}

.nv-product-main__benefit-icon img {
  display: block;

  width: 16px;
  height: 20px;

  object-fit: contain;
}

.nv-product-main__benefit-text {
  color: #777970;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;
  line-height: 13px;

  white-space: nowrap;
}


/* ============================================================
   TABLET
   ============================================================ */

@media screen and (max-width: 1000px) {

  .nv-product-main__container {
    width: calc(100% - 48px);
  }

  .nv-product-main__grid {
    gap: 40px;

    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 1fr);
  }

  .nv-product-main__title {
    font-size: 36px;
  }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media screen and (max-width: 749px) {

  .nv-product-main__container {
    width: calc(100% - 32px);

    padding-top: 14px;
    padding-bottom: 45px;
  }


  .nv-product-main__breadcrumb {
    margin-bottom: 14px;

    font-size: 9px;
  }


  .nv-product-main__grid {
    display: block;
  }


  .nv-product-main__gallery {
    grid-template-columns: 1fr;

    gap: 10px;
  }


  .nv-product-main__image {
    order: 1;

    width: 100%;
  }


  .nv-product-main__thumbs {
    order: 2;

    flex-direction: row;

    width: 100%;

    overflow-x: auto;

    gap: 7px;

    scrollbar-width: none;
  }


  .nv-product-main__thumbs::-webkit-scrollbar {
    display: none;
  }


  .nv-product-main__thumb {
    flex: 0 0 58px;

    width: 58px;
    height: 70px;
  }


  .nv-product-main__info {
    max-width: none;

    padding-top: 28px;
  }


  .nv-product-main__title {
    max-width: none;

    font-size: 34px;

    line-height: 1.08;
  }
  
  

  .nv-product-main__price-row {
    margin-top: 20px;
  }


  .nv-product-main__purchase-row {
    grid-template-columns: 95px minmax(0, 1fr);

    gap: 8px;
  }


  .nv-product-main__cart {

    font-size: 5px !important;
    letter-spacing: 0px;
  }


  .nv-product-main__benefits {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 12px;

    row-gap: 12px;
  }


  .nv-product-main__benefit-text {
    white-space: normal;
  }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media screen and (max-width: 380px) {

  .nv-product-main__container {
    width: calc(100% - 24px);
  }

  .nv-product-main__title {
    font-size: 30px;
  }

  .nv-product-main__purchase-row {
    grid-template-columns: 88px minmax(0, 1fr);
  }

}

<style>
.nv-cart-drawer,
.nv-wishlist-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  visibility: hidden;
  pointer-events: none;
}

.nv-cart-drawer.is-open,
.nv-wishlist-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.nv-cart-drawer__overlay,
.nv-wishlist-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nv-cart-drawer.is-open .nv-cart-drawer__overlay,
.nv-wishlist-drawer.is-open .nv-wishlist-drawer__overlay {
  opacity: 1;
}

.nv-cart-drawer__panel,
.nv-wishlist-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 420px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.nv-cart-drawer.is-open .nv-cart-drawer__panel,
.nv-wishlist-drawer.is-open .nv-wishlist-drawer__panel {
  transform: translateX(0);
}

.nv-cart-drawer__header,
.nv-wishlist-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

.nv-cart-drawer__header h3,
.nv-wishlist-drawer__header h3 {
  margin: 0;
  font-size: 17px;
}

.nv-cart-drawer__close,
.nv-wishlist-drawer__close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.nv-cart-drawer__items,
.nv-wishlist-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.nv-cart-drawer__empty,
.nv-wishlist-drawer__empty {
  color: #888;
  font-size: 14px;
  text-align: center;
  margin-top: 40px;
}

.nv-cart-drawer__line-item,
.nv-wishlist-drawer__line-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f1f1;
}

.nv-cart-drawer__line-item img,
.nv-wishlist-drawer__line-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.nv-cart-drawer__line-info,
.nv-wishlist-drawer__line-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nv-cart-drawer__line-title,
.nv-wishlist-drawer__line-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.nv-cart-drawer__line-price,
.nv-wishlist-drawer__line-price {
  font-size: 13px;
  color: #555;
}

.nv-cart-drawer__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.nv-cart-drawer__qty button {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.nv-cart-drawer__qty input {
  width: 36px;
  text-align: center;
  border: none;
}

.nv-cart-drawer__remove,
.nv-wishlist-drawer__remove {
  font-size: 12px;
  color: #c0392b;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
  text-decoration: underline;
}

.nv-cart-drawer__footer {
  padding: 16px 20px 20px;
  border-top: 1px solid #eee;
}

.nv-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.nv-cart-drawer__checkout {
  display: block;
  text-align: center;
  background: #111;
  color: #ffffff !important;
  padding: 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.nv-wishlist-drawer__move-btn {
  margin-top: 6px;
  font-size: 12px;
  background: #111;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
}
</style>

 