@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- RESET a základní nastavení --- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html,
    body {
      overflow-x: clip;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: #ffffff;
      color: #323232;
      font-size: 15px;
      line-height: 1.6;
      padding-bottom: 100px;
    }

    body.body--site {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      padding-bottom: 0;
    }

    body.body--site main {
      flex: 1 0 auto;
      min-width: 0;
      max-width: 100%;
    }

    body.body--site .footer-site {
      flex-shrink: 0;
      margin-top: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-width {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    @media screen and (min-width: 750px) {
      .page-width {
        padding: 0 40px;
      }
    }

    /* --- Barvy a gradienty --- */
    .color-accent-1 {
      background: #d36031;
      color: #fff;
    }
    .color-background-1 {
      background: #ffffff;
    }
    .color-background-2 {
      background: #fdfbf7;
    }
    .color-accent-2 {
      background: #cd201a;
      color: #fff;
    }

    .gradient {
      background: var(--gradient-background, #ffffff);
    }

    .button {
      display: inline-block;
      padding: 12px 30px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.1rem;
      border: none;
      border-radius: 7px;
      cursor: pointer;
      transition: background 0.2s, box-shadow 0.2s;
      text-align: center;
      min-height: 55px;
      line-height: 1.2;
    }

    .button--secondary {
      background: #ffffff;
      color: #000000;
      border: 1px solid #000;
    }

    .button--secondary:hover {
      background: #f0f0f0;
    }

    .shopify-payment-button__button--unbranded {
      background: linear-gradient(0deg, rgba(255, 79, 0, 1) 3%, rgba(255, 79, 0, 1) 99%) !important;
      color: #ffffff !important;
      border: none;
      border-radius: 7px;
      padding: 12px 30px;
      font-size: 18px;
      font-weight: 600;
      width: 100%;
      cursor: pointer;
      min-height: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-sizing: border-box;
    }

    .shopify-payment-button__button--unbranded:hover {
      opacity: 0.85;
    }

    /* --- Hlavička --- */
    .announcement-bar {
      background: #d36031;
      color: #fff;
      text-align: center;
      padding: 8px 0;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.1rem;
    }

    .header-wrapper {
      border-bottom: 1px solid rgba(0,0,0,0.08);
      background: #fff;
    }

    .header {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      padding: 4px 0;
      gap: 10px;
    }

    .header--simple {
      grid-template-columns: 1fr auto;
      padding: 10px 0;
    }

    .header__heading-link {
      text-decoration: none;
      color: #323232;
    }

    .site-brand {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .header__ad-badge {
      display: inline-block;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #fff;
      background: #d36031;
      border-radius: 4px;
      white-space: nowrap;
    }

    /* --- Záruční sloupec --- */
    .guarantee_column_row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      background: #f5f5f5;
      padding: 16px 20px;
      border-radius: 8px;
      margin: 10px 0;
      gap: 10px;
    }

    .guarantee_column_row--full {
      width: 100%;
      max-width: 100%;
      margin: 24px 0 20px;
      justify-content: space-around;
      gap: 16px;
    }

    .guarantee_column_item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      font-size: 14px;
      color: #000;
      flex: 1 1 180px;
      min-width: 0;
      max-width: 100%;
      justify-content: center;
    }

    .guarantee_column_item div {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .guarantee_column_item strong {
      font-weight: 700;
      font-size: 14px;
      line-height: 1.3;
    }

    .guarantee_column_item span {
      font-size: 12px;
      color: #555;
      line-height: 1.3;
    }

    .guarantee_column_item img {
      width: 36px;
      height: auto;
      flex-shrink: 0;
    }

    @media (max-width: 749px) {
      .guarantee_column_row--full {
        flex-direction: column;
        align-items: stretch;
      }
      .guarantee_column_item {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        font-size: 12px;
      }
      .guarantee_column_item img {
        width: 28px;
      }
    }

    /* --- Produkt --- */
    .product {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      padding: 20px 0 40px;
    }

    @media (max-width: 990px) {
      .product {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .product > * {
        min-width: 0;
        max-width: 100%;
      }

      .guarantee_column_row--full {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 14px;
        gap: 12px;
      }

      .guarantee_column_item {
        flex: 1 1 auto;
        width: 100%;
        justify-content: flex-start;
      }
    }

    .product__media-wrapper {
      position: relative;
      min-width: 0;
      max-width: 100%;
    }

    @media (min-width: 991px) {
      .product__media-wrapper {
        position: sticky;
        top: 16px;
        align-self: start;
      }
    }

    .product-gallery {
      box-sizing: border-box;
    }

    .product-gallery__main {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.05);
      aspect-ratio: 1 / 1;
      background: #f5f5f5;
      width: 100%;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }

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

    .product-gallery__arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      background: rgba(255,255,255,0.92);
      color: #323232;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      transition: background 0.2s;
    }

    .product-gallery__arrow:hover {
      background: #fff;
    }

    .product-gallery__arrow--prev {
      left: 10px;
    }

    .product-gallery__arrow--next {
      right: 10px;
    }

    .product-gallery__thumbs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-top: 10px;
      min-width: 0;
      max-width: 100%;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }

    @media (min-width: 991px) {
      .product-gallery__main,
      .product-gallery__thumbs {
        width: 66.666%;
        max-width: 66.666%;
      }
    }

    .product-gallery__thumb {
      padding: 0;
      border: 2px solid transparent;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      background: #f5f5f5;
      aspect-ratio: 1 / 1;
      min-width: 0;
      max-width: 100%;
    }

    .product-gallery__thumb.is-active {
      border-color: #fff;
      box-shadow: 0 0 0 2px #323232;
    }

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

    .product__info-wrapper {
      padding: 10px 0;
      min-width: 0;
      max-width: 100%;
    }

    .product__title h1 {
      font-size: clamp(1.15rem, 4.5vw, 1.75rem);
      font-weight: 700;
      color: #323232;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .price {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
      margin: 10px 0;
    }

    .price__sale .price-item--sale {
      font-size: clamp(1.25rem, 5vw, 1.75rem);
      font-weight: 700;
      color: #cd201a;
    }

    .price__sale .price-item--regular {
      font-size: 18px;
      color: #888;
      text-decoration: line-through;
    }

    .price__badge-sale {
      background: #ff0000;
      color: #fff;
      padding: 4px 12px;
      font-size: 16px;
      font-weight: 700;
      border-radius: 0;
      display: inline-block;
      position: relative;
      margin-left: 10px;
    }

    .price__badge-sale::before {
      content: '';
      display: block;
      width: 14px;
      height: 14px;
      background: #ff0000;
      position: absolute;
      left: -7px;
      top: 3px;
      transform: rotate(45deg);
    }

    /* --- Varianty --- */
    .product-form__input {
      margin: 15px 0;
    }

    .product-form__input .form__label {
      display: block;
      font-weight: 600;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .product-form__input input[type="radio"] {
      display: none;
    }

    .product-form__input input[type="radio"] + label {
      display: inline-block;
      padding: 8px 18px;
      border: 1px solid #ccc;
      border-radius: 6px;
      margin: 4px 6px 4px 0;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
    }

    .product-form__input input[type="radio"]:checked + label {
      background: #ff4f00;
      color: #fff;
      border-color: #ff4f00;
    }

    .quantity {
      display: flex;
      align-items: center;
      border: 1px solid #ccc;
      border-radius: 6px;
      width: fit-content;
      margin: 10px 0;
    }

    .quantity__button {
      width: 40px;
      height: 40px;
      background: transparent;
      border: none;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
    }

    .quantity__input {
      width: 60px;
      text-align: center;
      border: none;
      font-size: 16px;
      font-weight: 500;
      padding: 5px 0;
    }

    .product-form__submit {
      width: 100%;
      padding: 14px;
      font-size: 16px;
      font-weight: 700;
      background: #fff;
      color: #000;
      border: 1px solid #000;
      border-radius: 7px;
      margin-top: 10px;
      cursor: pointer;
      transition: 0.2s;
      text-decoration: none;
      text-align: center;
      display: block;
      box-sizing: border-box;
    }

    .product-form__submit:hover {
      background: #f5f5f5;
    }

    .custom_dynamic_pay_view {
      margin-top: 10px;
      animation: headShake 3s infinite ease-in-out;
    }

    @keyframes headShake {
      0% { transform: translateX(0); }
      3.5% { transform: translateX(-6px) rotateY(-9deg); }
      8.5% { transform: translateX(5px) rotateY(7deg); }
      13.5% { transform: translateX(-3px) rotateY(-5deg); }
      18.5% { transform: translateX(2px) rotateY(3deg); }
      40% { transform: translateX(0); }
    }

    /* --- Záruční seznam --- */
    .assure_list {
      margin-top: 15px;
    }

    .assure_item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      padding: 4px 0;
      min-width: 0;
    }

    .assure_item span {
      min-width: 0;
      flex: 1;
      word-break: break-word;
    }

    .assure_item img {
      width: 24px;
      height: auto;
    }

    .assure_item .highlight {
      color: #ff0000;
      font-weight: 700;
    }

    /* --- Popis (accordion) --- */
    .collapsible-content-wrapper-narrow {
      margin: 0 auto;
      padding-right: 140px;
      padding-left: 140px;
      max-width: 73.4rem;
      width: 100%;
    }

    @media (max-width: 990px) {
      .collapsible-content-wrapper-narrow {
        padding-right: 0;
        padding-left: 0;
        max-width: 100%;
      }
    }

    .accordion {
      border-bottom: 1px solid #e9e9e9;
      padding: 10px 0;
    }

    .accordion summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 18px;
      padding: 8px 0;
    }

    .accordion .icon-caret {
      transition: transform 0.3s;
    }

    .accordion details[open] .icon-caret {
      transform: rotate(180deg);
    }

    .accordion__content {
      padding: 10px 0;
      font-size: 15px;
      line-height: 1.7;
      max-width: 100%;
    }

    .accordion__content p {
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }

    .accordion__content img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 15px auto;
      border-radius: 8px;
    }

    .rte ul {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .rte ul li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding: 4px 0;
      font-weight: 500;
      min-width: 0;
      word-break: break-word;
    }

    .rte ul li svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    /* --- Patička --- */
    .footer {
      background: #fff;
      border-top: 1px solid #e9e9e9;
      padding: 30px 0 10px;
    }

    .footer__content-top {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid #e9e9e9;
    }

    .footer-block__heading {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-block__heading svg {
      width: 16px;
      height: 16px;
      fill: #000;
      display: none;
    }

    @media (max-width: 749px) {
      .footer-block__heading svg {
        display: block;
      }
    }

    .footer-block__details-content {
      list-style: none;
      padding: 0;
    }

    .footer-block__details-content li {
      padding: 4px 0;
    }

    .footer-block__details-content a {
      color: #323232;
      font-size: 14px;
    }

    .footer-block__details-content a:hover {
      color: rgba(50,50,50,0.7);
    }

    .footer-paypal {
      text-align: center;
      padding: 15px 0;
    }

    .footer-paypal img {
      max-width: 300px;
      width: 100%;
    }

    .footer__content-bottom {
      text-align: center;
      padding-top: 15px;
      font-size: 13px;
      color: #777;
    }

    .footer__content-bottom a {
      color: #d36031;
      font-weight: 600;
    }

    /* --- Float Add to Cart (mobil) --- */
    .pfac_container,
    #pfacContainer {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
      z-index: 55;
      padding: 8px 0;
      box-sizing: border-box;
      transform: translateY(100%);
      transition: transform 0.25s ease;
    }

    .pfac_container.is-visible,
    #pfacContainer.is-visible {
      display: block;
      transform: translateY(0);
    }

    @media (max-width: 789px) {
      body.pfac-active {
        padding-bottom: 120px;
      }
    }

    @media (min-width: 790px) {
      .pfac_container.is-visible,
      #pfacContainer.is-visible {
        padding: 12px 0;
      }

      body.pfac-active {
        padding-bottom: 80px;
      }

      .pfac_small_hide {
        display: flex !important;
      }

      .dt_left_view {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        min-width: 0;
        max-width: 45%;
      }

      .pfac_pro_img {
        width: 56px;
        height: 56px;
        object-fit: cover;
        border-radius: 6px;
        flex-shrink: 0;
      }

      .dt_left_view_info {
        min-width: 0;
      }

      .dt_title {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .dt_right_view {
        flex: 2;
        width: auto;
      }
    }

    .desktop_container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1500px;
      margin: 0 auto;
      padding-left: 6px;
      padding-right: 6px;
      box-sizing: border-box;
    }

    .dt_left_view {
      display: none;
    }

    .dt_right_view {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      flex-wrap: wrap;
      min-width: 0;
    }

    .pfac_selects {
      display: flex;
      flex: 1 1 100%;
      gap: 8px;
      min-width: 0;
      width: 100%;
    }

    @media (min-width: 790px) {
      .pfac_selects {
        flex: 1;
        width: auto;
      }
    }

    .pfac_select,
    .pfac_selects select {
      flex: 1;
      padding: 8px 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 13px;
      background: #fff;
      min-width: 0;
      max-width: 100%;
      width: 100%;
    }

    .ellipsis_1 {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
    }

    .pfac_operator_view {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1 1 100%;
      width: 100%;
      min-width: 0;
    }

    @media (min-width: 790px) {
      .pfac_operator_view {
        flex: 0 0 auto;
        width: auto;
      }
    }

    .pfac_customer_stepper {
      display: flex;
      border: 1px solid #ddd;
      border-radius: 6px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .pfac_stepper_btn {
      width: 36px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f5f5f5;
      cursor: pointer;
      user-select: none;
      color: #333;
    }

    .pfac_stepper_btn svg {
      width: 16px;
      height: 16px;
    }

    .pfac_input,
    .pfac_customer_stepper input {
      width: 44px;
      text-align: center;
      border: none;
      border-left: 1px solid #ddd;
      border-right: 1px solid #ddd;
      font-size: 15px;
      padding: 0;
      background: #fff;
      height: 40px;
      -moz-appearance: textfield;
    }

    .pfac_input::-webkit-outer-spin-button,
    .pfac_input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    .pfac_btn,
    .pfac_btn_submit {
      background: #ff0000;
      color: #fff;
      padding: 10px 14px;
      border: none;
      border-radius: 6px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 14px;
      cursor: pointer;
      white-space: nowrap;
      text-decoration: none;
      flex: 1;
      min-width: 0;
      max-width: 100%;
      height: 40px;
      box-sizing: border-box;
    }

    .pfac_btn svg {
      width: 20px;
      height: 20px;
      fill: #fff;
      flex-shrink: 0;
    }

    .pfac_price {
      color: #cd201a;
      font-weight: 700;
      font-size: 16px;
    }

    @media (max-width: 480px) {
      .pfac_container,
      #pfacContainer {
        padding: 6px 0;
      }

      .desktop_container {
        padding-left: 4px;
        padding-right: 4px;
      }

      .pfac_select,
      .pfac_selects select {
        font-size: 12px;
        padding: 7px 8px;
      }

      .pfac_btn,
      .pfac_btn_submit {
        font-size: 13px;
        padding: 10px 10px;
      }

      body.pfac-active {
        padding-bottom: 130px;
      }
    }

    /* --- Back to top --- */
    .lt_back_to_top {
      position: fixed;
      bottom: 130px;
      right: 20px;
      z-index: 10;
      background: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.15);
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .lt_back_to_top svg {
      width: 30px;
      height: 30px;
      fill: #888;
    }

    /* --- Helper --- */
    .hidden {
      display: none !important;
    }
    .visually-hidden {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0,0,0,0) !important;
      border: 0 !important;
    }
    .text-center {
      text-align: center;
    }
    .mt-10 {
      margin-top: 10px;
    }
    .mb-10 {
      margin-bottom: 10px;
    }
    .gap-10 {
      gap: 10px;
    }
    .flex {
      display: flex;
    }
    .flex-wrap {
      flex-wrap: wrap;
    }
    .items-center {
      align-items: center;
    }
    .justify-between {
      justify-content: space-between;
    }
    .w-full {
      width: 100%;
    }
    .border-bottom {
      border-bottom: 1px solid #e9e9e9;
      padding-bottom: 10px;
      margin-bottom: 10px;
    }
    .bg-light {
      background: #f5f5f5;
      padding: 15px;
      border-radius: 10px;
    }

    /* --- Responsive --- */
    @media (max-width: 749px) {
      .dt_right_view {
        flex-direction: column;
        align-items: stretch;
      }
      .pfac_selects {
        flex-wrap: wrap;
      }
      .pfac_selects select {
        flex: 1 1 100%;
      }
      .pfac_operator_view {
        flex-wrap: wrap;
      }
      .footer__content-top {
        grid-template-columns: 1fr;
      }
    }

    @media (min-width: 750px) {
      .dt_left_view {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
      }
      .dt_left_view img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 6px;
      }
      .dt_title {
        font-weight: 700;
        font-size: 14px;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
    }

