.single-product {
    background:#F6F6F6!important;
}

.product-single {
    margin: 0 auto;
}

.product-single__container {
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

/* Coluna da Galeria */
.product-single__gallery {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.main-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f6f6f6;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    mix-blend-mode: darken;
}

.zoom-trigger {
    position: relative;
    cursor: zoom-in;
}

/* Slider de Miniaturas */
.thumbnail-slider {
    margin-top: 20px;
    width: 100%;
    position: relative;
}

.thumbnail-splide {
    max-width: 600px;
}

.thumbnail-splide .splide__slide {
    height: 80px;
    width: 80px;
    overflow: hidden;
    background: #f6f6f6;
}

.thumbnail-splide .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.3;
    background: #fff;
    border-radius: 4px;
}

.splide__track--nav>.splide__list>.splide__slide.is-active img{
    opacity: 1;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
    border: 1px solid #21212117;
    border-radius: 4px;
}
/* Modal em Tela Cheia */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    outline: 0;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

.fullscreen-splide {
    margin-top: 80px;
}

.fullscreen-splide .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
    transition: opacity 0.3s ease;
    transform: scale(0.7); 
    background-blend-mode: color;
}


.splide__track--nav>.splide__list>.splide__slide {
    background: #fff;
}

.fullscreen-splide .splide__slide.is-active {
    opacity: 1;
    transform: scale(1.3);  /* Slide central maior */
    z-index: 1;
    mix-blend-mode: unset;
}

.fullscreen-splide .splide__slide.is-active img {
    mix-blend-mode: unset;
}

.fullscreen-splide .splide__slide img {
    max-height: 100vh;
    width: 35vw;
    object-fit: contain;
    margin: 0 auto;
    transition: all 0.3s ease;
    mix-blend-mode: luminosity;
}

.fullscreen-splide .splide__track {
    overflow: visible;
    padding: 0 10%;
    height: 70vh;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
    border: none;
}
/* Estilo para as setas de navegação */
.fullscreen-splide .splide__arrow {
    background: rgba(255, 255, 255, 0.3);
    width: 3em;
    height: 3em;
}

.fullscreen-splide .splide__arrow svg {
    fill: #fff;
    width: 1.5em;
    height: 1.5em;
}

.fullscreen-splide .splide__arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Ajuste para os slides laterais */
.fullscreen-splide .splide__track {
    overflow: visible;
}

/* Coluna das Opções */
.product-single__options {
    width: 100%;
    padding: 20px;
    padding-top: 4rem;
    
}

.product-title {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -0.05em;
}

.option-section {
    margin-bottom: 30px;
    position: relative;
}

.option-section h2 {
    margin-bottom: 14px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.option-section.has-price-adjustments h2 {
    margin-bottom: 14px;
}

.selected-color {
    font-size: 16px;
    color: #666;
}

/* Cards de Opções */
.size-options,
.firmness-options,
.attachment-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.option-card {
    position: relative;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    min-width: 100px;
    opacity: 1;
}

.size-name,
.firmness-name,
.card-content span {
    font-weight: 600;
    font-size: 1.1rem;
}

.option-card:hover {
    border-color: #666;
}

/* Só aplica opacity quando houver uma seleção na seção */
.option-section.has-selection .option-card:not(.selected) {
    opacity: 0.2;
}

.option-card.selected {
    border-color: #212121;
    outline: 0.1rem solid #2c2c2c;
    opacity: 1;
}

.price-adjustment {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f6f6f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}

/* Cores */
.color-options {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
}

.color-option {
    position: relative;
    cursor: pointer;
}

.color-option img {
    width: 100%;
    height: auto;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: all 0.05s;
    outline: 0.1rem solid #c2c2c2;
    padding: 1px;
    opacity: 1;
}

/* Só aplica opacity 0.2 quando houver uma seleção na seção */
.color-section.has-selection .color-option:not(.selected) img {
    opacity: 0.3;
}

.color-option.selected img {
    outline: 0.2rem solid #2c2c2c;
}

.color-name {
    display: none;
}

/* Quantidade e Carrinho */
.add-to-cart-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .add-to-cart-section {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-top: 40px;
        flex-direction: column;
    }
    .quantity-input { 
        padding-left: 0px!important;
    }
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.quantity-btn {
    width: 40px;
    border: none;
    background: none;
    cursor: pointer;
    background: #212121;
    color: #fff;
    height: 40px;
}

.quantity-selector .minus {
    border-radius: 6px 0 0 6px;
}

.quantity-selector .plus {
    border-radius: 0 6px 6px 0;
}

.quantity-input {
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    max-width: 60px;
    margin: 0 !important;
    padding-left: 14px;
    background: #fff;
    height: 40px;
}

.price-cart-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.total-price {
    font-size: 24px;
    font-weight: bold;
}

.add-to-cart-btn {
    align-items: center;
    gap: 8px;
    background: #FF6B00;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s;
    height: 40px;
    width: 170px;
    display: flex;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background: #E65000;
}

.add-to-cart-btn svg {
    width: 20px;
    height: 20px;
}

.modal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1002;
}

