/* ========== CSS Reset ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: "Noto Sans Mono", monospace;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* ========== Headings ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1e0000;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

/* ========== Links ========== */
a {
    color: #0073e6;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    text-decoration: underline;
}

/* ========== Paragraphs ========== */
p {
    margin-bottom: 1em;
}

/* ========== Buttons ========== */
button,
input[type="submit"],
input[type="button"] {
    background-color: #0073e6;
    color: #fff;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #005bb5;
}

/* ========== Images ========== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== Forms ========== */
input, select, textarea {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.container-fluid {
    padding: 0 45px;
}

input:focus, textarea:focus, select:focus {
    border-color: #0073e6;
    outline: none;
}

/* ========== Layout Utilities ========== */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.pt-1 { padding-top: 1rem; }
.pb-1 { padding-bottom: 1rem; }

/* ========== Responsive Grid Example ========== */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.col {
    flex: 1;
    min-width: 200px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}


body {
    margin: 0;
}

header .header-hum {
    z-index: 999;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform .6s ease-out;
    transition: -webkit-transform .6s ease-out;
    -o-transition: transform .6s ease-out;
    transition: transform .6s ease-out;
    transition: transform .6s ease-out, -webkit-transform .6s ease-out;
}

header .header-hum {
    z-index: 8000;
    left: 0;
    padding: 0px 48px 0px 48px;
    cursor: pointer;
    position: absolute;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    position: relative;
}

header .logo img {
    width: 200px;
}

header .header-hum .hum {
    position: relative;
    width: 40px;
    height: 20px;
}

header .header-hum .hum span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

header .header-hum .hum span:nth-of-type(1) {
    top: 1px;
}

header .header-hum .hum span:nth-of-type(2) {
    top: 10px;
    width: 100%;
}

header .header-hum .hum span:nth-of-type(3) {
    bottom: 0;
    width: 100%;
}

header .header-hum .hum, header .header-hum .hum span {
    display: inline-block;
    /* -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* header .header-hum:hover .hum span:nth-of-type(1) {
    left: 4px;
}

header .header-hum:hover .hum span:nth-of-type(2) {
    left: -4px;
}

header .header-hum:hover .hum span:nth-of-type(3) {
    left: 4px;
} */

header .header-hum .hum.is-active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    -ms-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
}

header .header-hum .hum.is-active span:nth-of-type(2) {
    opacity: 0;
}

header .header-hum .hum.is-active span {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
}

header .header-hum .hum.is-active span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(45deg);
    -ms-transform: translateY(-7px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
}

header .header-hum .hum.is-active span {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
}

header .header-hum .hum.is-active span {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
}

header .header-menu-wrap {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: fixed;
    top: 0;
    left: 0px;
    width: 250px;
    height: 100vh;
    background: #fff;
    z-index: 99;
}

header .header-menu-wrap .header-menu-inner {
    padding: 50px 0px 50px 36px;
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scrollbar-width: 0;
}

header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap {
    margin-top: 120px;
}

header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap ul li {
    opacity: 0;
    -webkit-transition: 0.9s;
    -o-transition: 0.9s;
    transition: 0.9s;
}

header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap ul li:nth-child(1) {
    margin-left: 6px;
}

header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap ul li:nth-child(2) {
    margin-left: 12px;
}

header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap ul li:nth-child(3) {
    margin-left: 18px;
}

header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap ul li:nth-child(4) {
    margin-left: 24px;
}

header .header-menu-wrap.is-active {
    visibility: visible;
    opacity: 1;
}

header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap ul li.is-active {
    opacity: 1;
    margin-left: 0px;
}

header .header-hum:hover .hum.is-active span:nth-of-type(1) {
    left: 0px;
}

header .header-hum:hover .hum.is-active span:nth-of-type(2) {
    left: 0px;
}

header .header-hum:hover .hum.is-active span:nth-of-type(3) {
    left: 0px;
}

header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap ul li a {
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px !important;
    display: block;
    font-weight: 300;
}

header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap ul {
    list-style: none;
}

#site-preloader {
  position: fixed;
  z-index: 9999;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#site-preloader svg {
  width: 200px;
  height: 200px;
  animation: fadeInOut 1.5s ease-in-out infinite;
}

/*@keyframes fadeInOut {*/
/*  0%, 100% {*/
/*    opacity: 0.2;*/
/*  }*/
/*  50% {*/
/*    opacity: 1;*/
/*  }*/
/*}*/

/* #site-content {

  pointer-events: none;
} */

.about-section.first-section, 
.about-section.second-section,
.about-section.fourth-section,
.about-section.sixth-section {
    height: calc(100vh - 146px);
    background-size: cover;
    background-position: center center;
}

.about-section.second-section,
.about-section.fourth-section,
.about-section.sixth-section {
    height: 100vh;
}

.about-section.first-section .wrapper,
.about-section.sixth-section .wrapper {
    width: 600px;
    max-width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10vw;
}

.about-section.second-section .wrapper,
.about-section.fourth-section .wrapper {
    width: 600px;
    max-width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10vw;
}

.about-section {
    position: relative;
}

.about-section .wrapper .top-text {
    color: #fff;
    font-size: 0.75rem;
}

.about-section .wrapper .title {
    color: #fff;
    font-size: 48px;
    line-height: 1.125!important;
}

.about-section .wrapper .description {
    color: #fff;
    font-size: 146x;
    line-height: 22px;
}

.about-section .custom-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    height: 100vh;
}

.about-section.fifth-section .custom-wrapper {
    flex-direction: row;
}

