:root {
    --primary-font-family: "Inter", serif;

    --page-background: #ffffff;
    --light-background: #f9fafb;
    --dark-background: #111827;

    --accent: #dc2626;
    --border: #374151;

    --title: #1f2937;
    --text: #4b5563;

    --primary-button: #dc2626;
    --primary-button-hover: #bb1c1c;

    --input-border: #e5e7eb;

    --blue: #3b82f6;

    --primary-color: #dc2626;
    --secondary-color: #f9fafb;
    --red-color: #d00000;
    --primary-text-color: #0a122a;
    --light-text-color: #cccccc;

    --secondary-button-outline: #fbfaf8;
    --secondary-button-outline-hover: #43962f;

    --white-color: #fbfaf8;
    --white-color-border: rgb(251 250 248 / 40%);

    --success-color: rgb(67 150 47 / 10%);
    --success-border-color: #43962f;
    --success-icon-color: #43962f;

    --info-color: rgb(10 18 42 / 5%);
    --info-border-color: #0a122a;
    --info-icon-color: #0a122a;

    --error-color: rgb(208 0 0 / 5%);
    --error-border-color: #d00000;
    --error-icon-color: #0a122a;

    --darker-background: #d7d7d7;
    --Neutral-Dark-gray: #505050;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    padding: 0;
    margin: 0;
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 19.36px;
    font-weight: 400;
    font-family: var(--primary-font-family);
    background: var(--page-background);
}

p:empty {
    margin-bottom: 0px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
    color: var(--accent);
}

.d-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

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

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.d-flex-stretch {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 700;
    color: var(--title);
}

h1 {
    font-size: 48px;
    line-height: 48px;
}

.h1 {
    font-size: 30px;
    line-height: 30px;
}

h2 {
    font-size: 30px;
    line-height: 30px;
}

h3 {
    font-size: 20px;
    line-height: 20px;
}

h4 {
    font-size: 18px;
    line-height: 18px;
}

h5 {
    font-size: 16px;
    line-height: 16px;
}

h6 {
    font-size: 15px;
    line-height: 15px;
}

strong,
b {
    font-weight: 700;
}

label {
    font-weight: 400;
}

p {
    font-weight: 400;
}

p,
.p-reg-base {
    font-size: 16px;
    line-height: 19.36px;
}

.p-reg-lg {
    font-size: 20px;
    line-height: 30px;
}

.p-reg-md {
    font-size: 18px;
    line-height: 27px;
}

.p-reg-sm {
    font-size: 14px;
    line-height: 14px;
}