.modal-title {
    color: #212121;
    font-size: 24px;
    margin: 0;
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 20px;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s;
    background: #212121;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    opacity: 0.8;
}

.fullscreen-splide {
    margin-top: 80px; /* Espaço para o header */
}

.needs-selection {
    animation: shake 0.5s;
}

.selection-warning {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.option-section.needs-selection h2 {
    color: #dc3545;
}

.option-section.needs-selection .option-card,
.option-section.needs-selection .color-option {
    border-color: #dc3545;
}

.bg-fade-left,
.bg-fade-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.bg-fade-left {
    left: 0;
    background: linear-gradient(to right, #F6F6F6 0%, #F6F6F6 30%, #f6f6f64d 100%);
}

.bg-fade-right {
    right: 0;
    background: linear-gradient(to left, #F6F6F6 0%, #F6F6F6 30%, #f6f6f64d 100%);
}

/* Ajustar z-index das setas do Splide */
.thumbnail-splide .splide__arrows {
    z-index: 3;
}

.thumbnail-splide .splide__arrow {
    z-index: 3;
    background: rgba(255, 255, 255, 0.8);
}

/* Ajustes para as setas de navegação */
.fullscreen-splide .splide__arrows {
    z-index: 1002;
}

.fullscreen-splide .splide__arrow {
    background: rgba(255, 255, 255, 0.3);
    width: 3em;
    height: 3em;
    z-index: 1002;
    opacity: 1;
}

.fullscreen-splide .splide__arrow svg {
    fill: #fff;
    width: 1.5em;
    height: 1.5em;
}

/* Ajustes para os dots de paginação */
.fullscreen-modal.fullscreen-splide .splide__pagination {
    bottom: -3em;
    z-index: 1002;
}

.fullscreen-modal .fullscreen-splide .splide__pagination__page {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.fullscreen-modal .fullscreen-splide .splide__pagination__page.is-active {
    background: #fff;
    transform: scale(1.4);
} 

.fullscreen-modal .splide__arrows {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: flex;
}

.fullscreen-modal .fullscreen-splide .splide__arrow {
    background: rgb(0 0 0 / 80%)!important;
    border-radius: 0!important;
}

.fullscreen-modal .splide__arrow--prev {
    left: -2em;
    position: relative;
    top: 0rem;
}

.fullscreen-modal .splide__arrow--next {
    right: 1rem !important;
    position: relative;
    top: 0rem;
}


.fullscreen-modal .fullscreen-splide .splide__pagination__page {
    background: rgb(0 0 0 / 23%);
    opacity: 1;
    width: 30px;
    height: 6px;
    border-radius: 50px;
}

.fullscreen-modal .fullscreen-splide .splide__pagination__page.is-active {
    background: #212121;
    transform: scale(1);
}

.fullscreen-modal .splide:not(.is-overflow) .splide__pagination {
    display: flex;
}




.fullscreen-modal .fullscreen-splide .splide__pagination__page {
    background: rgb(0 0 0 / 23%);
    opacity: 1;
    width: 30px;
    height: 6px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.fullscreen-modal .fullscreen-splide .splide__pagination__page.is-active {
    background: rgb(0 0 0 / 23%);
    transform: none;
}

.fullscreen-modal .fullscreen-splide .splide__pagination__page.is-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #212121;
    animation: progressBar 4s linear forwards;
    will-change: width;
    backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes progressBar {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.fullscreen-modal .modal-header {
    border-bottom: none;
}

@media (max-width: 767px) {

    .fullscreen-modal {
        position: absolute;
    }
    .fullscreen-splide {
        margin-top: 40px;
    }

    .fullscreen-splide .splide__track {
        height: 50vh;
        padding: 0 5%;
    }

    .fullscreen-splide .splide__slide {
        transform: scale(0.9);
    }

    .fullscreen-splide .splide__slide.is-active {
        transform: scale(1);
    }

    .fullscreen-splide .splide__slide img {
        width: 80vw;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .fullscreen-modal .splide__arrows {
        bottom: 0.5rem;
        right: 0.5rem;
    }

    .fullscreen-splide .splide__arrow {
        width: 2em;
        height: 2em;
    }

    .modal-header {
        padding: 10px;
    }

    .close-modal {
        top: 10px;
        right: 10px;
    }

    .modal-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        z-index: 1002;
    }

    .product-single__container {
        display: flex;
        gap: 30px;
        flex-direction: column;
        padding-top: 1rem;
    }

    .color-options {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 10px;
    }

    .size-options,
    .firmness-options,
    .attachment-options {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        row-gap: 20px;
    }

    /* Valores na imagem mobile */
    .mobile-specs-image [class^="img-value-"] {
        position: absolute;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.9rem;
        z-index: 2;
    }

    .mobile-specs-image {
        position: relative;
    }
}

/* Controle de visibilidade dos títulos */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

.specifications-table {
    background: #fff;
    padding: 2rem;
}

@media (max-width: 767px) {
    .specifications-table {
        padding: 1rem;
        position: relative;
        width: 100%;
        overflow-x: auto;
    }

    .specifications-table table {
        width: auto;
        min-width: 100%;
    }

    .specifications-table th:first-child,
    .specifications-table td:first-child {
        position: sticky;
        left: 0;
        background: #fff;
        z-index: 1;
        border-right: 1px solid #dee2e6;
        min-width: 120px;
    }

    .specifications-table th:first-child {
        background: #f8f9fa;
        z-index: 2;
    }

    /* Sombra para indicar scroll */
    .specifications-table::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 15px;
        pointer-events: none;
        /* background: linear-gradient(to right, transparent, rgba(0,0,0,0.1)); */
    }
}

.specifications-table tbody, td, tfoot, th, thead, tr {
    height: 56px;
    vertical-align: middle;
    text-align: center;
}

.table-row-single-product {
    background: #fff;
    border-radius: 10px;
    padding: 2rem 1rem;
}

@media (max-width: 767px) {
    .table-row-single-product {
        margin: .5rem;
        padding: 2rem 0;
    }
    .measurement-images {
        position: relative;
        width: 40%!important;
        height: 40%!important;
    }
}

/* .specifications-table td:nth-child(1),
.specifications-table th:nth-child(1) {
    text-align: right;
} */

.specifications-table td:not(:first-child):hover {
    background: #212121;
    color: #fff;
}
@media (max-width: 767px) {
    .mobile-only {
        display: block;
        margin-bottom: 1rem;
        margin-top: 2rem;
        text-align: center;
    }

    .desktop-only {
        display: none;
    }
}

.measurement-image img {
    mix-blend-mode: darken;
}


.btn-check:active+.btn-dark:focus, .btn-check:checked+.btn-dark:focus, .btn-dark.active:focus, .btn-dark:active:focus, .show>.btn-dark.dropdown-toggle:focus {
    box-shadow: none;
}

/* Estilo base para os valores sobre a imagem */
[class^="img-value-"] {
    position: absolute;
    /* background: rgba(0, 0, 0, 0.8); */
    color: #212121;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 10;
}

/* Posições específicas para cada medida */
.img-value-total_length {
    top: 40%;
    left: 0%;
    position: absolute;
}

.img-value-usable_length {
    top: 30%;
    right: 10%;
    position: absolute;
}

.img-value-head_circumference {
    top: 10%;
    right: 22%;
    position: absolute;
}

.img-value-widest_circumference {
    top: 32%;
    right: 12%;
    position: absolute;
}

.img-value-base_circumference {
    top: 60%;
    right: 16%;
    position: absolute;
}

.measurement-images.showing-cm .img-value-total_length {
    left: -10% !important;
}

.measurement-images.showing-cm .img-value-usable_length {
    right: 5% !important;
}

.measurement-images.showing-cm .img-value-head_circumference {
    right: 15% !important;
}

.measurement-images.showing-cm .img-value-widest_circumference {
    right: 6% !important;
}

.measurement-images.showing-cm .img-value-base_circumference {
    right: 10% !important;
}


/* START BIG HEAD Measurements */
.product-big-head-dildo .img-value-total_length {
    top: 45%;
    left: -5%;
    position: absolute;
}

.product-big-head-dildo .img-value-usable_length {
    top: 26%;
    right: 8%;
    position: absolute;
}

.product-big-head-dildo .img-value-head_circumference {
    top: 11%;
    right: 27%;
    position: absolute;
}

.product-big-head-dildo .img-value-widest_circumference {
    top: 37%;
    right: 16%;
    position: absolute;
}

.product-big-head-dildo .img-value-base_circumference {
    top: 56%;
    right: 14%;
    position: absolute;
}

.product-big-head-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -10% !important;
}

.product-big-head-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: 2% !important;
}

.product-big-head-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: 20% !important;
}

.product-big-head-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: 8% !important;
}

.product-big-head-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: 8% !important;
}
/* END BIG HEAD Measurements */

