html {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14.4px;
    }
}

body[class] {
    font-family: "Inter";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga" 0;
    font-feature-settings: "liga" 0;
    -webkit-font-variant-ligatures: no-common-ligatures;
    font-variant-ligatures: no-common-ligatures;
    line-height: 1.6;
}

a[href]:not([tabindex="-1"]):focus,
area[href]:not([tabindex="-1"]):focus,
input:not([disabled]):not([tabindex="-1"]):not(.outline-none):focus,
select:not([disabled]):not([tabindex="-1"]):focus,
textarea:not([disabled]):not([tabindex="-1"]):focus,
button:not([disabled]):not([tabindex="-1"]):focus,
iframe:not([tabindex="-1"]):focus,
[tabindex]:not([tabindex="-1"]):focus,
[contentEditable="true"]:not([tabindex="-1"]):focus,
.forminator-consent:focus-within .forminator-checkbox-box {
    outline: auto 2px Highlight !important;
    outline: auto 5px -webkit-focus-ring-color !important;
}

.icon-tabler {
    width: 100%;
    height: auto;
}

.transition {
    transition: all 400ms var(--ease-out-expo);
}

img {
    width: 100%;
}

form label {
    margin-bottom: 0.25rem;
}

input[type="text"]:not([readonly]),
input[type="password"]:not([readonly]),
input[type="email"]:not([readonly]),
input[type="number"]:not([readonly]),
input[type="search"]:not([readonly]),
input[type="tel"]:not([readonly]),
input[type="url"]:not([readonly]),
select,
select,
textarea {
    color: var(--color-gray-1000);
    background-color: transparent;
    border: 0.05em solid var(--color-gray-900);
    padding: 0 1rem;
}

select option {
    background-color: var(--color-gray-0);
    color: var(--color-gray-1000);
}

.contact-form-light input[type="text"]:not([readonly]),
.contact-form-light input[type="password"]:not([readonly]),
.contact-form-light input[type="email"]:not([readonly]),
.contact-form-light input[type="number"]:not([readonly]),
.contact-form-light input[type="search"]:not([readonly]),
.contact-form-light input[type="tel"]:not([readonly]),
.contact-form-light input[type="url"]:not([readonly]),
.contact-form-light select,
.contact-form-light textarea {
    border-color: white;
    color: white;
}

.contact-form-light .forminator-field>input::placeholder,
.contact-form-light .forminator-field>textarea::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-light .forminator-button-submit {
    background-color: white;
    color: black;
}

input[type="text"]:not([readonly]),
input[type="password"]:not([readonly]),
input[type="email"]:not([readonly]),
input[type="number"]:not([readonly]),
input[type="search"]:not([readonly]),
input[type="tel"]:not([readonly]),
input[type="url"]:not([readonly]),
select {
    height: 2.5rem;
}

textarea {
    padding: 1rem;
}

input[type="checkbox"] {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

kbd {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-gray-50);
    border: 0.1em solid var(--color-gray-300);
    border-radius: 0.5em;
    padding: 0.25em 1em;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--color-gray-600);
}

kbd:has(svg) {
    padding: 0.5rem;
}

kbd svg.icon-tabler {
    flex-shrink: 0;
    width: 0.875em;
    height: auto;
}

a,
button {
    transition: all 100ms var(--ease-out-expo);
}

a:active,
button:active {
    transform: scale(0.98);
}

.scrollbar {
    scrollbar-width: thin;
}

.scrollbar::-webkit-scrollbar {}

.scrollbar::-webkit-scrollbar-track {
    background-color: var(--color-gray-0);
}

.scrollbar::-webkit-scrollbar-thumb {}

[data-simplebar]::-webkit-scrollbar {
    display: none;
}

.x-container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