.about-section .custom-wrapper > div {
    width: 50%;
}

.about-section .custom-wrapper > div .wrapper {
    width: 600px;
    max-width: 100%;
    margin: auto;
}

.about-section .custom-wrapper > div .wrapper * {
    color: #000;
}

.about-section .custom-wrapper img {
    height: 100%;
    object-fit: cover;
}

.about-section .custom-wrapper > div.left {
    height: 100%;
}

.faq-wrapper .wrapper {
    padding: 45px;
    display: flex;
}

.faq-wrapper .wrapper .left {
    width: 25%;
    flex: 0 0 25%;
}

.faq-wrapper .wrapper .left .title {
    font-size: 48px;
    line-height: 48px;
}

.faq-single .title-inside {
    text-transform: uppercase;
    border-bottom: 1px solid black;
    line-height: 18px;
    padding-bottom: 5px;
    margin-bottom: 27px;
    font-weight: 400;
    font-family: var(--font-body-family);
    letter-spacing: normal;
    display: inline-block;
    font-size: 15px;
}

.faq-single {
    margin-bottom: 50px;
}

.single-question {
    margin-bottom: 27px;
}

.single-question p {
    margin: 0;
}

.faq-wrapper .content-top {
    font-size: 14px;
    margin-bottom: 40px;
}

.faq-wrapper .content-top p {
    margin-bottom: 10px;
}

.faq-wrapper .content-top ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.about-custom {
    width: 94vw;
    margin: auto;
}

.about-custom .top img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.content-wrap {
    width: 100%;
    max-width: 1020px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 120px auto 100px auto;
}

.content-wrap .wrapper {
    display: flex;
}

.content-wrap .wrapper h3 {
    margin-top: 4px;
    font-size: 21px;
    letter-spacing: 0em;
    font-weight: 400;
    font-style: normal;
    line-height: 120%;
    flex: 0 0 33%;
}