/* START GLIZZY Measurements */
.product-glizzy-dildo .img-value-total_length {
    top: 45%;
    left: -5%;
    position: absolute;
}

.product-glizzy-dildo .img-value-usable_length {
    top: 32%;
    right: 2%;
    position: absolute;
}

.product-glizzy-dildo .img-value-head_circumference {
    top: 8%;
    right: 8%;
    position: absolute;
}

.product-glizzy-dildo .img-value-widest_circumference {
    top: 37%;
    right: 16%;
    position: absolute;
}

.product-glizzy-dildo .img-value-base_circumference {
    top: 65%;
    right: 14%;
    position: absolute;
}

.product-glizzy-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -10% !important;
}

.product-glizzy-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: -4% !important;
}

.product-glizzy-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: 1% !important;
}

.product-glizzy-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: 8% !important;
}

.product-glizzy-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: 8% !important;
}
/* END GLIZZY Measurements */

/* START RED ROCKET Measurements */
.product-red-rocket-dildo .img-value-total_length {
    top: 45%;
    left: -8%;
    position: absolute;
}

.product-red-rocket-dildo .img-value-usable_length {
    top: 32%;
    right: 10%;
    position: absolute;
}

.product-red-rocket-dildo .img-value-head_circumference {
    top: 11%;
    right: 32%;
    position: absolute;
}

