/** Shopify CDN: Minification failed

Line 409:0 Unexpected "}"
Line 977:0 Unexpected "}"

**/

.m-article-navigation {
    border-color: #000;
}
.trust-badges-outer {
  margin: 14px 0;
  width: 100%;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 24px);
  padding: 0;
 
  border-radius: 6px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-2px);
}

.badge-item:hover .badge-icon-wrapper {
  border: 1px solid #9c5618;
}

.badge-icon-wrapper {
  position: relative;
  width: clamp(34px, 8vw, 54px);  /* Increased from 56px to 64px */
  height: clamp(34px, 8vw, 54px); /* Increased from 56px to 64px */
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e3d5b8;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.badge-icon {
  width: 50%;
  height: 50%;
  color: #d1a551;
  transition: transform 0.3s ease;
}

.badge-item:hover .badge-icon {
  transform: scale(1.1);
}

.info-icon {
  position: absolute;
  top: -2px;
  right: -2px;
  width: clamp(18px, 3vw, 22px);  /* Increased size */
  height: clamp(18px, 3vw, 22px); /* Increased size */
  background: #d1a551;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(11px, 2vw, 14px); /* Increased font size */
  font-weight: 500;
  border: 2px solid white;
  font-family: serif;
}

.badge-text {
  font-size: clamp(12px, 2.5vw, 15px); /* Increased from 13px to 15px */
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

/* Modal Styles remain the same */
.trust-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trust-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-icon {
  width: 32px;  /* Increased from 28px */
  height: 32px; /* Increased from 28px */
  color: #9c5618;
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0;
  flex: 1;
}

.modal-close {
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(156, 86, 24, 0.1);
  color: #9c5618;
}

.modal-content {
  padding: 24px;
  color: #666;
  font-size: clamp(14px, 2.5vw, 16px); /* Increased from 13px/14px */
  line-height: 1.5;
}

.modal-content ul {
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
}

.modal-content li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.modal-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9c5618;
  font-weight: 600;
}

@keyframes modalSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .trust-badges {
    padding: 16px 12px;
    gap: 8px;
  }
  
  .badge-item {
    flex-direction: column;
    gap: 8px;
    padding: 4px;
    text-align: center;
  }

  .badge-text {
    font-size: 13px;  /* Adjusted for mobile */
  }

  .badge-icon-wrapper {
    width: 50px;  /* Increased from 36px */
    height: 50px; /* Increased from 36px */
  }

  .info-icon {
    width: 20px;    /* Increased from 14px */
    height: 20px;   /* Increased from 14px */
    font-size: 13px; /* Increased from 9px */
    top: -1px;
    right: -1px;
  }
}

/* Modal Container */
.modal-container {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  position: relative;
  margin: auto;
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  max-height: 600px; /* Fixed height for desktop */
}

/* Modal Header */
.modal-header {
  padding: 20px 24px; /* Slightly increased padding */
  border-bottom: 1px solid rgba(156, 86, 24, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(145deg, #FEF6F4 0%, #FFF9F6 100%);
}

/* Modal Content */
.modal-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0; /* Important for Firefox */
  overflow: hidden;
  padding: 24px;
}

/* Prepaid Offer */
.prepaid-offer {
  background: linear-gradient(135deg, #f7f3eb, #fff);
  border: 1px solid #e3d4b8;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  flex-shrink: 0; /* Prevent shrinking */
}

/* Coupons Container */
.coupons-container {
  margin: 0 -24px;
  padding: 0 12px;
  overflow-y: auto;
  flex: 1;
  min-height: 0; /* Important for Firefox */
}

/* Custom Scrollbar */
.coupons-container::-webkit-scrollbar {
  width: 8px;
}

.coupons-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.coupons-container::-webkit-scrollbar-thumb {
  background: #e3d5b8;
  border-radius: 4px;
}

.coupons-container::-webkit-scrollbar-thumb:hover {
  background: #9c5618;
}

/* Coupon Card */
.coupon-card {
  background: #fff;
  border: 1px solid #e3d4b8;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  animation: cardSlideIn 0.3s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

/* Animations */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .vedaconnection-modal {
    padding: 12px;
  }

  .modal-container {
    max-height: calc(90vh - 200px); /* Full height for mobile */
  }

  .modal-header {
    padding: 16px 20px;
  }

  .modal-content {
    padding: 20px;
  }

  .prepaid-offer {
    padding: 16px;
    margin-bottom: 16px;
  }

  .coupons-container {
    margin: 0 -20px;
    padding: 0 20px;
  }

  .coupon-card {
    padding: 14px;
    margin-bottom: 12px;
  }
}

/* Common Icon Styles */
.icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rotating-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFB74D;
  border-radius: 50%;
  animation: rotate 4s linear infinite;
}

.rotating-circle::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFE0B2, #FFB74D);
  z-index: 0;
  animation: rotate 4s linear infinite;
}