@media screen and (max-width: 1024px) {
    .x-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .x-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.dashed-after-line::after {
    content: "";
    position: absolute;
    left: calc(50% + 40px);
    top: 2.5rem;
    z-index: -10;
    display: none;
    width: 100%;
    border: 1px dashed white;
}

.dashed-after-line:last-child::after {
    display: none;
}

.dashed-after-line--black::after {
    border-color: black;
}

.dashed-after-line--small::after {
    top: 2rem;
    left: calc(50% + 20px);
}

@media (min-width: 1024px) {
    .dashed-after-line::after {
        display: block;
    }
}

@media (min-width: 1280px) {
    .dashed-after-line::after {
        width: calc(100% + 80px);
    }
}



/* Buttons */

.action-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 400ms var(--ease-out-expo);
    border: 0.05em solid var(--color-gray-300);
    background-color: var(--color-gray-50);
    gap: 0.5em;
}

.action-button svg {
    width: 1.2em;
    height: auto;
}

/* Single Post */

.single--post__tags {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.single--post__tags li a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Menu */

header nav.desktop>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

header nav.desktop>ul li {
    display: inline-flex;
    align-items: center;
}

header nav.desktop>ul>li {
    font-size: 1.175rem;
}

header nav.desktop>ul>li>a {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

header nav.desktop>ul>li>a svg {
    width: 1em;
    height: auto;
}

header nav.desktop ul li.menu-item-has-children {
    position: relative;
}

header nav.desktop ul.sub-menu {
    background: white;
    position: absolute;
    right: 0;
    top: 120%;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 0.05em solid var(--color-gray-900);
    white-space: nowrap;
    text-align: left;
    transition: all 400ms var(--ease-out-expo);
    transform: translateY(1rem);
    opacity: 0;
    border-radius: 1rem 0 1rem 1rem;
    z-index: 1000;
}

header nav.desktop li.toggled>ul.sub-menu,
header nav.desktop li:focus-within>ul.sub-menu,
header nav.desktop li:hover>ul.sub-menu {
    visibility: visible;
    transform: translate(0);
    opacity: 1;
}

header nav.desktop a:hover {
    text-decoration: underline;
}

header nav.desktop ul .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.6em;
    height: 1.6em;
    padding: 0.2em;
}


header nav.desktop li.toggled>.menu-toggle {
    transform: rotateX(180deg);
}

header nav ul a[aria-current="page"] {
    text-decoration: underline;
}

/* Menu > Mobile */

header nav.mobile>ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

header nav.mobile>ul>li>a {
    font-weight: 600;
}

header nav.mobile>ul li {
    display: inline-flex;
    align-items: center;
}

header nav.mobile ul li.menu-item-has-children {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

header nav.mobile ul.sub-menu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background: white;
    position: relative;
    margin-top: 0.5rem;
    gap: 1rem 0.5rem;
    padding: 0.5rem 0 0.5rem 0.5rem;
    white-space: nowrap;
    text-align: left;
    z-index: 1000;
    width: 100%;
}

header nav.mobile li.toggled>ul.sub-menu {
    visibility: visible;
    transform: translate(0);
    opacity: 1;
    display: flex;
}

header nav.mobile a:hover {
    text-decoration: underline;
}

header nav.mobile ul .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.6em;
    height: 1.6em;
    padding: 0.2em;
    transition: all 400ms var(--ease-out-expo);
}

header nav.mobile li.toggled>.menu-toggle {
    transform: rotateX(180deg);
}

/* Pagination */