/* Hide initially */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 1.5s ease, transform 1.5s ease;
  }
  
  /* Animate in */
  .animate__animated.animate__fadeInUpSmall {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  /* Custom keyframes if needed (optional if using transition version above) */
  @keyframes fadeInUpSmall {
    0% {
      opacity: 0;
      transform: translateY(55px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
.slick-prev {
    left: 15px !important;
    width: 40px !important;
    height: 40px !important;
    z-index: 9;
}

.slick-prev img, .slick-next img {
    height: auto !important;
    width: auto !important;
}

.slick-prev:before,
.slick-next:before {
    display: none !important;
}

.slick-next {
    right: 15px !important;
    width: 40px !important;
    height: 40px !important;
    z-index: 9;
}

.about-custom .top img.last-image {
    height: 90vh;
    margin: 0 0 60px 0;
}
  
.product-section .inner {
    display: flex;
    align-items: center;
    gap: 170px;
}

.product-section {
    padding: 0 45px;
    margin: 45px 0;
}

.product-section .inner > div {
    flex: 0 0 50%;
}

.product-section .inner > div img {
    height: 640px;
    width: 100%;
    object-fit: cover;
}

.product-section .inner > div .top-title {
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

.product-section .inner > div .title {
    font-size: 50px;
    line-height: 54px;
}

.product-section .inner > div a {
    width: 400px;
    border: 1px solid #000;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
}

.product-section .inner > div a:hover,
.images-section .inner a:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.home .content-wrap .wrapper {
    display: block;
    text-align: center;
}

.home .content-wrap {
    margin: 180px auto;
}

#site-preloader2 svg#Layer_2 {
    width: 300px;
    height: 120px;
}

.home .content-wrap .wrapper h3 {
    margin-bottom: 40px;
    font-size: 35px;
}

footer.site-footer .inner {
    display: flex;
    border-top: 1px solid;
    padding-top: 30px;
}

footer.site-footer .inner .menu-footer {
    width: 15%;
}

footer.site-footer {
    padding: 45px;
}

footer.site-footer .inner ul {
    padding: 0;
    list-style: none;
}

footer.site-footer .inner .mailchimp-form {
    margin-left: auto;
}

.footer-bottom .social {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
    margin-top: 50px;
}

.footer-bottom .social svg {
    width: 24px;
}

footer.site-footer .inner ul a {
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
}

footer.site-footer .inner .menu-footer .menu-title {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.subscribe .input-fields {
    align-items: center;
    display: flex;
    border-bottom: 1px solid;
    padding: 0 20px 0 0;
}

footer.site-footer .inner .mailchimp-form {
    width: 40%;
}

.subscribe p {
    margin: 0 0 15px 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.subscribe .input-fields label {
    font-size: 14px;
    text-transform: uppercase;
}

.input-fields input#email {
    font-size: 13px;
    padding: 0;
    border: 0;
    padding-left: 30px;
    padding-bottom: 6px;
    text-transform: uppercase;
}

.input-fields input[type="submit"] {
    padding: 0;
    width: max-content;
    background: transparent;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
}

.subscribe .input-fields label {
    width: 15%;
    border-right: 1px solid;
}

.images-section .inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.images-section .inner .left {
    width: 58%;
    position: relative;
    display: flex;
    align-items: center;
}

.images-section .inner .right {width: 37%;}

.images-section .inner {
    justify-content: space-between;
}

.images-section .inner .left .over-image {
    width: 45%;
    height: 500px;
    object-fit: cover;
}

.images-section .inner .left .over-image.image-1 {
    height: 450px;
    position: relative;
    left: -110px;
    width: 35%;
}

.images-section .inner .left .over-image.image-2 {
    height: 400px;
    right: 0;
    width: 35%;
    position: relative;
    left: -200px;
}

.images-section {
    padding: 0px 0 50px;
    margin: 8px 0;
}

.images-section .inner .title {
    font-size: 48px;
    font-weight: 600;
    line-height: 55px;
}

.images-section .inner a {
    width: 400px;
    border: 1px solid #000;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
}

h3.blog-title {
    font-size: 40px;
    text-align: center;
    font-weight: 400;
}

.blog-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.blog-wrapper > div {
    width: 31%;
}

.blog-wrapper > div img {
    width: 100%;
    object-fit: cover;
}

.blog-wrapper > div .post-title {
    font-size: 22px;
    line-height: 28px;
    margin: 15px 0 15px;
}

.blog-wrapper > div .post-title a {
    color: #000;
    font-weight: 400;
    text-decoration: none;
}

.blog-wrapper > div .post-excerpt p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-section .container {
    max-width: 1500px;
}

header .logo img {
    height: 80px;
}

/* .home .video {
    height: calc(100vh - 200px);
} */


.home .video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.background-section-home {
    height: calc(100vh - 120px);
    padding: 0 45px;
    margin-bottom: 100px;
}

.background-section-home .wrap {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 100px;
}

.background-section-home .wrap img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.background-section-home .wrap .ins-content {
    position: relative;
    width: 450px;
}

.background-section-home .wrap .ins-content * {
    color: #fff;
}

.background-section-home .wrap .ins-content .top-title {
    font-size: 14px;
    font-weight: 400;
}

.background-section-home .wrap .ins-content .title {
    font-size: 38px;
}

.images-section {
    position: relative;
}
/* 
.images-section:after {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    position: absolute;
    right: 0;
    top: -100px;
    background-image: url('/wp-content/uploads/2025/06/iconAsset-2.svg');
    background-size: contain;
}
*/

p {
    font-family: "Courier Prime", monospace;
}

header .logo img:hover {
    filter: brightness(0) saturate(100%) invert(8%) sepia(80%) saturate(2775%) hue-rotate(353deg) brightness(93%) contrast(97%);
}

.page-template-contact .faq-wrapper .wrapper .right {
    width: 55%;
    flex: 0 0 55%;
    display: flex;
    justify-content: space-between;
}

.page-template-contact .faq-wrapper .wrapper .right h4 {
    text-transform: uppercase;
    border-bottom: 1px solid black;
    line-height: 18px;
    padding-bottom: 5px;
    margin-bottom: 27px;
    font-weight: 400;
    font-family: var(--font-body-family);
    letter-spacing: normal;
    display: inline-block;
}

.page-template-contact .faq-wrapper .wrapper .right a {
    display: block;
    width: max-content;
    margin-bottom: 30px;
    color: #000;
}

.contact-form input, .contact-form textarea {
    border: 1px solid #000;
    border-radius: 0;
    color: #000;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #000;
}

input.wpcf7-form-control.wpcf7-submit {
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
}

input.wpcf7-form-control.wpcf7-submit:hover {
    background: #000;
    color: #fff;
}

.images-section .inner .left
 {
    width: 65%;
    position: relative;
    display: flex;
    align-items: center;
}
.images-section .inner .right {
    width: 35%;
}

.images-section .inner .top-title {
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
}

.images-section .inner .left {
    display: flex;
}

.images-section .inner .left img {
    width: 16.6666666%;
}

.images-section .inner .right {
    padding-right: 20px;
}

.fibul img {
    width: 200px !important;
    height: auto !important;
    margin: 0 0 30px;
}

a {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
}

a:hover {
    opacity: 1 !important;
}

.product-section .inner > div a:hover,
.product-section .inner > div a:active,
.images-section .inner a:hover,
.images-section .inner a:active {
    background: #580a0a;
    color: #fff;
    opacity: 1 !important;
}

.video-background {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: calc(100vh - 170px);
  }

  .video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
  }

  @media (min-aspect-ratio: 16/9) {
    .video-background iframe {
      /* height = 100 * (9 / 16) = 56.25 */
      height: 56.25vw;
    }
  }
  @media (max-aspect-ratio: 16/9) {
    .video-background iframe {
      /* width = 100 / (9 / 16) = 177.777777 */
      width: 177.78vh;
    }
  }

  #mini-cart-wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: fixed;
    top: 0;
    right: 0px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    padding: 40px 32px 0 32px;
}
#mini-cart-wrapper.open {
    visibility: visible;
    opacity: 1;
}

.header-buttons {
    position: absolute;
    right: 48px;
}

button.cart svg {
    width: 27px;
}

header .header-menu-wrap.is-active:after {
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
}

header .header-menu-wrap .header-menu-inner {
    background: #fff;
    position: relative;
    z-index: 999;
}

button.cart {
    padding: 0;
    background: transparent;
}

.product-summary .price {
    font-size: 25px;
    font-weight: 600;
}

ul.tab-buttons .tab-button {
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
}

ul.tab-buttons .tab-button.active {
    border-bottom: 1px solid #580a0a;
    color: #580a0a;
    font-weight: 600;
}

button.single_add_to_cart_button.button.alt {
    width: 400px;
    height: 50px;
    background: transparent;
    border: 1px solid #000;
    color: #000;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    max-width: 100%;
    margin-top: 40px;
}

button.single_add_to_cart_button.button.alt:hover {
    background: #580a0a;
}

button.open-popup {
    background: transparent;
    color: #000;
    padding: 0 !important;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    text-decoration: underline;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    display: none;
}

.fancybox__nav .carousel__button.is-prev, .fancybox__nav .carousel__button.is-next {
    background: transparent !important;
}

.woocommerce a.added_to_cart {
    display: none;
}

button.close-popup {
    background: transparent;
    color: #000;
    font-size: 20px;
    right: 0 !important;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-cart-header button {
    padding: 0;
    font-size: 18px;
    background: transparent;
    color: #000;
}

.mini-cart-header h4 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 400;
}

ul.cart_list li, ul.product_list_widget li {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    gap: 20px !important;
}

ul.cart_list li:before, ul.cart_list li:after {
    display: none !important;
}

ul.woocommerce-mini-cart.cart_list.product_list_widget a {
    display: flex !important;
    color: #000 !important;
    gap: 20px !important;
    font-weight: 700 !important;
}

ul.woocommerce-mini-cart.cart_list.product_list_widget a img {
    width: 100px;
    margin: 0;
    object-fit: cover;
    height: 70px;
}

/*ul.woocommerce-mini-cart.cart_list.product_list_widget .quantity {*/
/*    position: absolute;*/
/*    right: 33px;*/
/*}*/

.mini-cart-title {
    display: flex;
    flex-direction: column;
}

.mini-cart-title .quantity {
    font-weight: 400;
}

ul.woocommerce-mini-cart.cart_list.product_list_widget a:hover {
    text-decoration: none;
}

a.remove {
    color: #000 !important;
    gap: 0 !important;
}

ul.woocommerce-mini-cart.cart_list.product_list_widget {
    margin: 40px 0;
}

p.woocommerce-mini-cart__total.total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    color: #000;
}

p.woocommerce-mini-cart__buttons.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

p.woocommerce-mini-cart__buttons.buttons a {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 40px;
    border-radius: 0;
    background: #000 !important;
    color: #fff !important;
    font-weight: 400;
    text-transform: uppercase;
}

p.woocommerce-mini-cart__buttons.buttons a:first-of-type {
    background: transparent !important;
    color: #000 !important;
    border: 1px solid #000;
}

.wp-block-woocommerce-cart {
    padding: 0px 50px;
    margin: 50px 0;
}

a.wc-block-components-product-name {
    color: #000 !important;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    border: 1px solid;
    height: 50px;
    color: #000;
    text-transform: uppercase;
}

.wp-block-woocommerce-checkout.alignwide.wc-block-checkout {
    padding: 0 50px;
    margin: 50px 0;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    background: #000;
    height: 50px;
    font-size: 17px;
    text-transform: uppercase;
    border-radius: 0;
}

.wp-block-woocommerce-checkout-order-summary-block {
    border-radius: 0 !important;
}

.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url] {
    border-radius: 0 !important; 
}