.row {
    --bs-gutter-x: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-2 {
    width: 20%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33333333%;
}

.col-5 {
    width: 41.66666667%;
}

.col-7 {
    width: 58.33333333%;
}

.col-8 {
    width: 66.66666667%;
}

.col-9 {
    width: 75%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.container {
    max-width: 1440px;
    width: 100%;
    padding-right: 97px;
    padding-left: 97px;
    margin-right: auto;
    margin-left: auto;
}

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

.light {
    background: var(--light-background);
}

.darker {
    background: var(--darker-background);
}

.box-shadow {
    box-shadow: 0px 4px 6px 0px #0000001a;
    box-shadow: 0px 2px 4px 0px #0000001a;
}

.product .badge-wrapper {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.badge {
    text-transform: uppercase;
    border-radius: 50px;
    padding: 5px 10px 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

.badge.dark {
    background: var(--dark-background);
    color: #fff;
}

.badge.sale {
    background: var(--accent);
    color: #fff;
}

.badge.new {
    background: #6cdc26;
    color: #fff;
}

input:focus,
input:focus-visible,
input:active,
select:focus,
select:focus-visible,
select:active {
    outline: none !important;
    box-shadow: none !important;
}

select {
    padding-right: 25px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0;
    text-overflow: "";
    background-color: var(--white-color);
    background-image: url(../images/select-arrow.png);
    background-size: 20px 20px;
    background-position: right 8px center;
    background-repeat: no-repeat;
}

input:not([type="checkbox"]),
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .woocommerce-ordering select,
.select2-container--default .select2-selection--single,
select {
    border: 1px solid var(--input-border);
    padding: 0px 20px;
    border-radius: 8px;
    height: 44px;
    width: 100%;
}

textarea {
    border: 1px solid var(--input-border);
    padding: 20px 20px;
    border-radius: 8px;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    font-family: var(--primary-font-family);
    font-weight: 400;
    color: var(--Neutral-Dark-gray);
}

input.large,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .woocommerce-ordering select,
.select2-container--default .select2-selection--single,
select {
    height: 44px;
    line-height: 46px;
    font-size: 16px;
    font-weight: 400;
}

.btn,
.woocommerce-button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt,
.wc-block-components-button:not(.is-link),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled,
.ajax_add_to_cart,
.product .add_to_cart_button,
.search .page-content .search-submit {
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    height: 48px;
    line-height: 48px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0px;
    padding-bottom: 0px;
    transition: all 0.2s ease;
    text-align: center;
}

.btn.large {
    height: 60px;
    line-height: 60px;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 18px;
}

.btn-primary,
.woocommerce-button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt,
.wc-block-components-button:not(.is-link),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled,
.ajax_add_to_cart,
.product .add_to_cart_button,
.search .page-content .search-submit {
    background: var(--primary-button);
    border: 1px solid var(--primary-button);
    color: #fff;
}

.btn-primary:hover,
.woocommerce-button:hover,
.woocommerce-button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover,
.wc-block-components-button:not(.is-link):hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover,
.ajax_add_to_cart:hover,
.btn-primary-outline:hover,
.btn-secondary:hover,
.product .add_to_cart_button:hover,
.search .page-content .search-submit:hover {
    background: var(--primary-button-hover);
    border: 1px solid var(--primary-button-hover);
    color: var(--white-color);
}

.btn-secondary {
    border: 1px solid var(--secondary-color);
    background: var(--secondary-color);
    color: #1f2937;
}

.btn-primary-outline {
    border: 1px solid #111827;
}

main {
    padding-top: 99px;
}

.header {
    position: fixed;
    width: 100%;
}

.header {
    padding: 18px 0px 18px;
    /*     position: relative; */
    z-index: 99;
    background: var(--page-background);
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    margin-right: 20px;
}

.header a {
    color: var(--text);
    position: relative;
}

.header li:hover > a {
    color: var(--accent);
}

.header .navigation > li,
.header .main-navigation > li {
    margin: 0px 16px;
}

.current-menu-item a {
    color: var(--accent);
}

.header .main-navigation > li > a::before {
    content: "";
    position: absolute;
    width: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 1px;
    background: var(--accent);
    bottom: -2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header .main-navigation > li:hover > a::before {
    width: 100%;
}

.header .searchform {
    margin-left: auto;
    width: 256px;
    max-width: 100%;
    position: relative;
}

.header .searchform input {
    width: 100%;
    padding-left: 52px;
    background: #ffffff;
    font-size: 16px;
    border: 1px solid #e5e7eb;
}

.header .searchform input::placeholder {
    color: #adaebc;
}

.header .searchform .search-submit {
    position: absolute;
    left: 0px;
    height: 100%;
    width: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    top: 0px;
    justify-content: center;
    align-items: center;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-bottomleft: 8px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    transition: all 0.2s ease;
    border: none;
}

.header .searchform .search-submit svg path {
    transition: all 0.2s ease;
}

.header .searchform:hover .search-submit {
    background: var(--accent);
}

.header .searchform:hover .search-submit svg path {
    fill: var(--white-color);
}

.header .actions .icon {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.header .actions .icon + .icon {
    margin-left: 25px;
}

.header .actions {
    margin-left: 20px;
}

.header .icon:hover svg path {
    fill: var(--primary-color);
}

.hero {
    min-height: 600px;
    padding: 181px 0px 190px;
    background-color: var(--primary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .wrapper {
    max-width: 100%;
    color: #fff;
    width: 768px;
}

.hero h1 {
    margin-bottom: 21px;
    color: #fff;
}

.hero p {
    margin-bottom: 32px;
}

.block-section {
    padding: 81px 0px 81px;
}

.section-title {
    margin-bottom: 60px;
}

.product-categories .category {
    background: #fff;
    box-shadow: 0px 4px 6px 0px #0000001a, 0px 2px 4px 0px #0000001a;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.product-categories .col-2 {
    margin-bottom: 30px;
}

.product-categories .category img {
    display: block;
    margin: 0 auto 16px;
    transition: all 0.2s ease;
    max-height: 192px;
}

.product-categories .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

.product-categories .category:hover .img {
    transform: scale(1.05);
}

.product-categories .img-wrapper {
    height: 0;
    width: 100%;
    max-width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.product-categories h3 {
    color: var(--title);
    font-weight: 700;
    margin-bottom: 12px;
    padding-top: 16px;
    min-height: auto;
    font-size: 18px;
    line-height: 1.3;
}

.product-categories p {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.product-categories .row {
    --bs-gutter-x: 30px;
}

.product-categories .link {
    margin-top: auto;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.product-categories .link:hover {
    color: var(--primary-button-hover);
    text-decoration: none;
}

.product-categories .link:after {
    content: '→';
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.product-categories .category:hover .link:after {
    transform: translateX(4px);
}

.product-categories a {
    display: flex;
    flex-direction: column;
    height: inherit;
    padding-bottom: 20px;
    text-decoration: none;
}

.product-categories h3,
.product-categories p,
.product-categories .link {
    padding-left: 20px;
    padding-right: 20px;
}

.product-categories p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-categories .see-all-products-btn-wrapper {
    display: flex;
    justify-content: center;
}

.archive .product-categories a {
    padding-bottom: 0px;
}

.archive .product-categories p {
    margin-bottom: 0px;
}

.archive .product-categories .col-3 {
    margin-bottom: 30px;
}

.archive .product .price {
    font-size: 16px;
    line-height: 1;
}

.archive .product .ajax_add_to_cart {
    padding: 0px 10px !important;
}

.product {
    position: relative;
}

.product .badge {
    display: inline-block;
}

.product .badge + .badge {
    margin-top: 5px;
}

.product img {
    width: 100%;
    height: auto;
}

.product .image-wrapper {
    padding-bottom: 100%;
    display: block;
    height: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
    margin-bottom: 27px;
    background: #fff;
}

.product .image-wrapper img {
    bottom: 0;
    height: auto;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.product .title,
.wc-block-product-new .wc-block-grid__product-title {
    color: var(--primary-text-color);
    font-weight: 600;
    transition: all 0.2s ease;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 18px;
}

.wc-block-product-new .wc-block-grid__product-title {
    text-align: start;
}

.product .price,
.wc-block-product-new .wc-block-grid__product-price.price {
    margin-top: 11px;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    color: var(--title);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-list .product p {
    color: var(--text);
    margin-bottom: 25px;
}

.product .price del {
    color: #9ca3af;
    font-weight: 400;
    margin-right: 8px;
    font-size: 18px;
}

.product .price ins {
    text-decoration: none;
    font-weight: 700;
    color: var(--accent);
}

.wc-block-product-new .wc-block-grid__products {
    padding: 0 !important;
    flex-wrap: wrap !important;
}

.wc-block-product-new .wc-block-grid__product {
    display: flex;
    flex-direction: column;
    /* box-shadow: 0px 2px 4px 0px #0000001a;
    border-radius: 8px; */
    overflow: hidden;
}

.wp-block-woocommerce-empty-cart-block .wp-block-heading {
    margin-bottom: 55px !important;
}

.wc-block-product-new .wc-block-grid__product .wc-block-grid__product-add-to-cart {
    margin-top: auto !important;
}

.wc-block-product-new .wc-block-grid__product-title {
    color: var(--text);
}

.wc-block-product-new .wc-block-grid__product .wc-block-grid__product-price {
    margin: 20px 0 !important;
}

.wc-block-grid__product .wc-block-grid__product-add-to-cart {
    margin: 0 0 12px !important;
}

.wc-block-grid__product .wc-block-grid__product-image:not(.wc-block-components-product-image) {
    margin: 0 0 35px !important;
    padding: 0 20px;
}

.product-title:hover .title {
    color: var(--accent);
}

.product .ajax_add_to_cart,
.product .add_to_cart_button {
    width: 100%;
    height: 40px;
    line-height: 40px;
}

.product-list {
    --bs-gutter-x: 30px;
}

.product-list .product-title,
.wc-block-product-new .wc-block-grid__product-title {
    display: block;
}

.product-list .product-title,
.product-list p,
.product-list .add-to-cart,
.wc-block-product-new .wc-block-grid__product-title,
.wc-block-product-new .wc-block-grid__product-price.price,
.wc-block-product-new .wc-block-grid__product-add-to-cart {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

.product-list .price {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
}

.product-list .add-to-cart {
    width: 100%;
}

.archive .product-list .info {
    height: 100%;
}

.archive .product-list .info {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.product-list .box {
    padding-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-list .btn-actions {
    margin-top: auto;
}

.product-list .product .price {
    margin-top: auto;
}

.logo-list img {
    margin: 0px 24px 32px;
    max-height: 48px;
    width: auto;
}

.footer {
    background: var(--dark-background);
    padding-top: 67px;
    padding-bottom: 71px;
    font-weight: 400;
}

.footer p {
    margin-bottom: 10px;
}

.footer .tnp-subscription {
    margin: 0px;
}

.footer .tnp-submit {
    font-size: 0px !important;
    width: 48px !important;
    height: 44px !important;
}

.footer .tnp-field-button {
    position: relative;
}

.footer .tnp-field-button::after {
    content: "";
    position: absolute;
    background: url(../images/send-icon.svg);
    width: 16px;
    height: 16px;
    top: 50%;
    margin: -8px auto 0px;
    left: 0;
    right: 0px;
}

.copyrigts {
    color: #9ca3af;
}

.copyrigts .divider {
    border-top: 1px solid var(--white-color-border);
    padding-top: 32px;
}

.copyrigts a {
    color: #9ca3af;
    text-decoration: underline;
}

.copyrigts li {
    margin: 0px 12px;
}

.copyrigts li:last-child {
    margin-right: 0px;
}

.footer-info {
    padding-bottom: 42px;
    color: #9ca3af;
}

.footer-info a {
    color: #9ca3af;
}

.footer-info .text a {
    text-decoration: underline;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer-info a:hover svg path {
    fill: var(--primary-color);
}

.footer-info .wrapper {
    width: 500px;
    max-width: 100%;
}

.footer-info .links li + li {
    margin-top: 13px;
}

.footer-info .title {
    margin-bottom: 23px;
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
}

.contact-info + .contact-info {
    margin-top: 12px;
}

.contact-info svg {
    margin-right: 4px;
}

.news-item .img-wrapper {
    height: 192px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-item .img-wrapper .img {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.news-item .post {
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 20px;
    height: 100%;
}

.news-wrapper {
    --bs-gutter-x: 30px;
}

.news-item h3,
.news-item .post-content {
    margin-bottom: 15px;
}

.news-item h3,
.news-item .post-content,
.news-item .read-more {
    padding-left: 20px;
    padding-right: 20px;
}

.no-image .img {
    background-color: var(--accent);
}

.faq .description {
    margin-bottom: 32px;
}

.faq .answer {
    display: none;
    margin-top: 20px;
    font-size: 16px;
    line-height: 19.36px;
}

.faq .question {
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: var(--title);
}

.faq-item {
    padding: 30px 60px 30px 30px;
    position: relative;
    background: #fff;
    border-radius: 8px;
}

.toggle-icons {
    position: absolute;
    top: 32px;
    right: 32px;
}

.faq-item.active .toggle-icons {
    transform: rotate(-180deg);
}

.faq-container {
    width: 768px;
    max-width: 100%;
    margin: 0 auto;
}

.faq-item + .faq-item {
    margin-top: 30px;
}

.featured-info {
    padding: 60px 0px 48px;
}

.featured-info .info {
    position: relative;
    padding: 52px 32px 37px;
    border-radius: 16px;
    height: 100%;
    background: var(--blue);
    text-align: center;
    min-height: 264px;
}

.featured-info .title {
    color: #fff;
    margin-bottom: 24px;
}

.featured-info p {
    margin-bottom: 24px;
    color: #fff;
}

.featured-info .tnp-subscription {
    padding: 8px 0px 0px;
    margin: 0px auto;
    max-width: 450px;
    justify-content: center !important;
}

.tnp-subscription {
    display: flex !important;
}

.tnp-email {
    border-radius: 4px !important;
    height: 40px;
    line-height: 40px !important;
    padding: 0px 15px !important;
    background: #374151 !important;
    font-size: 16px !important;
    color: #adaebc !important;
}

.tnp-subscription div.tnp-field,
.tnp-profile div.tnp-field {
    margin-bottom: 16px;
}

div.tnp-subscription,
form.tnp-subscription,
form.tnp-profile {
    margin-bottom: 28px !important;
    max-width: 100% !important;
}

.tnp-email::placeholder {
    color: #adaebc !important;
}

.tnp-field-button {
    margin: 0px;
}

.tnp-submit {
    transition: all 0.2s ease;
    height: 40px !important;
    line-height: 40px !important;
    cursor: pointer;
    padding: 0px 25px !important;
    background: var(--accent) !important;
}

.tnp-submit:hover {
    background: var(--accent) !important;
}

.featured-info .tnp-email {
    height: 48px;
    line-height: 48px !important;
    padding: 0px 15px !important;
    font-size: 16px !important;
    color: #adaebc !important;
    width: 312px !important;
    max-width: 100%;
}

.tnp-email {
    -webkit-border-radius: 8px !important;
    -webkit-border-top-right-radius: 0px !important;
    -webkit-border-bottom-right-radius: 0px !important;
    -moz-border-radius: 8px !important;
    -moz-border-radius-topright: 0px !important;
    -moz-border-radius-bottomright: 0px !important;
    border-radius: 8px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    background: #ffffff !important;
}

.featured-info .tnp-submit {
    transition: all 0.2s ease;
    height: 48px !important;
    line-height: 48px !important;
    cursor: pointer;
    padding: 0px 25px !important;
    background: #111827 !important;
    color: #fff !important;
}

.tnp-submit {
    -webkit-border-radius: 0px !important;
    -webkit-border-top-right-radius: 8px !important;
    -webkit-border-bottom-right-radius: 8px !important;
    -moz-border-radius: 0px !important;
    -moz-border-radius-topright: 8px !important;
    -moz-border-radius-bottomright: 8px !important;
    border-radius: 0px !important;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.featured-info .tnp-submit:hover {
    background: var(--accent) !important;
}

.term-description {
    background: #f9fafb;
    padding: 30px 30px 20px;
    border-radius: 8px;
}

.term-description p {
    line-height: 25px;
}

.term-description h4 {
    font-size: 20px;
    line-height: 24.2px;
    margin-bottom: 20px;
}

.archive .product-list .wrapper {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-content {
    padding-top: 159px;
    padding-bottom: 60px;
}

.archive .page-content {
    padding-top: 60px;
}
.archive.term-stikla-smilts .promo, .archive.term-pulverkrasas .promo{
    padding-bottom: 60px;
}

.archive.term-stikla-smilts .page-content {
    padding-bottom: 0;
}

.page-content .page-title {
    margin-bottom: 48px;
}

.page-content h2 {
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 26px;
}

.single-post .page-content ul,
.single-post .page-content ol {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 26px;
    padding-left: 20px;
}

.single-post .page-content ul {
    list-style: disc;
}

.single-post .page-content ol {
    list-style: auto;
}

.single-post .page-content h3 {
    margin-bottom: 15px;
}

.wp-block-table td,
.wp-block-table th {
    border: 1px solid;
    padding: 15px;
    border-color: #e5e7eb;
}

.wp-block-table thead {
    border-color: #e5e7eb;
}

.single-post .page-content table {
    margin-bottom: 30px;
}

.woocommerce div.product {
    padding-bottom: 30px;
}

.shop-wrapper {
    justify-content: space-between;
}

.shop-wrapper .sidebar {
    width: 20%;
    padding-top: 54px;
}

.shop-wrapper .main-wrapper {
    width: 100%;
}

.woof_container_inner h4 {
    font-size: 18px;
    line-height: 18px;
}

.woof_container + .woof_container {
    margin-top: 40px;
}

.mini-cart {
    margin-right: 15px;
}

.mini-cart .cart-link {
    cursor: pointer;
    position: relative;
}

.mini-cart .cart-count {
    background: #2563eb;
    color: #fff;
    font-size: 12px;
    height: 16px;
    line-height: 16px;
    width: 16px;
    border-radius: 50%;
    text-align: center;
    display: block;
    position: absolute;
    right: -8px;
    top: -8px;
}

.mini-cart-content {
    transform: scale(0);
    background-color: transparent;
    transition: background-color 0.4s, transform 0s;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
}

.mini-cart-wrapper {
    position: fixed;
    left: auto;
    opacity: 0;
    right: 0px;
    overflow: hidden;
    transform: translateX(100%);
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 200px;
    width: 352px;
    max-width: 100%;
    transition: 0.3s;
    background: #ffffff;
    padding: 32px 25px 35px;
}

.mini-open {
    background-color: rgba(0, 0, 0, 0.25);
    transition: background-color 0.4s, transform 0s 0.4s;
    transform: scale(1);
    z-index: 9999999998;
}

.mini-open .mini-cart-wrapper {
    opacity: 1;
    transform: translateX(0);
    right: 15px;
}

.mini-cart-content-header {
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid hsla(0, 0%, 7%, 0.11);
}

.mini-cart-content-header .title {
    font-size: 24px;
    line-height: 29.71px;
    font-weight: 600;
}

.mini-cart-content-header .close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mini-cart-content-header .close:hover path {
    stroke: var(--accent);
}

.mini-cart-products {
    padding-top: 24px;
    overflow: hidden;
    overflow-y: auto;
}

.mini-cart-products .img,
.cart_item .img {
    width: 64px;
    height: 64px;
    background-size: 64px 64px;
    margin-right: 15px;
    flex-shrink: 0;
}

.mini-cart-products .product-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}

.mini-cart-products .product-title a:hover {
    color: var(--accent);
}

.mini-cart-products .cart-item {
    padding-bottom: 24px;
    padding-top: 10px;
    border-bottom: 1px solid hsla(0, 0%, 7%, 0.11);
    position: relative;
}

.mini-cart-products .cart-item + .cart-item {
    margin-top: 20px;
}

.mini-cart-products .product-price {
    margin-left: auto;
    font-size: 16px;
}

.mini-cart-footer {
    margin-top: auto;
}

.mini-cart-footer .cart-total {
    text-align: right;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 31px;
}

.mini-cart-footer .btn + .btn {
    margin-top: 16px;
}

.mini-cart-footer .btn {
    height: 44px;
    line-height: 44px;
    font-size: 16px;
}

.mini-cart-wrapper .btn-primary {
    color: #fff;
}

.remove-product-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    top: -13px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.remove-product-btn svg {
    width: 8px;
}

.remove-product-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.remove-product-btn:hover svg path {
    stroke: #fff;
}

.related.products {
    padding: 60px 0px 0px;
}

.related .review-wrapper {
    display: none;
}

.related.products .product {
    width: 25%;
}

.related.products .wrapper {
    border: 1px solid #e5e7eb;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.related.products .product p {
    display: none;
}

.related.products .product h3 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    min-height: 32px;
}

.product-list .btn-actions .price {
    margin-top: 0px;
    margin-bottom: 0px;
}

.related .product-list .btn-actions .price {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #4b5563;
}

.related .product-list .btn-actions {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.related .product-list .btn,
.related .product-list .add-to-cart {
    width: 100%;
}

.related .product-list .add_to_cart_button {
    background: #f3f4f6;
    border: 1px solid #f3f4f6;
    color: #1f2937;
    height: 40px;
    line-height: 40px;
    margin-bottom: 20px;
}

.related .product .price {
    margin-bottom: 20px;
}

.stock-status {
    border-radius: 9999px;
    height: 28px;
    line-height: 28px;
    padding: 0px 10px;
    font-size: 14px;
    font-weight: 400;
    margin-left: 15px;
}

.stock-status.instock {
    color: #065f46;
    background: #d1fae5;
}

.single-product .price {
    margin: 0px;
}

.price-stock {
    padding: 20px 0px 32px;
}

.woocommerce div.product .product_title {
    font-size: 30px;
    line-height: 30px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: var(--primary-text-color);
}

.single-product .short-description {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 10px;
}

.gallery-wrapper .item {
    width: 100%;
    height: 502px;
    background: #fff;
    border-radius: 8px;
}

.gallery-wrapper .item a {
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-wrapper .item a:focus-visible {
    outline: none;
    box-shadow: none;
}

.gallery-wrapper .item img {
    max-height: 502px;
    border-radius: 8px;
}

.single-product-wrapper {
    --bs-gutter-x: 40px;
}

.single-product-wrapper .about-product ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 20px;
}

.single-product-wrapper .about-product strong {
    display: block;
    margin: 15px 0;
}

.single-product-wrapper .about-product li {
    margin-bottom: 4px;
}

.woocommerce .quantity .qty {
    height: 100%;
    padding: 0px;
    width: 80px;
}

.slider-thumbnail {
    margin-top: 15px;
}

.slider-thumbnail .thumb-item {
    padding-top: 99%;
    width: 138px;
    max-width: 100%;
    background-color: #ffffff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
}

.woocommerce-tabs {
    padding: 72px 0px 0px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    padding: 13px 0 16px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border-radius: 0px;
    padding: 0 20px;
    margin: 0px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--accent);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom: 3px solid var(--accent);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0px;
    margin: 0 0 35px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-color: #e5e7eb;
}

.woocommerce div.product .woocommerce-tabs h2 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 19px;
}

.woocommerce div.product .woocommerce-tabs h3 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 19px;
}

.woocommerce #reviews #comment {
    padding: 20px;
}

.review-wrapper {
    padding: 0px 20px 15px;
    color: #6b7280;
}

.review-wrapper .review-count {
    font-size: 14px;
}

.woocommerce .star-rating::before,
.woocommerce .products .star-rating {
    color: #fbbf24;
}

.archive .add-to-cart .ajax_add_to_cart {
    background-color: #2563eb;
    border-color: #2563eb;
    font-weight: 400;
}

.woocommerce div.product .woocommerce-tabs .panel ul {
    font-size: 18px;
    line-height: 26px;
    padding: 15px 0px 30px 20px;
    list-style: disc;
}

.woocommerce-Reviews-title {
    display: none;
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
    background: #f9fafb;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
    border: none;
}

.woocommerce table.shop_attributes th {
    text-align: left;
    font-weight: 600;
    width: 250px;
    padding: 15px 25px;
}

.pdf-file {
    border-top: 1px solid #e5e7eb;
    padding: 27px 0px 20px;
}

.pdf-file a {
    color: #2563eb;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    align-items: center;
}

.pdf-file svg {
    margin-right: 8px;
}

.pdf-file a:hover {
    color: var(--accent);
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
    padding-left: 0px;
}

.action-button-list {
    justify-content: space-between;
    padding: 0px 0px 27px;
}

.action-button-list .btn {
    width: 49%;
}

.woocommerce div.product form.cart {
    margin-bottom: 27px;
}

.block-section .product-list .col-3 {
    padding-bottom: 30px;
}

.information img {
    display: block;
    margin: 0 auto 24px;
    height: auto;
    max-width: 60px;
}

.container .container {
    padding: 0px;
}

.information .item {
    padding: 0px 32px;
}

.information h4 {
    margin-bottom: 20px;
}

.post-thumbnail img {
    width: 100%;
    margin-bottom: 30px;
}

.search .search-submit .search-form {
    display: flex;
}

.search .page-content .search-field {
    height: 48px;
}

.promo .wrapper {
    background: #f3f4f6;
    padding: 53px 60px 48px;
    border-radius: 16px;
}

.promo h3 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 23px;
}

.promo p {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 36px;
}

.column-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.column-content h1 {
    margin-bottom: 48px;
}

.column-content h2 {
    margin-bottom: 20px;
}

.column-content p + h2 {
    padding-top: 20px;
}

.column-content input,
.column-content textarea {
    width: 100%;
}

.column-content .item {
    margin-bottom: 15px;
}

.column-row {
    --bs-gutter-x: 40px;
}

.column-content .btn {
    cursor: pointer;
}

iframe {
    max-width: 100%;
}

.visible-mobile,
.bar-icon,
.close-icon {
    display: none !important;
}

.woocommerce-variation-add-to-cart {
    display: flex;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock {
    color: var(--primary-color);
}

.filter-mobile,
.close-filter {
    display: none;
}

.woocommerce .woocommerce-ordering select {
    padding-right: 30px;
}

.wc-block-components-notice-banner.is-success {
    background-color: var(--success-color) !important;
    border-color: var(--success-border-color) !important;
    color: var(--primary-text-color) !important;
}

.wc-block-components-notice-banner.is-success > svg {
    background-color: var(--success-icon-color) !important;
}

.wc-block-components-notice-banner.is-info {
    background-color: var(--info-color) !important;
    border-color: var(--info-border-color) !important;
    color: var(--info-icon-color) !important;
}

.wc-block-components-notice-banner.is-info > svg {
    background-color: var(--info-icon-color) !important;
}

.wc-block-components-notice-banner.is-error {
    background-color: var(--error-color) !important;
    border-color: var(--error-border-color) !important;
    color: var(--error-icon-color) !important;
}

.wc-block-components-notice-banner {
    font-size: 16px !important;
}

.wc-block-components-notice-banner .button {
    height: auto !important;
    line-height: normal !important;
}

.logo img {
    max-width: 230px;
}

.footer-logo img {
    max-width: 170px;
}

.form-control {
    box-shadow: none;
}

.form-control:focus {
    border-color: inherit;
    box-shadow: none;
}

.active-cat-menu {
    position: relative;
}

.active-cat-menu::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 18, 42, 0.25);
    z-index: 2;
}

img {
    max-width: 100%;
    vertical-align: middle;
    border: 0;
}

.view-all {
    padding-top: 8px;
}

.social-icons svg {
    margin-top: -3px;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.all-category-menu .product-cats {
    display: none;
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    border-radius: 0px 0px 8px 8px;
    border: 1px solid #eaecf0;
    background: var(--page-background);
}

.cat-link {
    margin-right: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cat-link:hover,
.active-cat-menu .cat-link {
    color: var(--primary-color);
}

.cat-link:hover svg path,
.active-cat-menu .cat-link svg path {
    stroke: var(--primary-color);
}

.active-cat-menu .cat-link svg {
    transform: rotate(180deg);
}

.all-category-menu .product-cats {
    position: absolute;
    top: 76px;
    background: var(--page-background);
    padding: 20px;
    width: 300px;
    max-width: 100%;
    overflow-x: hidden;
}

.active-cat-menu .all-category-menu .product-cats {
    display: block;
}

.product-cats .parent-cat + .parent-cat {
    border-top: 1px solid #e5e5e5;
}

.product-cats::-webkit-scrollbar {
    width: 8px;
}

.product-cats::-webkit-scrollbar-thumb {
    background-color: #eaecf0;
    border-radius: 8px;
}

.product-cats::-webkit-scrollbar-track {
    background-color: var(--white-color);
    border-radius: 8px;
}

.product-cats .parent-cat .cat-title {
    padding: 12px 0px;
}

.sub-cats {
    display: none;
    padding-bottom: 16px;
}

.sub-cats .bold {
    font-weight: 600;
}

.product-cats .parent-cat.active-cat .sub-cats {
    display: block;
}

.product-cats .parent-cat.active-cat > .cat-title svg {
    transform: rotate(90deg);
}

.product-cats svg {
    margin-left: 14px;
}

.parent-cat > .cat-title > .name {
    font-weight: 600;
}

.product-cats .count {
    font-weight: 400;
}

.product-cats .cat-title {
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-cats .cat-title:hover,
.product-cats a:hover {
    color: var(--primary-color);
}

.product-cats .cat-title:hover svg path {
    stroke: var(--primary-color);
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    float: none;
}

.close svg {
    width: 25px;
    height: 25px;
}

.close svg path {
    fill: rgba(10, 18, 42, 0.7);
}

.close:hover svg path {
    fill: var(--primary-color);
}

#customer_login .form-text p {
    font-size: 12px;
    line-height: 18px;
}

.btn-row {
    padding-top: 20px !important;
    display: flex;
    align-items: center;
}

#customer_login a:hover {
    text-decoration: underline;
}

.woocommerce-breadcrumb {
    margin: 0px 0px 40px !important;
    padding-bottom: 10px !important;
    color: var(--primary-text-color) !important;
    font-size: 14px !important;
}

.woocommerce-breadcrumb a {
    color: #666666 !important;
}

.woocommerce .woocommerce-breadcrumb .woocommerce-breadcrumb a:hover {
    color: var(--primary-color) !important;
}

.brands a {
    color: var(--primary-text-color);
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 400;
}

.about-product .product_title,
.brands {
    margin-bottom: 15px;
}

body .qib-button-wrapper {
    height: 56px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid hsla(0, 0%, 7%, 0.11);
    margin: 0px 20px 0px 0px !important;
}

.qib-button-wrapper button.qib-button {
    border: none !important;
    background: #fff !important;
}

.qib-button-wrapper .quantity input.input-text.qty.text {
    border: none !important;
}

.woocommerce div.product form.cart .button {
    height: 56px;
    line-height: 56px;
    flex: 1;
}

.about-product .cart {
    display: flex;
}

.about-product .information {
    padding-top: 10px;
    padding-bottom: 35px;
}

.about-product .information img {
    max-width: 56px;
}

.woocommerce-page div.product form.cart div.quantity.wqpmb_quantity,
.woocommerce div.product form.cart .quantity.wqpmb_quantity,
.woocommerce div.product .quantity.wqpmb_quantity {
    float: none;
    margin-right: 25px;
    height: 55px;
    margin-top: 1px !important;
    display: flex;
    align-items: center;
}

.woocommerce .wc-block-components-notice-banner > .wc-block-components-notice-banner__content .wc-forward {
    color: var(--primary-text-color) !important;
    opacity: 1;
}

.woocommerce .wc-block-components-notice-banner > .wc-block-components-notice-banner__content .wc-forward:hover {
    border: none;
    text-decoration: underline;
    color: var(--primary-color) !important;
}

.wc-block-components-product-name {
    color: var(--primary-text-color);
    font-weight: 600;
    font-size: 16px !important;
}

.product-actions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.wcapf-before-products {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.woocommerce .woocommerce-ordering {
    margin-bottom: 0px;
}

.product-actions .woocommerce-ordering {
    margin-left: auto;
}

.product-actions .woocommerce-result-count {
    margin-bottom: 0px;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    width: 48px;
    height: 48px;
    border: 1px solid var(--primary-text-color);
    border-radius: 50%;
    margin: 0px 5px;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    color: var(--primary-text-color);
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers.current {
    background: var(--primary-text-color);
    color: #fff;
}

.error-page .error-text {
    padding-top: 109px;
    padding-bottom: 170px;
    text-align: center;
}

.error-page .error-text h1 {
    font-size: 11.25em;
    color: var(--primary-color);
    line-height: 198px;
    margin-bottom: 0;
}

.error-page .error-text h2 {
    margin-bottom: 17px;
}

.error-page .error-text p {
    margin-bottom: 36px;
}

.about-product table {
    width: 100%;
    border-radius: 8px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--primary-text-color);
}

.about-product th,
.about-product td {
    padding: 10px;
}

.about-product table tr:not(:last-child) > td,
.about-product table tr:not(:last-child) > th {
    border-bottom: 1px solid var(--primary-text-color);
}

.about-product table tr td:not(:last-child),
.about-product table tr th:not(:last-child) {
    border-right: 1px solid var(--primary-text-color);
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
    padding-bottom: 30px;
}

.woocommerce a.remove {
    color: var(--red-color) !important;
}

.woocommerce-MyAccount-navigation a {
    color: var(--primary-text-color);
    font-size: 16px;
}

.woocommerce-MyAccount-navigation li + li {
    margin-top: 15px;
}

.to-brands a {
    text-decoration: underline;
    color: var(--primary-text-color);
}

.single-product .information .item {
    width: 33.333333%;
}

#price_calculator {
    display: none;
}

.thumb-arrows::after {
    display: none;
}

.thumb-arrows svg {
    fill: var(--primary-text-color);
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 14px;
    height: 24px;
}

.archive .page-title {
    margin-bottom: 0px;
}

.archive .term-description {
    margin: 30px 0px;
}

.woocommerce-products-header {
    margin-bottom: 30px;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header,
table.wc-block-cart-items .wc-block-cart-items__header,
.is-large.wc-block-cart .wc-block-cart__totals-title {
    font-size: 14px !important;
}

input:focus-visible + label {
    outline: none !important;
    border-radius: 0px !important;
}

.wc-block-components-form .wc-block-components-text-input.has-error input,
.wc-block-components-form .wc-block-components-text-input.has-error input:active,
.wc-block-components-form .wc-block-components-text-input.has-error input:focus,
.wc-block-components-form .wc-block-components-text-input.has-error input:hover,
.wc-block-components-text-input.has-error input,
.wc-block-components-text-input.has-error input:active,
.wc-block-components-text-input.has-error input:focus,
.wc-block-components-text-input.has-error input:hover {
    border-color: var(--red-color) !important;
}

.wc-block-components-form .wc-block-components-text-input.has-error label,
.wc-block-components-text-input.has-error label {
    color: var(--red-color) !important;
}

.wc-block-components-validation-error {
    color: var(--red-color) !important;
}

.wc-block-components-checkout-step__description {
    font-size: 16px !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    border: none !important;
    color: #fff !important;
    background: var(--primary-text-color) !important;
    box-shadow: none !important;
    height: 20px !important;
    line-height: 20px !important;
}

#scroll-top {
    position: fixed;
    cursor: pointer;
    bottom: 80px;
    right: 40px;
    z-index: 1024;
    background: var(--dark-background);
    border-radius: 4px;
    font-size: 0px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--white-color);
}

#scroll-top svg {
    width: 15px;
}

#scroll-top svg path {
    fill: var(--white-color);
}

#scroll-top:hover {
    background: var(--primary-color);
}

#customer_login h2 {
    font-size: 32px;
    line-height: 41.6px;
}

.doc-links {
    margin-bottom: 15px;
}

.doc-links svg {
    width: 15px;
    margin-right: 10px;
}

.doc-links svg path {
    fill: var(--primary-text-color);
}

.doc-links a {
    color: var(--primary-text-color);
    text-decoration: underline;
}

.doc-links a + a {
    margin-top: 15px;
}

.doc-links a:hover {
    color: var(--primary-color);
}

.woocommerce-no-products-found {
    flex-grow: 1;
}

.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.stylish-checkbox-radio input[type="checkbox"],
.stylish-checkbox-radio input[type="radio"] {
    width: 24px !important;
    height: 24px !important;
    border: 1px solid var(--primary-text-color) !important;
}

.wcapf-filter .wcapf-list-wrapper.list-type-native .wcapf-filter-item.empty-item label,
.wcapf-list-wrapper:not(.count-badge) .wcapf-nav-item-count {
    opacity: 1 !important;
}

.wcapf-filter .wcapf-list-wrapper.list-type-native .wcapf-filter-item.empty-item label {
    cursor: pointer !important;
}

.stylish-checkbox-radio input[type="checkbox"] {
    border-radius: 4px !important;
}

.wcapf-filter .wcapf-list-wrapper ul.wcapf-filter-options li.wcapf-filter-option label {
    font-weight: 500 !important;
}

.stylish-checkbox-radio .current-tax-item input[type="checkbox"]:checked {
    background-color: var(--dark-background) !important;
}

.stylish-checkbox-radio .current-tax-item input[type="checkbox"]:checked::before {
    border-color: #fff !important;
}

.wcapf-form > p {
    display: none;
}

.vi-wcaio-menu-cart-content-wrap {
    transform: translateX(-89%) !important;
}

.vi-wcaio-menu-cart-content-wrap:after,
.vi-wcaio-menu-cart-content-wrap:before {
    right: 5% !important;
    left: auto !important;
}

.vi-wcaio-menu-cart-show .vi-wcaio-menu-cart-content-wrap .woocommerce-mini-cart__buttons a.button {
    padding-top: 0px;
    padding-bottom: 0px;
    height: 35px;
    line-height: 35px;
}

.wcapf-pretty-text-inputs .wcapf-range-wrapper input[type="text"],
.wcapf-pretty-text-inputs .wcapf-range-wrapper input[type="number"],
.wcapf-chosen-container.chosen-container-single .chosen-single {
    border-color: var(--input-border) !important;
    border-radius: 4px !important;
    height: 40px !important;
    line-height: 40px !important;
}

.wcapf-chosen-container.chosen-container-single .chosen-single {
    padding: 0px 15px !important;
}

.variations_form.cart {
    flex-direction: column;
}

.wpml-ls-legacy-list-horizontal .wpml-ls-flag {
    transition: all 0.2s ease;
}

.wpml-ls-legacy-list-horizontal .wpml-ls-link:hover .wpml-ls-flag {
    transform: scale(1.1);
}

.woosw-btn-icon:hover::before {
    content: "\e90c" !important;
}

.single div.product form.cart .variations tr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.single div.product form.cart .variations tr .label {
    padding-bottom: 0px;
}

.single div.product form.cart .variations tr .value {
    padding-top: 0px;
    width: 100%;
}

.page-template-default .page-content ol,
.page-template-default .page-content ul {
    list-style: auto;
    font-size: 16px;
    line-height: 24px;
    padding-left: 24px;
}

.sub-cat-page.product-categories {
    padding: 0px 0px 30px;
}

.sub-cat-page.product-categories .category {
    padding: 0px 10px 20px;
}

.gallery-wrapper .woocommerce-product-gallery,
#wpgs-gallery.wcgs-woocommerce-product-gallery {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

#wpgs-gallery .wcgs-thumb.swiper-slide img {
    border: none;
}

.gallery-navigation-carousel .wcgs-thumb {
    background: #fff;
}

.gallery-navigation-carousel .wcgs-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Homepage category cards - support both structures */

/* Original structure with col-* classes */
.product-categories .categories .row {
    display: flex;
    flex-wrap: wrap;
}
.product-categories .col-2 {
    width: 20%;
}
.product-categories .col-md-4 {
    width: 33.33333333%;
}
.product-categories .col-sm-6 {
    width: 50%;
}
@media (max-width: 991px) {
    .product-categories .col-2 {
        width: 33.33333333%;
    }
}
@media (max-width: 576px) {
    .product-categories .col-2,
    .product-categories .col-md-4 {
        width: 50%;
    }
}

/* Dynamic structure with category-grid-item */
.product-categories .row[style*="--categories-per-row"] {
    display: grid;
    grid-template-columns: repeat(var(--categories-per-row, 4), 1fr);
    gap: 20px;
}
.product-categories .category-grid-item {
    display: block;
}
@media (max-width: 991px) {
    .product-categories .row[style*="--categories-per-row"] {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .product-categories .row[style*="--categories-per-row"] {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
    
    .product-categories .img-wrapper {
        height: 160px;
    }
    
    .product-categories h3,
    .product-categories p,
    .product-categories .link {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Ensure category cards look good in both structures */
.product-categories .category {
    background: #fff;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08), 0px 1px 3px 0px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-categories .category:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 25px 0px rgba(0, 0, 0, 0.12), 0px 3px 10px 0px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Style buttons in product categories section */
.product-categories .btn,
.product-categories .button,
.product-categories a.btn,
.product-categories a.button {
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    height: 48px;
    line-height: 48px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0px;
    padding-bottom: 0px;
    transition: all 0.2s ease;
    text-align: center;
    background: var(--primary-button);
    border: 1px solid var(--primary-button);
    color: #fff;
    text-decoration: none;
    margin-top: 40px;
    margin-bottom: 0px;
}

.product-categories .btn:hover,
.product-categories .button:hover,
.product-categories a.btn:hover,
.product-categories a.button:hover {
    background: var(--primary-button-hover);
    border: 1px solid var(--primary-button-hover);
    color: #fff;
    text-decoration: none;
}

/* Center buttons in product categories */
.product-categories .text-center {
    text-align: center;
}

/* Full width button wrapper */
.product-categories .button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.product-categories .button-wrapper .btn,
.product-categories .button-wrapper .button {
    margin-top: 0px;
}

/* Large button variant in categories */
.product-categories .btn.large,
.product-categories .button.large {
    height: 60px;
    line-height: 60px;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 18px;
}

/* Add spacing after pagination */
.woocommerce nav.woocommerce-pagination {
    margin-bottom: 60px;
}

/* Ensure proper spacing for CTA section after shop content */
.archive .promo {
    margin-top: 40px;
}

/* Single product pricing styles */
.product-pricing {
    margin-bottom: 20px;
}



/* Sticky Contact FAB */
.sticky-contact-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.fab-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    color: white;
}

.fab-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
    background: var(--primary-button-hover);
}

.fab-trigger .icon-contact,
.fab-trigger .icon-close {
    position: absolute;
    transition: all 0.3s ease;
}

.fab-trigger .icon-close {
    opacity: 0;
    transform: rotate(180deg);
}

.sticky-contact-fab.active .fab-trigger .icon-contact {
    opacity: 0;
    transform: rotate(-180deg);
}

.sticky-contact-fab.active .fab-trigger .icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

.contact-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sticky-contact-fab.active .contact-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: white;
    color: var(--text);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--input-border);
    transform: translateX(20px);
    opacity: 0;
}

.contact-item:hover {
    transform: translateX(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.contact-item svg {
    margin-right: 8px;
    flex-shrink: 0;
}

.contact-item.phone:hover {
    background: #f0fdf4;
    color: #16a34a;
    border-color: #16a34a;
}

.contact-item.whatsapp:hover {
    background: #f0fdf4;
    color: #25d366;
    border-color: #25d366;
}

.contact-item.contact:hover {
    background: #fef2f2;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Staggered animation for contact items */
.sticky-contact-fab.active .contact-item:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateX(0);
}

.sticky-contact-fab.active .contact-item:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateX(0);
}

.sticky-contact-fab.active .contact-item:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateX(0);
}

/* Pulse animation for FAB */
@keyframes fab-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
    }
    100% {
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    }
}

.fab-trigger {
    animation: fab-pulse 2s infinite;
}

.sticky-contact-fab.active .fab-trigger {
    animation: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .sticky-contact-fab {
        bottom: 15px;
        right: 15px;
    }
    
    .fab-trigger {
        width: 55px;
        height: 55px;
    }
    
    .contact-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .contact-item svg {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
    
    .contact-menu {
        bottom: 70px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .sticky-contact-fab {
        bottom: 10px;
        right: 10px;
    }
    
    .fab-trigger {
        width: 50px;
        height: 50px;
    }
    
    .contact-item span {
        display: none;
    }
    
    .contact-item {
        padding: 12px;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
    
    .contact-item svg {
        margin-right: 0;
        width: 20px;
        height: 20px;
    }
    
    .contact-menu {
        bottom: 65px;
        gap: 10px;
    }
}

/* WooCommerce Price Suffix Styling */
.woocommerce-price-suffix {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    margin-top: 4px;
    line-height: 1.3;
}

.single-product .price .woocommerce-price-suffix {
    display: block;
    font-size: 14px;
    margin-top: 6px;
    color: var(--text);
    font-weight: 400;
}

/* Alternative inline styling for suffix */
.price .woocommerce-price-suffix {
    font-size: 0.85em;
    color: var(--text);
    font-weight: 400;
    margin-left: 0px;
}

/* Make suffix look better on single product pages */
.single-product .summary .price .woocommerce-price-suffix {
    display: block;
    margin-top: 8px;
    margin-left: 0;
    font-size: 14px;
    color: var(--text);
    font-weight: 400;
    opacity: 0.8;
}

/*-------------------------------------------------*/
/* = WooCommerce Payment Method Radio Button Styling
/*-------------------------------------------------*/
/* Hide default radio buttons for payment methods */
.woocommerce form .payment_methods input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Style the payment method labels */
.woocommerce form .payment_methods label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--title);
    line-height: 1.4;
    user-select: none;
}

/* Create custom radio button */
.woocommerce form .payment_methods label::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid var(--input-border);
    border-radius: 50%;
    transition: all 0.2s ease;
}

/* Style when radio is checked */
.woocommerce form .payment_methods input[type="radio"]:checked + label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Create the inner dot when checked */
.woocommerce form .payment_methods input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    transition: all 0.2s ease;
}

/* Hover effects */
.woocommerce form .payment_methods label:hover::before {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Focus styles for accessibility */
.woocommerce form .payment_methods input[type="radio"]:focus + label::before {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Payment method description styling */
.woocommerce form .payment_methods .payment_box {
    background: var(--light-background);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    padding: 16px;
    margin: 12px 0 0 35px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

/* Payment method list item styling */
.woocommerce form .payment_methods li {
    margin-bottom: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--input-border);
}

.woocommerce form .payment_methods li:last-child {
    border-bottom: none;
}

/* Credit card form styling */
.woocommerce form .payment_methods .payment_box input[type="text"],
.woocommerce form .payment_methods .payment_box input[type="email"],
.woocommerce form .payment_methods .payment_box input[type="tel"],
.woocommerce form .payment_methods .payment_box select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s ease;
}

.woocommerce form .payment_methods .payment_box input:focus,
.woocommerce form .payment_methods .payment_box select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}

/* Payment method images/icons */
.woocommerce form .payment_methods img {
    max-height: 24px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Terms and conditions checkbox styling */
.woocommerce form .form-row input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.woocommerce form .form-row label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
}

.woocommerce form .form-row label::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid var(--input-border);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.woocommerce form .form-row input[type="checkbox"]:checked + label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.woocommerce form .form-row input[type="checkbox"]:checked + label::after {
    content: '✓';
    position: absolute;
    top: 2px;
    left: 4px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
}

/*-------------------------------------------------*/
/* = WooCommerce Blocks Payment Methods Styling
/*-------------------------------------------------*/
/* Target the specific WooCommerce Blocks structure */
.wc-block-components-radio-control .wc-block-components-radio-control__input[type="radio"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #ddd !important;
    border-radius: 50% !important;
    background: white !important;
    margin: 0 !important;
    position: relative !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input[type="radio"]:checked {
    border-color: var(--primary-color) !important;
    background: var(--primary-color) !important;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input[type="radio"]:checked::after {
    content: '' !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: white !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* Fix the layout of payment method options */
.wc-block-components-radio-control-accordion-option {
    margin-bottom: 12px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    background: #fafafa !important;
    overflow: hidden !important;
}

.wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control-accordion-option {
    margin-bottom: 0px !important;
    border: none !important;
    border-radius: 0px !important;
    background: transparent !important;
}

.wc-block-components-radio-control-accordion-option:hover {
    background: #f0f0f0 !important;
}

.wc-block-components-radio-control__option {
    padding: 16px !important;
    margin: 0 !important;
    display: block !important;
    cursor: pointer !important;
}

.wc-block-components-radio-control__option-layout {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

/* Position the radio button properly */
.wc-block-components-radio-control__option::before {
    content: none !important;
}

.wc-block-components-radio-control__option .wc-block-components-radio-control__input {
    order: -1 !important;
    margin-right: 12px !important;
}

/* Style the payment method labels */
.wc-block-components-radio-control__label-group {
    flex: 1 !important;
}

.wc-block-components-payment-method-label {
    font-weight: 500 !important;
    color: var(--title) !important;
}

/* Accordion content styling */
.wc-block-components-radio-control-accordion-content {
    padding: 16px !important;
    background: white !important;
    border-top: 1px solid #e0e0e0 !important;
}

/* Terms checkbox styling */
.wc-block-components-checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin: 12px 0 !important;
}

.wc-block-components-checkbox__input[type="checkbox"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #ddd !important;
    border-radius: 3px !important;
    background: white !important;
    margin: 0 !important;
    position: relative !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

.wc-block-components-checkbox__input[type="checkbox"]:checked {
    border-color: var(--primary-color) !important;
    background: var(--primary-color) !important;
}

.wc-block-components-checkbox__input[type="checkbox"]:checked::after {
    content: '✓' !important;
    color: white !important;
    font-size: 12px !important;
    font-weight: bold !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    line-height: 1 !important;
}

.wc-block-components-checkbox__label {
    flex: 1 !important;
    cursor: pointer !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

/* Hide the default SVG checkmark */
.wc-block-components-checkbox__mark {
    display: none !important;
}

/*-------------------------------------------------*/
/* = WPML Language Switcher with Flags Dropdown
/*-------------------------------------------------*/
.language-switcher-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 16px;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.current-language:hover {
    background: var(--light-background);
    border-color: var(--primary-color);
}

.current-language .flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.current-language .lang-code {
    font-size: 14px;
    font-weight: 500;
    color: var(--title);
    min-width: 22px;
}

.current-language .dropdown-arrow {
    width: 12px;
    height: 8px;
    transition: transform 0.2s ease;
    color: var(--text);
}

.language-switcher-dropdown.active .current-language .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 140px;
    background: white;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.language-switcher-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--title);
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--input-border);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--light-background);
    color: var(--primary-color);
}

.language-option .flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.language-option .lang-name {
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .language-switcher-dropdown {
        margin-left: 12px;
    }
    
    .current-language {
        padding: 6px 10px;
        gap: 6px;
    }
    
    .current-language .flag-icon {
        width: 18px;
        height: 12px;
    }
    
    .current-language .lang-code {
        font-size: 13px;
        min-width: 20px;
    }
    
    .language-dropdown-menu {
        min-width: 120px;
    }
    
    .language-option {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .language-option .flag-icon {
        width: 18px;
        height: 12px;
    }
    
    .language-option .lang-name {
        font-size: 13px;
    }
}

/*-------------------------------------------------*/
/* = Hero Slider
/*-------------------------------------------------*/
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 580px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content-wrapper {
    display: flex;
    width: 100%;
    height: 580px;
    min-height: 600px;
}

.hero-content-left {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0px;
    z-index: 10;
    max-width: 1440px;
    width: 100%;
    padding-right: 97px;
    padding-left: 97px;
    margin-right: auto;
    margin-left: auto;
    right: 0px;
}

.hero-content {
    width: 50%;
    padding: 64px 80px;
    min-height: 600px;
}

.hero-content-right {
    width: 100%;
    position: relative;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
/*
.hero-content {
    max-width: 540px;
    width: 100%;
}*/

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

.hero-title { 
    margin-bottom: 1.25rem;
    font-weight: 700;
    /*font-style: italic;*/
}
 
.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 400px;
}

/*.hero-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}*/

.hero-navigation {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-nav-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #0A323C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.hero-nav-btn:hover {
    background-color: #ffffff;
}

.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.hero-pagination-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
}

.hero-pagination-dot.active {
    background-color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content {
        width: 100%;
    }
}

@media (max-width: 991px) {
    /*.hero-content-wrapper {
        flex-direction: column;
    }
    
    .hero-content-left,
    .hero-content-right {
        width: 100%;
    }
    
    .hero-content-left {
        padding: 40px;
        min-height: 50vh;
    }
    
    .hero-content-right {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }*/

    .hero-content-left {
        padding: 0px;
    }
}

@media (max-width: 767px) {
/*    .hero-slider {
        min-height: 500px;
        height: auto;
    }
    
    .hero-content-left {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-navigation {
        bottom: 20px;
        right: 20px;
    }
    
    .hero-pagination {
        bottom: 20px;
    }*/

    .hero-content {
        padding: 30px;
        min-height: 500px;
    }

    .hero-content-wrapper {
        min-height: 500px;
        height: auto;
    }

    .hero-slider {
        min-height: 500px;
    }

    .hero-slider h1 {
        font-size: 28px;
        line-height: 1.35;
    }
}

.wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control .wc-block-components-radio-control__input {
    padding: 0px !important;
}

.wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control .wc-block-components-radio-control__input[type="radio"]:checked {
    border-color: #1f2937 !important;
    background: #1f2937 !important;
}

.wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control__option {
    display: flex !important;
    justify-content: flex-start !important;
}

.wp-block-woocommerce-checkout-payment-block .wc-block-components-radio-control__option-layout {
    width: auto !important;
    margin-left: 15px;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option .wc-block-components-radio-control__input {
    left: 0px !important;
    top: 10px;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option {
    box-shadow: none !important;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-content,
.wc-block-checkout__payment-method .wc-block-components-radio-control--highlight-checked:after {
    border: none !important;
}

.wc-block-components-checkbox__label {
    margin-left: 10px !important;
}

.liaa-info p {
    color: #9ca3af;
    font-size: 11px;
    line-height: 13px;
}

.liaa-info {
    padding-bottom: 20px;
}

.liaa-info .img-wrapper {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .liaa-info p {
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {
    .all-category-menu .product-cats {
        top: 136px;
    }
}