/* import sass from bootstrap */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  background: #fff;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin: 0 !important;

  @media (max-width: 767px) {
    font-size: 16px;
  }
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: inherit;
}

p {
  margin: 0;
  color: #101010;
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  background: none;
  border: none;

  &:hover {
    transition: all 0.25s ease-in-out;
  }
}

main {
  min-height: 500px;
}

a {
  color: #0a6564;
  text-decoration: none;

  &:hover {
    transition: all 0.25s ease-in-out;
  }
}

/* generals */
.text-white {
  color: #fff;
}

.section {
  padding: 100px 0 0 0;
  position: relative;

  @media (max-width: 767px) {
    padding-top: 40px;
  }
}

.featured-products {
  @media (max-width: 767px) {
    padding-top: 70px;
  }
}

.section-head {
  margin-bottom: 3rem;

  @media (max-width: 767px) {
    margin-bottom: 2rem;
  }
}

.section-header {
  margin-bottom: 40px;

  @media (max-width: 767px) {
    margin-bottom: 25px;
  }
}

.section-title {
  font-weight: 400;
  color: #02406D;
  font-family: "Bebas Neue", cursive;
  text-align: center;
  font-size: 62px;

  @media (max-width: 767px) {
    font-size: 42px;
  }
}

.btn-primary {
  text-transform: uppercase;
  font-weight: 700;
  height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 40px;
  background: #00AFA9;
  border: 1px solid #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;

  @media(max-width: 767px) {
    padding: 0 20px;
    min-width: 160px;
  }

  /* &:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.25s ease-in-out;
  } */

  &:visited {
    color: #fff;
  }

  &:hover,
  &:active,
  &:focus {
    background: #0a6564 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
  }

  &:hover:before {
    opacity: 0;
  }
}

.btn-outline {
  text-transform: uppercase;
  font-weight: 700;
  height: 60px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 40px;
  border: 1px solid #fff;
  color: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);

  &:visited {
    color: #fff;
  }

  &:hover,
  &:active,
  &:focus {
    background: #fff !important;
    color: #222949 !important;
  }
}

.buttons {
  display: flex;
  gap: 20px;
}

/* header */
.top-bar {
  background: #02406D;
  color: #fff;
  padding: 10px 40px;

  @media (max-width: 767px) {
    display: none;
  }
}

.top-bar {
  ul {
    display: flex;
    align-items: center;
  }

  li {
    font-size: 14px;
    display: flex;
    line-height: 1;
    align-items: center;
  }

  li+li {
    margin-left: 20px;
  }

  .icon,
  svg {
    width: auto;
    height: 16px;
    margin-right: 8px;

    path {
      fill: #fff;
    }
  }

  a {
    color: #fff;
    line-height: 1;

    &:hover {
      opacity: 0.8;
    }
  }
}

a:visited {
  color: #222949;
}

.header-message-bar {
  background: #f1f1f1;
  padding: 20px 40px;
  text-align: center;

  @media (max-width: 767px) {
    padding: 15px 20px;
  }

  p {
    color: #010101;
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
  }

  a {
    color: #02406D;
    text-decoration: underline;

    &:hover {
      color: #ba2c20;
    }
  }
}

.page-header {
  background: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eee;

  .page-header__content {
    display: flex;
    align-items: center;
    padding: 28px 40px;

    @media (max-width: 767px) {
      padding: 15px 0;
    }

    >* {
      position: relative;
      z-index: 10;
    }
  }

  .brand-logo {
    max-width: 165px;
    height: 80px;
    display: block;
    flex: 1;

    @media (max-width: 767px) {
      height: 60px;
      max-width: 120px;
    }
  }

  .page-header__actions {
    margin-left: auto;

    ul {
      display: flex;
      align-items: center;
      gap: 20px;

      @media (max-width: 767px) {
        gap: 10px;

        li:nth-child(2) {
          display: none;
        }

      }
    }

    .action-item {
      width: 50px;
      height: 50px;
      border: 1px solid #02406D;
      border-radius: 50%;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;

      @media (max-width: 767px) {
        width: 45px;
        height: 45px;
      }

      svg {
        width: 30px;
        height: auto;

        @media (max-width: 767px) {
          width: 25px;
        }

        circle,
        path {
          stroke: #02406D;
        }
      }
    }
  }
}

.btn-hamburger {
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  svg {
    width: 30px;
    height: auto;
  }
}