.wc-blocks-components-select .wc-blocks-components-select__select {
    border-radius: 0 !important;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    border-radius: 0 !important;
}

.wc-block-components-notice-banner {
    border-radius: 0 !important;
}

.product-summary {
    position: sticky;
    top: 0;
}

.product-page-container {
    align-items: flex-start;
}

ul.woocommerce-mini-cart.cart_list.product_list_widget a.remove {
    font-size: 24px;
}

ul.woocommerce-mini-cart.cart_list.product_list_widget a.remove {
    background: transparent !important;
}

.single-question a {
    color: #000;
    text-decoration: underline;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: #000;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading::after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading::after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading::after, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.loading::after, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.loading::after, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading::after, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.loading::after {
    top: 16px;
}

.page-template-about .content-wrap {
    margin-bottom: 0;
}

.background-section-home .wrap .ins-content a {
    border: 1px solid;
    height: 50px;
    display: block;
    width: max-content;
    display: flex;
    align-items: center;
    padding: 0 30px;
    text-transform: uppercase;
    text-decoration: none;
}

.fibul svg {
    width: 200px;
}

.wc-block-components-product-metadata__description {
    display: none;
}

.fibul {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.product-section .inner > div .fibul {
    margin-bottom: 30px;
}

.product-section.with-after .inner > div.left {
    position: relative;
}

.product-section.with-after .inner > div.left:after {
    content: '';
    position: absolute;
    width: 1000px;
    height: 530px;
    background-image: url('https://kohaeyewear.al/wp-content/uploads/2025/06/erasebg-transformed.png');
    top: 50%;
    right: -60%;
    transform: translateY(-50%);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.product-section.with-after .inner > div.left img {z-index: 9;position: relative;}

.product-section.with-after .inner > div.right {
    position: relative;
    z-index: 9;
}

button.single_add_to_cart_button.button.alt {
    margin: 0;
}

.accordion-item {
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 18px 0px 18px 0;
}

.accordion-item:not(:first-of-type) {
    border-top: 0;
}

.accordion-header span {
    font-weight: 500;
    font-size: 20px;
}

.accordion-content ul {
    padding-left: 16px;
}

.buttons-popup {
    display: flex;
    gap: 20px;
    margin-top: 30px !important;
}

.buttons-popup button {
    font-size: 15px !important;
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: unset !important;
    letter-spacing: 0.5px;
}

.product-page-container {
    margin: 50px 0;
}

.buttons-popup button svg {
    width: 20px;
    height: 20px;
}

.woocommerce-account .woocommerce {
    padding: 0 50px;
    margin: 50px 0;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border-color: #000;
    border-radius: 0;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    border-radius: 0;
    height: 45px;
}

p.woocommerce-LostPassword.lost_password a {
    color: #000;
    text-decoration: underline;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    align-items: center;
}

.woocommerce form .form-row:nth-last-child(2) {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-top: 20px;
}

.woocommerce form .form-row:nth-last-child(2):before, .woocommerce form .form-row:nth-last-child(2):after {
    display: none;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input {
    width: auto;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span {
    line-height: unset;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
button.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit,
.woocommerce form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button.button,
.woocommerce-account .woocommerce-MyAccount-content form .button {
    float: unset;
    margin: 0;
    background: #000;
    height: 45px;
    padding: 0 30px;
    border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid #000;
}

p.woocommerce-LostPassword.lost_password {
    margin: 20px 0 0;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,
button.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit:hover,
.woocommerce form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button.button:hover,
.woocommerce-account .woocommerce-MyAccount-content form .button:hover {
    background: #fff;
    color: #000;
}

form.woocommerce-ResetPassword.lost_reset_password {
    width: 600px;
    max-width: 100%;
    border: 1px solid #000;
    padding: 20px;
    margin: auto;
}

.woocommerce form.woocommerce-ResetPassword.lost_reset_password .form-row {
    width: 100%;
}

a.woocommerce-privacy-policy-link {
    color: #000;
    text-decoration: underline;
}

.woocommerce-account .woocommerce h2 {
    font-weight: 400;
    text-transform: uppercase;
}

footer.site-footer .inner .menu-footer .menu-title {
    margin-bottom: 10px;
}

nav.woocommerce-MyAccount-navigation ul {
    list-style: none;
}

nav.woocommerce-MyAccount-navigation ul a {
    color: #000;
    text-transform: uppercase;
}

nav.woocommerce-MyAccount-navigation ul .is-active a {
    font-weight: 700;
}

nav.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 5px;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: #000;
    text-decoration: underline;
}

.woocommerce-info {
    border-top-color: #000;
}

.woocommerce-info::before {
    color: #000;
}

.woocommerce-info a {
    background: #fff !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    font-weight: 400 !important;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 30px !important;
    text-transform: uppercase;
}

.u-columns.woocommerce-Addresses.col2-set.addresses header {
    display: block;
    padding: 0;
}

.u-columns.woocommerce-Addresses.col2-set.addresses header h2 {
    font-size: 25px;
}

.select2-container .select2-selection--single {
    height: 45px;
    border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 33px;
}

.woocommerce-edit-address .woocommerce form .form-row:nth-last-child(2) {
    display: block;
    margin: 0;
}

fieldset {
    border: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .button {
    margin-top: 30px;
}

.infografy-images {
    display: flex;
    flex-wrap: wrap;
}

.infografy-images img {
    width: 16.6%;
}

.images-section .inner .title {
    margin-top: 20px;
    margin-bottom: 45px;
}

.images-section .inner .left img {
    height: 260px;
    object-fit: cover;
}

h5.info-title {
    font-size: 32px;
    font-weight: 400;
}

.faq-wrapper .right> .content {
    margin-top: 40px;
}

.woocommerce-order {
    padding: 0 50px;
    margin: 50px 0;
}

.woocommerce table.shop_table {
    border-color: #000;
    border-radius: 0;
}

.woocommerce .woocommerce-customer-details address {
    border-color: #000;
    border-radius: 0;
    border-width: 1px;
}

td.woocommerce-table__product-name.product-name a {
    text-decoration: underline;
    color: #000;
}

.custom-popup div > div ul {
    padding-left: 20px;
    margin: 0 0 20px;
}

.page-template-contact .faq-wrapper .wrapper .right h4 {
    margin-bottom: 10px;
}

.page-template-contact .faq-wrapper .wrapper .right a {
    margin-bottom: 50px;
}

.fifth-section.fix-height .custom-wrapper {
    height: 80vh;
}

header .social {
    display: flex;
    gap: 10px;
    margin: 20px 0 0;
}

header .social svg {
    width: 25px;
}

header .header-menu-wrap .header-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header .bottom-menu li a {
    color: #000;
    font-weight: 300;
    text-transform: uppercase;
}

.mini-cart-header button img {
    width: 30px;
}

header .bottom-menu ul {
    list-style: none;
}

header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap ul li a:hover,
header .bottom-menu li a:hover {
    color: #580a0a;
    text-decoration: none;
}

header .social svg:hover {
    fill: #580a0a;
}

.woocommerce-info a {
    margin-top: 0 !important;
}

header.woocommerce-Address-title.title {
    display: block;
}

button.wc-block-cart-item__remove-link {
    display: none !important;
}

span.wc-block-components-checkbox__label a {
    text-decoration: underline;
    color: #000;
}

.images-section .right {
    position: absolute;
    z-index: 9;
    padding: 0 0 0 100px;
}

.images-section .inner .left {
    width: 100%;
    height: 500px;
}

.images-section .inner .left img {
    height: 500px;
}

.images-section .inner .right h5, .images-section .inner .right h4 {
    color: #fff;
}

.images-section .inner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: rgba(0,0,0,0.3);
}

.images-section .inner a {
    color: #fff;
    border-color: #fff;
}

.images-section .inner a:hover {
    border-color: #580a0a;
}

.images-section .inner {
    position: relative;
}

.background-section-home {
    margin-top: 100px;
    margin-bottom: 100px;
}

.fibul svg {
    display: block;
    height: 100px;
}

.single-post .container > div .post-content {
    position: sticky;
    top: 0;
}

.woocommerce-checkout .woocommerce {
    padding: 0 50px;
    margin: 50px 0;
}

.woocommerce-checkout .woocommerce-info a {
    width: max-content !important;
    color: #000;
}

.woocommerce-checkout .woocommerce-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.woocommerce-checkout .woocommerce-info::before {
    top: 26px;
    position: absolute;
}

.woocommerce-checkout .woocommerce-info:after {
    display: none;
}

.woocommerce-form-login-toggle {
    width: 48%;
}

form.checkout.woocommerce-checkout {
    display: flex;
    justify-content: space-between;
}

.woocommerce-checkout .woocommerce .col2-set .col-1, 
.woocommerce-checkout .woocommerce-page .col2-set .col-1 {
    width: 100%;
    float: unset;
}

.woocommerce-checkout form.checkout.woocommerce-checkout > div {
    width: 41%;
}

.woocommerce-checkout .woocommerce .col2-set .col-2, 
.woocommerce-checkout .woocommerce-page .col2-set .col-2 {
    width: 100%;
    float: unset;
}

.woocommerce-checkout .woocommerce form .form-row:nth-last-child(2) {
    display: block;
    margin: 0;
}

.woocommerce-checkout .woocommerce form .form-row label.checkbox, 
.woocommerce-checkout .woocommerce-page form .form-row label.checkbox {
    display: flex;
    align-items: center;
}

.woocommerce-checkout .woocommerce form .form-row .input-checkbox {
    width: auto;
}

.woocommerce-checkout #add_payment_method #payment ul.payment_methods li input, 
.woocommerce-checkout .woocommerce-cart #payment ul.payment_methods li input, .woocommerce-checkout #payment ul.payment_methods li input {
    width: auto;
}

.woocommerce-checkout span.woocommerce-terms-and-conditions-checkbox-text a {
    color: #000;
    text-decoration: underline;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    border-radius: 0;
}

form.checkout.woocommerce-checkout > div:first-of-type {
    width: 55%;
}

form.woocommerce-form.woocommerce-form-login.login,
.woocommerce-checkout .woocommerce-form-login-toggle {
    width: 55% !important;
}

.woocommerce-checkout p.lost_password a {
    color: #000;
    text-decoration: underline;
}

h3#order_review_heading {
    margin-bottom: 45px;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 49%;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: transparent;
    border: 1px solid;
    margin-bottom: 20px;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: unset;
    width: 100%;
    height: 50px;
    border-radius: 0;
    background: #000;
    text-transform: uppercase;
    border: 1px solid #000;
}

.woocommerce #payment #place_order:hover, .woocommerce-page #payment #place_order:hover {
    background: #fff;
    color: #000;
}

@media(min-width: 1024px) {
    .single-post .container > div .post-image img {
        margin-bottom: 30px;
    }
}

@media(max-width: 1360px) {
    .product-section .inner {
        gap: 100px;
    }
    
    .images-section .inner .right {
        width: 50%;
    }
    
    .images-section .inner:before {
        background: rgba(0,0,0,0.4);
    }
}

@media(max-width: 1400px) {
    .product-section .inner > div .title {
        font-size: 40px;
    }

    .images-section .inner .title {
        font-size: 40px;
    }
}

@media(max-width: 767px) {
    .page-template-craftsmanship .about-section {
        background-image: none !important;
        height: auto;
        margin-bottom: 50px;
    }
    
    .page-template-craftsmanship .about-section > img {
        display: block !important;
    }
    
    .page-template-craftsmanship .about-section .wrapper {
        position: unset;
        transform: unset;
        padding: 50px 15px 0 15px;
    }
    
    .page-template-craftsmanship .about-section .wrapper * {
        color: #000;
    }
    
    .about-section .custom-wrapper {
        flex-direction: column !important;
        height: auto;
    }
    
    .about-section .custom-wrapper > div {
        width: 100%;
    }
    
    .about-section .wrapper .title {
        font-size: 30px;
    }
    
    .page-template-craftsmanship .about-section.fifth-section > div {
        flex-direction: column !important;
    }
    
    .about-section .custom-wrapper img {
        height: auto;
    }
    
    .about-section .custom-wrapper > div.left {
        height: auto;
    }

    footer.site-footer {
        padding: 30px 15px;
    }
    
    footer.site-footer .inner {
        flex-wrap: wrap;
        row-gap: 25px;
    }
    
    footer.site-footer .inner .mailchimp-form {
        width: 100%;
        order: -1;
    }
    
    footer.site-footer .inner .menu-footer {
        width: 50%;
    }
    
    .subscribe .input-fields label {
        width: 25%;
    }
    
    .footer-bottom .social {
        justify-content: flex-start;
        margin-top: 30px;
    }
    
    header .header-hum {
        padding: 0 0 0 15px;
    }
    
    .header-buttons {
        right: 15px;
    }
    
    header .logo img {
        height: 70px;
        width: auto;
    }

    .content-wrap .wrapper {
        flex-direction: column;
    }
    
    .content-wrap .wrapper {
        flex-direction: column;
    }
    
    .content-wrap {
        margin: 40px 0;
        padding: 0;
    }
    
    .about-custom {
        width: 100%;
        padding: 0 15px;
    }

    .faq-wrapper .wrapper {
        flex-direction: column;
        padding: 30px 15px;
    }

    .faq-wrapper .wrapper .left .title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .faq-wrapper .wrapper .left {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .page-template-contact .faq-wrapper .wrapper .right {
        width: 100%;
        flex-direction: column;
    }

    header .header-menu-wrap .header-menu-inner {
        padding: 0px 0 20px 15px;
    }
    
    header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap ul li a {
        font-size: 20px;
    }

    .product-page-container {
        gap: 20px !important;
        padding: 0 !important;
        flex-direction: column;
        padding: 30px 15px !important;
    }
    
    ul.tab-buttons .tab-button {
        font-size: 16px;
    }
    
    ul.tab-buttons {
        gap: 30px !important;
    }

    .product-section {
        padding: 0 15px;
    }
    
    .product-section .inner {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-section .inner > div img {
        height: unset;
    }
    
    .product-section .inner > div .title {
        font-size: 30px;
    }
    
    .images-section .inner {
        flex-direction: column-reverse;
    }
    
    .container-fluid {
        padding: 0 15px;
    }
    
    .images-section .inner .right {
        width: 100%;
        padding: 0;
    }
    
    .images-section .inner .left {
        width: 100%;
    }
    
    .images-section .inner .title {
        font-size: 30px;
        line-height: 36px;
    }
    
    .images-section .inner a {
        height: 50px;
        width: 100%;
    }
    
    .images-section .inner .left img {
        width: 49%;
    }
    
    .images-section .inner .left {
        flex-wrap: wrap;
        gap: 7px;
    }
    
    .background-section-home {
        padding: 0;
    }

    .video-background {
        height: 40vh;
    }

    .product-section .inner > div {
        text-align: center;
    }
    
    .product-section .inner > div img {
        margin: 0 auto 30px;
    }

    .images-section .inner .right {
        text-align: center;
    }

    .background-section-home .wrap img {
        position: unset;
        height: auto;
    }
    
    .background-section-home .wrap {
        flex-direction: column;
        padding: 0;
        height: auto;
    }
    
    .background-section-home {
        height: auto;
    }
    
    .background-section-home .wrap .ins-content {
        width: 100%;
    }
    
    .background-section-home .wrap .ins-content * {
        color: #000;
    }
    
    .background-section-home .wrap .ins-content {
        padding: 0 15px;
        margin: 40px 0 0;
    }
    
    .background-section-home .wrap .ins-content .title {
        font-size: 30px;
    }
    
    .background-section-home .wrap .ins-content .content {
        font-size: 15px;
    }
    
    .background-section-home .wrap .ins-content a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    h3.blog-title {
        font-size: 28px;
    }
    
    .home .content-wrap {
        margin: 150px auto;
    }

    .home .content-wrap .wrapper h3 {
        font-size: 28px;
    }

    .blog-wrapper > div {
        width: 100%;
    }

    .blog-section .slick-list.draggable {
        margin: 0 -10px;
        overflow: visible;
    }
    
    .blog-section .slick-slide {
        margin: 0 10px;
    }
    
    .blog-wrapper > div .post-title {
        font-size: 18px;
    }
    
    .blog-wrapper > div .post-excerpt p {
        font-size: 14px;
        line-height: 20px;
    }

    .input-fields input#email {
        padding-left: 10px;
        padding-bottom: 1px;
    }

    .product-summary {
        width: 100%;
    }

    .wp-block-woocommerce-cart {
        padding: 0 15px;
    }

    .wp-block-woocommerce-checkout.alignwide.wc-block-checkout {
        padding: 0 15px;
    }

    header .header-hum .hum {
        width: 30px;
    }
    
    header .header-hum .hum span:nth-of-type(2) {
        top: 8px;
    }
    
    header .header-hum .hum span:nth-of-type(3) {
        bottom: 4px;
    }

    .product-section .inner > div a {
        width: 100%;
    }
    
    .product-section .inner > div {
        width: 100%;
    }

    .gallery-desktop {
        display: none;
    }

    .mobile-slider {
        display: block !important;
        width: 100% !important;
    }

    .product-gallery {
        width: 100%;
    }

    .mobile-slider .slick-slide img {
        height: 350px;
        object-fit: cover;
    }

    .product-gallery {
        height: auto;
    }

    .mobile-slider .slick-list.draggable {
        height: auto !important;
    }

    .product-page-container {
        margin-top: 0;
    }

    .buttons-popup {
        flex-wrap: wrap;
    }

    .accordion-header span {
        font-size: 16px;
    }

    .accordion-item {
        padding-top: 13px;
        padding-bottom: 13px;
    }

    .mobile-slider {
        opacity: 0;
        transition: 300ms ease-in;
    }

    .mobile-slider.slick-initialized {
        opacity: 1;
        transition: 300ms ease-in;
    }

    .woocommerce-account .woocommerce {
        padding: 0 15px;
    }

    .infografy-images img {
        width: 49%;
    }
    
    .infografy-images {
        justify-content: space-between;
        row-gap: 8px;
    }

    h5.info-title {
        font-size: 22px;
    }

    .woocommerce-order {
        padding: 0 15px;
    }
    
    .woocommerce .woocommerce-customer-details .woocommerce-customer-details--email, .woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
        padding: 0;
    }

    .custom-popup-overlay > div {
        max-width: 95% !important;
        max-height: 70vh;
        overflow-y: auto;
        padding: 15px !important;
    }

    .single-product .slick-dots li {
        width: 10px;
        height: 10px;
    }

    #mini-cart-wrapper {
        padding: 15px !important;
    }

    header .header-hum .hum span:nth-of-type(3) {
        bottom: 2px;
    }

    .home .content-wrap {
        margin: 100px auto;
        padding: 0 20px;
    }

    .background-section-home .wrap .ins-content a:hover,
    .background-section-home .wrap .ins-content a:active {
        background: #580a0a;
        border-color: #580a0a;
        padding: 0;
        color: #fff;
    }
    
    .home .content-wrap .wrapper h3 {
        font-size: 24px;
        line-height: 32px;
    }

    header .header-menu-wrap .header-menu-inner .header-menu-nav-wrap ul li a {
        font-size: 17px;
    }
    
    header .header-menu-wrap {
        width: 70vw;
        height: 100%;
    }

    .home .mob-version .content-wrap {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }
    .home .mob-version .content-wrap.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .top.hide-mobile {
        display: none;
    }

    .top.mob-version {
        display: block !important;
    }

    a.wc-block-components-button {
        width: 100% !important;
    }

    .images-section .inner:before {
        display: none;
    }

    .images-section .inner .left {
        height: auto;
    }

    .images-section .inner .left img {
        height: auto;
    }

    .images-section .inner .right {
        position: unset;
    }

    .images-section .inner .right h5, .images-section .inner .right h4 {
        color: #000;
    }

    .images-section .inner a {
        border-color: #000;
        color: #000;
    }

    .images-section {
        margin: 50px 0;
    }

    .background-section-home {
        margin-bottom: 50px;
    }

    .video > div {
        padding: 0 !important;
    }
    
    .video > div iframe {
        position: unset !important;
        height: 45vh !important;
    }    

    .product-section .inner > div .fibul {
        margin: 0;
    }
    
    .product-section .inner > div .fibul svg {
        margin: auto;
    }

    header .header-hum .hum span:nth-of-type(1) {
        top: 0;
    }
    
    .single-post .container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    .single-post .container > div .post-content h3 {
        display: none;
    }
    
    .single-post .container > div {
        flex-direction: column;
    }
    
    .single-post .container > div .post-image {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .single-post .container > div .post-content {
        width: 100% !important;
        position: unset !important;
    }
    
    .single-post .container > div .post-image h3 {
        display: block !important;
    }
}  

.custom-popup-overlay a {
    color: #000;
    text-decoration: underline;
}

.background-section-home .wrap .ins-content a:hover,
.background-section-home .wrap .ins-content a:active {
    background: #580a0a;
    border-color: #580a0a;
}

footer.site-footer .inner ul a:hover {
    color: #580a0a;
}

.footer-bottom .social svg:hover {
    fill: #580a0a;
}

.custom-popup ul {
    padding-left: 20px;
    margin: 0 0 20px 0;
}

.carousel__button {
    background: transparent !important;
}

button.single_add_to_cart_button.button.alt.added {
    font-size: 0;
}

.custom-popup-overlay > div {
    max-height: 70vh;
    overflow-y: auto;
}

button.single_add_to_cart_button.button.alt.added:before {
    content: "Added To Cart";
    font-size: 16px;
}

button.single_add_to_cart_button.button.alt.added:after {
    font-size: 16px;
}

p.woocommerce-mini-cart__buttons.buttons a:first-of-type:hover {
    background: #000 !important;
    color: #fff !important;
}

p.woocommerce-mini-cart__buttons.buttons a:nth-child(2):hover,
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover {
    background: #580a0a !important;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

form.wc-block-components-form.wc-block-checkout__form > div:nth-child(1) {
    display: none;
}

html {
    overflow-y: hidden;
}

@media (pointer: coarse) {
    a:not(.qlwapp__button--bubble):hover {
      all: revert-layer;
    }
  }

  button.cart img {
    width: 25px;
}

.product-variations {
    display: flex;
    margin: 20px 0 0;
    gap: 20px;
}

.product-variations img {
    width: 100px;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    width: 100% !important;
}

@media(max-width:767px) {
    button.cart img {
        width: 20px;
    }
    .woocommerce-checkout .woocommerce {
        padding: 0 15px;
    }
    
    form.woocommerce-form.woocommerce-form-login.login, .woocommerce-checkout .woocommerce-form-login-toggle {
        width: 100% !important;
    }
    
    .woocommerce-checkout .woocommerce-info {
        flex-direction: column;
    }
    
    form.checkout.woocommerce-checkout {
        flex-direction: column;
    }
    
    form.checkout.woocommerce-checkout > div:first-of-type {
        width: 100%;
    }
    
    .woocommerce-checkout form.checkout.woocommerce-checkout > div {
        width: 100%;
    }
    .woocommerce-checkout .woocommerce-info a {
        height: 40px;
        font-size: 14px;
        margin: 10px 0 0;
        display: flex !important;
        align-items: center;
    }

    h3#order_review_heading {
        margin: 30px 0 20px 0;
    }

    .images-section .inner a {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }    
}

.mini-cart-header button svg {
    width: 30px;
}

button.cart svg:hover,
.mini-cart-header button svg:hover {
    fill: #580a0a;
}

ul.woocommerce-error {
    width: 100%;
}

form.checkout.woocommerce-checkout {
    flex-wrap: wrap;
}

button.cart {
    position: relative;
}

button.cart .cart-count {
    position: absolute;
    border: 1px solid #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    top: -13px;
    right: -10px;
}

.single-product form.cart {
    display: flex;
    align-items: center;
    gap: 20px;
}

.single-product form.cart .quantity button {
    background: #000;
    height: 50px;
    border-radius: 0;
    font-size: 25px;
    padding: 0 20px;
}

.single-product form.cart .quantity input {
    height: 50px;
    margin: 0;
    border-radius: 0;
    text-align: center;
    padding: 0 !important;
    border-color: #000;
}

.single-product form.cart .quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qlwapp__container.qlwapp__container--rounded .qlwapp__button--bubble:hover {
    width: 60px !important;
    height: 60px !important;
    margin-left: auto !important;
}

html .qlwapp__button, 
html .qlwapp__button:active, 
html .qlwapp__button:focus, 
html .qlwapp__button:hover {
    background: #000 !important;
}

.footer-bottom .social img {
    width: 24px;
}