/* Component styles only. Page layout and typography are native Elementor settings. */
.tooto-product-empty {
    margin: 0;
    padding: 16px;
    border: 1px dashed #aaa;
    color: #555;
    font: 13px/1.6 sans-serif;
}

.tooto-product-gallery {
    --tooto-gallery-thumbs-direction: vertical;
    --tooto-gallery-gap: 12px;
    --tooto-gallery-thumb-size: 100px;
    --tooto-gallery-surface: #f8f8f8;
    --tooto-gallery-active: #7e7e7e;
    --tooto-gallery-radius: 0px;
    display: grid;
    grid-template-columns: var(--tooto-gallery-thumb-size) minmax(0, 1fr);
    gap: var(--tooto-gallery-gap);
    position: relative;
    min-width: 0;
}

.tooto-product-gallery__stage {
    grid-column: -2 / -1;
    grid-row: 1;
    position: relative;
    min-width: 0;
    aspect-ratio: 1;
    border-radius: var(--tooto-gallery-radius);
    background: var(--tooto-gallery-surface);
    overflow: clip;
}

.tooto-product-gallery__track {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.tooto-product-gallery__slide {
    min-width: 0;
}

.tooto-product-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
}

.tooto-product-gallery__thumbs {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    position: absolute;
    inset: 0;
}

.tooto-product-gallery__thumb {
    display: block;
    flex: 0 0 auto;
    width: var(--tooto-gallery-thumb-size);
    height: var(--tooto-gallery-thumb-size);
    padding: 0;
    border: 1px solid transparent;
    border-radius: var(--tooto-gallery-radius);
    background: var(--tooto-gallery-surface);
    cursor: pointer;
    overflow: hidden;
}

.tooto-product-gallery__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tooto-product-gallery__thumb[aria-pressed="true"] {
    border-color: var(--tooto-gallery-active);
}

@media (min-width: 750px) {
    .tooto-product-gallery__thumb:hover {
        opacity: .8;
    }
}

.tooto-product-gallery__dots {
    position: absolute;
    z-index: 2;
    bottom: 8px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.tooto-product-gallery__dot {
    width: 24px;
    min-width: 24px;
    height: 36px;
    border: 0;
    padding: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: transparent;
}

.tooto-product-gallery__dot span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 8px;
    background: var(--tooto-gallery-active);
    opacity: .4;
    transition: width .18s ease, opacity .18s ease;
}

.tooto-product-gallery__dot[aria-pressed="true"] span {
    width: 16px;
    opacity: 1;
}

.tooto-product-gallery :is(button, [tabindex]):focus-visible {
    outline: 2px solid var(--tooto-gallery-active);
    outline-offset: -3px;
}

.tooto-product-points {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
    color: #444;
    font: 400 14px/1.5 Poppins, sans-serif;
}

.tooto-product-points li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.tooto-product-points li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex: 0 0 4px;
    align-self: flex-start;
    margin-top: .6em;
    background: var(--tooto-point-color, #f33030);
}

.tooto-product-specs {
    --tooto-spec-padding: 16px;
    --tooto-spec-border: #eaeaea;
    --tooto-spec-stripe: #f7f7f7;
    width: 100%;
    margin: 0;
    table-layout: fixed;
    border-collapse: collapse;
    border: 0;
    font: 400 16px/1.5 Poppins, sans-serif;
}

.tooto-product-specs :is(th, td) {
    border: 0;
    border-bottom: 1px solid var(--tooto-spec-border);
    padding: var(--tooto-spec-padding);
    vertical-align: top;
    overflow-wrap: anywhere;
}

.tooto-product-specs th {
    width: 38%;
    text-align: start;
    color: #111827;
    font-weight: 600;
}

.tooto-product-specs td {
    text-align: end;
    color: #4b5563;
}

.tooto-product-specs tr:first-child :is(th, td) {
    border-top: 1px solid var(--tooto-spec-border);
}

.tooto-product-specs tr:nth-child(odd) {
    background: var(--tooto-spec-stripe);
}

.tooto-product-applications {
    display: grid;
    grid-template-columns: repeat(var(--tooto-application-columns, 5), minmax(0, 1fr));
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tooto-product-applications__item {
    --tooto-application-icon: 59px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: var(--tooto-application-padding, 32px);
    padding-inline: min(var(--tooto-application-padding, 32px), max(8px, calc((100% - 130px) / 2)));
    margin: 0;
    min-width: 0;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
}

.tooto-product-applications__icon {
    width: var(--tooto-application-icon);
    height: var(--tooto-application-icon);
    object-fit: contain;
}

.tooto-product-applications__title {
    color: #1c1c1c;
    font: 600 16px/1.5 Poppins, sans-serif;
    overflow-wrap: anywhere;
}

[data-tooto-product-action] .elementor-button {
    cursor: pointer;
}

[data-tooto-product-action] .elementor-button:focus-visible {
    outline: 2px solid var(--theme-palette-color-1, #f33030);
    outline-offset: 3px;
}

[data-tooto-product-action] .elementor-button[aria-disabled="true"] {
    cursor: default;
    opacity: .65;
}

[data-tooto-product-action][data-tooto-in-list="true"] .elementor-button-text {
    font-weight: 600;
}

.tooto-product-detail .elementor-widget-text-editor p:last-child {
    margin-bottom: 0;
}

.tooto-product-detail .ct-breadcrumbs-shortcode {
    margin: 0;
}

.tooto-product-related-section {
    overflow: clip;
}

@media (prefers-reduced-motion: reduce) {
    .tooto-product-gallery__dot span {
        transition: none;
    }

    .tooto-product-gallery .swiper-wrapper {
        transition-duration: 0ms !important; /* Swiper writes duration inline. */
    }
}

.tooto-product-specifications-section .elementor-button-icon svg{
    width: 16px;
    height: 16px;
}