.main-menu {
  margin: 0 0 0 6%;

  @media (max-width: 767px) {
    display: none;
  }

  ul {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  li {
    a {
      color: #02406D;
      font-weight: 600;
      position: relative;
      display: inline-block;

      svg {
        width: 20px;
        margin-right: 5px;
        height: auto;
        top: -2px;
        position: relative;
      }

      &:hover {
        color: #00afa9;
      }
    }
  }
}

.lang-holder {
  position: relative;
  color: #02406D;

  @media (max-width: 767px) {
    display: none;
  }

  .lang-drop {
    display: none;
  }
}

.mobile-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9989;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;

  &.show {
    opacity: 1;
    pointer-events: auto;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 70px);
  height: 100vh;
  overflow-x: hidden;
  z-index: 9990;
  background: linear-gradient(163deg,rgba(0, 85, 146, 1) 0%, rgba(2, 64, 109, 1) 51%);
  transform: translate(-105%, 0);
  transition: transform 0.3s ease;

  &.open {
    transform: none;
  }

  .mobile-menu__inner {
    max-height: 100vh;
    overflow-y: auto;
    padding: 50px 20px;
  }

  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 0;
    z-index: 100;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    svg {
      width: 20px;
      height: auto;

      path {
        fill: #fff;
      }
    }
  }

  .mobile-main-menu {
    display: block;

    ul {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    li {
      a {
        color: #fff;
        font-weight: 600;
        position: relative;
        display: inline-block;

        svg {
          width: 25px;
          margin-right: 5px;
          height: auto;
          top: -7px;
          position: relative;
        }
      }
    }
  }

  .action-list {
    margin-top: 40px;

    .action-item {
      width: 50px;
      height: 50px;
      border: 1px solid #fff;
      border-radius: 50%;
      background: transparent;
      display: flex;
      align-items: center;
      margin: 0 auto;
      justify-content: center;
      cursor: pointer;

      @media (max-width: 767px) {
        width: 45px;
        height: 45px;
      }

      svg {
        width: 30px;
        height: auto;

        @media (max-width: 767px) {
          width: 25px;
        }

        circle,
        path {
          stroke: #fff;
        }
      }
    }

    .mobile-lang-holder {
      margin-top: 30px;

      ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;

        li a {
          color: #fff;
          text-align: center;

          &:visited,
          &:active,
          &:hover {
            color: #fff;
          }
        }
      }
    }
  }
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .video-bg video {
    display: none;
  }
}

