#webshop {
  position: relative;
  width: 100%;
  min-height: 800px;
  background-image: url('../img/kx.jpg');
  background-repeat: repeat;
  background-size: 40px;
  box-sizing: border-box;
  padding: 250px 0 100px;
  overflow-x: hidden;
}
  #webshop h1 {
    font-size: 2.5em;
    color: #673b16;
    text-align: center;
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 5px;
  }
  #webshop h2 {
    font-size: 1.3em;
    font-weight: 500;
    color: #673b16;
    text-align: center;
    margin: 0 0 25px;
  }
    #webshop h2 def {
      display: inline-block;
      vertical-align: top;
      background: #673b16;
      width: 40px;
      height: 40px;
      font-size: .9em;
      color: #fff;
      letter-spacing: .02em;
      border-radius: 100%;
      -webkit-border-radius: 100%;
      box-sizing: border-box;
      padding: 7px 0 0 0;
      margin: -7px 0 0 0;
    }
  #webshop .action {
    text-align: center;
    margin: 0 0 70px;
  }
  #webshop .actions {
    text-align: center;
    margin: 0 0 70px;
  }

  .products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
  }
  .products.p1 {
    margin: 0 0 50px;
  }
    .products a {
      position: relative;
      display: block;
      width: 100%;
      height: 150px;
      background: rgb(240,138,0);
      background: rgb(243,153,0);
      background: -moz-linear-gradient(0deg, rgba(243,153,0,1) 0%, rgba(255,212,1,1) 100%);
      background: -webkit-linear-gradient(0deg, rgba(243,153,0,1) 0%, rgba(255,212,1,1) 100%);
      background: linear-gradient(0deg, rgba(243,153,0,1) 0%, rgba(255,212,1,1) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f39900",endColorstr="#ffd401",GradientType=1);
      border-radius: 100%;
      -webkit-border-radius: 100%;
      box-shadow: 0 0 15px 10px rgba(0,0,0, .2);
      box-sizing: border-box;
      padding: 15px;
    }
    .products a:hover {
      box-shadow: 0 0 20px 15px rgba(0,0,0, .3);
    }
    .products a.spcr {
      background: none;
      border: none;
      box-shadow: none;
    }
      .products a .prod {
        display: block;
        width: 100%;
        height: 100%;
        background-color: #fff;
        background-position: center center;
        background-size: 90%;
        background-repeat: no-repeat;
        border-radius: 100%;
        -webkit-border-radius: 100%;
        box-shadow: 0 0 8px 3px rgba(0,0,0, .1);
        overflow: hidden;
        transition: background .3s;
        -webkit-transition: background .3s;
      }
      .products a.skistar .prod {
        background-size: cover;
        background-position: top center;
      }
        .products a:not(.skistar):hover .prod {
          background-size: 95%;
        }
      .products a .kex {
        position: absolute;
        bottom: 15px;
        right: 20px;
        display: block;
        width: 90px;
        aspect-ratio: 1;
        background-color: #fff;
        font-family: 'AP', sans-serif;
        font-size: 1.8em;
        font-weight: bold;
        color: #5c2b0f;
        text-align: center;
        border-radius: 100%;
        -webkit-border-radius: 100%;
        border: 5px solid #5c2b0f;
        box-sizing: border-box;
        padding: 7px 0 0 0;
        transform: rotate(-7deg);
        overflow: visible;
        transition: background .3s, color .3s;
      }
      .products a:hover .kex {
        background-color: #fdbe0f;
        color: #cc1a1c;
        border-color: #cc1a1c;
      }
      .products a .kex.pos-2 {
        top: 0;
        bottom: auto;
        left: 0;
      }
        .products a .kex span {
          display: block;
          font-style: normal;
          font-size: .5em;
          margin: -8px 0 0 0;
        }
        .products a .kex i {
          font-style: normal;
          font-size: .7em;
          margin: 0 0 0 4px;
        }
        .products a .kex img {
          position: absolute;
          z-index: 10000 !important;
          bottom: 6px;
          right: -7px;
          display: inline-block;
          width: 115%;
          height: auto;
          transform: rotate(-4deg);
          transition: all .15s;
          -webkit-transition: all .15s;
        }
        .products a:hover .kex img {
          bottom: 3px;
          right: -12px;
          width: 125%;
          transform: rotate(-8deg);
        }


  .product .title {
    font-family: 'Frt', sans-serif;
    font-size: 3.5em;
    font-weight: bold;
    color: #673b16;
    line-height: 1.05em;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 30px;
  }
  .product .title.brk {
    word-break: break-all;
  }
  .product .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    background: rgb(243,153,0);
    background: linear-gradient(0deg, rgba(243,153,0,1) 0%, rgba(255,212,1,1) 100%);
    box-shadow: 0 15px 25px 10px rgba(0,0,0, .15);
    transition: all .4s;
    -webkit-transition: all .4s;
  }
  .product .content.ordering {
    grid-template-columns: 0fr 1fr;
  }
    .product .content a.image {
      display: block;
      width: 100%;
      background-color: #fff;
      border-radius: 3px;
      -webkit-border-radius: 3px;
    }
      .product .content a.image div {
        display: block;
        width: 100%;
        height: 100%;
        background-position: center center;
        background-size: 70%;
        background-repeat: no-repeat;
        transition: background .3s;
        -webkit-transition: background .3s;
      }
      .product.skistar .content a.image div {
        background-size: cover;
        background-position: top center;
      }
      .product:not(.skistar) .content a.image:hover div {
        background-size: 75%;
      }
    .product .content .details {
      box-sizing: border-box;
      padding: 40px;
    }
      .product .details .stock {
        font-size: .8em;
        margin: 0 0 4px;
      }
      .product .details .points {
        display: inline-block;
        background: #673b16;
        font-size: 1.2em;
        font-weight: 500;
        color: #ffd401;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        box-sizing: border-box;
        padding: 6px 20px 5px;
        margin: 0 0 30px;
      }
      .product .details .descr {
        font-size: 1.1em;
        font-weight: 400;
        margin: 0 0 30px;
      }
      .product .details .size {
        margin: 0 0 30px;
      }
        .product .details .size .opt {
          display: inline-block;
          vertical-align: top;
          margin: 0 30px 0 0;
        }
        .product .details .size .opt:last-child {
          margin-right: 0;
        }
          .product .details .size .opt label {
            cursor: pointer;
            font-weight: 500;
          }
          .product .details .size def {
            display: inline-block;
            vertical-align: middle;
            width: 16px;
            height: 16px;
            background: rgba(0,0,0, .2);
            border-radius: 100%;
            -webkit-border-radius: 100%;
            margin: 0;
          }
          .product .details .size def + label {
            display: inline-block;
            vertical-align: middle;
            color: rgba(0,0,0, .5);
            cursor: default !important;
            margin: 2px 0 0 10px;
          }

      .product .details .addToCart.proc {
        background-color: #333;
        text-shadow: none;
        cursor: none;
      }
      .product .details .addToCart.out {
        opacity: .8;
        background-color: #555;
        text-shadow: none;
        cursor: none;
      }

      .product .details .info_points {
        background: #fff;
        font-size: .9em;
        font-weight: 500;
        color: #222;
        line-height: 1.2em;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        border: 3px solid #cc1a1c;
        box-sizing: border-box;
        padding: 13px 15px 10px;
      }

      .product .details .img_gallery {
        margin: 30px 0 10px;
      }
        .product .details .img_gallery a {
          display: inline-block;
          vertical-align: top;
          width: 70px;
          aspect-ratio: 1;
          background-color: #fff;
          box-sizing: border-box;
          padding: 7px;
          margin: 0 8px 8px 0;
        }
        .product .details .img_gallery a:last-child {
          margin-right: 0;
        }
          .product .details .img_gallery a div {
            display: block;
            width: 100%;
            aspect-ratio: 1;
          }

      .product .details .order {
      }
        .product .details .order .phone_info {
          background-color: #fff;
          font-size: .9em;
          border-radius: 4px;
          -webkit-border-radius: 4px;
          border: 2px solid #000;
          box-sizing: border-box;
          padding: 10px;
          margin: 0 0 15px;
        }
          .product .details .order .phone_info a {
            font-weight: 600;
          }
        .product .details .order a.btn {
          text-transform: uppercase;
        }
        .product .details .order a.btn.disabled {
          opacity: .4;
          background-color: #000;
          cursor: none;
        }
        .product .details .order .shipping {
          font-size: .9em;
          font-style: italic;
          font-weight: 500;
          margin: 10px 0 0 0;
        }

        .product .order_module {
          position: relative;
          display: none;
          width: 100%;
          background-color: #fff;
          box-shadow: 0 0 15px 5px rgba(0,0,0, .1);
          box-sizing: border-box;
          padding: 30px;
        }
          .product .order_module .payment {
            width: 100%;
            min-height: 500px;
          }
          .product .order_module .free {
            position: absolute;
            display: none;
            grid-template-columns: 1fr;
            align-items: center;
            justify-items: center;
            width: 100%;
          }
            .product .order_module .free img {
              display: block;
              width: 60px;
              height: auto;
              margin: 0 auto;
            }

  .product + .paths {
    text-align: center;
    margin: 50px 0 0 0;
  }
  .product + .paths a {
    display: inline-block;
    vertical-align: top;
    margin: 0 5px 10px;
  }





