/** Shopify CDN: Minification failed

Line 28:4 Unexpected "{"
Line 28:5 Expected identifier but found "%"
Line 28:101 Unexpected "{"
Line 28:102 Expected identifier but found "%"
Line 34:2 Unexpected "{"
Line 34:3 Expected identifier but found "%"
Line 34:29 Unexpected "{"
Line 34:30 Expected identifier but found "%"
Line 37:2 Unexpected "{"
Line 37:3 Expected identifier but found "%"
... and 36 more hidden warnings

**/

  .ag-product-page {
       font-family: inherit;
  }

  .ag-container {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
  }

  .ag-product-main {
    display: grid;
    {% comment %} grid-template-columns: minmax(0, 0.8fr) minmax(314px, .75fr) minmax(300px, 400px); {% endcomment %}
    grid-template-columns: minmax(0, 1fr) minmax(314px, .85fr) minmax(300px, 320px);
    gap: 24px;
    align-items: start;
  }

  {% comment %} .ag-gallery, {% endcomment %}
  .ag-purchase-card,
  .ag-card,
  {% comment %} .ag-comparison-card, {% endcomment %}
  .ag-related-card {
    background: #ffffff;
    border: 1px solid #e5eaf3;
    border-radius: 18px;
    {% comment %} box-shadow: 0 8px 28px rgba(16, 24, 40, .045); {% endcomment %}
  }

  .ag-gallery {
    position: relative;
    padding: 18px;
  }

  .ag-discount-badge {
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 2;
    background: #0b5fff;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 999px;
  }

  .ag-main-media {
    width: 100%;
    position: relative;
    {% comment %} aspect-ratio: 1 / .82; {% endcomment %}
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: default;
  }

  .ag-main-media {cursor: zoom-in;}

.ag-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  color: #ffffff;
  font-size: 22px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  z-index: 5;
  transition: background .2s ease, transform .2s ease;
}

.ag-gallery-arrow:hover {
  background: rgba(0, 0, 0, .85);
  transform: translateY(-50%) scale(1.05);
}

.ag-gallery-prev {
  left: 0px;
}

.ag-gallery-next {
  right: 0px;
}

.ag-image-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #ffffff;
  padding: 24px;
  align-items: center;
  justify-content: center;
}

.ag-image-lightbox.is-active {
  display: flex;
}

.ag-lightbox-inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ag-lightbox-image {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
}

.ag-lightbox-close,
.ag-lightbox-arrow {
  position: fixed;
  border: 0;
  background: rgba(0, 0, 0, .65);
  color: #ffffff;
  cursor: pointer;
  z-index: 1000000;
  transition: background .2s ease, transform .2s ease;
}

.ag-lightbox-close:hover,
.ag-lightbox-arrow:hover {
  background: #0b5fff;
}

.ag-lightbox-close {
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 40px;
}

.ag-lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 46px;
}

.ag-lightbox-prev {
  left: 24px;
}

.ag-lightbox-next {
  right: 24px;
}

.ag-lightbox-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  max-width: 92vw;
  overflow-x: auto;
  padding: 8px 4px;
}

.ag-lightbox-thumb {
  width: 72px;
  height: 72px;
  border: 2px solid #e5eaf3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  flex: 0 0 auto;
  opacity: .75;
  transition: all .2s ease;
}

.ag-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ag-lightbox-thumb.is-active {
  border-color: #0b5fff;
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .ag-gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .ag-gallery-prev {
    left: 8px;
  }

  .ag-gallery-next {
    right: 8px;
  }

  .ag-image-lightbox {
    padding: 14px;
  }

  .ag-lightbox-image {
    max-width: 96vw;
    max-height: 76vh;
  }

  .ag-lightbox-prev {
    left: 10px;
  }

  .ag-lightbox-next {
    right: 10px;
  }

  .ag-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .ag-lightbox-thumb {
    width: 58px;
    height: 58px;
  }
}

  .ag-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .ag-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 14px;
  }

  .ag-thumb-btn {
    border: 1px solid #e5eaf3;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
    cursor: pointer;
    aspect-ratio: 1 / .78;
    overflow: hidden;
  }

  .ag-thumb-btn:hover,
  .ag-thumb-btn.is-active {
    border-color: #0b5fff;
    box-shadow: 0 0 0 2px rgba(11, 95, 255, .14);
  }

  .ag-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .ag-product-info {
    padding: 24px 0;
  }

  .ag-product-label {
    display: inline-flex;
    background: #eaf1ff;
    color: #0b5fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
  }

  .ag-product-title {
    font-size: clamp(21px, 3vw, 16px);
    line-height: 1.20;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
  }

  .ag-meta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #667085;
    font-size: 14px;
    margin-bottom: 16px;
  }

  .ag-stars {
    color: #f5a400;
    letter-spacing: 1px;
  }

  {% comment %} key features  {% endcomment %}
  .ag-product-key-features {
  margin-top: 20px;
}