/* Common Animations */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes subtle-shine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
}
.delivery-section {
    margin: 12px 0;
    font-size: 14px;
    color: #444;
  }

  .delivery-header {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
    margin-bottom: 8px;
  }

  .delivery-header .delivery-icon {
    width: 16px;
    height: 16px;
    color: #d1a551;
  }

  .delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .delivery-item {
    background: #fbf9fa;
    border: 3px dashed #d1a551;
    border-radius: 6px;
    padding: 10px 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .delivery-icon {
    width: 40px;
    height: 35px;
    color: #d1a551;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .delivery-content {
    flex: 1;
    min-width: 0;
  }

  .delivery-location {
    font-weight: 500;
    font-family: Lato;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
  }

  .express-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #ecfdf3;
    color: #059669;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
  }

  .delivery-date {
    color: #666;
    font-size: 14px;
    margin: 2px 0 0 0;
    font-weight: 400px;
  }

  @media (max-width: 640px) {
    .delivery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 6px;
    }

    .delivery-item {
      padding: 8px 8px;
    }

    .delivery-icon {
      width: 16px;
      height: 16px;
    }
  
    .delivery-header .delivery-icon {
      width: 18px;
      height: 18px;
    }

    .delivery-location {
      font-size: 15px;
      gap: 4px;
    }

    .delivery-date {
      font-size: 13px;
    }

    .express-tag {
      font-size: 12px;
      padding: 1px 4px;
    }
  }
  .price-banner {
  background: #fbf9fa;
  border-radius: 6px;
  border: 1px solid #e3d4b9;
  padding: 15px;
  margin: 12px 0;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
 
}

.icon-wrapper {
  width: 28px;
  height: 28px;
}

.percent-symbol {
  position: relative;
  color: #9c5618;
  font-weight: bold;
  font-size: 14px;
  z-index: 1;
}

.price-text {
  font-size: 16px;
  color: #444;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-amount {
  color: #9c5618;
  font-weight: 500;
}

.save-tag {
 
  color: #c2410c;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;

  white-space: nowrap;
}

.offers-button {
  border: 1px solid #d1a550;
  border-radius: 6px;
  padding: 8px 13px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  color: #C05B0F;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f7f3eb, #fff);
}

.offers-button:hover {
  border: 1px solid #C05B0F;
}



.offers-button:hover::after {
  opacity: 1;
  right: 16px;
}

/* Coupon Modal Specific Styles */
.coupons-container {
  flex: 1;
  overflow-y: auto;
  margin: 20px -24px 0;
  padding: 0 24px;
  max-height: 500px;
}

.coupons-container::-webkit-scrollbar {
  width: 8px;
}

.coupons-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.coupons-container::-webkit-scrollbar-thumb {
  background: #e3d5b8;
  border-radius: 4px;
}

.coupons-container::-webkit-scrollbar-thumb:hover {
  background: #9c5618;
}

.coupon-card {
  background: #fff;
  border: 1px solid #e3d4b8;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  animation: cardSlideIn 0.3s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.coupon-card:hover {
  border-color: #9c5618;
  box-shadow: 0 4px 12px rgba(156, 86, 24, 0.1);
}

