body {
    padding: 0;
    margin: 0;
}

.t-page-transition {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 110;
    opacity: 0;
    background-size: 160px auto;
    background-repeat: no-repeat;
    background-position: center;
}

.t-page-transition[data-open='true'] {
    display: block;
}

.t-page-transition[data-state='open'] {
    opacity: var(--t-page-transition-opacity, 0.85);
}

.t-page-transition[data-animate-in='true'][data-state='opening'] {
    animation: t-page-transition-fade-in 250ms ease forwards;
}

.t-page-transition[data-state='closing'] {
    animation: t-page-transition-fade-out 750ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes t-page-transition-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: var(--t-page-transition-opacity, 0.85);
    }
}

@keyframes t-page-transition-fade-out {
    from {
        opacity: var(--t-page-transition-opacity, 0.85);
    }

    to {
        opacity: 0;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

.t-unformated {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    color: inherit;
    background: transparent;
    text-decoration: none;
    list-style: none;
}

button.t-unformated,
input.t-unformated,
select.t-unformated,
textarea.t-unformated {
    appearance: none;
    -webkit-appearance: none;
}

[data-fly-in-intro][data-fly-in-ready='true'] {
    opacity: 0;
    transform: translateY(1.5rem);
    transition:
        opacity 520ms ease,
        transform 520ms ease;
}

[data-fly-in-intro][data-fly-in-visible='true'] {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .t-page-transition {
        display: none !important;
    }

    [data-fly-in-intro][data-fly-in-ready='true'] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.t-image {
    position: relative;
}

.t-image__hover-image {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.t-image:is(:hover, :focus-within) > .t-image__hover-image,
.t-product-image:is(:hover, :focus-within) .t-image__hover-image,
a:is(:hover, :focus-within) .t-image__hover-image {
    opacity: 1;
}

.t-product-description__content,
.t-product-description__specifications {
    width: 100%;
    max-width: 72ch;
}

.t-product-description__content {
    line-height: 1.7;
}

.t-product-description__content > :first-child {
    margin-top: 0;
}

.t-product-description__content > :last-child {
    margin-bottom: 0;
}

.t-product-description__specifications {
    margin-top: 24px;
}

.t-product-description__specifications-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.t-product-description__specifications-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    line-height: 1.5;
}

.t-product-description__specifications-table th,
.t-product-description__specifications-table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.t-product-description__specifications-table th {
    width: 38%;
    padding-right: 24px;
    font-weight: 700;
}

.t-no-default-margin {
    margin-top: 0;
    margin-bottom: 0;
}

.t-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 2rem;
    grid-column: 1 / -1;
}

.t-pagination a,
.t-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--button-input-border-radius, 0.375rem);
    background: white;
}

.t-carousel {
    position: relative;
    width: 100%;
    min-height: var(--carousel-min-height-mobile, 0rem);
    overflow: hidden;
}

.t-carousel__viewport,
.t-carousel__track,
.t-carousel__slide,
.t-carousel__slide-content {
    min-height: inherit;
}