.footer-site {
  background: #fff;
  border-top: 1px solid #e9e9e9;
  padding: 30px 0 15px;
  font-size: 14px;
  color: #323232;
}
.footer-site .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.footer-site .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.footer-site .col-md-3 {
  flex: 1 1 200px;
  min-width: 0;
  max-width: 100%;
}
.footer-site .col-md-6 {
  flex: 2 1 280px;
  min-width: 0;
  max-width: 100%;
}
.footer-site__intro {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.footer-site__brand {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #323232;
  text-decoration: none;
}

.footer-site__contact-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.footer-site ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-site ul li {
  padding: 4px 0;
}
.footer-site ul a {
  color: #323232;
  text-decoration: none;
}
.footer-site ul a:hover {
  color: #d36031;
}
.footer-site .copyright {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #e9e9e9;
  font-size: 13px;
  color: #777;
}
.legal-page {
  padding: 24px 0 48px;
  background: #fdfbf7;
}
.legal-content {
  word-break: break-word;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.legal-content .wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}
.legal-content a {
  color: #d36031;
  font-weight: 600;
}
.legal-content a:hover {
  text-decoration: underline;
}
.legal-content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 8px;
  color: #323232;
  padding-bottom: 12px;
  border-bottom: 2px solid #d36031;
}
.legal-content .last-updated {
  color: #777;
  font-size: 14px;
  margin-bottom: 24px;
}
.legal-content h2 {
  font-size: 1.25rem;
  margin: 24px 0 12px;
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 18px 0 10px;
}
.legal-content h4 {
  font-size: 1rem;
  margin: 14px 0 8px;
}
.legal-content p,
.legal-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
html, body {
  overflow-x: clip;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1 0 auto;
}