{% comment %} .ag-product-key-features h2{
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
} {% endcomment %}

.ag-key-features-content .metafield-rich_text_field h3, .ag-key-features-content .metafield-rich_text_field h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.ag-key-features-content ul {
  padding-left: 20px;
  margin: 0;
}

.ag-key-features-content li {
  margin-bottom: 8px;
  line-height: 1.5;
}

  .ag-short-description {
    color: #475467;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .ag-short-description p {
    margin: 0;
  }

  .ag-info-cards {
    display: grid;
    gap: 12px;
  }

  .ag-info-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid #e5eaf3;
    border-radius: 14px;
    background: #fff;
  }

  .ag-info-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    border-radius: 10px;
    flex: 0 0 36px;
  }

  .ag-info-card strong,
  .ag-info-card small {
    display: block;
  }

  .ag-info-card small {
    color: #667085;
    margin-top: 3px;
    font-size: 12px;
  }

  .ag-purchase-card {
    padding: 12px;
    position: sticky;
    top: 18px;
  }

  .ag-save-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .ag-save-row span {
    background: #0b5fff;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 9px;
    border-radius: 999px;
  }

  .ag-save-row del {
    color: #98a2b3;
    font-size: 13px;
  }

  .ag-price {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
  }

  .ag-vat-text {
    color: #667085;
    font-size: 13px;
    margin-top: 2px;
  }

  .ag-stock {
    margin: 10px 0 18px;
    font-size: 14px;
    font-weight: 700;
  }

  .ag-stock.in-stock {
    color: #16a34a;
  }

  .ag-stock.out-stock {
    color: #f97316;
  }

  .ag-option-group {
    border: 0;
    padding: 0;
    margin: 0 0 16px;
  }

  .ag-option-group legend {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .ag-option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
  }

  .ag-option-pill {
    position: relative;
  }

  .ag-option-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .ag-option-pill span {
    display: inline-flex;
    border: 1px solid #d0d8e8;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
  }

  .ag-option-pill input:checked + span {
    border-color: #0b5fff;
    color: #0b5fff;
    background: #eef4ff;
  }

  .ag-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
  }

  .ag-qty-row label {
    font-size: 14px;
    font-weight: 700;
  }

  .ag-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d0d8e8;
    border-radius: 10px;
    overflow: hidden;
  }

  .ag-qty-box button,
  .ag-qty-box input {
    width: 45px;
    height: 38px;
    border: 0;
    background: #fff;
    text-align: center;
    font-weight: 700;
  }

  .ag-qty-box button {
    cursor: pointer;
    color: #0b5fff;
    font-size: 18px;
  }

  .ag-qty-box input {
    border-left: 1px solid #e5eaf3;
    border-right: 1px solid #e5eaf3;
    border-radius: 0px !important;
  }

  .ag-add-cart {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 12px;
    background: #0b5fff;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
  }

  .ag-add-cart:hover {
    background: #084bd1;
    transform: translateY(-1px);
  }

  .ag-add-cart:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
  }

  .ag-buy-now {
    margin-top: 10px;
  }

  .shopify-payment-button {
    width: 100%;
}
.shopify-payment-button__button--unbranded {
    background-color: transparent;
    height: 52px;
    color: #084bd1 !important;
    width: 100%;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
    border: 2px solid #084bd1;
     
}

.shopify-payment-button__button--unbranded:hover:not([disabled]) {
    background-color: transparent !important;
    color: #084bd18f !important;
}

  .ag-whatsapp-btn {
    margin-top: 12px;
    min-height: 52px;
    border: 1px solid #22c55e;
    color: #15803d;
    background: #f0fdf4;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    line-height: 1.2;
  }

  .ag-whatsapp-btn span {
    font-size: 12px;
    font-weight: 600;
  }

  .ag-points {
    color: #0b5fff;
    font-size: 13px;
    text-align: center;
    margin-top: 14px;
    font-weight: 700;
  }
