/* Varol product detail UI. Extracted from product.twig so browsers can cache it across product pages. */
.vc-installment-section {
    margin: 28px 0 26px;
    border: 1px solid #eadfce;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(16, 32, 51, .06);
    overflow: hidden;
  }

  .module-item-vc-installments .vc-installment-section {
    margin: 0;
  }

  .vc-installment-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #fffaf3 0%, #fff 46%, #f4faf7 100%);
    border-bottom: 1px solid #f0e8dc;
  }

  .vc-installment-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0f8f5f;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
  }

  .vc-installment-section__head h2 {
    margin: 5px 0 0;
    color: #142033;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
  }

  .vc-installment-section__price {
    flex: 0 0 auto;
    display: grid;
    gap: 4px;
    min-width: 170px;
    padding: 10px 12px;
    border: 1px solid #e7dccb;
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    text-align: right;
  }

  .vc-installment-section__price span {
    color: #667085;
    font-size: 11px;
    font-weight: 750;
  }

  .vc-installment-section__price strong {
    color: #142033;
    font-size: 18px;
    font-weight: 900;
  }

  .vc-installment-section__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 20px 0;
  }

  .vc-installment-section__summary span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f6f8f7;
    color: #536071;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.15;
  }

  .vc-installment-section__summary strong {
    color: #0f8f5f;
    font-weight: 950;
  }

  .vc-installment-tabs {
    display: flex;
    gap: 8px;
    padding: 14px 20px 12px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .vc-installment-tab {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    height: 44px;
    padding: 8px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #142033;
    font-size: 13px;
    font-weight: 850;
    transition: box-shadow .16s ease, border-color .16s ease, transform .16s ease;
  }

  .vc-installment-tab img {
    display: block;
    width: auto;
    max-width: 92px;
    max-height: 26px;
    object-fit: contain;
  }

  .vc-installment-tab:hover,
  .vc-installment-tab.is-active {
    border-color: #c4ad8d;
    box-shadow: 0 10px 24px rgba(16, 32, 51, .12);
  }

  .vc-installment-tab.is-active {
    transform: translateY(-1px);
  }

  .vc-installment-panels {
    padding: 0 20px 20px;
  }

  .vc-installment-panel {
    border: 1px solid #ece7df;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }

  .vc-installment-panel__brand {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
    border-bottom: 1px solid #ece7df;
    background: #fbfaf8;
  }

  .vc-installment-panel__brand strong {
    color: #142033;
    font-size: 15px;
    font-weight: 900;
  }

  .vc-installment-panel__brand span {
    color: #667085;
    font-size: 12px;
    font-weight: 750;
  }

  .vc-installment-table {
    display: grid;
  }

  .vc-installment-table__row {
    display: grid;
    grid-template-columns: .9fr 1.05fr 1.05fr;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 10px 15px;
    border-bottom: 1px solid #f0ece6;
    color: #142033;
    font-size: 13px;
    font-weight: 750;
  }

  .vc-installment-table__row:last-child {
    border-bottom: 0;
  }

  .vc-installment-table__row--head {
    min-height: 38px;
    background: #f7f8f8;
    color: #667085;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .vc-installment-table__row span:nth-child(2),
  .vc-installment-table__row span:nth-child(3) {
    font-weight: 900;
  }

  @media (max-width: 760px) {
    .vc-installment-section {
      margin: 22px 0;
      border-radius: 8px;
    }

    .vc-installment-section__head {
      display: grid;
      padding: 15px;
    }

    .vc-installment-section__head h2 {
      font-size: 20px;
    }

    .vc-installment-section__price {
      min-width: 0;
      text-align: left;
    }

    .vc-installment-section__summary {
      padding: 10px 15px 0;
    }

    .vc-installment-tabs {
      padding: 12px 15px;
    }

    .vc-installment-tab {
      min-width: 104px;
      height: 40px;
      padding: 7px 11px;
    }

    .vc-installment-panels {
      padding: 0 15px 15px;
    }

    .vc-installment-table__row {
      grid-template-columns: .85fr 1fr 1fr;
      gap: 8px 12px;
      padding: 12px;
    }

    .vc-installment-table__row--head {
      display: none;
    }

    .vc-installment-table__row span {
      display: grid;
      gap: 3px;
    }

    .vc-installment-table__row span:nth-child(1)::before {
      content: "Taksit";
    }

    .vc-installment-table__row span:nth-child(2)::before {
      content: "Aylık ödeme";
    }

    .vc-installment-table__row span:nth-child(3)::before {
      content: "Toplam";
    }

    .vc-installment-table__row span::before {
      color: #8a93a3;
      font-size: 10px;
      font-weight: 850;
      text-transform: uppercase;
    }
  }

  .rating-page {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    text-align: left;
  }

  .rating-page .rating-score {
    font-weight: 600;
    color: #333;
  }

  .rating-page .rating-stars-meter {
    position: relative;
    display: inline-block;
    line-height: 1;
    letter-spacing: 1px;
    color: #c9c9c9;
  }

  .rating-page .rating-stars-meter-fill {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #f5a400;
  }

  .rating-page .review-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .product-inline-breadcrumbs {
    margin: 0 0 18px;
    color: #555;
    font-size: 13px;
  }

  .product-inline-breadcrumbs .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    background: transparent;
  }

  .product-inline-breadcrumbs .breadcrumb > li {
    display: inline-flex;
    align-items: center;
    margin: 0;
  }

  .product-inline-breadcrumbs .breadcrumb > li + li::before {
    content: ">";
    color: #f27a1a;
    margin: 0 10px;
    font-weight: 700;
  }

  .product-inline-breadcrumbs a {
    color: #444;
    text-decoration: none;
  }

  .product-inline-breadcrumbs .breadcrumb > li:last-child a {
    color: #222;
    font-weight: 600;
    pointer-events: none;
  }

  #product-product {
    margin-top: 12px !important;
    padding-top: 0;
  }

  #product-product > .row > #content > .title.page-title {
    display: none;
  }

  .product-right .product-detail-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #222 !important;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 500;
    margin: 0 0 8px;
    padding: 0;
  }

  .product-info {
    align-items: flex-start;
  }

  .product-right #product.product-details {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .product-right #product.product-details > .product-detail-title {
    order: 0 !important;
  }

  .product-right #product.product-details > .rating-page {
    order: 1 !important;
    align-self: flex-start;
    margin: 0 0 14px;
  }

  .product-right #product.product-details > .product-labels-outside {
    order: 2 !important;
  }

  .product-right #product.product-details > .vc-product-campaign-trigger--details {
    order: 3 !important;
  }

  .product-right #product.product-details > .countdown-wrapper {
    order: 4 !important;
  }

  .product-right #product.product-details > .product-price-group {
    order: 5 !important;
  }

  .product-right #product.product-details > .product-stats {
    order: 6 !important;
  }

  .product-right #product.product-details > .product-options {
    order: 7 !important;
  }

  .product-right #product.product-details > .button-group-page {
    order: 8 !important;
  }

  .vc-mobile-minimum-note {
    display: none;
  }

  .button-group-page {
    padding: 18px 20px !important;
    border: 1px solid #e7e1d8 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(16, 32, 51, .04);
  }

  .button-group-page .vc-minimum-note {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 100%;
    margin: 0 0 12px !important;
    padding: 7px 10px !important;
    border: 0;
    border-radius: 999px;
    background: #fff4e8 !important;
    color: #8f5516 !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
  }

  .button-group-page .vc-minimum-note i {
    margin-inline-end: 6px;
  }

  .button-group-page .buttons-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .button-group-page .buttons-wrapper > .cart-group {
    display: flex !important;
    flex: 1 1 auto !important;
    min-width: 0;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
  }

  .button-group-page .cart-group .stepper {
    flex: 0 0 auto;
  }

  .button-group-page .cart-group .control-label {
    display: none !important;
  }

  .button-group-page .cart-group .btn-cart {
    flex: 1 1 auto;
    min-width: 0;
    height: 48px;
    border-radius: 999px !important;
    font-weight: 700;
  }

  .button-group-page .buttons-wrapper > .wishlist-compare {
    display: flex !important;
    flex: 0 0 54px !important;
    width: 54px !important;
    min-width: 54px !important;
    order: 2 !important;
    margin: 0 !important;
  }

  .button-group-page .wishlist-compare .btn-wishlist {
    width: 54px !important;
    min-width: 54px !important;
    height: 48px;
    padding: 0;
    border-radius: 999px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border: 1px solid #ded7ce !important;
    background: #fff !important;
    color: #c5222f !important;
    box-shadow: 0 2px 8px rgba(16, 32, 51, .04);
    transition: background-color .12s ease, border-color .12s ease, transform .12s ease;
  }

  .button-group-page .wishlist-compare .btn-wishlist:hover {
    border-color: #c5222f !important;
    background: #fff5f6 !important;
    transform: translateY(-1px);
  }

  .button-group-page .wishlist-compare .btn-compare {
    display: none !important;
  }

  .button-group-page .wishlist-compare .btn-wishlist .btn-text {
    display: none !important;
  }

  .button-group-page .wishlist-compare .btn-wishlist::before {
    margin: 0;
    font-size: 24px;
  }

  .button-group-page .vc-extra-actions {
    margin-top: 12px;
  }

  .button-group-page .vc-extra-actions .extra-group {
    display: flex;
    justify-content: stretch;
  }

  .button-group-page .vc-extra-actions .extra-group .btn-extra {
    width: 100%;
    height: 42px;
    border-radius: 999px !important;
    border: 1px solid #d9e8dc !important;
    background: #fbfffc !important;
    color: #4f6556 !important;
    font-weight: 600;
  }

  .button-group-page .vc-extra-actions .extra-group .btn-extra:hover {
    border-color: #25d366 !important;
    color: #168f43 !important;
  }

  .button-group-page .vc-extra-actions:not(:has(.btn-extra)) {
    display: none !important;
  }

  .vc-mobile-countdown-title {
    display: none;
  }

  .vc-mobile-buybar-price {
    display: none;
  }

  .vc-mobile-product-topbar {
    display: none;
  }

  html.route-product-product .popup-wrapper.module-popup {
    display: none !important;
  }

  html.route-product-product.popup-open body {
    width: auto !important;
    overflow-y: auto !important;
    touch-action: auto !important;
  }

  #product-product .product-left-wrapper > .product-blocks.blocks-image,
  #product-product .product-left-wrapper > .product_extra-535,
  #product-product .product-left-wrapper .product-extra-popup,
  #product-product .product-left-wrapper .product-blocks-popup-btn {
    display: none !important;
  }

  #product-product .product-labels-outside:not(:has(.product-label)),
  #product-product .product-labels-outside .product-label:has(a[href*="open_popup(261)"]) {
    display: none !important;
  }

  #product-product .product-extra-description .expand-content,
  #product-product .product-extra-short_description .expand-content,
  #product-product [class*="product-extra-short_description"] .expand-content,
  #product-product [class*="product-extra-description"] .expand-content {
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  #product-product #read-more-desc,
  #product-product .product-extra-description .block-expand-overlay,
  #product-product .product-extra-description .block-expand,
  #product-product .product-extra-short_description .block-expand-overlay,
  #product-product .product-extra-short_description .block-expand,
  #product-product [class*="product-extra-short_description"] .block-expand-overlay,
  #product-product [class*="product-extra-short_description"] .block-expand,
  #product-product [class*="product-extra-description"] .block-expand-overlay,
  #product-product [class*="product-extra-description"] .block-expand {
    display: none !important;
  }

  .vc-product-campaign-trigger {
    --vc-campaign-accent: #f27a1a;
    --vc-campaign-soft: #fff4e8;
    --vc-campaign-border: #ece2d6;
    --vc-campaign-deep: #142033;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto 18px;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 60px;
    margin: 4px 0 14px;
    padding: 9px 12px;
    box-sizing: border-box;
    border: 1px solid var(--vc-campaign-border);
    border-radius: 8px;
    background: #fff;
    color: #142033;
    text-align: left;
    box-shadow: 0 8px 20px rgba(16, 32, 51, .05);
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
  }

  .vc-product-campaign-trigger:hover,
  .vc-product-campaign-trigger:focus {
    border-color: var(--vc-campaign-accent);
    box-shadow: 0 12px 26px rgba(16, 32, 51, .08);
    outline: none;
    transform: translateY(-1px);
  }

  .vc-campaign-trigger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--vc-campaign-soft);
    color: var(--vc-campaign-accent);
    font-size: 19px;
  }

  .vc-campaign-trigger-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
  }

  .vc-campaign-trigger-copy span {
    color: var(--vc-campaign-accent);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
  }

  .vc-campaign-trigger-copy strong {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: #142033;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .vc-campaign-trigger-copy small {
    display: block;
    color: #536071;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
  }

  .vc-campaign-trigger-list {
    display: flex !important;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 2px;
  }

  .vc-campaign-trigger-list span {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    max-width: 100%;
    padding: 3px 7px;
    border-radius: 999px;
    background: #fff7ed;
    color: #8a4b28 !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
  }

  .vc-campaign-trigger-list i {
    flex: 0 0 auto;
    color: var(--vc-campaign-accent);
    font-size: 10px;
  }

  .vc-campaign-trigger-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--vc-campaign-deep);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
  }

  .vc-campaign-trigger-arrow {
    color: #9aa2af;
    font-size: 18px;
  }

  .vc-product-campaign-trigger--image {
    display: none;
  }

  .vc-product-campaign-sidebar {
    display: none;
    min-width: 0;
  }

  .vc-product-campaign-sidebar__inner {
    border: 1px solid #eee5dc;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 32, 51, .035);
  }

  .vc-product-campaign-sidebar__title {
    padding: 15px 15px 9px;
    color: #7f7469;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.15;
    text-transform: none;
  }

  .vc-product-campaign-sidebar__list {
    display: grid;
    gap: 9px;
    padding: 0 12px 12px;
  }

  .vc-sidebar-campaign-item {
    --vc-sidebar-accent: #f27a1a;
    --vc-sidebar-soft: #fff4e8;
    order: 50;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 14px;
    align-items: center;
    gap: 11px;
    width: 100%;
    min-height: 78px;
    padding: 12px;
    border: 1px solid #f1e8df;
    border-radius: 9px;
    background: #fff;
    color: #1f2937;
    text-align: left;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
  }

  .vc-sidebar-campaign-item:hover,
  .vc-sidebar-campaign-item:focus {
    border-color: #e4d7ca;
    box-shadow: 0 14px 30px rgba(16, 32, 51, .07);
    outline: none;
    transform: translateY(-1px);
  }

  .vc-sidebar-campaign-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--vc-sidebar-soft);
    color: var(--vc-sidebar-accent);
    font-size: 16px;
  }

  .vc-sidebar-campaign-item__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .vc-sidebar-campaign-item__status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: 100%;
    padding: 3px 8px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #2f855a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .vc-sidebar-campaign-item__body strong {
    display: block;
    min-width: 0;
    color: #202938;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.26;
  }

  .vc-sidebar-campaign-item__price {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 6px;
    background: #f0faf3;
    color: #327f4f;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1;
  }

  .vc-sidebar-campaign-item__body small {
    color: #8b5e3d;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
  }

  .vc-sidebar-campaign-item__countdown {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    max-width: 100%;
    padding: 5px 8px;
    border-radius: 6px;
    background: #fff8f0;
    color: #9f5425;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.15;
  }

  .vc-sidebar-campaign-item__countdown strong {
    color: #8d431b;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
  }

  .vc-sidebar-campaign-item__countdown.is-expired {
    background: #f3f4f6;
    color: #6b7280;
  }

  .vc-sidebar-campaign-item__arrow {
    color: #a5adba;
    font-size: 16px;
  }

  .vc-sidebar-campaign-item--free_shipping {
    order: 10;
    --vc-sidebar-accent: #2f8b63;
    --vc-sidebar-soft: #edf8f2;
  }

  .vc-sidebar-campaign-item--discount {
    order: 30;
    --vc-sidebar-accent: #b3343e;
    --vc-sidebar-soft: #fff2f4;
  }

  .vc-sidebar-campaign-item--cart_discount {
    order: 20;
    --vc-sidebar-accent: #2563eb;
    --vc-sidebar-soft: #edf4ff;
  }

  .vc-sidebar-campaign-item--reward {
    order: 40;
  }

  .vc-sidebar-campaign-item--bundle {
    order: 50;
    --vc-sidebar-accent: #7c3aed;
    --vc-sidebar-soft: #f4efff;
  }

  .vc-sidebar-campaign-item--gift {
    order: 60;
    --vc-sidebar-accent: #b07a2c;
    --vc-sidebar-soft: #fff7e8;
  }

  .vc-product-campaign-trigger.vc-product-campaign-trigger--free_shipping,
  .vc-product-campaign-panel.vc-product-campaign-panel--free_shipping {
    --vc-campaign-accent: #188a5f;
    --vc-campaign-soft: #eaf8f1;
    --vc-campaign-border: #cce9dc;
    --vc-campaign-deep: #0f3f2f;
  }

  .vc-product-campaign-trigger.vc-product-campaign-trigger--discount,
  .vc-product-campaign-panel.vc-product-campaign-panel--discount {
    --vc-campaign-accent: #c5222f;
    --vc-campaign-soft: #fff0f2;
    --vc-campaign-border: #f3c7cd;
    --vc-campaign-deep: #541016;
  }

  .vc-product-price-campaign {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    width: min(100%, 430px);
    margin-top: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(197, 34, 47, .18);
    border-radius: 9px;
    background:
      radial-gradient(circle at 0 0, rgba(197, 34, 47, .1), transparent 38%),
      linear-gradient(180deg, #fff 0%, #fff8f4 100%);
    box-shadow: none;
    color: #1f2937;
    line-height: 1.2;
  }

  .vc-product-price-campaign__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #b51225 0%, #d7192f 100%);
    box-shadow: none;
    color: #fff;
    font-size: 14px;
  }

  .vc-product-price-campaign__body {
    display: grid;
    gap: 7px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .vc-product-price-campaign__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
  }

  .vc-product-price-campaign__title {
    min-width: 0;
    color: #2b1014;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.25;
    white-space: normal;
  }

  .vc-product-price-campaign__save {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff0f2;
    color: #c5222f;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
  }

  .vc-product-price-campaign__flow {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    padding: 6px 8px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .78);
    color: #6b7280;
    font-size: 13px;
    font-weight: 800;
  }

  .vc-product-price-campaign__flow del {
    color: #8b949e;
    font-weight: 850;
  }

  .vc-product-price-campaign__flow i {
    color: #c9a46d;
    font-size: 11px;
  }

  .vc-product-price-campaign__flow strong {
    color: #111827;
    font-size: 14px;
    font-weight: 950;
  }

  .vc-product-price-campaign__note {
    display: inline-flex;
    color: #8a4b28;
    font-size: 12px;
    font-weight: 800;
  }

  .vc-product-price-campaign--cart {
    border-color: rgba(37, 99, 235, .22);
    background:
      radial-gradient(circle at 0 0, rgba(37, 99, 235, .1), transparent 38%),
      linear-gradient(180deg, #fff 0%, #edf4ff 100%);
  }

  .vc-product-price-campaign--cart .vc-product-price-campaign__icon {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  }

  .vc-product-price-campaign--cart .vc-product-price-campaign__title {
    color: #123a8c;
  }

  .vc-product-price-campaign--cart .vc-product-price-campaign__save {
    background: #dbeafe;
    color: #1d4ed8;
  }

  .vc-product-price-campaign--cart .vc-product-price-campaign__note {
    color: #1e40af;
  }

  @media (max-width: 480px) {
    .vc-product-price-campaign {
      width: 100%;
    }

    .vc-product-price-campaign__top {
      align-items: flex-start;
      flex-direction: column;
      gap: 5px;
    }
  }

  .vc-product-campaign-trigger.vc-product-campaign-trigger--cart_discount,
  .vc-product-campaign-panel.vc-product-campaign-panel--cart_discount {
    --vc-campaign-accent: #2563eb;
    --vc-campaign-soft: #edf4ff;
    --vc-campaign-border: #cbdcff;
    --vc-campaign-deep: #123a8c;
  }

  .vc-product-campaign-trigger.vc-product-campaign-trigger--bundle,
  .vc-product-campaign-panel.vc-product-campaign-panel--bundle {
    --vc-campaign-accent: #7c3aed;
    --vc-campaign-soft: #f4efff;
    --vc-campaign-border: #ddd0ff;
    --vc-campaign-deep: #3b1a74;
  }

  .vc-product-campaign-trigger.vc-product-campaign-trigger--gift,
  .vc-product-campaign-panel.vc-product-campaign-panel--gift {
    --vc-campaign-accent: #b7791f;
    --vc-campaign-soft: #fff7db;
    --vc-campaign-border: #f1deab;
    --vc-campaign-deep: #5d3b08;
  }

  .vc-campaign-modal[hidden] {
    display: none !important;
  }

  .vc-campaign-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .vc-campaign-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .56);
  }

  .vc-campaign-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(560px, 100%);
    max-height: calc(100vh - 48px);
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
  }

  .vc-campaign-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid #f0e7dd;
  }

  .vc-campaign-modal__title {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
  }

  .vc-campaign-modal__title span {
    color: #f27a1a;
    font-size: 11px;
    font-weight: 900;
  }

  .vc-campaign-modal__title strong {
    color: #142033;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
  }

  .vc-campaign-modal__close {
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #e7e1d8;
    border-radius: 999px;
    background: #fff;
    color: #142033;
    font-size: 18px;
  }

  .vc-campaign-modal__close:hover,
  .vc-campaign-modal__close:focus {
    border-color: #f2b078;
    background: #fff8f1;
    outline: none;
  }

  .vc-campaign-modal__body {
    overflow: auto;
    padding: 16px;
  }

  html.vc-campaign-modal-open,
  html.vc-campaign-modal-open body {
    overflow: hidden !important;
    touch-action: none;
  }

  .vc-campaign-list {
    display: grid;
    gap: 12px;
  }

  .vc-product-campaign-panel {
    --vc-campaign-accent: #f27a1a;
    --vc-campaign-soft: #fff4e8;
    --vc-campaign-border: #ece2d6;
    --vc-campaign-deep: #142033;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--vc-campaign-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 32, 51, .05);
  }

  .vc-campaign-head {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: linear-gradient(135deg, var(--vc-campaign-soft) 0%, #fff 58%, #f7fbff 100%);
  }

  .vc-campaign-head--no-badge {
    grid-template-columns: 1fr;
  }

  .vc-campaign-percent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 8px;
    background: var(--vc-campaign-deep);
    color: #fff;
    line-height: 1;
    box-shadow: inset 0 -10px 20px rgba(15, 23, 42, .18);
  }

  .vc-campaign-percent strong {
    font-size: 22px;
    font-weight: 900;
  }

  .vc-campaign-percent span {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 800;
  }

  .vc-campaign-copy {
    min-width: 0;
  }

  .vc-campaign-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    color: var(--vc-campaign-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .vc-campaign-title {
    margin: 0;
    color: #142033;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
  }

  .vc-campaign-desc {
    margin: 5px 0 0;
    color: #586174;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
  }

  .vc-campaign-rate {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    max-width: 100%;
    margin-top: 10px;
    padding: 7px 9px;
    border-radius: 8px;
    background: var(--vc-campaign-soft);
    color: var(--vc-campaign-deep);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.2;
  }

  .vc-campaign-rate i {
    flex: 0 0 auto;
    color: var(--vc-campaign-accent);
  }

  .vc-campaign-rate strong {
    flex: 0 0 auto;
    color: #142033;
    font-weight: 900;
  }

  .vc-campaign-rate span {
    min-width: 0;
  }

  .vc-campaign-countdown {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    width: fit-content;
    max-width: 100%;
    margin-top: 9px;
    padding: 7px 9px;
    border: 1px solid rgba(242, 122, 26, .18);
    border-radius: 8px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
  }

  .vc-campaign-countdown i {
    color: var(--vc-campaign-accent);
  }

  .vc-campaign-countdown strong {
    color: #9a3412;
    font-size: 12px;
    font-weight: 950;
  }

  .vc-campaign-countdown.is-expired {
    border-color: #e5e7eb;
    background: #f3f4f6;
    color: #6b7280;
  }

  .vc-campaign-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #f0e7dd;
    background: #fff;
  }

  .vc-campaign-benefit {
    display: flex;
    gap: 8px;
    min-width: 0;
    padding: 12px 10px;
  }

  .vc-campaign-benefit + .vc-campaign-benefit {
    border-left: 1px solid #f0e7dd;
  }

  .vc-campaign-benefit i {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--vc-campaign-soft);
    color: var(--vc-campaign-accent);
    font-size: 13px;
  }

  .vc-campaign-benefit strong,
  .vc-campaign-benefit span {
    display: block;
    min-width: 0;
  }

  .vc-campaign-benefit strong {
    color: #142033;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
  }

  .vc-campaign-benefit span {
    margin-top: 3px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.25;
  }

  .vc-campaign-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid #f0e7dd;
    background: #f9fafb;
    color: #536071;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
  }

  .vc-campaign-note i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #142033;
  }

  @media (min-width: 1200px) {
    #product-product .product-info.vc-product-info-has-campaign-sidebar {
      display: grid !important;
      grid-template-columns: minmax(430px, .92fr) minmax(360px, .72fr) minmax(280px, .44fr);
      align-items: flex-start;
      column-gap: 28px;
      row-gap: 24px;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar > .product-left,
    #product-product .product-info.vc-product-info-has-campaign-sidebar > .product-right,
    #product-product .product-info.vc-product-info-has-campaign-sidebar > .vc-product-campaign-sidebar {
      width: auto !important;
      max-width: none !important;
      min-width: 0 !important;
      flex: none !important;
      padding-right: 0 !important;
      padding-left: 0 !important;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .product-left-wrapper,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .product-right-wrapper,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .product-image,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .main-image,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .main-image .swiper-container {
      width: 100% !important;
      max-width: 100% !important;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .main-image img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .product-image {
      display: flex !important;
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 12px;
      overflow: visible !important;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .product-image.direction-vertical,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .product-image.position-left,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .product-image.position-right {
      display: flex !important;
      flex-direction: column !important;
      align-items: stretch !important;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .main-image {
      order: 0 !important;
      aspect-ratio: 2 / 3;
      height: auto !important;
      margin: 0 !important;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .main-image .swiper-container,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .main-image .swiper-wrapper,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .main-image .swiper-slide {
      height: 100% !important;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images {
      display: block !important;
      position: relative !important;
      inset: auto !important;
      top: auto !important;
      right: auto !important;
      bottom: auto !important;
      left: auto !important;
      float: none !important;
      transform: none !important;
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      margin: 0 !important;
      overflow: hidden !important;
      order: 1;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images .swiper-container {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images .swiper-buttons,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images .swiper-pagination {
      display: none !important;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images .swiper-wrapper {
      display: flex !important;
      flex-direction: row !important;
      gap: 10px;
      height: auto !important;
      transform: translate3d(0, 0, 0) !important;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar div.additional-images:not(.swiper) {
      display: flex !important;
      gap: 10px;
      overflow-x: auto !important;
      scrollbar-width: thin;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images .additional-image,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images .swiper-slide {
      width: 78px !important;
      height: 78px !important;
      flex: 0 0 78px !important;
      border: 1px solid #e5e7eb !important;
      border-radius: 8px !important;
      background: #fff !important;
      overflow: hidden !important;
      cursor: pointer;
      transition: box-shadow .16s ease, transform .16s ease;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images .additional-image:hover,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images .additional-image.swiper-slide-active,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images .swiper-slide:hover,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images .swiper-slide.swiper-slide-active {
      border-color: #e5e7eb !important;
      box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
      transform: translateY(-1px);
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .additional-images img {
      display: block;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      border: 0 !important;
      border-radius: 0 !important;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .vc-product-campaign-sidebar {
      display: block;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .vc-product-campaign-sidebar__inner {
      position: sticky;
      top: 132px;
    }

    #product-product .product-info.vc-product-info-has-campaign-sidebar .vc-product-campaign-trigger--details,
    #product-product .product-info.vc-product-info-has-campaign-sidebar .product-price-group .vc-product-price-campaign {
      display: none !important;
    }
  }

  @media (min-width: 1440px) {
    #product-product .product-info.vc-product-info-has-campaign-sidebar {
      grid-template-columns: minmax(500px, .96fr) minmax(380px, .74fr) minmax(300px, .44fr);
      column-gap: 32px;
    }
  }

  @media (max-width: 767px) {
    html.route-product-product .notice-module,
    html.route-product-product .global-wrapper > header {
      display: none !important;
    }

    html.route-product-product .site-wrapper {
      margin-top: 0 !important;
    }

    html.route-product-product .global-wrapper {
      margin-bottom: 0 !important;
    }

    #product-product {
      margin-top: 0 !important;
      padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }

    #product-product .product-inline-breadcrumbs {
      display: none !important;
    }

    .vc-mobile-product-topbar {
      position: sticky;
      top: 0;
      z-index: 1085;
      display: block !important;
      height: 54px;
      padding: 8px 118px 8px 50px;
      border-bottom: 1px solid #ece7df;
      background: #fff;
    }

    .vc-mobile-product-topbar__back,
    .vc-mobile-product-topbar__icon {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 38px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: #111827;
      font-size: 24px;
      text-decoration: none !important;
    }

    .vc-mobile-product-topbar__cart-count {
      position: absolute;
      top: 0;
      right: -2px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      border-radius: 999px;
      background: #b19874;
      color: #fff;
      font-size: 11px;
      font-weight: 900;
      line-height: 18px;
    }

    .vc-mobile-product-topbar__cart-count.count-zero {
      display: none !important;
    }

    .vc-mobile-product-topbar__back {
      position: fixed;
      top: 8px;
      left: 8px;
    }

    .vc-mobile-product-topbar__search {
      position: fixed;
      top: 8px;
      left: 50px;
      right: 118px;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: auto;
      max-width: none;
      min-width: 0;
      height: 38px;
      padding: 0 12px;
      border-radius: 999px;
      background: #f6f6f6;
      box-sizing: border-box;
      color: #697386;
      text-decoration: none !important;
    }

    .vc-mobile-product-topbar__search i {
      flex: 0 0 auto;
      color: #b19874;
      font-size: 22px;
    }

    .vc-mobile-product-topbar__search span {
      display: block;
      min-width: 0;
      overflow: hidden;
      color: #697386;
      font-size: 15px;
      font-weight: 500;
      line-height: 1;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .vc-mobile-product-topbar__actions {
      position: fixed;
      top: 8px;
      right: 8px;
      z-index: 2;
      display: flex !important;
      align-items: center;
      justify-content: end;
      width: 102px;
      min-width: 102px;
      overflow: visible;
    }

    .vc-mobile-product-topbar__actions .vc-mobile-product-topbar__icon {
      flex: 0 0 34px;
      position: static !important;
      z-index: 3;
    }

    .vc-mobile-product-topbar__actions .vc-mobile-product-topbar__cart {
      position: relative !important;
    }

    #product-product .product-right #product.product-details > .rating-page .review-write-link,
    #product-product .product-right #product.product-details > .rating-page .review-links-separator {
      display: none !important;
    }

    #product-product .product-right #product.product-details > .product-detail-title {
      order: 0 !important;
    }

    #product-product .product-right #product.product-details > .rating-page {
      order: 1 !important;
      margin-bottom: 14px;
    }

    #product-product .product-right #product.product-details > .product-options {
      order: 2 !important;
    }

    #product-product .product-right #product.product-details > .tab-container,
    #product-product .product-right #product.product-details > .panel-group,
    #product-product .product-right #product.product-details > .module-product_tabs,
    #product-product .product-right #product.product-details > .module-product-tabs,
    #product-product .product-right #product.product-details > .module-product_blocks,
    #product-product .product-right #product.product-details > .module-product-blocks,
    #product-product .product-right #product.product-details > [class*="product_tabs"],
    #product-product .product-right #product.product-details > [class*="product-tabs"],
    #product-product .product-right #product.product-details > [class*="product_blocks"],
    #product-product .product-right #product.product-details > [class*="product-blocks"],
    #product-product .product-right #product.product-details > [class*="product-extra-description"] {
      order: 3 !important;
    }

    #product-product .product-right #product.product-details > .product-price-group {
      order: 4 !important;
      display: none !important;
    }

    #product-product .product-right #product.product-details > .product-labels-outside {
      order: 5 !important;
    }

    #product-product .product-right #product.product-details > .countdown-wrapper {
      order: 6 !important;
    }

    #product-product .vc-desktop-countdown-title {
      display: none;
    }

    #product-product .vc-mobile-countdown-title {
      display: inline;
    }

    #product-product .product-right #product.product-details > .button-group-page {
      order: 7 !important;
      position: fixed !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      z-index: 1090 !important;
      width: 100% !important;
      margin: 0 !important;
      padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px)) !important;
      border: 0 !important;
      border-top: 1px solid #ece3d8 !important;
      border-radius: 16px 16px 0 0 !important;
      background: #fff !important;
      box-shadow: 0 -12px 28px rgba(15, 23, 42, .14) !important;
    }

    #product-product .vc-mobile-minimum-note {
      order: 3 !important;
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      margin: 2px 0 18px;
      padding: 10px 12px;
      border: 1px solid #eadbc9;
      border-radius: 8px;
      background: #fff8ef;
      color: #7a562d;
      font-size: 13px;
      font-weight: 750;
      line-height: 1.25;
    }

    #product-product .vc-mobile-minimum-note i {
      flex: 0 0 auto;
      color: #b19874;
      font-size: 15px;
    }

    #product-product .product-right #product.product-details > .product-stats,
    #product-product .product-price-group .product-stats {
      display: none !important;
    }

    #product-product .product-left-wrapper {
      display: flex;
      flex-direction: column;
      width: 100% !important;
      max-width: 100% !important;
      min-width: 0 !important;
      margin-right: 0 !important;
      margin-left: 0 !important;
      overflow: hidden;
    }

    #product-product .product-left,
    #product-product .product-left .product-left-wrapper {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }

    #product-product .product-left-wrapper > .product-image {
      order: 0;
      width: 100% !important;
      max-width: 100% !important;
      min-width: 0 !important;
      margin-right: 0 !important;
      margin-left: 0 !important;
      overflow: hidden;
    }

    #product-product .product-left-wrapper > .product-image.direction-vertical,
    #product-product .product-left-wrapper > .product-image.position-left,
    #product-product .product-left-wrapper > .product-image.position-right {
      display: flex !important;
      flex-direction: column !important;
      align-items: stretch !important;
    }

    #product-product .product-left-wrapper > .product-image .main-image,
    #product-product .product-left-wrapper > .product-image .main-image .swiper-container {
      width: 100% !important;
      max-width: 100% !important;
      margin-right: 0 !important;
      margin-left: 0 !important;
    }

    #product-product .product-left-wrapper > .product-image .main-image {
      order: 0 !important;
      margin-top: 0 !important;
    }

    #product-product .product-left-wrapper > .product-image .additional-images {
      display: block !important;
      position: relative !important;
      inset: auto !important;
      top: auto !important;
      right: auto !important;
      bottom: auto !important;
      left: auto !important;
      float: none !important;
      transform: none !important;
      width: calc(100% - 24px) !important;
      max-width: calc(100% - 24px) !important;
      height: auto !important;
      margin: 8px 12px 12px !important;
      overflow: hidden !important;
      order: 1;
    }

    #product-product .product-left-wrapper > .product-image .additional-images .swiper-container {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
    }

    #product-product .product-left-wrapper > .product-image .additional-images .swiper-buttons,
    #product-product .product-left-wrapper > .product-image .additional-images .swiper-pagination {
      display: none !important;
    }

    #product-product .product-left-wrapper > .product-image .additional-images .swiper-wrapper {
      display: flex !important;
      flex-direction: row !important;
      gap: 8px;
      height: auto !important;
      transform: translate3d(0, 0, 0) !important;
    }

    #product-product .product-left-wrapper > .product-image div.additional-images:not(.swiper) {
      display: flex !important;
      gap: 8px;
      overflow-x: auto !important;
      scrollbar-width: thin;
    }

    #product-product .product-left-wrapper > .product-image .additional-images .additional-image,
    #product-product .product-left-wrapper > .product-image .additional-images .swiper-slide {
      width: 64px !important;
      height: 64px !important;
      flex: 0 0 64px !important;
      border: 1px solid #e5e7eb !important;
      border-radius: 8px !important;
      background: #fff !important;
      overflow: hidden !important;
      cursor: pointer;
      transition: box-shadow .16s ease, transform .16s ease;
    }

    #product-product .product-left-wrapper > .product-image .additional-images .additional-image:hover,
    #product-product .product-left-wrapper > .product-image .additional-images .additional-image.swiper-slide-active,
    #product-product .product-left-wrapper > .product-image .additional-images .swiper-slide:hover,
    #product-product .product-left-wrapper > .product-image .additional-images .swiper-slide.swiper-slide-active {
      border-color: #e5e7eb !important;
      box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
      transform: translateY(-1px);
    }

    #product-product .product-left-wrapper > .product-image .additional-images img {
      display: block;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      border: 0 !important;
      border-radius: 0 !important;
    }

    #product-product .product-left-wrapper > .product-image .main-image img {
      display: block;
      width: 100% !important;
      max-width: 100% !important;
      margin-right: 0 !important;
      margin-left: 0 !important;
    }

    #product-product .product-left > .product-image ~ *,
    #product-product .product-left-wrapper > .lightgallery,
    #product-product .product-left-wrapper > .product-blocks.blocks-image {
      display: none !important;
    }

    #product-product .vc-product-campaign-trigger--details {
      display: none !important;
    }

    #product-product .vc-product-campaign-trigger--image {
      display: grid !important;
      grid-template-columns: 40px minmax(0, 1fr) auto 14px;
      align-items: flex-start;
      gap: 8px;
      order: 1;
      width: calc(100% - 24px) !important;
      max-width: calc(100% - 24px) !important;
      margin: 8px 12px 14px;
      padding: 10px;
      min-height: 74px;
      border-radius: 8px;
      box-shadow: none;
    }

    #product-product .vc-product-campaign-trigger--image .vc-campaign-trigger-icon {
      margin-top: 2px;
      width: 40px;
      height: 40px;
    }

    #product-product .vc-campaign-trigger-copy strong {
      font-size: 13px;
    }

    #product-product .vc-product-campaign-trigger--image .vc-campaign-trigger-copy strong {
      overflow: visible;
      text-overflow: clip;
      white-space: normal;
    }

    #product-product .vc-product-campaign-trigger--image .vc-campaign-trigger-list {
      overflow: hidden;
      flex-wrap: nowrap;
      gap: 4px;
    }

    #product-product .vc-product-campaign-trigger--image .vc-campaign-trigger-list span {
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    #product-product .vc-product-campaign-trigger--image .vc-campaign-trigger-arrow {
      margin-top: 15px;
      font-size: 16px;
    }

    #product-product .vc-product-campaign-trigger--image .vc-campaign-trigger-count {
      margin-top: 9px;
    }

    .vc-campaign-modal {
      align-items: flex-end;
      padding: 0;
    }

    .vc-campaign-modal__dialog {
      width: 100%;
      max-height: min(88vh, 760px);
      border-radius: 16px 16px 0 0;
    }

    .vc-campaign-modal__header {
      padding: 14px 16px;
    }

    .vc-campaign-modal__body {
      padding: 12px;
    }

    .vc-campaign-modal .vc-campaign-head {
      grid-template-columns: 56px minmax(0, 1fr);
      gap: 10px;
      padding: 12px;
    }

    .vc-campaign-modal .vc-campaign-head--no-badge {
      grid-template-columns: 1fr;
    }

    .vc-campaign-modal .vc-campaign-percent {
      width: 56px;
      height: 56px;
    }

    .vc-campaign-modal .vc-campaign-percent strong {
      font-size: 20px;
    }

    .vc-campaign-modal .vc-campaign-title {
      font-size: 15px;
    }

    .vc-campaign-modal .vc-campaign-desc {
      font-size: 12px;
    }

    .vc-campaign-modal .vc-campaign-rate {
      display: flex;
      align-items: flex-start;
      width: 100%;
    }

    .vc-campaign-modal .vc-campaign-benefits {
      grid-template-columns: 1fr;
    }

    .vc-campaign-modal .vc-campaign-benefit {
      align-items: center;
      padding: 10px 12px;
    }

    .vc-campaign-modal .vc-campaign-benefit + .vc-campaign-benefit {
      border-top: 1px solid #f0e7dd;
      border-left: 0;
    }

    .vc-campaign-modal .vc-campaign-note {
      padding: 10px 12px;
      font-size: 11px;
    }

    #product-product .button-group-page .vc-minimum-note,
    #product-product .button-group-page .wishlist-compare,
    #product-product .button-group-page .vc-extra-actions,
    #product-product .button-group-page .btn-extra,
    #product-product .button-group-page [href*="wa.me"],
    #product-product .button-group-page [href*="whatsapp"] {
      display: none !important;
    }

    #product-product .button-group-page .buttons-wrapper {
      display: block !important;
      width: 100% !important;
      gap: 0;
    }

    #product-product .button-group-page .buttons-wrapper > .cart-group {
      display: grid !important;
      grid-template-columns: minmax(106px, .95fr) 78px minmax(132px, 1.22fr);
      align-items: center;
      gap: 5px;
      width: 100% !important;
      flex: 1 1 100% !important;
      max-width: 100% !important;
    }

    #product-product .button-group-page .vc-mobile-buybar-price {
      display: flex !important;
      min-width: 0;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      line-height: 1.15;
    }

    #product-product .button-group-page .vc-mobile-buybar-label {
      color: #338850;
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }

    #product-product .button-group-page .vc-mobile-buybar-price-current {
      max-width: 100%;
      color: #b19874;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    #product-product .button-group-page .vc-mobile-buybar-price--cart .vc-mobile-buybar-label,
    #product-product .button-group-page .vc-mobile-buybar-price--cart .vc-mobile-buybar-price-current {
      color: #268647;
    }

    #product-product .button-group-page .vc-mobile-buybar-price--cart .vc-mobile-buybar-label {
      max-width: 100%;
      overflow: hidden;
      font-size: 13px;
      line-height: 1.1;
      text-overflow: ellipsis;
    }

    #product-product .button-group-page .vc-mobile-buybar-price--cart .vc-mobile-buybar-price-current {
      font-size: 17px;
      font-weight: 950;
    }

    #product-product .button-group-page .vc-mobile-buybar-price-old {
      max-width: 100%;
      color: #777;
      font-size: 11px;
      font-weight: 700;
      line-height: 1.1;
      overflow: hidden;
      text-decoration: line-through;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    #product-product .button-group-page .cart-group .stepper {
      display: grid !important;
      grid-template-columns: 22px 34px 22px;
      width: 78px !important;
      min-width: 78px !important;
      height: 46px !important;
      margin: 0 !important;
      border: 1px solid #ded6cc !important;
      border-radius: 999px !important;
      background: #fff !important;
      overflow: hidden;
    }

    #product-product .button-group-page .cart-group .stepper button,
    #product-product .button-group-page .cart-group .stepper input {
      width: 100% !important;
      height: 46px !important;
      min-height: 46px !important;
      margin: 0 !important;
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
    }

    #product-product .button-group-page .cart-group .stepper button {
      display: flex !important;
      align-items: center;
      justify-content: center;
      padding: 0 !important;
      color: #142033 !important;
      font-size: 16px !important;
    }

    #product-product .button-group-page .cart-group .stepper input {
      padding: 0 !important;
      color: #142033 !important;
      font-size: 16px !important;
      font-weight: 800 !important;
      text-align: center !important;
    }

    #product-product .button-group-page .cart-group .btn-cart {
      display: flex !important;
      align-items: center;
      justify-content: center;
      height: 46px;
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      padding: 0 10px !important;
      border-radius: 12px !important;
      flex: 1 1 auto !important;
      font-size: 14px !important;
      font-weight: 800 !important;
      letter-spacing: 0 !important;
      text-align: center !important;
      text-transform: none !important;
    }

    #product-product .button-group-page .cart-group .btn-cart::before,
    #product-product .button-group-page .cart-group .btn-cart::after {
      display: none !important;
      content: none !important;
    }

    #product-product .button-group-page .cart-group .btn-cart .btn-text {
      display: inline !important;
      margin: 0 !important;
      padding: 0 !important;
      white-space: nowrap;
    }

  }

  @media (max-width: 374px) {
    .vc-mobile-product-topbar {
      padding: 8px 100px 8px 42px;
    }

    .vc-mobile-product-topbar__actions {
      grid-template-columns: repeat(3, 30px);
      width: 90px;
      min-width: 90px;
    }

    .vc-mobile-product-topbar__back,
    .vc-mobile-product-topbar__icon {
      width: 30px;
    }

    .vc-mobile-product-topbar__search {
      left: 42px;
      right: 100px;
      padding: 0 10px;
    }

    .vc-mobile-product-topbar__search span {
      font-size: 14px;
    }

    #product-product .button-group-page {
      padding-inline: 10px !important;
    }

    #product-product .button-group-page .buttons-wrapper > .cart-group {
      grid-template-columns: minmax(100px, .95fr) 72px minmax(118px, 1.12fr);
      gap: 4px;
    }

    #product-product .button-group-page .cart-group .stepper {
      grid-template-columns: 20px 32px 20px;
      width: 72px !important;
      min-width: 72px !important;
    }

    #product-product .button-group-page .vc-mobile-buybar-price-current {
      font-size: 14px;
    }

    #product-product .button-group-page .vc-mobile-buybar-price--cart .vc-mobile-buybar-price-current {
      font-size: 15px;
    }

    #product-product .button-group-page .vc-mobile-buybar-price--cart .vc-mobile-buybar-label {
      font-size: 12px;
    }

    #product-product .button-group-page .cart-group .btn-cart {
      font-size: 13px !important;
      padding-inline: 6px !important;
    }
  }

  @media (max-width: 767px) {
    .product-inline-breadcrumbs {
      margin-bottom: 12px;
      font-size: 12px;
    }

    .product-right .product-detail-title {
      font-size: 20px;
    }
  }