.product-red-rocket-dildo .img-value-widest_circumference {
    top: 44%;
    right: 23%;
    position: absolute;
}

.product-red-rocket-dildo .img-value-base_circumference {
    top: 69%;
    right: 20%;
    position: absolute;
}

.product-red-rocket-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -10% !important;
}

.product-red-rocket-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: 2% !important;
}

.product-red-rocket-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: 20% !important;
}

.product-red-rocket-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: 16% !important;
}

.product-red-rocket-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: 10% !important;
}
/* END RED ROCKET Measurements */


/* START SEA MONSTER Measurements */
.product-sea-monster-dildo .img-value-total_length {
    top: 48%;
    left: -6%;
    position: absolute;
}

.product-sea-monster-dildo .img-value-usable_length {
    top: 35%;
    right: 10%;
    position: absolute;
}

.product-sea-monster-dildo .img-value-head_circumference {
    top: 12%;
    right: 22%;
    position: absolute;
}

.product-sea-monster-dildo .img-value-widest_circumference {
    top: 39%;
    right: 18%;
    position: absolute;
}

.product-sea-monster-dildo .img-value-base_circumference {
    top: 69%;
    right: 17%;
    position: absolute;
}

.product-sea-monster-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -10% !important;
}

.product-sea-monster-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: 2% !important;
}

.product-sea-monster-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: 14% !important;
}

.product-sea-monster-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: 11% !important;
}

.product-sea-monster-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: 10% !important;
}
/* END SEA MONSTER Measurements */


/* START HORSE Measurements */
.product-horse-dildo .img-value-total_length {
    top: 45%;
    left: -6%;
    position: absolute;
}

.product-horse-dildo .img-value-usable_length {
    top: 30%;
    right: 10%;
    position: absolute;
}

.product-horse-dildo .img-value-head_circumference {
    top: 7%;
    right: 22%;
    position: absolute;
}

.product-horse-dildo .img-value-widest_circumference {
    top: 41%;
    right: 20%;
    position: absolute;
}

.product-horse-dildo .img-value-base_circumference {
    top: 65%;
    right: 16%;
    position: absolute;
}

.product-horse-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -10% !important;
}

.product-horse-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: 2% !important;
}

.product-horse-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: 14% !important;
}

.product-horse-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: 11% !important;
}

.product-horse-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: 10% !important;
}
/* END HORSE Measurements */

/* START HORSE WITH PIERCING Measurements */  
.product-horse-with-piercing-dildo .img-value-total_length {
    top: 45%;
    left: -6%;
    position: absolute;
}

.product-horse-with-piercing-dildo .img-value-usable_length {
    top: 30%;
    right: 10%;
    position: absolute;
}

.product-horse-with-piercing-dildo .img-value-head_circumference {
    top: 8%;
    right: 17%;
    position: absolute;
}

.product-horse-with-piercing-dildo .img-value-widest_circumference {
    top: 41%;
    right: 18%;
    position: absolute;
}

.product-horse-with-piercing-dildo .img-value-base_circumference {
    top: 65%;
    right: 16%;
    position: absolute;
}

.product-horse-with-piercing-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -10% !important;
}

.product-horse-with-piercing-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: 2% !important;
}

.product-horse-with-piercing-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: 14% !important;
}

.product-horse-with-piercing-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: 11% !important;
}

.product-horse-with-piercing-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: 10% !important;
}
/* END HORSE WITH PIERCING Measurements */  


/* START BUT PLUG Measurements */
.product-butt-plug .img-value-total_length {
    top: 43%;
    left: -7%;
    position: absolute;
}

.product-butt-plug .img-value-usable_length {
    top: 33%;
    right: -2%;
    position: absolute;
}

.product-butt-plug .img-value-head_circumference {
    top: 7%;
    right: 10%;
    position: absolute;
}

.product-butt-plug .img-value-widest_circumference {
    top: 32%;
    right: -3%;
    position: absolute;
}

.product-butt-plug .img-value-base_circumference {
    top: 51%;
    right: -4%;
    position: absolute;
}

.product-butt-plug .measurement-images.showing-cm .img-value-total_length {
    left: -10% !important;
}

.product-butt-plug .measurement-images.showing-cm .img-value-usable_length {
    right: -10% !important;
}

.product-butt-plug .measurement-images.showing-cm .img-value-head_circumference {
    right: 3% !important;
}

.product-butt-plug .measurement-images.showing-cm .img-value-widest_circumference {
    right: -10% !important;
}

.product-butt-plug .measurement-images.showing-cm .img-value-base_circumference {
    right: -12% !important;
}
/* END BUT PLUG Measurements */  


/* START THE BULLET Measurements */
.product-the-bullet-dildo .img-value-total_length {
    top: 43%;
    left: -7%;
    position: absolute;
}

.product-the-bullet-dildo .img-value-usable_length {
    top: 33%;
    right: 12%;
    position: absolute;
}