.coupon-discount {
  color: #9c5618;
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

.coupon-description {
  color: #666;
  font-size: 14px;
  margin: 6px 0;
}

.min-purchase {
  color: #888;
  font-size: 12px;
  margin: 4px 0;
  padding: 4px 8px;
  background: #f7f3eb;
  border-radius: 4px;
  display: inline-block;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f7f3eb;
  border: 1px solid #e3d5b8;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  color: #9c5618;
  margin-top: 12px;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
}

.copy-btn:hover {
  background-color: #9c5618;
  border-color: #9c5618;
  color: white;
}

.copy-btn:hover svg {
  stroke: white;
}

.prepaid-offer {
  background: linear-gradient(135deg, #f7f3eb, #fff);
  border: 1px solid #e3d5b8;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 10px;
}

.prepaid-title {
  color: #1d4ed8;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.prepaid-description {
  color: #666;
  font-size: 13px;
  margin: 6px 0 0 0;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.payment-icon {
  height: 15px;
  margin-right: 5px;
  width: auto;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .price-row {
    gap: 8px;
  }
  
  .price-text {
    font-size: 14px;
  }
  
  .save-tag {
    font-size: 13px;
    padding: 4px 8px;
  }

  .icon-wrapper {
    width: 24px;
    height: 24px;
  }

  .percent-symbol {
    font-size: 12px;
  }

  .coupons-container {
    max-height: 400px;
  }
}
.vedaconnection-modal {
    display: none;
    position: relative;
    z-index: 99999;
    padding: 0px;
    border: 1px solid #e0e0e0;
    border-top: 0;
}
.vedaconnection-modal button.modal-close {
    display: none;
}
.vedaconnection-modal .modal-container {
    max-width: 100%;
}
.vedaconnection-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

/* Modal Container */
.modal-container {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  position: relative;
  margin: auto;
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  max-height: 600px; /* Fixed height for desktop */
}

/* Modal Header */
.modal-header {
  padding: 20px 24px; /* Slightly increased padding */
  border-bottom: 1px solid rgba(156, 86, 24, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(145deg, #FEF6F4 0%, #FFF9F6 100%);
}

/* Modal Content */
.modal-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0; /* Important for Firefox */
  overflow: hidden;
  padding: 24px;
}

/* Prepaid Offer */
.prepaid-offer {
  background: linear-gradient(135deg, #f7f3eb, #fff);
  border: 1px solid #e3d4b8;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  flex-shrink: 0; /* Prevent shrinking */
}

/* Coupons Container */
.coupons-container {
  margin: 0 -24px;
  padding: 0 12px;
  overflow-y: auto;
  flex: 1;
  min-height: 0; /* Important for Firefox */
}

/* Custom Scrollbar */
.coupons-container::-webkit-scrollbar {
  width: 8px;
}

.coupons-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.coupons-container::-webkit-scrollbar-thumb {
  background: #e3d5b8;
  border-radius: 4px;
}

.coupons-container::-webkit-scrollbar-thumb:hover {
  background: #9c5618;
}

/* Coupon Card */
.coupon-card {
  background: #fff;
  border: 1px solid #e3d4b8;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  animation: cardSlideIn 0.3s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

/* Animations */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .vedaconnection-modal {
    padding: 12px;
  }

  .modal-container {
    max-height: calc(90vh - 200px); /* Full height for mobile */
  }

  .modal-header {
    padding: 16px 20px;
  }

  .modal-content {
    padding: 20px;
  }

  .prepaid-offer {
    padding: 16px;
    margin-bottom: 16px;
  }

  .coupons-container {
    margin: 0 -20px;
    padding: 0 20px;
  }

  .coupon-card {
    padding: 14px;
    margin-bottom: 12px;
  }
}

/* Common Icon Styles */
.icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rotating-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFB74D;
  border-radius: 50%;
  animation: rotate 4s linear infinite;
}

.rotating-circle::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFE0B2, #FFB74D);
  z-index: 0;
  animation: rotate 4s linear infinite;
}

/* Common Animations */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes subtle-shine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
}
@media screen and (min-width: 900px){
  .m-article__inner {
    position: relative;
    z-index: 1;
    background: #fff;
    max-width: 1080px;
    margin: 0 auto;
    margin-top: -80px;
}
 .m-article__inner article {
    padding: 25px;
} 
}

.m-article__inner img {
    margin: 0 auto;
    width: 100%;
}

.m-product-card.m-product-card--style-1.m-product-card--onsale.m-product-card--show-second-img {
    border: 1px solid #d2d2d2;
    padding: 10px;
    margin: -8px;
}
button.offers-button.active svg {
    transform: rotate(90deg);
}
.m-product-tag:not(.hidden) {
    background: red;
}

.m-price__sale .m-price-item--last {
    font-weight: 600;
}

.m-product-form .m-add-to-cart {
   
    text-transform: uppercase;
}

.m-quantity__button {
    background: #d1a551;
    color: white;
}

.m-mixed-layout__inner.m\:grid.md\:m\:grid-3-cols.xl\:m\:grid-5-cols {
  display:flex;
}

button.m-product-form.m\:w-full.m-product-quickview-button.m-spinner-button.m-button.m-button--secondary {
    text-transform: uppercase;
}

a.m-collection-card__link.m\:block {
  font-size: 17px;
}
spna.optioname {
    position: relative;
    display: flex;
    justify-content: left;
    width: 100%;
    color: #000;
    padding: 5px 4px 0;
    font-size: 12px;
    text-transform: capitalize;
}
spna.optionprice {
    position: relative;
    display: flex;
    justify-content: left;
    width: 100%;
    font-size: 12px;
    color: #7A7A7A;
    padding: 2px 4px 0 4px;
}
.mainswatch {
    position: relative;
    display: grid;
    grid-template-columns: auto;
    border-style: solid;
    border-color: #CFCFCF;
    border-radius: 3px;
    border-width: 1.5px;
    background-color: #fff;
    overflow: hidden;
    padding-bottom: 5px;
    margin-right: 5px;
    width: 90px;
    margin-bottom: 5px;
}
.m-product-option input[type=radio]:checked+.mainswatch {
    border-color: #000;
}
variant-picker .m-product-option--node__label[data-option-type=image] {
    margin: 0;
    border: none !important;
    width: 90px;
    height: 90px;
}
@media(max-width:700px){
.fst .m-mixed-layout__inner.m\:grid.m\:grid.md\:m\:grid-2-cols.lg\:m\:grid-3-cols {
    display: grid;
    grid-template-columns: 33% 33% 33%;
}

.template-page #MainContent {
        padding-bottom: 0px;
    }
}


    .m-product-card__info {
        min-height: 110px;
    }

  button.m-product-form.m\:w-full.m-product-quickview-button.m-spinner-button.m-button.m-button--secondary {
    background: #d1a551;
    color: white;
}

button.m-add-to-cart.m-spinner-button.m\:w-full.m-button.m-button--secondary {
    background: #d1a551;
    color: white;
}
.protags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    white-space: nowrap;
}
.protags span {
    background: #fbf9fa;
    font-size: 12px;
    padding: 5px 10px 5px 10px;
    border-radius: 6px;
    border: 1px solid #d1a551;
    color: #a63c07;
}
@media(max-width:700px){

}


.accordion-content ul {
    list-style: disc;
    margin-left: 26px;
}

.badge-item {

    flex-direction: column;
}

.badge-item {
    border: 1px solid #d1a551;
    padding: 10px 0px;
}

.badge-item {
    background: #e1cda6;
    
}

.fax-p {
    display: flex;
}
.discount-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    max-width: 100%;
  flex-wrap: wrap;
}
.foxkit-related-products__grid {
    margin: 0;
}
.discount-icon {
    background: linear-gradient(135deg, #ffcc80, #ffb74d);
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    text-align: center;
}

.discount-text span {
    color: #333;
    font-size: 16px;
}

.discount-text strong {
    color: #e64a19;
    font-size: 18px;
    margin-left: 5px;
}

.save-text {
    color: #e64a19;
    font-size: 14px;
    background-color: #ffecb3;
    border-radius: 5px;
    padding: 6px 10px;
}

.coupon-button button {
    background-color: #ff9800;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.coupon-button button:hover {
    background-color: #f57c00;
}

.trp{
width:25px;
}

.icon-wrapper {
    display: none;
}

@media(max-width:700px){
.save-text {
  
    font-size: 8px;
}
}