.ag-points {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
  .ag-trust-strip {
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e5eaf3;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
  }

  .ag-trust-strip div {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid #e5eaf3;
  }

  .ag-trust-strip div:last-child {
    border-right: 0;
  }

  .ag-trust-strip span {
    font-size: 22px;
  }

  .ag-trust-strip strong {
    font-size: 14px;
  }

  .ag-trust-strip small {
    color: #667085;
    font-size: 12px;
  }

  .ag-details-grid {
    display: grid;
    grid-template-columns: 2.05fr .95fr;
    gap: 20px;
    margin-bottom: 22px;
  }

  .ag-card {
    padding: 22px;
  }

  .ag-card h2,
  .ag-tech h2,
  .ag-comparison-card h2,
  .ag-related h2 {
    font-size: 22px;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
  }

  .ag-check-list,
  .ag-dot-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
  }

  .ag-check-list li,
  .ag-dot-list li {
    position: relative;
    padding-left: 26px;
    color: #344054;
    line-height: 1.45;
  }

  .ag-check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0b5fff;
    font-weight: 900;
  }

  .ag-dot-list li:before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 7px;
    height: 7px;
    background: #0b5fff;
    border-radius: 50%;
  }

  .ag-spec-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid #edf1f7;
  }

  .ag-spec-row:last-child {
    border-bottom: 0;
  }

  .ag-spec-row span {
    color: var(--body-color);
    font-size: 16px;
    font-weight: 700 !important;

  }

  .ag-spec-row strong {
    font-size: 16px;
    font-weight: 400 !important;
  }

  .ag-box-image {
    margin-top: 18px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
  }

  .ag-box-image img {
    width: 100%;
    display: block;
  }

  .ag-comparison-card {
    padding: 22px 0;
    margin-bottom: 24px;
  }

  .ag-comparison-scroll {
    overflow-x: auto;
  }

  .ag-comparison-card table {
    width: 100%;
    border-collapse: collapse;
    min-width: 740px;
  }

  .ag-comparison-card th,
  .ag-comparison-card td {
    border: 1px solid #edf1f7;
    padding: 14px;
    text-align: left;
    font-size: 14px;
  }

  .ag-comparison-card th {
    background: #f8fafc;
  }

  .ag-comparison-card th:nth-child(2),
  .ag-comparison-card td:nth-child(2) {
    background: #eef4ff;
    color: #0b5fff;
    font-weight: 700;
  }

  .ag-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }

  .ag-section-heading a {
    color: #0b5fff;
    font-weight: 700;
    text-decoration: none;
  }

  .ag-related {
    margin-bottom: 26px;
  }

  .ag-related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  .ag-related-card {
    padding: 14px;
  }

  .ag-related-img {
    display: flex;
    aspect-ratio: 1 / .72;
    background: #f8fafc;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
  }

  .ag-related-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .ag-related-card h3 {
    font-size: 14px;
    line-height: 1.35;
    min-height: 38px;
    margin: 0 0 10px;
  }

  .ag-related-card h3 a {
    color: #101828;
    text-decoration: none;
  }

  .ag-related-price {
    color: #0b5fff;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .ag-small-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border: 1px solid #0b5fff;
    color: #0b5fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
  }

  .ag-bottom-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #e5eaf3;
    padding: 20px 0 28px;
  }

  .ag-bottom-trust div {
    text-align: center;
    padding: 10px;
  }

  .ag-bottom-trust strong,
  .ag-bottom-trust small {
    display: block;
  }

  .ag-bottom-trust small {
    color: #667085;
    margin-top: 3px;
  }

  .ag-faq-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 40px;
}

.ag-faq-content p strong {
    font-size: 16px;
    font-weight: 600;
}
  
  {% comment %} 
   =======product discription======== 
  {% endcomment %}

    .ag-product-description {
    width: 100%;
    margin: 32px 0;
    padding: 0;
  }

  .ag-product-description-inner {
    background: #ffffff;
    border: 1px solid #e5eaf5;
    border-radius: 18px;
    padding: 28px 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  }

  .ag-product-description-header {
    margin-bottom: 18px;
    border-bottom: 1px solid #edf1f7;
    padding-bottom: 16px;
  }

  .ag-product-description-label {
    display: inline-flex;
    align-items: center;
    background: #eaf1ff;
    color: #0057ff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
  }