.redoxbird_pagination {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.redoxbird_pagination ul.page-numbers {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    width: auto;
    border: 0.05rem solid #000;
    padding: 0.5rem;
    background-color: var(--color-gray-0);

}

.redoxbird_pagination a.page-numbers {
    color: var(--color-gray-1000);
}

.redoxbird_pagination a.page-numbers,
.redoxbird_pagination span.page-numbers {
    width: 2em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.redoxbird_pagination a.page-numbers.next,
.redoxbird_pagination a.page-numbers.prev {
    color: var(--color-gray-1000);
}

.redoxbird_pagination a.page-numbers.next svg,
.redoxbird_pagination a.page-numbers.prev svg {
    width: 1.2em;
    height: auto;
}

.redoxbird_pagination a.page-numbers:hover {
    background-color: var(--color-gray-100);
}

.redoxbird_pagination .page-numbers.current {
    background-color: var(--color-primary);
    color: var(--color-gray-0);
}

@media (max-width: 767px) {
    .redoxbird_pagination ul.page-numbers {
        flex-wrap: wrap;
        margin: 0;
    }

    .redoxbird_pagination .prev-item,
    .redoxbird_pagination .next-item {
        position: relative;
        width: 100%;
    }

}

/* Embla */

.embla {
    --slide-size: 100%;
}

.embla__viewport {
    overflow: hidden;
}

.embla__container {
    backface-visibility: hidden;
    display: flex;
    touch-action: pan-y;
}

.embla__slide {
    flex: 0 0 var(--slide-size);
    min-width: 0;
    position: relative;
}


/* Breadcrumb */

.redoxbird_breadcrumb {
    color: var(--color-gray-700);
    font-size: 0.875rem;
    font-weight: 500;
}

.redoxbird_breadcrumb a:hover {
    text-decoration: underline;
}


.redoxbird_breadcrumb svg {
    width: 1em;
    height: 1em;
    margin: 0 0.5rem;
}

.redoxbird_breadcrumb ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.1em;
}

.redoxbird_breadcrumb li {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

.redoxbird_breadcrumb &.trail-end {
    color: color(text);
}


/* TOC */
.redoxbird_toc ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.redoxbird_toc h2 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: bold;
}

.redoxbird_toc ul ul {
    padding-left: 1rem;
    border-left: 0.1em dashed var(--color-gray-300);
}

.redoxbird_toc ul a {
    width: 100%;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.25rem 0;
}

.redoxbird_toc ul a:hover,
.redoxbird_toc ul a.active {
    text-decoration: underline;
}

.redoxbird_toc ul a:target {
    font-weight: 600;
}


/* Blog Sidebar */

.redoxbird_blog__sidebar .widget-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.redoxbird_blog__sidebar .widget-area>section.widget {
    border: 0.05rem solid var(--color-gray-300);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.popular-posts .wpp-cards li {
    background-color: var(--color-gray-50);
    color: var(--color-gray-800);
    border: 0.1rem solid var(--color-gray-300);
}

.widget_tag_cloud .tag-cloud-link {
    font-weight: 700;
}



/* Comment */

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-list p a,
.comment-form p a {
    text-decoration: underline;
}

.comment-list,
.comment-list ol.children {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    margin-bottom: 2rem;
    gap: 4rem;
}

.comment-list ol.children {
    padding-left: 1rem;
}

.comment-form,
.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: flex;
    flex-direction: column;
}

.comment-form-cookies-consent {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.comment-form .comment-form-comment {
    display: flex;
    flex-direction: column;
    margin-top: 1.25rem;
}

.comment-form .form-submit {
    margin-top: 1rem;
}

.comment .comment-author {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
}

.comment .comment-author img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    object-fit: cover;
    margin-right: 0.5rem;
}

.comment .comment-author cite {
    font-weight: 600;
}

.comment .comment-author cite,
.comment .comment-author .says {
    line-height: 1;
}

.comment .comment-meta {
    font-size: 0.875rem;
    margin-top: -1rem;
}

.comment .comment-meta .comment-metadata {
    padding-left: 3.5rem;
    margin-top: -1rem;
}

.comment .comment-meta,
.comment .comment-meta+p,
.comment .reply,
.comment .comment-content {}

.comment .comment-meta+p {
    margin-top: 1rem;
}

.comment .reply {
    margin-top: 1rem;
}

.comment .reply a {
    text-decoration: underline;
}

.comment #cancel-comment-reply-link {
    margin-left: 0.5rem;
    text-decoration: underline;
}

.comments-area {
    background-color: #fff;
    padding: 2rem;
    border: 0.05em solid #000;
    width: 100%;
}

.comment-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.comment-form select,
.comment-form textarea {
    border: 0.05em solid var(--color-gray-300);
    border-radius: 0.5em;
    background-color: var(--color-gray-0);
    width: 100%;
}

.comment-form label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5em;
}

.comment-form [type='submit'] {
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.75em 1.5em;
    font-size: 1rem;
    font-weight: 600;
}

.logged-in-as {
    font-size: 0.875rem;
    margin-top: 0.5em;
}

/* Footer */

footer form input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    /* Change 'white' to your desired background color */
}