.product-the-bullet-dildo .img-value-head_circumference {
    top: 11%;
    right: 28%;
    position: absolute;
}

.product-the-bullet-dildo .img-value-widest_circumference {
    top: 45%;
    right: 22%;
    position: absolute;
}

.product-the-bullet-dildo .img-value-base_circumference {
    top: 67%;
    right: 22%;
    position: absolute;
}

.product-the-bullet-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -10% !important;
}

.product-the-bullet-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: 0% !important;
}

.product-the-bullet-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: 22% !important;
    top: 11%
}

.product-the-bullet-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: 14% !important;
    top: 45%;
}

.product-the-bullet-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: 14% !important;
}
/* END THE BULLET Measurements */  



/* START BIG VEINY REALISTIC DILDO Measurements */
.product-big-veiny-realistic-dildo .img-value-total_length {
    top: 45%;
    left: -5%;
    position: absolute;
}

.product-big-veiny-realistic-dildo .img-value-usable_length {
    top: 26%;
    right: 8%;
    position: absolute;
}

.product-big-veiny-realistic-dildo .img-value-head_circumference {
    top: 11%;
    right: 27%;
    position: absolute;
}

.product-big-veiny-realistic-dildo .img-value-widest_circumference {
    top: 37%;
    right: 16%;
    position: absolute;
}

.product-big-veiny-realistic-dildo .img-value-base_circumference {
    top: 56%;
    right: 14%;
    position: absolute;
}

.product-big-veiny-realistic-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -10% !important;
}

.product-big-veiny-realistic-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: 2% !important;
}

.product-big-veiny-realistic-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: 20% !important;
}

.product-big-veiny-realistic-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: 8% !important;
}

.product-big-veiny-realistic-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: 8% !important;
}
/* END BIG VEINY REALISTIC DILDO Measurements */




/* Ajuste para o container de imagens */
.measurement-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.measurement-row:last-child:hover {
    --bs-table-accent-bg: #fff;
}

.measurement-row:last-child td:hover {
    color: #212121;
}

/* Estilo para highlight da coluna */
.specifications-table thead th.column-highlight {
    background-color: #dddddd !important;
}

.selected-option-name-price {
    color: #212121;
    font-weight: 300;
    font-size: 16px;
    padding-top: 4px;
}

.attachment-icon {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-position: 0 100%;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.attachment-icon.no-hole {
    background-image: url('/wp-content/themes/erotixxxtoys/images/no-attachment-hole.png');
    mix-blend-mode: darken;
}

.attachment-icon.with-hole {
    background-image: url('/wp-content/themes/erotixxxtoys/images/yes-attachment-hole.png');
    mix-blend-mode: darken;
}

.option-card[data-attachment] {
    min-width: 120px;
    padding: 0px;
    background: #f6f6f6;
}

.option-card[data-attachment] .card-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-rating-summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    transition: opacity 0.2s ease;
}

.product-rating-summary:hover {
    opacity: 0.8;
}

.product-rating-summary .stars {
    color: #FF9900;
    font-size: 18px;
    line-height: 1;
}

.product-rating-summary .rating-count {
    color: #666;
    font-size: 14px;
}

.product-rating-summary:hover .rating-count {
    text-decoration: underline;
}

/* Reviews Section */
.product-reviews {
    padding: 40px;
    background: #EEEEEE;
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 4rem;
}

.product-reviews h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.average-rating-summary {
    display: flex;
    margin-bottom: 30px;
    flex-direction: column;
}

.rating-stars {
    color: #FF9900;
    font-size: 28px;
}

.rating-text {
    font-size: 22px;
    color: #212121;
}

.review-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.review-header {
    display: flex;
    gap: 2px;
    flex-direction: column;
    align-items: flex-start;
}

.reviewer-name {
    font-weight: 500;
    font-size: 16px;
}

.reviewer-location {
    color: #666;
    font-size: 14px;
}

.verified-buyer {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4CAF50;
    font-size: 14px;
}

.verified-buyer svg {
    width: 16px;
    height: 16px;
}

.review-rating {
    color: #212121;
    font-size: 24px;
    margin-bottom: 8px;
}

.review-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 8px;
}

