#cart-icon-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* adicone um ícone de carrinho dentro do botão com uma cor de fundo verde aumentar tamanho do icone*/
#cart-icon {
    background-color: #008000;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;

    svg {
        width: 24px;
        height: 24px;
    }
}

#favorite-icon-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
}

#favorite-icon {
    background-color: #008000;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#favorite-icon svg {
    width: 24px;
    height: 24px;
}

.product-item {
    object-fit: cover !important;
    object-position: center !important;
    background: #FFFFFF;
    border-radius: 16px;
    transition: all 0.3s ease;

    figure img {
        width: 100% !important;
        border-radius: 16px;
        height: 300px !important;
        object-fit: cover !important;
    }
}


@media (max-width: 768px) {
    .product-item {
        width: 100% !important;
        padding: 16px;
        margin-bottom: 16px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    }

    .product-item figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.video-section {
    position: relative;
    width: 100%;
    height: 600px;
    /* Ajuste conforme necessário */
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.default-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    /* Ensure it stays behind the video */
    display: block;
    /* Initially hidden */
}


.conteudo {
    position: relative;
    z-index: 1;
    /* Outros estilos para o conteúdo */
}

/* skelation */


/* Estilo base do Skeleton */
.skeleton {
    background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Simulação de um card */
.skeleton-card {
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
}

.skeleton-text {
    width: 100%;
    height: 16px;
    margin-bottom: 10px;
}

.skeleton-title {
    width: 70%;
    height: 24px;
    margin-bottom: 15px;
}

.skeleton-img {
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
}

.cursor-pointer {
    cursor: pointer;
}

.hover-opacity:hover {
    opacity: 0.8;
    transition: opacity 0.2s;
}

.sticky-top {
    position: sticky;
    top: 20px;
}

@media (max-width: 991px) {
    .sticky-top {
        position: relative;
        top: 0;
    }
}