.t-carousel__viewport {
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.t-carousel__viewport img,
.t-carousel__slide img {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.t-carousel__track {
    display: flex;
    min-height: inherit;
    will-change: transform;
}

.t-carousel__slide {
    position: relative;
    display: block;
    flex: 0 0 100%;
}

.t-carousel__slide-content {
    position: relative;
    z-index: 1;
}

.t-carousel__controls {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(-50%);
}

.t-nav-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: var(--button-input-border-radius, 0.375rem);
    background: rgba(255, 255, 255, 0.92);
    color: #000000;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.t-nav-arrow:hover {
    background: #ffffff;
}

.t-nav-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.t-nav-arrow--prev {
    left: 12px;
}

.t-nav-arrow--prev svg {
    transform: rotate(180deg);
}

.t-nav-arrow--next {
    right: 12px;
}

.t-carousel__arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.t-carousel__dots {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.t-carousel__dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.t-carousel__dot.is-active {
    background: #ffffff;
    transform: scale(1.08);
}

@media (width >= 48rem) {
    .t-carousel {
        min-height: var(--carousel-min-height-tablet, var(--carousel-min-height-mobile, 0rem));
    }
}

@media (width >= 64rem) {
    .t-carousel {
        min-height: var(--carousel-min-height-desktop, var(--carousel-min-height-tablet, var(--carousel-min-height-mobile, 0rem)));
    }
}

/* Product Gallery */
[data-product-gallery-root] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.t-product-gallery__stage {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.t-product-gallery__track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translate3d(calc(var(--product-gallery-index, 0) * -100% + var(--product-gallery-drag-offset, 0px)), 0, 0);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.t-product-gallery__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.t-product-gallery__main-image {
    display: block;
    width: 100%;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.t-product-gallery__nav {
    z-index: 3;
}

.t-product-gallery__zoom-trigger {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: var(--button-input-border-radius, 0.375rem);
    background: rgba(255, 255, 255, 0.92);
    color: #000000;
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}

.t-product-gallery__stage:is(:hover, :focus-within) .t-product-gallery__zoom-trigger {
    opacity: 1;
}

.t-product-gallery__modal[hidden] {
    display: none !important;
}

.t-product-gallery__modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal, 80);
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.t-product-gallery__modal[data-open='true'] {
    opacity: 1;
    pointer-events: auto;
}

.t-product-gallery__modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.72);
    cursor: pointer;
}

.t-product-gallery__modal-image {
    position: relative;
    z-index: 1;
    display: block;
    max-width: min(94vw, 1200px);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.t-product-gallery__modal[data-open='true'] .t-product-gallery__modal-image {
    opacity: 1;
    transform: scale(1);
}

.t-product-gallery__modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: none;
    border-radius: var(--button-input-border-radius, 0.375rem);
    background: rgba(255, 255, 255, 0.94);
    color: #000000;
    cursor: pointer;
}

.t-product-gallery__thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.t-product-gallery__thumb {
    width: 72px;
    padding: 0;
    border: 1px solid transparent;
    background: #ffffff;
    cursor: pointer;
    overflow: hidden;
}

.t-product-gallery__thumb[aria-current='true'] {
    border-color: #000000;
}

.t-product-gallery__thumb img {
    display: block;
    width: 100%;
}

@media (width <= 48rem) {
    .t-product-gallery__thumb {
        width: 56px;
    }
}

.t-product-gallery__thumbs[data-show-thumbnails='never'] {
    display: none !important;
}

@media (width <= 64rem) {
    .t-product-gallery__thumbs[data-show-thumbnails='desktop'] {
        display: none !important;
    }
}

@media (width <= 48rem) {
    .t-product-gallery__thumbs[data-show-thumbnails='desktop_tablet'] {
        display: none !important;
    }
}

.t-product-gallery__stage[data-dragging='true'] .t-product-gallery__track,
.t-product-gallery__stage[data-drag-animate='false'] .t-product-gallery__track {
    transition: none;
}

.t-pagination a:hover {
    background: rgba(0, 0, 0, 0.04);
}

.t-pagination .disabled,
.t-pagination [aria-disabled='true'] {
    color: color-mix(in srgb, currentColor 60%, transparent);
    cursor: default;
}

.t-pagination .active,
.t-pagination .current,
.t-pagination [aria-current='page'] {
    background: var(--color-primary, #0000ff);
    border-color: var(--color-primary, #0000ff);
    color: white;
}

.t-variant-selector {
    display: grid;
    gap: 1rem;
}

.t-variant-selector__field {
    margin: 0;
    padding: 0;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.t-variant-selector__legend {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.t-variant-selector__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.option-chip,
.variant-select__trigger,
.variant-select__option {
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: white;
    color: #111827;
    height: 2.5rem;
    font: inherit;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    border-radius: var(--button-input-border-radius, 0.375rem);
}

.option-chip {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
}

.option-chip[aria-pressed='true'] {
    border-color: #000000;
}

.option-chip:disabled,
.variant-select__option:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.option-chip__label,
.variant-select__option-label {
    padding: 0 1rem;
}

.option-chip--text .option-chip__label {
    padding-left: 1rem;
    padding-right: 1rem;
}

.variant-select {
    position: relative;
    min-width: 14rem;
}

.variant-select__trigger {
    width: 100%;
    display: inline-flex;
    align-items: center;
    text-align: left;
    cursor: pointer;
    padding-right: 1rem;
}

.variant-select__label {
    flex: 1;
    padding: 0 0.75rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.variant-select__label--placeholder {
    color: #6b7280;
}

.variant-select__trigger-swatch {
    width: 2.5rem;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    align-self: stretch;
}

.variant-select__trigger-swatch--hidden {
    display: none;
}

.variant-select__swatch {
    width: 2.5rem;
    height: 100%;
    flex-shrink: 0;
    display: inline-flex;
    align-self: stretch;
    overflow: hidden;
    background: #e5e7eb;
}

.variant-select__swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.variant-select__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.4rem);
    z-index: 20;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: var(--button-input-border-radius, 0.375rem);
    max-height: 15rem;
    overflow: auto;
}

.variant-select__menu[hidden] {
    display: none !important;
}

.variant-select__option {
    display: inline-flex;
    align-items: center;
    text-align: left;
    cursor: pointer;
    border: 0;
    border-radius: 0;
    width: 100%;
}

.variant-select__option + .variant-select__option {
    border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.variant-select__option[aria-selected='true'] {
    background: rgba(0, 0, 0, 0.04);
}

@keyframes t-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.text-inherit {
    font-size: inherit;
    line-height: inherit;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.text-8xl {
    font-size: 6rem;
    line-height: 1;
}

.text-9xl {
    font-size: 8rem;
    line-height: 1;
}

@media (width <= 64rem) {
    .tablet\:text-inherit {
        font-size: inherit;
        line-height: inherit;
    }

    .tablet\:text-xs {
        font-size: 0.75rem;
        line-height: 1rem;
    }

    .tablet\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .tablet\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .tablet\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .tablet\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .tablet\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .tablet\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .tablet\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .tablet\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .tablet\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .tablet\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }

    .tablet\:text-8xl {
        font-size: 6rem;
        line-height: 1;
    }

    .tablet\:text-9xl {
        font-size: 8rem;
        line-height: 1;
    }
}

@media (width <= 48rem) {
    .mobile\:text-inherit {
        font-size: inherit;
        line-height: inherit;
    }

    .mobile\:text-xs {
        font-size: 0.75rem;
        line-height: 1rem;
    }

    .mobile\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .mobile\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .mobile\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .mobile\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .mobile\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .mobile\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .mobile\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .mobile\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .mobile\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .mobile\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }

    .mobile\:text-8xl {
        font-size: 6rem;
        line-height: 1;
    }

    .mobile\:text-9xl {
        font-size: 8rem;
        line-height: 1;
    }
}

.t-toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-toast, 9999);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    width: min(100% - 32px, 420px);
}

.t-toast {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 0.5rem;
    background-color: #1f2937;
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.4;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    transition: opacity 0.28s ease, transform 0.28s ease;
    width: 100%;
}

.t-toast--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.t-toast--exiting {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
}

.t-toast--success {
    background-color: #065f46;
    color: #ecfdf5;
}

.t-toast--error {
    background-color: #991b1b;
    color: #fef2f2;
}

.t-toast__body {
    flex: 1 1 auto;
    min-width: 0;
}

.t-toast__close {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
    border-radius: 0.25rem;
    transition: opacity 0.15s ease, background-color 0.15s ease;
}

.t-toast__close:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.12);
}

.t-toast__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 0 0 0.5rem 0.5rem;
    animation: t-toast-progress linear forwards;
    transform-origin: left;
}

@keyframes t-toast-progress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}