.ag-product-description h1{
     margin: 0;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
    color: #111827;
    margin-bottom: 10px;
}
  .ag-product-description h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: #111827;
  }

  .ag-product-description-content {
    color: #374151;
    font-size: 16px;
    line-height: 1.75;
  }

  .ag-product-description-content p {
    margin: 0 0 14px;
  }

  .ag-product-description-content p:last-child {
    margin-bottom: 0;
  }

  .ag-product-description-content ul,
  .ag-product-description-content ol {
    margin: 14px 0;
    padding-left: 22px;
  }

  .ag-product-description-content li {
    margin-bottom: 8px;
  }

  .ag-product-description-content strong,
  .ag-product-description-content b {
    color: #111827;
    font-weight: 600;
  }

  .ag-product-description-content a {
    color: #0057ff;
    font-weight: 700;
    text-decoration: none;
  }

  .ag-product-description-content a:hover {
    text-decoration: underline;
  }

  .ag-product-description-content h3 {
    font-size: 22px;
    margin: 22px 0 10px;
    color: #111827;
    font-weight: 600;
  }

  .ag-product-description-content h4 {
    font-size: 18px;
    margin: 18px 0 8px;
    color: #111827;
    font-weight: 800;
  }

  @media screen and (max-width: 768px) {
    .ag-product-description {
      margin: 24px 0;
    }

    .ag-product-description-inner {
      padding: 22px 18px;
      border-radius: 16px;
    }

    .ag-product-description h2 {
      font-size: 24px;
    }

    .ag-product-description-content {
      font-size: 15px;
      line-height: 1.7;
    }
  }

  {% comment %} end  product discrption {% endcomment %}

  @media (max-width: 1180px) {
    .ag-product-main {
      grid-template-columns: 1fr 1fr;
    }

    .ag-purchase-card {
      grid-column: 1 / -1;
      position: static;
    }

    .ag-details-grid {
      grid-template-columns: 1fr 1fr;
    }

    .ag-details-grid .ag-card:last-child {
      grid-column: 1 / -1;
    }

    .ag-related-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .ag-qty-row[hidden] {
  display: none !important;
}

  {% comment %} ==================FAQ================  {% endcomment %}

   .ag-faq-content .metafield-rich_text_field h3{
    font-size: var(--heading-size-h3);
    font-weight: var(--heading-3-weight);
    margin-bottom: 18px;
    
  }
  
  .ag-faq-content .metafield-rich_text_field p{
    font-size: 16px;
  }

  {% comment %} ==================end FAQ================  {% endcomment %}


  @media (max-width: 768px) {
    .ag-container {
      width: min(100% - 24px, 1440px);
    }

    .ag-breadcrumb {
      font-size: 12px;
    }

    .ag-product-main,
    .ag-details-grid {
      grid-template-columns: 1fr;
    }

    .ag-product-info {
      padding: 4px 0;
    }

    .ag-gallery,
    .ag-purchase-card,
    .ag-card {
      border-radius: 14px;
    }

    .ag-main-media {
      aspect-ratio: 1 / .9;
    }

    .ag-thumbnails {
      display: flex;
      overflow-x: auto;
      gap: 10px;
      padding-bottom: 6px;
      scroll-snap-type: x mandatory;
    }

    .ag-thumb-btn {
      min-width: 76px;
      scroll-snap-align: start;
    }

    .ag-trust-strip,
    .ag-bottom-trust {
      grid-template-columns: 1fr 1fr;
    }

    .ag-trust-strip div {
      border-right: 0;
      border-bottom: 1px solid #e5eaf3;
    }

    .ag-related-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 10px;
    }

    .ag-related-card {
      min-width: 230px;
      scroll-snap-align: start;
    }

    .ag-spec-row {
      grid-template-columns: 110px 1fr;
    }
  }

  @media (max-width: 480px) {
    .ag-product-title {
      font-size: 16px;
    }

    .ag-price {
      font-size: 30px;
    }

    .ag-trust-strip,
    .ag-bottom-trust {
      grid-template-columns: 1fr;
    }

    .ag-option-pill span {
      padding: 9px 11px;
    }
  }

  {% comment %} tabby / tamara option in single page {% endcomment %}
  .styles__snippetContentWrapper--ac42d{padding: 10px !important;}