footer .footer__form form {
    position: relative;
    margin-top: 2rem;
}

footer .forminator-response-message:not(:empty) {
    position: fixed;
    left: 2em;
    bottom: 2em;
    background-color: var(--color-gray-100);
    border: 0.05em solid var(--color-gray-900);
    padding: 0.5em 1em;
    border-radius: 0.5em;
    color: var(--color-gray-900);
    font-size: 0.875em;
    font-weight: 600;
    z-index: 1000;
}

footer .footer__form .forminator-field-email input {
    width: 100%;
    height: 4rem;
    border-radius: 0.75em;
    border: 0.1em solid var(--color-primary);
}

footer .footer__form .forminator-label {
    position: absolute;
    left: 1em;
    top: 2rem;
    transform: translateY(-50%);
    color: var(--color-primary);
    display: inline-flex;
    background-color: #fff;
    padding: 0.25em;
    transform-origin: left;
    transition: all 400ms var(--ease-out-expo);
}

footer .footer__form .forminator-label.floating {
    transform: translate(0, -3em);
}

footer .footer__form .forminator-error-message {
    font-size: 0.875em;
    font-weight: 600;
    margin-top: 0.5em;
    display: inline-flex;
}

footer .footer__form .forminator-button-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0.5em;
    padding: 0.5em;
    top: 2rem;
    transform: translateY(-50%);
    color: var(--color-primary);
    height: 3rem;
    border-radius: 0.5em;
    font-size: 1em;
    font-weight: 700;
    transition: all 400ms var(--ease-out-expo);
}

footer .footer__form .forminator-button-submit:hover {
    background-color: var(--color-primary);
    color: #fff;
}

ins {
    text-decoration: none;
}


/* Woocommerce > Checkout */
/* General Checkout Page Styles */
.woocommerce-checkout input,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
    border: 1px solid #333;
    /* Dark border for inputs */
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    transition: border-color 0.3s;
    background-color: #fff;
    border-radius: 0 !important;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
    border-color: #BD0505;
    /* Primary color for focus */
    outline: none;
}

/* Order Summary Box */
.woocommerce-checkout-review-order {
    border: 2px solid #333;
    /* Dark border for containers */
    padding: 15px;
    margin-top: 20px;
    background-color: #fafafa;
}

/* Payment Methods Section */
.woocommerce-checkout .payment_methods {
    border: 2px solid #333;
    padding: 15px;
    background-color: white;
    margin-bottom: 15px;
}

/* Labels and Titles */
.woocommerce-checkout label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

/* Error Messages */
.woocommerce-error {
    background-color: #f8d7da;
    color: #842029;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #333;
    /* Dark border */
}

/* Coupon Field */
.woocommerce-checkout .checkout_coupon {
    border: 2px solid #333;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f6f6f6;
}

/* Adjusting Form Layout */
.woocommerce-checkout form .form-row {
    margin-bottom: 15px;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: 48%;
    display: inline-block;
}

.woocommerce-checkout .form-row-first {
    margin-right: 4%;
}

.wc-block-components-address-card-wrapper,
.wp-block-woocommerce-checkout-order-summary-block {
    /* border: 1px solid var(--color-gray-200); */
    background-color: #fff;
    border-radius: 0 !important;
}

.woocommerce-checkout .wc-block-components-button,
.wp-block-woocommerce-cart .wc-block-components-button,
.woocommerce-MyAccount-content button[type="submit"],
.woocommerce-MyAccount-content a.button {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 0;
    font-weight: 600;
}

.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,
body .woocommerce-form-login__submit,
body .woocommerce-form-register__submit {
    background-color: var(--color-primary) !important;
    color: #fff !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    border: 1px solid black;
}

body .wc-block-components-form .wc-block-components-text-input input[type=email],
body .wc-block-components-form .wc-block-components-text-input input[type=number],
body .wc-block-components-form .wc-block-components-text-input input[type=password],
body .wc-block-components-form .wc-block-components-text-input input[type=tel],
body .wc-block-components-form .wc-block-components-text-input input[type=text],
body .wc-block-components-form .wc-block-components-text-input input[type=url],
body .wc-block-components-text-input input[type=email],
body .wc-block-components-text-input input[type=number],
body .wc-block-components-text-input input[type=password],
body .wc-block-components-text-input input[type=tel],
body .wc-block-components-text-input input[type=text],
body .wc-block-components-text-input input[type=url],
body .wc-block-components-textarea {
    border-radius: 0;
    background-color: transparent;
}