/* Product variant picker. */
.variant-native-select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .variant-native-label {
    display: none;
  }

  .variant-picker {
    display: block;
    width: 100%;
    margin-top: 4px;
  }

  .variant-picker__row {
    display: block;
    clear: both;
    width: 100%;
  }

  .variant-picker__row + .variant-picker__row {
    margin-top: 18px;
  }

  .variant-picker__label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    color: #102033;
    font-size: 16px;
    font-weight: 600;
  }

  .variant-picker__value {
    font-weight: 500;
  }

  .variant-picker__swatches,
  .variant-picker__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .variant-picker__swatch {
    width: 62px;
    height: 78px;
    padding: 0;
    overflow: hidden;
    border: 2px solid #e4e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(16, 32, 51, .08);
  }

  .variant-picker__swatch img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .variant-picker__swatch.is-active,
  .variant-picker__size.is-active {
    border-color: #c49a6c;
    box-shadow: 0 0 0 1px #c49a6c;
  }

  .variant-picker__swatch.is-disabled,
  .variant-picker__size.is-disabled {
    position: relative;
    opacity: .48;
    cursor: not-allowed;
  }

  .variant-picker__swatch.is-disabled::after,
  .variant-picker__size.is-disabled::after {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    top: 50%;
    height: 1px;
    background: #c8c8c8;
    transform: rotate(-35deg);
  }

  .variant-picker__size {
    position: relative;
    min-width: 72px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #e1ded9;
    border-radius: 6px;
    background: #fff;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
  }
