/* Fonts */

@import url('https://fonts.cdnfonts.com/css/sf-pro-display');


/* Main CSS */

:root {
    --grey-text-color: #7b7b7b;
    --black-color: #000000;
    --main-bg-color: #F5F5F5;
}

body {
    font-family: 'SF Pro Display', sans-serif;
    line-height: 1.1;
    background-color: var(--main-bg-color);
}

* {
    -webkit-tap-highlight-color: transparent;
}

*:focus,
*:focus-visible,
*:active,
button:focus,
button:active,
button:focus-visible,
a:focus,
a:active,
a:focus-visible,
input:focus,
textarea:focus,
select:focus,
.btn:focus,
.btn:active,
.btn:focus-visible {
    outline: none !important;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

.tp-container-large {
    width: 100%;
    max-width: 1560px !important;
    margin-left: auto;
    margin-right: auto;
}

.tp-welcome-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: #F5F5F5;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.tp-welcome-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tp-welcome-text {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -2%;
    opacity: 0;
    transform: translateY(12px);
    animation: tpWelcomeFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

@keyframes tpWelcomeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body.is-loading-home .tp-footer,
body.is-loading-home .g-header,
body.is-loading-home .tp-fixed-minicart-wrap {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.tp-footer,
.g-header,
.tp-fixed-minicart-wrap {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 56px;
}

.tp-product-grid-item {
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.tp-product-grid-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.tp-product-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 210px;
    padding-bottom: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-product-image-wrapper img.tp-product-full-img {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    object-fit: contain;
    object-position: center;
    filter: blur(0px);
    opacity: 1;
    transform: scale(1);
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-product-grid-item:hover .tp-product-full-img,
.tp-product-grid-item.is-in-cart .tp-product-full-img,
.tp-product-grid-item.is-loading .tp-product-full-img {
    filter: blur(5px);
    opacity: 0.78;
    transform: scale(1.05);
}

.tp-product-grid-item.is-in-cart:hover .tp-product-full-img {
    transform: scale(1.06);
}

.tp-product-action-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-product-grid-item:hover .tp-product-action-overlay,
.tp-product-grid-item.is-in-cart .tp-product-action-overlay {
    opacity: 1;
    pointer-events: none;
}

.tp-btn-add-to-cart {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #ffffff78;
    color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tp-product-grid-item:hover .tp-btn-add-to-cart {
    transform: scale(1);
}

.tp-btn-add-to-cart:hover {
    transform: scale(1.05) !important;
}

.tp-btn-add-to-cart svg {
    max-width: 14px;
}

.tp-cart-qty-panel {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff78;
    color: #000000;
    border-radius: 40px;
    padding: 6px 8px;
    min-width: 100px;
    height: 46px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.1);
    animation: tpPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes tpPopIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tp-qty-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: transparent;
    color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tp-qty-btn:hover {
    color: #000000;
    transform: scale(1.2);
}

.tp-qty-value {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    padding: 0 10px;
    min-width: 32px;
    text-align: center;
}

.tp-loading-spinner {
    position: absolute;
    inset: 0;
    background: rgba(245, 245, 245, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.tp-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(0, 0, 0, 0.08);
    border-top-color: #000000;
    border-radius: 50%;
    animation: tpSpin 0.75s linear infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

@keyframes tpSpin {
    to {
        transform: rotate(360deg);
    }
}

.tp-product-info {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding-top: 10px;
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 6;
}

.tp-product-grid-item:hover .tp-product-info,
.tp-product-grid-item.is-in-cart:hover .tp-product-info {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.tp-product-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0px 0px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
}

.tp-product-title a {
    color: var(--black-color);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.tp-product-title a:hover {
    text-decoration: none;
}

.tp-product-price {
    font-size: 10px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.2;
    text-align: center;
}

.tp-product-grid-item {
    position: relative;
}

.tp-product-card-link {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
}

.tp-product-action-overlay .tp-btn-add-to-cart,
.tp-product-action-overlay .tp-cart-qty-panel {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.tp-product-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 18px;
    border-radius: 40px;
    background-color: #ffffff78;
    color: #000000;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    pointer-events: none;
}

.tp-product-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 3px;
}

.tp-product-labels {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tp-label {
    display: inline-block;
    padding: 2px 3px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tp-label-new {
    background: #FF5252;
    line-height: 1.1;
    color: #ffffff;
}

.tp-label-custom {
    background: #E0E0E0;
    line-height: 1.1;
    color: #939393;
}

.tp-product-grid-item.tp-popup-trigger-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-btn-open-custom-popup {
    width: 60px;
    height: 60px;
    background: #FFFFFF4D;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0px 2px 40px 0px #0000000d;
    border-radius: 50%;
    padding: 0;
}

.tp-btn-open-custom-popup:hover {
    background: #FFFFFF4D;
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.06) rotate(6deg);
}

.tp-btn-open-custom-popup .tp-trigger-icon {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #000000;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tp-btn-open-custom-popup:hover .tp-trigger-icon {
    transform: scale(1.15);
}

.tp-custom-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: #F5F5F5;
    background-image: radial-gradient(circle at 50% 50%, #15151c1c 0%, #F5F5F5 75%);
    z-index: 999999;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.tp-custom-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tp-popup-header {
    width: 100%;
    padding: 40px 40px 20px 40px;
    z-index: 2;
}

.tp-popup-indicators {
    display: flex;
    gap: 5px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.tp-popup-indicator {
    flex: 1;
    height: 4px;
    background-color: #c4c4c4;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.tp-popup-indicator:hover {
    background-color: #9b9b9b;
}

.tp-indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #010101;
    transition: width 0.3s linear;
}

.tp-popup-indicator.is-active .tp-indicator-progress {
    width: 100%;
    transition: width 15s linear;
}

.tp-popup-indicator.is-completed .tp-indicator-progress {
    width: 100%;
    transition: none;
}

.tp-popup-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.tp-single-info-panel .tp-single-labels {
    padding-bottom: 1px;
}

.tp-popup-tap-zone {
    position: absolute;
    top: 70px;
    bottom: 70px;
    width: 25vw;
    z-index: 100;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 28px;
    -webkit-tap-highlight-color: transparent;
}

.tp-popup-tap-prev {
    left: 0;
    justify-content: flex-start;
}

.tp-popup-tap-next {
    right: 0;
    justify-content: flex-end;
}

.tp-tap-chevron {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.tp-popup-tap-zone:hover .tp-tap-chevron {
    opacity: 0.65;
    transform: scale(1);
    background: rgba(0, 0, 0, 0.1);
}

.tp-popup-tap-zone:active .tp-tap-chevron {
    opacity: 0.9;
    transform: scale(0.95);
}

.tp-popup-swiper {
    width: 100%;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 15%, #000000 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000000 15%, #000000 85%, transparent 100%);
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-slide-content {
    text-align: center;
    max-width: 830px;
}

.tp-slide-content h2,
.tp-slide-content h3,
.tp-slide-content h4,
.tp-slide-content p {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.swiper-slide-active .tp-slide-content h2,
.swiper-slide-active .tp-slide-content h3,
.swiper-slide-active .tp-slide-content h4,
.swiper-slide-active .tp-slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.tp-accent-text {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 200;
}

.tp-popup-footer {
    width: 100%;
    padding: 20px 40px 50px 40px;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.tp-popup-close-btn {
    background: transparent;
    color: #ababab;
    font-size: 36px;
    font-weight: 500;
    border: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-popup-close-btn:hover {
    color: #000000;
}

.tp-footer {
    padding: 45px 15px 32px 15px;
}

.tp-footer-content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tp-footer-copyright {
    color: #ababab;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 6px;
    font-size: 10px;
    width: 100%;
    text-align: center;
}

.tp-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.tp-footer-menu li a {
    text-decoration: none;
    color: #ababab;
    font-weight: 500;
    font-size: 10px;
    line-height: 1.09;
    transition: color 0.3s ease;
}

.tp-footer-menu li a:hover {
    color: var(--black-color);
}

footer {
    background-color: var(--main-bg-color);
}

body.home,
body.page-template-tmpl-home {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

.tp-home-section {
    flex: 1 0 auto;
    padding: 80px 20px 40px;
    background-color: var(--main-bg-color);
    min-height: calc(100vh - 112px);
    min-height: calc(100dvh - 112px);
    box-sizing: border-box;
}

.tp-fixed-minicart-wrap {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.tp-fixed-minicart-wrap.is-empty,
.tp-fixed-minicart-wrap.d-none {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) scale(0.9) !important;
}

.tp-fixed-minicart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 12px;
    font-weight: 700;
}

.tp-minicart-total {
    color: #000000;
    font-weight: 700;
    padding-top: 5px;
}

.tp-minicart-badge-wrap {
    display: inline-flex;
    align-items: center;
    background: #000000;
    padding: 8px 6px 4px 6px;
    color: #ffffff;
    border-radius: 2px;
    transition: 0.3s linear;
    position: relative;
}

.tp-fixed-minicart.is-empty .tp-minicart-badge-wrap {
    background: #000000;
    color: #ffffff;
}

.tp-fixed-minicart.is-empty .tp-minicart-total {
    color: #000000;
}

.tp-fixed-minicart:hover .tp-minicart-badge-wrap {
    background: rgba(0, 0, 0, 0.75);
    transition: 0.3s linear;
}

.tp-fixed-minicart:hover .tp-minicart-total {
    color: #000000;
}

.tp-minicart-badge-wrap:after {
    content: '';
    width: 7px;
    height: 2px;
    background-color: #F5F5F5;
    position: absolute;
    border-radius: 2px;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
}

/* ==========================================================================
   Single Product Page Layout & Vertical Swipe Transition
   ========================================================================== */
.tp-single-product-page {
    position: relative;
    width: 100%;
    overflow: hidden;
}

@media screen and (min-width: 992px) {
    .tp-single-section {
        min-height: 100vh;
        min-height: 100dvh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s ease;
    }

    .tp-single-hero-section {
        padding: 45px 24px;
    }

    .tp-single-archive-section {
        padding: 20px 20px 45px;
        background-color: var(--main-bg-color);
        min-height: calc(100vh - 112px);
        min-height: calc(100dvh - 112px);
        box-sizing: border-box;
    }
}

.tp-single-archive-section {
    min-height: calc(100vh - 112px);
    min-height: calc(100dvh - 112px);
    box-sizing: border-box;
}

.tp-single-gallery-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tp-single-gallery-wrapper {
    position: relative;
    width: 620px;
    max-width: 100%;
    margin: 0 auto;
}

.tp-single-gallery-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tp-single-gallery-swiper {
    cursor: pointer;
}

/* Sequential Fade Transition: Photo 1 fades out completely (0.3s), then Photo 2 fades in (0.3s) */
.tp-single-gallery-swiper .swiper-slide {
    transition: opacity 0.3s ease-out 0s !important;
}

.tp-single-gallery-swiper .swiper-slide.swiper-slide-active {
    transition: opacity 0.3s ease-in 0.3s !important;
}

.tp-single-img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    display: block;
}

.tp-single-gallery-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.tp-single-gallery-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c4c4c4;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0px 0px !important;
}

.tp-single-gallery-pagination .swiper-pagination-bullet-active {
    background: #000000;
}

.tp-single-info-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tp-single-info-panel {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tp-single-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 10px 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 46px;
}

.tp-single-action-card {
    padding: 0px 0px 0px 14px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
}

.tp-single-card-left {
    display: flex;
    gap: 6px;
    flex: 1;
    padding: 14px 14px 14px 0px;
}

.tp-single-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.8;
    text-transform: uppercase;
    color: var(--black-color);
    margin: 0;
}

.tp-single-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tp-single-card-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.tp-single-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
}

.tp-single-cart-actions {
    position: relative;
    display: flex;
    align-items: center;
    padding: 14px 14px 14px 0px;
}

.tp-single-description-card {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tp-single-description-content p {
    margin-bottom: 5px;
}

.tp-single-description-content p:last-child {
    margin-bottom: 0;
}

.tp-single-player-card {
    padding: 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f1f1f;
}

.tp-single-player-content,
.tp-single-embed-content {
    width: 100%;
}

.tp-single-player-content iframe {
    display: block;
    width: 100%;
    border-radius: 4px !important;
}

.tp-single-accordion-card {
    min-height: auto;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.tp-accordion-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000000;
}

.tp-accordion-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-single-accordion-card.is-open .tp-accordion-arrow {
    transform: rotate(90deg);
}

.tp-accordion-body {
    overflow: hidden;
}

.tp-accordion-content {
    padding-top: 14px;
    font-size: 12px;
    line-height: 1.3;
    color: #000000;
}

.tp-single-form-card {
    padding: 14px 18px !important;
}

.tp-single-form-card .wpcf7-form {
    margin: 0;
}

.restock-form-inline {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.restock-form-inline .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

.restock-form-inline input[type="email"],
.restock-form-inline input[type="text"] {
    width: 100%;
    height: 24px;
    border-radius: 0px;
    padding: 0 12px 0 3px;
    font-size: 12px;
    font-weight: 500;
    border: none;
    color: #000000;
    letter-spacing: 0.05em;
    outline: none;
    transition: all 0.3s ease;
}

.restock-form-inline input[type="email"]::placeholder,
.restock-form-inline input[type="text"]::placeholder {
    color: #C3C3C3;
    text-transform: uppercase;
    font-size: 12px;
}

@keyframes tpBorderLeftBlink {

    0%,
    100% {
        border-left-color: #000000;
    }

    50% {
        border-left-color: #EAEAEA;
    }
}

.restock-form-inline input[type="email"]:not(.has-val),
.restock-form-inline input[type="text"]:not(.has-val) {
    border-left: 3px solid #000000;
    animation: tpBorderLeftBlink 1.2s infinite ease-in-out;
}

.restock-form-inline input[type="email"]:focus,
.restock-form-inline input[type="text"]:focus,
.restock-form-inline input[type="email"].has-val,
.restock-form-inline input[type="text"].has-val {
    border-left-width: 0px;
    border-color: #000000;
    background: #FFFFFF;
    animation: none;
}

.restock-form-inline input[type="submit"],
.restock-form-inline button[type="submit"] {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    height: 46px;
    padding: 0 14px;
    background: #000000;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.restock-form-inline.has-input input[type="submit"],
.restock-form-inline.has-input button[type="submit"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

.restock-form-inline.has-input input[type="submit"]:hover,
.restock-form-inline.has-input button[type="submit"]:hover {
    background: #222222;
}

.tp-single-form-card .wpcf7-response-output {
    display: none !important;
}

.tp-single-form-card {
    padding: 10px 0px 10px 14px!important;
}

.tp-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    pointer-events: none;
}

.tp-toast-item {
    pointer-events: auto;
    background: #000000;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 10px 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tp-toast-item.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.tp-toast-item.tp-toast-success {
    border-left: 4px solid #FFFFFF;
}

.tp-toast-item.tp-toast-error {
    border-left: 4px solid #E53E3E;
}

.tp-toast-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    opacity: 0.6;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.tp-toast-close:hover {
    opacity: 1;
}

.tp-single-info-panel .tp-product-status-badge {
    font-size: 10px;
    height: auto;
    background-color: transparent;
    padding: 0px 14px 0px 0px;
    color: #000000;
    box-shadow: none;
    border-radius: 0px;
    opacity: 0.25;
    font-weight: 700;
}

.tp-single-info-panel .tp-single-price {
    font-size: 12px;
}

.tp-single-info-panel .tp-btn-add-to-cart {
    width: 22px;
    height: 22px;
    background-color: #000000;
    box-shadow: none;
    color: #ffffff;
    border-radius: 50%;
    padding: 0px 0px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tp-single-info-panel .tp-btn-add-to-cart:hover {
    transform: scale(1.1);
}

.tp-single-info-panel .tp-cart-qty-panel {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    color: #000000;
    border-radius: 0px;
    padding: 0px;
    min-width: 64px;
    height: 24px;
    box-shadow: none;
    gap: 4px;
}

.tp-single-info-panel .tp-qty-btn {
    width: 15px;
    height: 15px;
    padding: 0;
    color: #ffffff;
}

.tp-single-info-panel .tp-qty-value {
    font-size: 12px;
    padding: 0 4px;
    color: #ffffff;
    min-width: 24px;
}

.tp-single-info-panel .tp-loading-spinner {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background-color: transparent;
    box-shadow: none;
}

.tp-single-info-panel .tp-loading-spinner .tp-spinner {
    width: 16px;
    height: 16px;
    border-width: 2px;
    border-top-color: #ffffff;
}

.tp-single-cart-actions.is-in-cart {
    padding: 14px 10px 14px 10px;
    background-color: #000000;
    border-radius: 4px;
}

.wp-block-woocommerce-checkout h1,
.wc-block-checkout h1 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--black-color);
    margin-bottom: 35px;
}

.wc-block-checkout.is-large {
    gap: 48px !important;
}

.wc-block-components-checkout-step,
.wp-block-woocommerce-checkout-order-summary-block {
    background: #FFFFFF !important;
    border-radius: 4px !important;
    padding: 15px 15px !important;
    border: none !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.015) !important;
    margin-bottom: 6px !important;
    transition: box-shadow 0.3s ease;
}

.wc-block-components-checkout-step:hover,
.wp-block-woocommerce-checkout-order-summary-block:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05) !important;
}

.wc-block-components-title.wc-block-components-checkout-step__title,
.wc-block-components-checkout-order-summary__title-text {
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    color: #000000 !important;
}

.wc-block-components-text-input input,
.wc-blocks-components-select select {
    height: 52px !important;
    border-radius: 4px !important;
    border: 1px solid #D8D8D8 !important;
    background-color: #FAFAFA !important;
    color: #000000 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 12px 16px !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.wc-block-components-text-input input:focus,
.wc-blocks-components-select select:focus {
    border-color: #000000 !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08) !important;
    outline: none !important;
}

.wc-block-components-text-input label {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

.wc-block-components-text-input.is-active label {
    color: #000000 !important;
    left: 8px;
    top: 3px !important;
    font-size: 10px;
    transform: scale(1) !important;
}

.wc-block-components-radio-control__option {
    border-radius: 4px !important;
    padding: 16px 18px !important;
    border: 1px solid #E5E5E5 !important;
    background-color: #FAFAFA !important;
    transition: all 0.25s ease !important;
}

.wc-block-components-radio-control__option-checked {
    border-color: #000000 !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

.wc-block-components-radio-control__input {
    accent-color: #000000 !important;
}

.wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block {
    position: sticky !important;
    top: 30px !important;
}

.wc-block-components-order-summary-item__image img {
    border-radius: 10px !important;
    background: #F5F5F5 !important;
}

.wc-block-components-order-summary-item__quantity {
    background: #000000 !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.wc-block-components-product-name {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #000000 !important;
}

.wc-block-components-order-summary-item__individual-price,
.wc-block-components-product-price__value {
    font-weight: 700 !important;
    color: #000000 !important;
}

.wc-block-components-totals-footer-item {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #000000 !important;
}

.wc-block-components-checkout-place-order-button {
    width: 100% !important;
    height: 56px !important;
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
}

.wc-block-components-checkout-place-order-button:hover {
    background-color: #1a1a1a !important;
}

.wc-block-components-checkout-place-order-button:active {
    transform: translateY(0) !important;
}

.wc-block-components-checkbox__mark {
    border-radius: 4px !important;
    border-color: #000000 !important;
}

.wc-block-components-checkbox__input:checked+.wc-block-components-checkbox__mark {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

.tp-checkout-page .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 60%;
    padding-right: 0px;
}

.tp-checkout-page {
    padding: 80px 15px 120px 12px;
}

.tp-checkout-page .wp-block-woocommerce-checkout-totals-block {
    padding-left: 0px;
}

.tp-checkout-page .wc-block-checkout__shipping-fields .wc-block-components-address-form {
    gap: 6px !important;
}

.tp-checkout-page .wc-block-components-form .wc-block-components-text-input,
.tp-checkout-page .wc-block-components-text-input,
.tp-checkout-page .wc-block-checkout__form .wc-blocks-components-select {
    margin-top: 0px !important;
}

.tp-checkout-page .wc-block-components-radio-control__description-group,
.tp-checkout-page .wc-block-components-radio-control__label-group {
    padding-left: 28px;
}

.tp-checkout-page .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:checked {
    background-color: #000000;
}

.tp-checkout-page .wc-blocks-components-select .wc-blocks-components-select__label {
    left: 8px;
    top: 3px;
    font-size: 10px;
}

.tp-checkout-page .wc-block-components-radio-control-accordion-content {
    padding: 12px 16px !important;
}

.restock-form-inline p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.restock-form-inline br {
    display: none;
}

.wpcf7-not-valid-tip {
    font-size: 10px;
    font-weight: normal;
    display: block;
    position: absolute;
    bottom: -8px;
}

.wpcf7-spinner {
    width: 24px;
    height: 22px;
    margin: 0px 0px;
}