body .wc-blocks-components-select .wc-blocks-components-select__select,
body .wc-blocks-components-select .wc-blocks-components-select__container {
    border-radius: 0;
    background-color: transparent;
}



body table.wc-block-cart-items,
body #content .wp-block-woocommerce-cart-order-summary-block {
    border: 1px solid black;
    background-color: #fff;
}

body #content .wp-block-woocommerce-cart-order-summary-heading-block {
    background-color: #000;
    color: #fff;
}

body .woocommerce-MyAccount-navigation {
    background-color: #fff;
    border: 1px solid black;
    border-radius: 0;
    padding: 32px;
}

body .woocommerce-MyAccount-navigation a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

body .woocommerce table.shop_table {
    border: 1px solid black;
    border-radius: 0;
    background-color: #fff;
}

.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)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
    background-color: var(--color-gray-50);
    border-radius: 0;
}

body table.wc-block-cart-items thead {
    padding: 0 16px;
}

.is-large.wc-block-cart table.wc-block-cart-items th:first-child,
.is-large.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-cart__totals-title {
    padding-left: 16px;
}

.is-large.wc-block-cart table.wc-block-cart-items,
body .wp-block-woocommerce-cart-order-summary-block {
    border: 1px solid hsla(0, 0%, 7%, .11);
}

body .wp-block-woocommerce-checkout-order-summary-totals-block .wc-block-components-totals-item__label,
body .wp-block-woocommerce-checkout-order-summary-totals-block .wc-block-components-totals-item__value,
body .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 1rem;
}

body .wc-block-cart .wc-block-cart__submit {
    margin-top: 1rem;
}

body table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
body .wc-block-checkout .wc-block-checkout__sidebar .wc-block-components-product-name {
    font-weight: 600;
}

body #content table.wc-block-cart-items .wc-block-cart-items__row {
    padding: 16px;
    background-color: #fff;
}

body #content table.wc-block-cart-items .wc-block-cart-items__header th {
    background-color: #000 !important;
    color: #fff;
    visibility: visible;
}


body #content table.wc-block-cart-items {
    border: 1px solid #000;
    background-color: #fff;
}


body #content .wc-block-components-totals-wrapper {
    padding-left: 16px;
    padding-right: 16px;
}

@media screen and (max-width: 1024px) {

    body #content .wp-block-woocommerce-cart-order-summary-coupon-form-block,
    body #content .wp-block-woocommerce-cart-order-summary-totals-block,
    body #content .wc-block-components-totals-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

}

body .wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-product-metadata {
    font-size: 0.875rem;
}

body .ppcp-place-order-description {
    font-size: 0.875rem;
}

body .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
body .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    box-shadow: inset 0 0 0 1px #000;
    border-radius: 0;
    background-color: #fff;
}

body #content .wc-block-components-radio-control-accordion-content {
    padding: 0 16px 16px 16px;
}

body #content .ppcp-place-order-description {
    text-align: left !important;
}

body #content .wc-block-components-radio-control-accordion-content>div p:first-child {
    font-weight: bold;
}

body #content .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
    padding: 8px 16px;
    margin: 0;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
}

body #content .wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper {
    padding-top: 0;
}

body #content .wc-block-components-checkout-step__heading {
    margin: 0;
    background-color: #000;
    color: #fff;
    padding: 8px 16px;
}

body #content .wc-block-components-checkout-step__heading h2 {
    font-size: 1rem;
    font-weight: bold;
}

body #content .wc-block-components-checkout-step__container {
    padding: 16px;
    border: 1px solid #000;
    background-color: #fff;
}

body #content .wc-block-components-checkout-step__description {
    margin: 0 0 0.5rem 0;
}

body #content .wc-block-components-product-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

body #content .wc-block-components-address-card {
    border: 1px solid #000;
    background-color: #fff;
    padding: 16px;
    border-radius: 0;
}