.hero {
  min-height: 600px;
  height: calc(100vh - 226px);
  position: relative;
  padding: 40px;
  text-align: center;

  display: flex;
  align-items: center;

  @media (max-width: 767px) {
    background-image: url("../images/hero-bg.jpg"); 
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100% auto;
    align-items: flex-start;
    background-color: #000;
    height: auto;
    min-height: 400px;
    padding: 60px 10px 80px 10px;
    text-align: center;
    background-size: cover;
    background-position: center bottom;

    .btn {
      width: 70%;
    }
  }

  &:before {
    content: "";
    background: linear-gradient(304deg,rgba(2, 64, 109, 1) 0%, rgba(255, 255, 255, 0.44) 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;

    @media (max-width: 767px) {
      width: 100%;
    }
  }

  .container {
    position: relative;
    z-index: 1000;
  }
}

.hero-title {
  text-transform: uppercase;
  color: #fff;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;

  @media (max-width: 767px) {
    font-size: 32px;
  }
}

.hero-description {
  color: #fff;
  font-weight: 500;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 20px auto;
}

/* .bull-graphics {
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/bull-hero.svg") no-repeat;
  background-position: center center;
  width: 50%;
  height: 100%;
  background-size: contain;
  z-index: 5;

  @media (max-width: 767px) {
    width: 100%;
  }
} */

.scroll-down {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -25px;
  background: #02406D;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transform-origin: 50% 50%;

  animation: pulse 2s infinite;

  svg {
    width: 20px;
    height: auto;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.2;
  }
}

.banner {
  min-height: 300px;
  text-align: center;
  padding: 30px 0;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: url("../images/top-banner-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;

  @media (max-width: 767px) {
    min-height: 150px;
    padding: 15px;
  }

  &:before {
    content: "";
    background: linear-gradient(304deg,rgba(0, 85, 146, 0.27) 65%, rgba(2, 64, 109, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }

  >* {
    position: relative;
    z-index: 10;
  }

  h1 {
    color: #fff;
    text-align: center;
    font-size: 42px;

    @media (max-width: 767px) {
      font-size: 26px;
    }
  }
}

.entry-content,
.content-holder {
  padding: 60px 0 0 0;

  @media (max-width: 767px) {
    padding-top: 40px;
  }
}

.content-holder {
  @media (max-width: 767px) {
    padding-top: 40px;
  }
}

.content-box {
  border: 1px solid #02406D;
  background: #fff;
  border-radius: 16px;
  padding: 6rem 1rem;

  @media (max-width: 767px) {
    padding: 3rem 20px;
  }
}

.seo-text {
  max-width: 900px;
  margin: 0 auto;
}

.seo-section {
  position: relative;
}

.superman {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
  width: 200px;
  height: 230px;

  @media (max-width:992px) {
    display: none;
  }
}

.superman-1 {
  background-image: url("../images/superman.png");
  left: 3vw;
  top: 30%;
}

.superman-2 {
  background-image: url("../images/superman.png");
  right: 3vw;
  top: 50%;
}

.page .entry-content,
article.article,
.article {
  max-width: 1000px;
  margin: 0 auto;

  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #02406D;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }

  h2 {
    font-size: 32px;

    @media (max-width: 767px) {
      font-size: 28px;
    }
  }

  h3 {
    font-size: 30px;

    @media (max-width: 767px) {
      font-size: 24px;
    }
  }

  h4,
  h5,
  h6 {
    font-size: 24px;

    @media (max-width: 767px) {
      font-size: 20px;
    }
  }

  *:first-child {
    margin-top: 0;
  }

  p {
    color: #010101;
    margin-top: 2rem;
    line-height: 1.65;
  }

  >h2+h2 {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }

  a {
    font-weight: 400;
  }

  figure {
    margin-top: 2rem;
  }

  img {
    width: 100%;
    border-radius: 12px;
    height: auto;
    display: block;
    margin-top: 2rem;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  }

}

article.article,
.article {

  ul,
  ol {
    padding-left: 40px;
    margin: 40px 0;

    li {
      margin-bottom: 5px;
    }

    li::marker {
        color: #02406D;
    }
  }

  a {
    color: #00AFA9;
  }

  ul {
    list-style-type: disc;
  }

  ol {
    list-style: decimal;
  }
}

.block {
  min-height: 480px;
  padding: 80px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

  @media (max-width: 767px) {
    padding: 40px 20px;

  }

  .section-title {
    text-align: left;
    line-height: 1.1;
    max-width: 500px;
  }

  &.block--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  &.block--gradient {
    background: #02406D;
  }
}

.block--hasbg {
  &:before {
    content: "";
    background: linear-gradient(304deg,rgba(0, 85, 146, 1) 0%, rgba(2, 64, 109, 1) 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }

  >* {
    position: relative;
    z-index: 10;
  }

  p {
    color: #fff;
  }

  .section-title {
    color: #fff;
  }
}

.block-categories {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
  padding-left: 60px;

  @media(max-width: 767px) {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    margin-bottom: 30px;
  }

  .category-item {
    max-width: 250px;
    text-align: center;

    img {
      border-radius: 50%;
      aspect-ratio: 1/1;
      object-fit: cover;
    }

    &:hover {
      img {
        outline: 5px solid #fff;
        border-radius: 50%;
      }

      h3 {
        color: #7ca2de;
      }
    }

    h3 {
      color: #fff;
      font-size: 20px;
      margin-top: 20px;
      line-height: 1.2;
    }

    img {
      max-width: 100%;
    }
  }
}

.reseller-block {
  max-width: 1100px;
  margin: 40px auto;

  .reseller-item {
    text-align: center;

    @media (max-width: 767px)  {
      + .reseller-item { margin-top: 35px;
      }
    }
    
    img {
      width: auto;
      height: 100px;
      margin-bottom: 25px;

      @media (max-width: 767px)  {
        height: 90px;
        margin-bottom: 20px;
      }
    }

    h3 {
      font-size: 26px;
      color: #02406D;
      font-weight: 700;
    }
  }
}

/* products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
}

.product-card:hover {
  .product-card__title a {
    color: #00AFA9;
  }

  .product-card__image img {
    transform: scale(1.1);
  }
}

.product-card__data {
  text-align: center;
}

.product-card__title a {
  font-size: 20px;
  font-weight: 500;
  color: #0a1d2b;
}

.product-card__image-holder {
  position: relative;
}

.product-card__price {
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
}

.product-card__cart {
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #02406D;
  transform: translate(-50%, 0);
  border-radius: 50%;
  transition: all 0.25s ease-in-out;

  svg {
    width: 24px;
    height: auto;
  }

  svg path,
  svg circle {
    stroke: #fff;
  }

  &:hover {
    background: #384895;
  }
}

.added_to_cart.wc-forward {
  display: none;
}

.product-card__image {
  overflow: hidden;
  display: block;
  border-radius: 12px;
  border: 1px solid #02406D;
  background: #fff;
  margin-bottom: 30px;
}

.product-card__image img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 35px 20px;
}

.faq-question {
  font-size: 26px;
  font-weight: 700;
  border-left: 8px solid #02406D;
  padding-left: 10px;
}

.faq-answer {
  padding: 10px 25px;
  color: #555;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
}

.review-card {
  background: #fff;
  border: 1px solid #02406D;
  border-radius: 12px;
  padding: 2.5rem;
  min-height: 250px;

  .name {
    color: #02406D;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 22px;
  }

  p,
  .message {
    font-style: italic;
    color: #101010;
  }
}

.stars {
  display: flex;
  gap: 5px;
  margin-top: 30px;

  .full-star {
    width: 20px;
    height: 20px;
    background: url("../images/star.svg") no-repeat;
    background-size: contain;
  }
}

.user-box {
  min-height: 365px;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  padding: 3rem;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  @media (max-width: 767px) {
    justify-content: center;
  }

  @media (max-width: 767px) {
    margin-bottom: 30px;
    padding: 2rem 1rem;
  }

  .user-box__title {
    font-size: 42px;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: "Bebas Neue", cursive;

    @media (max-width: 767px) {
      font-size: 36px;
    }
  }
}

.newsletter-box {
  background-color: rgba(255, 255, 255, 0.7);
  background-image: url("../images/newsletter-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: lighten;
  background-size: auto 90%;

  .user-box__title {
    color: #02406D;
  }

  .mailerlite-form .mailerlite-form-field label {
    display: none;
  }

  #mailerlite-form_2 {
    max-width: 500px;
    width: 100%;
  }

  .mailerlite-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 500px;
    width: 100%;

    form {
      width: 100%;
    }

    >* {
      margin: 20px 0 0 0;
    }

    .mailerlite-form .mailerlite-form-field,
    input[type="email"] {
      border: 1px solid #02406D;
      border-radius: 8px;
      padding: 12px 20px;
      text-align: center;
      width: 100%;
    }

    .mailerlite-subscribe-submit {
      text-transform: uppercase;
      font-weight: 700;
      height: 64px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      letter-spacing: 1px;
      color: #fff;
      padding: 0 40px;
      background: #00AFA9;
      border: 1px solid #fff;
      box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
    
      @media(max-width: 767px) {
        padding: 0 20px;
        min-width: 160px;
      }
    
      /* &:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transition: opacity 0.25s ease-in-out;
      } */
    
      &:visited {
        color: #fff;
      }
    
      &:hover,
      &:active,
      &:focus {
        background: #0a6564 !important;
        color: #fff !important;
        border: 1px solid #fff !important;
      }
    
      &:hover:before {
        opacity: 0;
      }
    }
  }
}

.cta-box {
  background: linear-gradient(109deg,rgba(0, 85, 146, 1) 0%, rgba(2, 64, 109, 1) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;

  p {
    color: #fff;
  }

  >* {
    position: relative;
    z-index: 10;
  }

  &:before {
    content: "";
    background: url("../images/horns.svg") no-repeat center center / contain;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 300px;
    height: 300px;
    z-index: 1;
  }
}

/* products */
ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.wc-block-components-product-price__value.is-discounted {
  background: #ba2c20;
  color: #fff;
}

.wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #02406D;

  @media(max-width: 767px) {
    margin-bottom: 30px;
  }
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-size: 18px;
}

.wc-block-components-totals-item__value {
  color: #02406D;
}

.wp-block-woocommerce-cart-order-summary-block {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  border: 1px solid #02406D !important;
}

.wc-block-components-button__text {
  color: #fff;
}

div.wc-block-cart__submit {
  text-transform: uppercase;
  font-weight: 700;
  height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 40px;
  background: #00AFA9;
  border: 1px solid #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;

  @media(max-width: 767px) {
    padding: 0 20px;
    min-width: 160px;
  }

  /* &:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.25s ease-in-out;
  } */

  &:visited {
    color: #fff;
  }

  &:hover,
  &:active,
  &:focus {
    background: #0a6564 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
  }

  &:hover:before {
    opacity: 0;
  }
}

/* --- Termék oldal konténer --- */
.single-product .product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

/* --- Termékkép --- */
.single-product .product .woocommerce-product-gallery {
  position: relative;
}

.single-product .product .woocommerce-product-gallery img {
  width: 100%;
  border-radius: 10px;
}

/* --- Sale badge --- */
.single-product .product .onsale {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff3366;
  color: #fff;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
  z-index: 20;
}

/* --- Termék cím --- */
.single-product .product .product_title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #02406D;
}

/* --- Ár --- */
.single-product .product .price {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.single-product .product .price del {
  font-size: 18px;
  color: #999;
  margin-right: 10px;
}

/* --- Rövid leírás --- */
.single-product .product .woocommerce-product-details__short-description {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

/* --- Kosárba gomb --- */
.single-product .product .single_add_to_cart_button {
  background: #0066ff;
  color: #fff;
  font-size: 18px;
  padding: 14px 22px;
  border-radius: 6px;
  transition: background 0.3s ease;
  font-weight: 600;
}

.single-product .product .single_add_to_cart_button:hover {
  background: #004ecc;
}

/* --- Mennyiség mező --- */
.single-product .product .quantity input.qty {
  width: 80px;
  text-align: center;
  padding: 8px;
  margin-right: 10px;
}

/* --- Termék meta (SKU, kategóriák) --- */
.single-product .product .product_meta {
  margin-top: 25px;
  font-size: 14px;
  color: #666;
}

/* --- Tabs (Leírás, Vélemények) --- */
.woocommerce-tabs .wc-tabs {
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.woocommerce-tabs .wc-tabs li a {
  padding: 10px 15px;
  font-size: 16px;
  color: #333;
  border-radius: 6px 6px 0 0;
  display: block;
}

.woocommerce-tabs ul.wc-tabs li.active {
  background: #222949;
  font-weight: 600;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.woocommerce-tabs ul.wc-tabs.tabs li a,
.woocommerce-tabs ul.wc-tabs.tabs li.active a {
  height: 100%;
  background: #02406D;
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  transition: none;
}

.woocommerce-tabs ul.wc-tabs.tabs li a {
  background: #fff;
  color: #02406D;
}

.woocommerce-Tabs-panel {
  padding: 20px;
  background: #f5f5f5;
  border-radius: 18px;
}

/* --- Vélemények --- */
.woocommerce-Reviews .woocommerce-Reviews-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.commentlist li {
  margin-bottom: 20px;
}

/* --- Mobil nézet --- */
@media (max-width: 768px) {
  .single-product .product {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* checkout page*/
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
  background: #fbfbfb;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
  background: #fbfbfb;
  padding: 14px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td,
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th {
  font-weight: 700;
  font-size: 16px;
}

.wc-block-components-form.wc-block-checkout__form {
  background: #fff;
  border: 1px solid #02406D;
  padding: 20px;
  border-radius: 12px;
}

.wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  text-transform: uppercase;
  font-weight: 700;
  height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 40px;
  background: #00AFA9;
  border: 1px solid #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;

  @media(max-width: 767px) {
    padding: 0 20px;
    min-width: 160px;
  }

  /* &:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.25s ease-in-out;
  } */

  &:visited {
    color: #fff;
  }

  &:hover,
  &:active,
  &:focus {
    background: #0a6564 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
  }

  &:hover:before {
    opacity: 0;
  }
}

.wp-block-woocommerce-checkout-order-summary-block {
  background: #fff;
  border: 1px solid #02406D;
  padding: 20px;
  border-radius: 12px;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
  padding-right: 0;
}

/* Alap container a checkout oldalhoz */
/* Billing és Shipping mezők elrendezése */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.woocommerce-checkout .woocommerce-billing-fields .form-row,
.woocommerce-checkout .woocommerce-shipping-fields .form-row {
  flex: 1 1 45%; /* két oszlopos elrendezés */
  min-width: 250px;
}

/* Checkout gomb */
.woocommerce-checkout #place_order {
  background-color: #007cba;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.woocommerce-checkout #place_order:hover {
  background-color: #005a8c;
}

/* Kosár összegzés blokk */
.woocommerce-checkout .woocommerce-checkout-review-order {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
  margin-top: 30px;
}

/* Fee, szállítási díj, összesen */
.woocommerce-checkout-review-order-table .fee,
.woocommerce-checkout-review-order-table .shipping {
  font-weight: bold;
  color: #007cba;
}

/* Responsív megjelenés mobilra */
@media (max-width: 768px) {
  .woocommerce-checkout .woocommerce-billing-fields .form-row,
  .woocommerce-checkout .woocommerce-shipping-fields .form-row {
      flex: 1 1 100%;
  }

  .woocommerce-checkout .woocommerce-checkout-review-order {
      margin-top: 20px;
  }
}

.woocommerce-checkout .col2-set {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

/* Bal oszlop (Billing / Customer Details) */
.woocommerce-checkout .col-1 {
  flex: 1 1 60%;
  min-width: 300px;
}

/* Jobb oszlop (Shipping / Order Review) */
.woocommerce-checkout .col-2 {
  flex: 1 1 35%;
  min-width: 250px;
}

/* woocommerce */
.woocommerce-checkout .woocommerce-billing-fields .form-row,
 .woocommerce-checkout .woocommerce-shipping-fields .form-row{
  margin-bottom: 15px;
}

.woocommerce-info, 
.woocommerce-noreviews, p.no-comments,
.showcoupon {
  color: #fff;
}

.woocommerce-form-coupon button {
  text-transform: uppercase;
  font-weight: 700;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 20px;
  background: #00AFA9;
  border: 1px solid #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  margin-top: 15px;

  @media(max-width: 767px) {
    padding: 0 20px;
    min-width: 160px;
  }

  /* &:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.25s ease-in-out;
  } */

  &:visited {
    color: #fff;
  }

  &:hover,
  &:active,
  &:focus {
    background: #0a6564 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
  }

  &:hover:before {
    opacity: 0;
  }
}

.select2-container--default .select2-selection--single {
  height: 42px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row select, .woocommerce form .form-row textarea {
  background: #f1f1f1;
}

.woocommerce-checkout-review-order h3 {
  text-align: left;
  font-size: 24px;
}

.woocommerce-shipping-fields__field-wrapper {
  display: flex;
  flex-direction: column;
}

.woocommerce-checkout .woocommerce-shipping-fields .form-row {
  width: 100%;
}

.wc_payment_methods.payment_methods.methods {
  margin: 30px 0;
  padding-left: 30px;

  li {
    margin-bottom: 20px;
  }
}

.woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-checkout-review-order {
  border: 1px solid #02406D;
}

.woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 20px;
}

.woocommerce-privacy-policy-text {
  font-size: 15px;
  margin-bottom: 15px;
}
.wc_payment_method  {
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #02406D;
}

.payment_box p {
  padding-left: 20px;
}

.form-row.place-order {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.woocommerce-terms-and-conditions-checkbox-text {
  font-size: 1.1rem;
}

.woocommerce-checkout #place_order {
  text-transform: uppercase;
  font-weight: 700;
  height: 62px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 40px;
  background: #00AFA9;
  border: 1px solid #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;

  @media(max-width: 767px) {
    padding: 0 20px;
    min-width: 160px;
  }

  /* &:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.25s ease-in-out;
  } */

  &:visited {
    color: #fff;
  }

  &:hover,
  &:active,
  &:focus {
    background: #0a6564 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
  }

  &:hover:before {
    opacity: 0;
  }
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td, 
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
.order-total {
  font-size: 24px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
  font-weight: 500;
}

/* FOOTER */
.info-bar {
  background: #02406D;
  padding: 40px 0;

  .info-items {
    padding: 0 6vw;
  }

  .info-item {
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 18px;

    @media (max-width: 767px) {
      margin-bottom: 50px;

      &:last-child {
        margin-bottom: 0;
      }
    }

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    img {
      max-width: 90px;
      height: 45px;
    }

    span {
      display: block;
      margin-top: 20px;

      @media (max-width: 767px) {
        margin-top: 10px;
      }
    }
  }
}

.page-footer {
  padding-top: 80px;
  background: url("../images/footer-bg.jpg") no-repeat center center / cover;
  position: relative;
  color: #fff;

  p {
    color: #fff;
  }

  @media (max-width: 767px) {
    text-align: center;
    padding-top: 40px;
  }

  ul {
    li::marker {
      content: "";
      display: none;
    }
  }

  a {
    color: #fff;

    &:hover {
      opacity: 0.5;
    }
  }

  &:before {
    content: "";
    opacity: 0.8;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(304deg,rgba(2, 64, 109, 1) 0%, rgba(255, 255, 255, 0.74) 100%);
  }

  .page-footer__content {
    position: relative;
    z-index: 100;
  }

  .footer-logos {
    margin-bottom: 33px;
  }

  .site-infos>* {
    margin-bottom: 30px;
    font-size: 16px;
    display: flex;
    gap: 15px;
    max-width: 300px;
    align-items: flex-start;

    @media (max-width: 767px) {
      flex-direction: column;
      max-width: 100%;
      align-items: center;
    }

    a,
    p {
      font-weight: 700;
    }

    svg {
      width: 30px;
      height: auto;
    }

    &.email {
      align-items: center;

      svg {
        width: 24px;
      }
    }

    .flag {
      width: 30px;
      position: relative;
      top: 6px;
    }
  }

  .menu-cols {
    h5 {
      font-family: "Bebas Neue", cursive;
      font-size: 24px;
      margin-bottom: 20px;
      font-weight: 400;
      letter-spacing: 1px;

      @media (max-width: 767px) {
        margin-bottom: 15px;
      }
    }

    li {
      margin-bottom: 8px;

      a {
        font-size: 16px;
      }
    }

    @media (max-width: 767px) {
      .menu-col+.menu-col {
        margin-top: 30px;
      }
    }
  }

  .footer-right {
    padding-top: 55px;

    @media (max-width: 767px) {
      padding-top: 0;
    }
  }

  .footer-bottom {
    padding-bottom: 40px;
    text-align: center;
    font-size: 13px;
    max-width: 900px;
    margin: 90px auto 0 auto;

    @media (max-width: 767px) {
      margin-top: 30px;
    }
  }

  .brand-logo {
    max-width: 190px;
  }

  .footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;

    img {
      max-width: 120px;
      max-height: 60px;
    }
  }
}

.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.custom-modal.open {
  display: flex;
}

.custom-modal__content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.close-modal {
  margin-top: 15px;
  padding: 10px;
}

/* wpform */
.wpforms-container {
  max-width: 800px;

  form {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #02406D;
    margin-top: 50px;
  }
}

.wpforms-container .wpforms-form .wpforms-field.wpforms-field-name .wpforms-field-row {
  width: 100%;
  max-width: 100%;
}

.wpforms-container input.wpforms-field-medium {
  width: 100%;
  max-width: 100%;
}

.wpforms-submit-container {
  text-align: right;
}

div.wpforms-container-full button[type="submit"] {
  color: #fff;
  padding: 0 40px !important;
  height: 60px !important;
  background: #0a1d2b !important;
  border: 1px solid #fff !important;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

/* woo account */
.woocommerce-account:not(.logged-in) .woocommerce {
  display: block !important;
}

.woocommerce-account.logged-in .woocommerce {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Login / Register blokkok */
.woocommerce-account .woocommerce h2 {
  text-align: center;
  margin-bottom: 20px;
}

.woocommerce form.login,
.woocommerce form.register {
  background: #fbfbfb;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #ececec;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
  max-width: 450px;
  margin: 0 auto;
}

.woocommerce-MyAccount-navigation li.is-active a {
  text-transform: uppercase;
  font-weight: 700;
  height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 40px;
  background: #0a1d2b !important;
  border: 1px solid #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;

  @media (max-width: 767px) {
    width: 100%;
    margin-top: 20px;
  }

  &:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(321deg,
        rgba(255, 255, 255, 0) 65%,
        rgba(186, 44, 32, 0.67) 100%);
    width: 100%;
    height: 100%;
  }

  &:visited {
    color: #fff;
  }

  &:hover,
  &:active,
  &:focus {
    background: #222949 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
  }
}

.woocommerce-MyAccount-navigation li a {
  &:hover {
    background: #ddd !important;
    color: #000 !important;
  }
}

/* Input mezők */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #dedede;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Fókusz */
.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  outline: none;
  border-color: #1772ff;
  box-shadow: 0 0 0 3px rgba(23, 114, 255, 0.12);
}

/* Label */
.woocommerce-form-row {
  margin-bottom: 10px;
}

.woocommerce form .form-row label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #222;
}

/* Login/Register gombok */
.woocommerce form.login button.button,
.woocommerce form.register button.button {
  text-transform: uppercase;
  font-weight: 700;
  height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 40px;
  background: #0a1d2b;
  border: 1px solid #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;

  @media (max-width: 767px) {
    width: 100%;
    margin-top: 20px;
  }

  &:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(321deg,
        rgba(255, 255, 255, 0) 65%,
        rgba(186, 44, 32, 0.67) 100%);
    width: 100%;
    height: 100%;
  }

  &:visited {
    color: #fff;
  }

  &:hover,
  &:active,
  &:focus {
    background: #222949 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
  }
}

.woocommerce form.login button.button:hover,
.woocommerce form.register button.button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Jelszó emlékeztető és checkbox */
.woocommerce form .lost_password {
  text-align: center;
  margin-top: 10px;
  font-size: 15px;
}

.woocommerce form .woocommerce-form__label-for-checkbox {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

/* Hibák és üzenetek */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
}

.woocommerce .woocommerce-error {
  background: #fff4f4;
  border-left: 4px solid #e04b4b;
}

.woocommerce .woocommerce-message {
  background: #f6fffa;
  border-left: 4px solid #0c7c40;
}

/* -------------------------------------------
   Belépett állapot – Dashboard (My Account)
   ------------------------------------------- */

/* Navigáció (oldalsáv) */
.woocommerce-MyAccount-navigation {
  flex: 0 0 260px;
  /* fix szélesség */
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: #f6f6f6;
  border-radius: 8px;
  font-weight: 600;
  color: #222;
  transition: background 0.15s ease, color 0.15s ease;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
  background: #1772ff;
  color: #fff;
}

/* Dashboard tartalom */
.woocommerce-MyAccount-content {
  flex: 1;
  /* A maradék helyet kitölti */
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #ececec;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

/* Táblázatok - Orders, Addresses, stb */
.woocommerce table.my_account_orders {
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce table.my_account_orders th {
  background: #fafafa;
  padding: 12px;
  font-weight: 600;
}

.woocommerce table.my_account_orders td {
  padding: 12px;
  border-top: 1px solid #ececec;
}

.woocommerce table.my_account_orders .button {
  padding: 6px 12px;
  border-radius: 6px;
}

/* Mobil nézet */
@media (max-width: 768px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
  }

  .woocommerce-MyAccount-navigation {
    width: 100%;
  }

  .woocommerce-MyAccount-content {
    width: 100%;
  }
}

/* -------------------------------------------
   WooCommerce Thank You / Order Received
   ------------------------------------------- */

/* Fő konténer */
.woocommerce-order {
  max-width: 800px;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #ececec;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Cím */
.woocommerce-order h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
  margin-top: 30px;
  color: #384895;
}

/* Üzenet */
.woocommerce-order p {
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}

/* Rendelés részletek kártya */
.woocommerce-order-details {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  font-size: 15px;
}

.woocommerce-order-details th,
.woocommerce-order-details td {
  padding: 12px 15px;
  border-top: 1px solid #ececec;
}

.woocommerce-order-details th {
  background: #f8f8f8;
  font-weight: 600;
  text-align: left;
}

.woocommerce-order-details td {
  background: #fafafa;
}

/* Gombok – pl. View Order, Back to Shop */
.woocommerce-order .button {
  display: inline-block;
  margin: 10px 5px 0 5px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  background: #1772ff;
  color: #fff !important;
  text-align: center;
  transition: transform 0.08s ease, opacity 0.08s ease;
  box-shadow: 0 6px 18px rgba(23, 114, 255, 0.14);
}

.woocommerce-order .button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.woocommerce-order .woocommerce-notice--success {
  font-size: 22px;
}

/* Hibák / üzenetek (ha van) */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 14px;
}

.woocommerce .woocommerce-error {
  background: #fff4f4;
  border-left: 4px solid #e04b4b;
}

.woocommerce .woocommerce-message {
  background: #f6fffa;
  border-left: 4px solid #0c7c40;
}

/* Mobil nézet */
@media (max-width: 768px) {
  .woocommerce-order {
    padding: 20px;
    margin: 20px;
  }

  .woocommerce-order-details th,
  .woocommerce-order-details td {
    padding: 10px;
  }

  .woocommerce-order .button {
    width: 100%;
    margin-top: 12px;
  }
}

/* blog */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  flex: 1 1 calc(33% - 20px);
  /* 3 oszlop desktopon */
  box-sizing: border-box;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.blog-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.blog-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blog-card .read-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #1772ff;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.blog-card .read-more:hover {
  background: #0f55d1;
}

.block-banner figure,
.blog-banner img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
}

.single-post-meta {
  margin-bottom: 30px;
  text-align: center;
}

.content-center {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 60px;
}

.single-post-title {
  margin-bottom: 20px;
  text-align: center;
}

.single-post-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;

  .nav-next a,
  .nav-previous a {
    border-radius: 12px;
    border: 1px solid #02406D;
    color: #02406D;
    padding: 10px 20px;

    &:hover {
      background: #02406D;
      color: #fff !important;
    }
  }
}

/* Pagination */
.pagination {
  margin-top: 40px;
  text-align: center;
}

/* Mobil */
@media (max-width: 992px) {
  .blog-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .blog-card {
    flex: 1 1 100%;
  }
}

/* offers */
.offers {
  padding: 50px 0;

  .offer {
    text-align: center;
  }

  .offer-box {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #02406D;
    padding: 30px 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    box-shadow: 0 10px 23px rgba(0, 0, 0, 0.15);

    @media (max-width: 767px) {
      margin-bottom: 30px;
    }

    svg {
      width: 50px;
      height: auto;

      path {
        fill: #bbb;
      }
    }

    p {
      margin-bottom: 20px;
      font-size: 24px;

      strong {
        font-size: 32px;
        font-weight: 700;
      }
    }
  }

  .offer-note {
    margin-top: 25px;
  }
}

/* shop */
.shop-top-bar {
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.shop-top-bar select {
  max-width: 250px;
  padding: 0 15px;
  height: 50px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #02406D;
}

.woocommerce-pagination {
  margin-top: 40px;

  ul.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .current,
  a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #02406D;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
  }

  .current {
    background: #fff;
    color: #02406D;
  }

}


.sidebar-box {
  background: #f1f1f1;
  padding: 0 0 20px 0;
  border-radius: 6px;
  margin-bottom: 30px;

  .sidebar-box__title {
    padding: 14px 15px;
    background: #222949;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin-bottom: 20px;
  }

  .sidebar-box__content {
    padding: 0 20px 20px 20px;
  }
}

.sidebar-box .stars {
  font-size: 14px;
  color: #f5a623;
  cursor: pointer;
}

.sidebar-box input[type="radio"] {
  margin-right: 6px;
}

.woocommerce-product-search {
  .search-field {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    margin-bottom: 15px;
  }

  button {
    text-transform: uppercase;
  font-weight: 700;
  height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 40px;
  background: #00AFA9;
  border: 1px solid #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
    width: 100%;
    
  @media(max-width: 767px) {
    padding: 0 20px;
    min-width: 160px;
  }

  /* &:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.25s ease-in-out;
  } */

  &:visited {
    color: #fff;
  }

  &:hover,
  &:active,
  &:focus {
    background: #0a6564 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
  }

  &:hover:before {
    opacity: 0;
  }
  }
}

/* single product */
.single-product-wrapper {
  padding-top: 40px;
}

.single-product div.product {
  margin-top: 20px;
}

.related-products .product {
  display: block;

  @media (max-width: 767px) {
    margin-bottom: 0;
    margin-top: 0;
  }
}

.woocommerce-breadcrumb {
  font-size: 16px;
}

.woocommerce-tabs .panel article h2:first-of-type {
  margin-bottom: 30px;
}

.single-product div.product .woocommerce-product-gallery {
  padding: 15px;
  border-radius: 18px;
  border: 1px solid #02406D;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  gap: 20px;
}

.related-products {
  padding-top: 20px;
  margin-top: 40px;

  h2 {
    font-size: 42px;
    color: #02406D;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'bebas neue';
    text-align: center;
  }
}

.woocommerce-tabs ul.tabs.wc-tabs {
  justify-content: flex-end;
  padding-right: 20px;
}

.woocommerce-Tabs-panel {
  margin-bottom: 0;
  margin-top: 0;
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  border: 1px solid #02406D;
}

.woocommerce-tabs.wc-tabs-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.single-product .product .product_title {
  font-size: 38px;
}

.single-product .product .price {
  font-weight: 500;
  font-size: 26px;
}

.single-product .cart {
  display: flex;
  align-items: center;

  @media (max-width: 767px) {
    display: block;
  }
}

.summary.entry-summary {
  margin-top: 10px;
}

p.stock.in-stock {
  font-weight: 700;
  margin-bottom: 20px;
  color: #00AFA9;
  position: relative;
  padding-left: 40px;

  &:before {
    content: '';
    background: url("../images/box.svg") no-repeat center center / contain;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    z-index: 1;
  }

  ;
}

.single-product .product .single_add_to_cart_button {
  text-transform: uppercase;
      font-weight: 700;
      height: 64px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      letter-spacing: 1px;
      color: #fff;
      padding: 0 40px;
      background: #00AFA9;
      border: 1px solid #fff;
      box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
    
      @media(max-width: 767px) {
        padding: 0 20px;
        min-width: 160px;
      }
    
      /* &:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transition: opacity 0.25s ease-in-out;
      } */
    
      &:visited {
        color: #fff;
      }
    
      &:hover,
      &:active,
      &:focus {
        background: #0a6564 !important;
        color: #fff !important;
        border: 1px solid #fff !important;
      }
    
      &:hover:before {
        opacity: 0;
      }
}

.special-offer {
  background: linear-gradient(109deg,rgba(0, 85, 146, 1) 0%, rgba(2, 64, 109, 1) 100%);
  border-radius: 6px;
  padding: 20px;
  color: #fff;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-top: 30px;

  &:before {
    content: "";
    background: url("../images/percent.svg") no-repeat center center / contain;
    position: absolute;
    right: -15px;
    bottom: -20px;
    width: 150px;
    height: 150px;
    opacity: 0.15;
    z-index: 1;
  }

  >* {
    position: relative;
    z-index: 10;
  }

  h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
  }

  p {
    margin-bottom: 5px;
    background: url("../images/hand-point.svg") no-repeat left center;
    background-size: 30px 25px;
    padding-left: 35px;
    color: #fff;
  }
}

.product-support-infos {
  font-size: 16px;
  margin-top: 30px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

  .info {
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;

    &:before {
      content: '';
    }
  }

  .info-1 {
    &:before {
      background: url("../images/delivery.svg") no-repeat center center / contain;
      width: 40px;
      height: 30px;
    }

  }

  .info-2 {
    &:before {
      background: url("../images/return.svg") no-repeat center center / contain;
      width: 30px;
      height: 30px;
    }
  }
}

.scroll-to-top {
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  background: #02406D;
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);

  display: none;

  &.is-show {
    display: flex;
  }

  svg {
    width: 20px;
    height: auto;

    path {
      fill: #fff;
    }
  }
}

.shop-row  {
  display: flex;
  flex-direction: column
  
  @media (min-width: 767px) {
    flex-direction: row;
  }
}

.shop-sidebar {

  @media (max-width: 767px) {
    margin-top: 30px;
    order: 2;
  }
}