.product-recommendations {
  padding: 20px clamp(16px, 5vw, 40px) 40px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.product-recommendations__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #323232;
}

.product-recommendations__carousel {
  position: relative;
  min-width: 0;
  max-width: 100%;
  padding: 0 44px;
}

.product-recommendations__viewport {
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.product-recommendations__track {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.35s ease;
  will-change: transform;
}

.product-recommendations__arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #323232;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-recommendations__arrow:hover:not(:disabled) {
  background: #fff;
}

.product-recommendations__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.product-recommendations__arrow--prev {
  left: 0;
}

.product-recommendations__arrow--next {
  right: 0;
}

.product-recommendations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-recommendations__item {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
}

.rec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
}

.rec-card__media-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.rec-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  background: #cd201a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.rec-card__media {
  display: block;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
}

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

.rec-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding-top: 12px;
  min-width: 0;
}

.rec-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  min-width: 0;
}

.rec-card__title a {
  color: #323232;
  text-decoration: none;
  word-break: break-word;
}

.rec-card__title a:hover {
  color: #d36031;
}

.rec-card__rating {
  font-size: 13px;
  color: #ffa800;
  letter-spacing: 1px;
}

.rec-card__rating span {
  color: #323232;
  font-weight: 600;
  margin-left: 4px;
  letter-spacing: 0;
}