body #content .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title-text {
    margin: 0;
}

body #content .wc-block-components-express-payment__content {
    background-color: #fff;
    border: 1px solid #000;
}


body #content .wc-block-components-express-payment__title-container {
    position: relative;
    top: 0;
}

body #content .wp-block-woocommerce-checkout-order-summary-block {
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 0;
}

body .woocommerce-order {
    border: 1px solid #000;
    padding: 32px;
    background-color: #fff;
}

html .woocommerce .woocommerce-customer-details address {
    border: 1px solid #000;
    padding: 32px;
    background-color: #fff;
    border-radius: 0;
}

.woocommerce-thankyou-order-received {
    border: 1px solid #000;
    padding: 32px;
    background-color: #fff;
}


body .woocommerce form.checkout_coupon,
body .woocommerce form.login,
body .woocommerce form.register,
body .woocommerce-form-login,
body .woocommerce-form-register {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 0;
    padding: 32px;
}

body .woocommerce form .form-row .input-text,
body .woocommerce form .form-row select {
    border-radius: 0;
    height: 2.5rem;
}

body.post-type-archive-product .products,
body.tax-product_cat .products {
    columns: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media screen and (max-width: 1024px) {

    body.post-type-archive-product .products,
    body.tax-product_cat .products {
        width: 100%;
        grid-template-columns: 1fr;
    }
}

body.post-type-archive-product .products::before,
body.post-type-archive-product .products::after,
body.tax-product_cat .products::before,
body.tax-product_cat .products::after {
    content: none;
}

body.post-type-archive-product .woocommerce-breadcrumb,
body.tax-product_cat .woocommerce-breadcrumb {
    display: none;
}

body .woocommerce-MyAccount-content h2 {
    margin-top: 0;
}

body .select2-container--default .select2-selection--single {
    height: 2.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    border-radius: 0;
    border: 1px solid;
}

body .woocommerce-error,
body .woocommerce-info,
body .woocommerce-message {
    background-color: #fff;
}

body ul.woocommerce-error,
body ul.woocommerce-info,
body ul.woocommerce-message {
    padding-left: 3rem;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 100%;
        margin-right: 0;
    }
}


/* Contact Form */

/* Forminator */

.forminator-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.forminator-field>input,
.forminator-field>label,
.forminator-field>select,
.forminator-field>textarea {
    width: 100%;
}

.forminator-field>input::placeholder,
.forminator-field>textarea::placeholder {
    font-size: 0.875rem;
    color: inherit;
    opacity: 1;
    color: #424242;
}

.forminator-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.forminator-field input[aria-invalid="true"] {
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity));
}

.forminator-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
}

.forminator-response-message.forminator-error.forminator-accessible {
    border: 0.05rem solid var(--color-primary);
    background-color: var(--color-primary-50);
    color: var(--color-primary);
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.forminator-error-message {
    width: 100%;
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity));
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.forminator-ui h4 {
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.forminator-button-submit {
    background-color: var(--color-primary);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
}

.forminator-field-radio .forminator-radio {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.forminator-field-radio input[type="radio"] {
    width: 1rem;
    height: 1rem;
}

.forminator-custom-form .forminator-row {
    margin-bottom: 2rem;
}


/* FFS */

body .fast-fuzzy-search {
    z-index: 99;
}

@media (max-width: 768px) {
    body .fast-fuzzy-search {
        width: 100%;
        max-width: none;
    }
}


/* Animations  */
.google-strip-border {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 12px;
    background: #fff;
    color: black;
    font-weight: bold;
    z-index: 0;
    overflow: hidden;
}

.google-strip-border::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -0.1em;
    z-index: -1;
    border-radius: inherit;

    /* Stripe border using fixed pixel sizes */
    background: repeating-linear-gradient(90deg,
            #4285F4 0 25%,
            #EA4335 25% 50%,
            #FBBC05 50% 75%,
            #34A853 75% 100%);
    background-size: 200% 100%;
    animation: moveStripes 2s linear infinite;

    /* Mask the inside so only border is visible */
    padding: 3px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes moveStripes {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}