.review-content {
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.view-all-reviews {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s;
}

.view-all-reviews:hover {
    background: #212121;
}

/* START Hide options Section Cup */
.product-suction-cup .size-section, 
.product-suction-cup .firmness-section {
    display: none!important;
}
/* END Hide options Section Cup */

.attachment-section .option-card.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.attachment-section .size-restriction-message {
    color: #ff7373;
    font-size: 0.9em;
    margin-top: 10px;
    font-style: italic;
}

.size-restriction-message {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-icon {
    cursor: help;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #ff7373;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    font-style: normal;
    font-weight: bold;
}

.info-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    background: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 12px;
    width: max-content;
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 100;
    font-style: normal;
    font-weight: normal;
    line-height: 1.4;
}

.info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Desktop hover */
@media (min-width: 768px) {
    .info-icon:hover .info-tooltip {
        opacity: 1;
        visibility: visible;
    }
}

/* Mobile touch */
@media (max-width: 767px) {
    .info-icon.active .info-tooltip {
        opacity: 1;
        visibility: visible;
    }
    .product-specifications {
        padding: 0 .5rem;
    }
    .about-product {
        padding: 0 1rem;
    }
    .product-reviews {
        margin-left: .5rem;
        margin-right: .5rem;
    }
    .product-single__options {
        padding-top: 1rem; 
    }
}

.product-specifications {
    margin: 8rem 0;
}



/* START GOBLIN KING Measurements */
.product-goblin-king .img-value-total_length {
    top: 45%;
    left: -10%;
    position: absolute;
}

.product-goblin-king .img-value-usable_length {
    top: 32%;
    right: 8%;
    position: absolute;
}

.product-goblin-king .img-value-head_circumference {
    top: 9%;
    right: 23%;
    position: absolute;
}

.product-goblin-king .img-value-widest_circumference {
    top: 38%;
    right: 12%;
    position: absolute;
}

.product-goblin-king .img-value-base_circumference {
    top: 62%;
    right: 14%;
    position: absolute;
}

.product-goblin-king .measurement-images.showing-cm .img-value-total_length {
    left: -18% !important;
}

.product-goblin-king .measurement-images.showing-cm .img-value-usable_length {
    right: -2% !important;
}

.product-goblin-king .measurement-images.showing-cm .img-value-head_circumference {
    right: 14% !important;
}

.product-goblin-king .measurement-images.showing-cm .img-value-widest_circumference {
    right: 3% !important;
}

.product-goblin-king .measurement-images.showing-cm .img-value-base_circumference {
    right: 8% !important;
}
/* END GOBLIN KING Measurements */

/* ------------------------ START - Measurements Mobile Only ------------------------ */
@media (max-width: 767px) {
    
/* START BIG HEAD Measurements - OK */ 
.product-big-head-dildo .img-value-total_length {
    top: 45%;
    left: -11%;
    position: absolute;
}

.product-big-head-dildo .img-value-usable_length {
    top: 26%;
    right: -3%;
    position: absolute;
}

.product-big-head-dildo .img-value-head_circumference {
    top: 10%;
    right: 9%;
    position: absolute;
}

.product-big-head-dildo .img-value-widest_circumference {
    top: 35%;
    right: 2%;
    position: absolute;
}

.product-big-head-dildo .img-value-base_circumference {
    top: 52%;
    right: 0%;
    position: absolute;
}

.product-big-head-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -50% !important;
}

.product-big-head-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: -40% !important;
}

.product-big-head-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: -12% !important;
}

.product-big-head-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: -22% !important;
}

.product-big-head-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: -26% !important;
}
/* END BIG HEAD Measurements */

/* START GLIZZY Measurements */
.product-glizzy-dildo .img-value-total_length {
    top: 38%;
    left: -10%;
    position: absolute;
}

.product-glizzy-dildo .img-value-usable_length {
    top: 30%;
    right: -13%;
    position: absolute;
}

.product-glizzy-dildo .img-value-head_circumference {
    top: 4%;
    right: 0%;
    position: absolute;
}

.product-glizzy-dildo .img-value-widest_circumference {
    top: 33%;
    right: 0%;
    position: absolute;
}

.product-glizzy-dildo .img-value-base_circumference {
    top: 63%;
    right: 0%;
    position: absolute;
}

.product-glizzy-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -52% !important;
}

.product-glizzy-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: -42% !important;
}

.product-glizzy-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: -30% !important;
}

.product-glizzy-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: -28% !important;
}

.product-glizzy-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: -28% !important;
}
/* END GLIZZY Measurements */

/* START RED ROCKET Measurements */
.product-red-rocket-dildo .img-value-total_length {
    top: 43%;
    left: -14%;
    position: absolute;
}

.product-red-rocket-dildo .img-value-usable_length {
    top: 33%;
    right: -4%;
    position: absolute;
}

.product-red-rocket-dildo .img-value-head_circumference {
    top: 8%;
    right: 8%;
    position: absolute;
}

.product-red-rocket-dildo .img-value-widest_circumference {
    top: 42%;
    right: 3%;
    position: absolute;
}

.product-red-rocket-dildo .img-value-base_circumference {
    top: 65%;
    right: 1%;
    position: absolute;
}

.product-red-rocket-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -55% !important;
}

.product-red-rocket-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: -32% !important;
}

.product-red-rocket-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: -10% !important;
}

.product-red-rocket-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: -16% !important;
}

.product-red-rocket-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: -22% !important;
}
/* END RED ROCKET Measurements */


/* START SEA MONSTER Measurements */
.product-sea-monster-dildo .img-value-total_length {
    top: 45%;
    left: -7%;
    position: absolute;
}

.product-sea-monster-dildo .img-value-usable_length {
    top: 35%;
    right: 3%;
    position: absolute;
}

.product-sea-monster-dildo .img-value-head_circumference {
    top: 9%;
    right: 8%;
    position: absolute;
}