@media screen and (max-width: 1200px){
  #webshop {
    padding: 180px 0 80px;
  }
  .product .title {
    font-size: 2.5em;
    line-height: 1.05em;
    margin: 0 0 30px;
  }
}



@media screen and (max-width: 900px){
  .products {
    gap: 20px;
  }
    .products a {
      padding: 8px;
    }
      .products a .prod {
        background-size: 80%;
      }
      .products a:not(.skistar):hover .prod {
        background-size: 85%;
      }
      .products a .kex {
        bottom: 0;
        right: -5px;
        width: 70px;
        font-size: 1.4em;
        padding: 5px 0 0 0;
      }

  .product .content {
    grid-template-columns: .4fr .6fr;
  }
    .product .content .details {
      padding: 25px;
    }
      .product .details .points {
        font-size: .9em;
        padding: 5px 15px 4px;
        margin: 0 0 20px;
      }
      .product .details .descr {
        font-size: .9em;
        margin: 0 0 20px;
      }
      .product .details .size {
        margin: 0 0 25px;
      }
        .product .details .size .opt {
          margin: 0 25px 0 0;
        }
      .product .details .info_points {
        font-size: .9em;
        font-weight: 500;
        color: #222;
        line-height: 1.2em;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        border: 3px solid #cc1a1c;
        box-sizing: border-box;
        padding: 13px 15px 10px;
      }
}



@media screen and (max-width: 700px){
  .products {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .product .content {
    display: block;
  }
    .product .title {
      font-size: 2em;
    }
}



@media screen and (max-width: 600px){
  #webshop {
    padding: 120px 0 60px;
  }
    .products a .kex {
      bottom: -10px;
      right: -5px;
      width: 65px;
      font-size: 1.2em;
    }
      .products a .kex span {
        margin: -5px 0 0 0;
      }
    .product .title {
      font-size: 1.6em;
      margin: 0 0 20px;
    }
}