.rec-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.rec-card__price-sale {
  font-size: clamp(1.125rem, 2.8vw, 1.5rem);
  font-weight: 700;
  color: #cd201a;
}

.rec-card__price--sale .rec-card__price-sale {
  color: #cd201a;
}

.rec-card__price-regular {
  font-size: 13px;
  color: #888;
}

.rec-card__btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  padding: 10px 8px;
  font-size: clamp(11px, 2.5vw, 14px);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  transition: opacity 0.2s;
  line-height: 1.2;
}

.rec-card__btn:hover {
  opacity: 0.85;
}

@media (max-width: 990px) {
  .product-recommendations__carousel {
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .product-recommendations {
    padding-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .product-recommendations__carousel {
    padding: 0 36px;
  }
  .product-recommendations__track {
    gap: 12px;
  }
  .product-recommendations__arrow {
    width: 34px;
    height: 34px;
  }
  .rec-card__title {
    font-size: 12px;
  }
  .rec-card__btn {
    padding: 8px 6px;
  }
}
@media (max-width: 640px) {
  .footer-site .col-md-3,
  .footer-site .col-md-6 {
    word-break: break-all;
  }
  .footer-site .row {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .page-width,
  .footer-site .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .legal-content .wrapper {
    padding: 20px 16px;
  }
  .legal-page {
    padding: 16px 0 32px;
  }
}

.product-form__payments-img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 10px auto;
}

.assure_item__highlight {
  color: #ff0000;
  font-weight: 700;
}

.rte__accent {
  color: #e67e23;
}

.rte__img-wrap {
  text-align: center;
}

@media (max-width: 640px) {
  .header--simple {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .site-brand {
    word-break: break-word;
    min-width: 0;
    flex: 1;
  }

  .header__ad-badge {
    white-space: normal;
    text-align: center;
  }

  .product-form__input input[type="radio"] + label {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 4px 0;
    box-sizing: border-box;
    word-break: break-word;
    white-space: normal;
  }

  .product-form__submit,
  .shopify-payment-button__button--unbranded {
    width: 100%;
    max-width: 100%;
  }

  .quantity {
    max-width: 100%;
  }

  .bg-light {
    padding: 12px;
  }

  .custom_dynamic_pay_view {
    animation: none;
  }

  .guarantee_column_row--full {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .guarantee_column_item strong,
  .guarantee_column_item span {
    word-break: break-word;
  }

  .pfac_btn span {
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .product {
    padding: 12px 0 24px;
    gap: 16px;
  }

  .product-gallery__arrow {
    width: 34px;
    height: 34px;
  }

  .product-gallery__arrow--prev {
    left: 6px;
  }

  .product-gallery__arrow--next {
    right: 6px;
  }

  .price__badge-sale {
    margin-left: 0;
    margin-top: 6px;
    font-size: 14px;
  }

  .pfac_btn,
  .pfac_btn_submit {
    font-size: 12px;
    padding: 10px 8px;
  }

  .pfac_btn svg {
    width: 18px;
    height: 18px;
  }

  .rec-card__media-wrap {
    min-width: 0;
  }
}