.product-sea-monster-dildo .img-value-widest_circumference {
    top: 36%;
    right: 6%;
    position: absolute;
}

.product-sea-monster-dildo .img-value-base_circumference {
    top: 65%;
    right: 5%;
    position: absolute;
}

.product-sea-monster-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -50% !important;
}

.product-sea-monster-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: -32% !important;
}

.product-sea-monster-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: -20% !important;
}

.product-sea-monster-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: -22% !important;
}

.product-sea-monster-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: -22% !important;
}
/* END SEA MONSTER Measurements */


/* START HORSE Measurements */
.product-horse-dildo .img-value-total_length {
    top: 45%;
    left: -11%;
    position: absolute;
}

.product-horse-dildo .img-value-usable_length {
    top: 32%;
    right: -3%;
    position: absolute;
}

.product-horse-dildo .img-value-head_circumference {
    top: 3%;
    right: 6%;
    position: absolute;
}

.product-horse-dildo .img-value-widest_circumference {
    top: 38%;
    right: 4%;
    position: absolute;
}

.product-horse-dildo .img-value-base_circumference {
    top: 59%;
    right: 0%;
    position: absolute;
}

.product-horse-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -50% !important;
}

.product-horse-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: -34% !important;
}

.product-horse-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: -18% !important;
}

.product-horse-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: -18% !important;
}

.product-horse-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: -20% !important;
}
/* END HORSE Measurements */  


/* START HORSE WITH PIERCING Measurements */
.product-horse-with-piercing-dildo .img-value-total_length {
    top: 41%;
    left: -12%;
    position: absolute;
}

.product-horse-with-piercing-dildo .img-value-usable_length {
    top: 31%;
    right: -4%;
    position: absolute;
}

.product-horse-with-piercing-dildo .img-value-head_circumference {
    top: 4%;
    right: 1%;
    position: absolute;
}

.product-horse-with-piercing-dildo .img-value-widest_circumference {
    top: 38%;
    right: 2%;
    position: absolute;
}

.product-horse-with-piercing-dildo .img-value-base_circumference {
    top: 58%;
    right: 0%;
    position: absolute;
}

.product-horse-with-piercing-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -50% !important;
}

.product-horse-with-piercing-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: -34% !important;
}

.product-horse-with-piercing-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: -18% !important;
}

.product-horse-with-piercing-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: -18% !important;
}

.product-horse-with-piercing-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: -20% !important;
}
/* END HORSE WITH PIERCING Measurements */ 

/* START BUT PLUG Measurements */
.product-butt-plug .img-value-total_length {
    top: 40%;
    left: -13%;
    position: absolute;
}

.product-butt-plug .img-value-usable_length {
    top: 34%;
    right: -11%;
    position: absolute;
}

.product-butt-plug .img-value-head_circumference {
    top: 3%;
    right: 0%;
    position: absolute;
}

.product-butt-plug .img-value-widest_circumference {
    top: 28%;
    right: -12%;
    position: absolute;
}

.product-butt-plug .img-value-base_circumference {
    top: 48%;
    right: -13%;
    position: absolute;
}

.product-butt-plug .measurement-images.showing-cm .img-value-total_length {
    left: -50% !important;
}

.product-butt-plug .measurement-images.showing-cm .img-value-usable_length {
    right: -50% !important;
}

.product-butt-plug .measurement-images.showing-cm .img-value-head_circumference {
    right: -30% !important;
    top: -66% !important;
}

.product-butt-plug .measurement-images.showing-cm .img-value-widest_circumference {
    right: -50% !important;
}

.product-butt-plug .measurement-images.showing-cm .img-value-base_circumference {
    right: -60% !important;
}
/* END BUT PLUG Measurements */  


/* START THE END ZONE Measurements */  
.product-the-end-zone .img-value-total_length {
    top: 43%;
    left: -9%;
    position: absolute;
}

.product-the-end-zone .img-value-usable_length {
    top: 26%;
    right: -3%;
    position: absolute;
}

.product-the-end-zone .img-value-head_circumference {
    top: 6%;
    right: 7%;
    position: absolute;
}

.product-the-end-zone .img-value-widest_circumference {
    top: 30%;
    right: 1%;
    position: absolute;
}

.product-the-end-zone .img-value-base_circumference {
    top: 54%;
    right: 3%;
    position: absolute;
}

.product-the-end-zone .measurement-images.showing-cm .img-value-total_length {
    left: -50% !important;
}

.product-the-end-zone .measurement-images.showing-cm .img-value-usable_length {
    right: -40% !important;
}

.product-the-end-zone .measurement-images.showing-cm .img-value-head_circumference {
    right: -24% !important;
    top: -56% !important;
}

.product-the-end-zone .measurement-images.showing-cm .img-value-widest_circumference {
    right: -36% !important;
}

.product-the-end-zone .measurement-images.showing-cm .img-value-base_circumference {
    right: -30% !important;
}
/* END THE END ZONE Measurements */  


/* START GOBLIN KING Measurements */
.product-goblin-king .img-value-total_length {
    top: 43%;
    left: -5%;
    position: absolute;
}

.product-goblin-king .img-value-usable_length {
    top: 32%;
    right: 4%;
    position: absolute;
}

.product-goblin-king .img-value-head_circumference {
    top: 6%;
    right: 17%;
    position: absolute;
}

.product-goblin-king .img-value-widest_circumference {
    top: 35%;
    right: 8%;
    position: absolute;
}

.product-goblin-king .img-value-base_circumference {
    top: 56%;
    right: 10%;
    position: absolute;
}

.product-goblin-king .measurement-images.showing-cm .img-value-total_length {
    left: -48% !important;
}

.product-goblin-king .measurement-images.showing-cm .img-value-usable_length {
    right: -30% !important;
}

.product-goblin-king .measurement-images.showing-cm .img-value-head_circumference {
    right: -14% !important;
}

.product-goblin-king .measurement-images.showing-cm .img-value-widest_circumference {
    right: -26% !important;
}

.product-goblin-king .measurement-images.showing-cm .img-value-base_circumference {
    right: -18% !important;
}
/* END GOBLIN KING Measurements */



/* START THE BULLET Measurements */
.product-the-bullet-dildo .img-value-total_length {
    top: 43%;
    left: -12%;
    position: absolute;
}

.product-the-bullet-dildo .img-value-usable_length {
    top: 33%;
    right: -2%;
    position: absolute;
}

.product-the-bullet-dildo .img-value-head_circumference {
    top: 7%;
    right: 9%;
    position: absolute;
}

.product-the-bullet-dildo .img-value-widest_circumference {
    top: 42%;
    right: 4%;
    position: absolute;
}

.product-the-bullet-dildo .img-value-base_circumference {
    top: 61%;
    right: 9%;
    position: absolute;
}

.product-the-bullet-dildo .measurement-images.showing-cm .img-value-total_length {
    left: -10% !important;
}

.product-the-bullet-dildo .measurement-images.showing-cm .img-value-usable_length {
    right: 0% !important;
}

.product-the-bullet-dildo .measurement-images.showing-cm .img-value-head_circumference {
    right: 22% !important;
    top: 11%
}

.product-the-bullet-dildo .measurement-images.showing-cm .img-value-widest_circumference {
    right: 14% !important;
    top: 45%;
}

.product-the-bullet-dildo .measurement-images.showing-cm .img-value-base_circumference {
    right: 14% !important;
}
/* END THE BULLET Measurements */  
}
/* END - Measurements Mobile Only*/


/* Single Product - Measurements Mobile Only*/
/* Controle básico de visibilidade */
@media (min-width: 768px) {
    /* Em desktop */
    .mobile-specs-slider {
        display: none !important;
    }
}

@media (max-width: 767px) {
    /* Em mobile */
    .product-specifications {
        display: none !important;
    }

    .mobile-specs-header {
        display: flex;
        margin-bottom: 20px;
        justify-content: center;
    }

    .mobile-specs-slider {
        margin-left: calc(-1 * var(--bs-gutter-x, 0.75rem));
        margin-right: calc(-1 * var(--bs-gutter-x, 0.75rem));
        width: calc(100% + (var(--bs-gutter-x, 0.75rem) * 2));
        max-width: none;
        padding: 0 !important;
    }

    .mobile-specs-slider .splide {
        margin: 0;
        padding: 0;
    }

    .mobile-specs-product-name {
        
    }

    /* Layout básico do slider */
    .mobile-specs-card {
        padding: 1rem;
        background: #fff;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Botões de medidas */
    .mobile-specs-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .mobile-specs-button {
        width: 100%;
        padding: 0.5rem;
        text-align: left;
        background: none;
        border: 1px solid #ddd;
        border-radius: 4px;
        text-align: center;
        color: #000;
    }

    /* Imagens */
    .mobile-specs-image {
        text-align: center;
        margin: 1rem 0;
    }

    .mobile-specs-image img {
        max-width: 50%;
        height: auto;
    }


    .mobile-specs-splide .splide__arrow {
        background: #000000;
        opacity: 1;
    }

    .mobile-specs-splide .splide__arrow svg {
        fill: #ffffff;
    }

    .mobile-specs-splide .splide__arrow:disabled {
        opacity: .1!important;
    }


    .mobile-specs-slider {
        display: block !important;
        margin: 7rem 0 6rem 0;
        background: none!important;
        padding: 0!important;
    }

    .mobile-specs-size {
        text-align: center;
        font-weight: bold;
        font-size: 1.3rem; 
    }

    .mobile-specs-button.active {
        background: #000!important;
        color: #fff!important;
    }

    .mobile-specs-slider .splide__pagination {
        bottom: -1.5em;
    }

    .mobile-specs-slider .splide__pagination__page.is-active {
        background: #000000;
        transform: scale(1);
        z-index: 1;
        opacity: 1;
        width: 23px;
        border-radius: 50px;
    }

    .mobile-specs-instructions h3 {
        font-weight: bold;
        text-align: center;
        font-size: 1.4rem;
        letter-spacing: -.5px;
    }
}