

/* ==========================================================================
   FAMILIA DE PRODUTO
========================================================================== */
   
/* Container dos botões */
/*.category-buttons-container {*/
/*    display: flex;*/
/*    overflow-x: auto;*/
/*    gap: 20px;*/
/*    padding: 20px;*/
/*    white-space: nowrap;*/
/*    -webkit-overflow-scrolling: touch;*/
/*    scroll-behavior: smooth;*/
/*}*/

/* Estilo dos botões de categoria */
/*.category-button {*/
/*    padding: 15px 30px;*/
/*    font-size: 18px;*/
/*    border-radius: 25px;*/
/*    background: white;*/
/*    border: 2px solid #eee;*/
/*    color: #666;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*    min-width: 120px;*/
/*    text-align: center;*/
/*    box-shadow: 0 2px 4px rgba(0,0,0,0.05);*/
/*    user-select: none;*/
/*    -webkit-tap-highlight-color: transparent;*/
/*}*/

/* Estado ativo do botão */
/*.category-button.active {*/
/*    background: #007bff;*/
/*    color: white;*/
/*    border-color: #007bff;*/
/*    font-weight: 500;*/
/*}*/

/* Efeito hover (para dispositivos que suportam) */
/*@media (hover: hover) {*/
/*    .category-button:hover {*/
/*        transform: translateY(-1px);*/
/*        box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
/*    }*/
/*}*/

/* Efeito de pressionar o botão */
/*.category-button:active {*/
/*    transform: translateY(1px);*/
/*    box-shadow: 0 1px 2px rgba(0,0,0,0.1);*/
/*}*/

/* Ajustes específicos para tablets */
/*@media (min-width: 768px) and (max-width: 1024px) {*/
/*    .category-button {*/
/*        padding: 18px 35px;*/
/*        font-size: 20px;*/
/*        min-width: 140px;*/
/*    }*/
    
/*    .category-buttons-container {*/
/*        gap: 25px;*/
/*        padding: 25px;*/
/*    }*/
/*}*/



/* ==========================================================================
   Card 
   ========================================================================== */
/* Estilos para o container principal dos cards */
/* Opção 1: Flat Design com Sombras Suaves */
/*.product-card-minimal {*/
/*    background: white;*/
/*    border-radius: 12px;*/
/*    padding: 1.5rem;*/
/*    transition: all 0.3s ease;*/
/*    position: relative;*/
/*    box-shadow: 0 2px 10px rgba(0,0,0,0.05);*/
/*    cursor: pointer;*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.product-card-minimal:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
/*}*/

/*.product-card-minimal .add-button {*/
/*    position: absolute;*/
/*    top: 1rem;*/
/*    right: 1rem;*/
/*    background: #4CAF50;*/
/*    color: white;*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.product-card-minimal .add-button:hover {*/
/*    transform: scale(1.1);*/
/*    background: #45a049;*/
/*}*/

/*.product-card-minimal .image-container {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.product-card-minimal .product-image {*/
/*    max-height: 200px;*/
/*    object-fit: contain;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.product-card-minimal:hover .product-image {*/
/*    transform: scale(1.05);*/
/*}*/

/*.product-card-minimal .product-info {*/
/*    text-align: center;*/
/*}*/

/*.product-card-minimal .price {*/
/*    font-size: 1.25rem;*/
/*    font-weight: bold;*/
/*    color: #2196F3;*/
/*    margin-bottom: 0.5rem;*/
/*}*/

/*.product-card-minimal .product-name {*/
/*    font-size: 1rem;*/
/*    color: #333;*/
/*    margin-bottom: 0.5rem;*/
/*}*/

/*.product-card-minimal .stock {*/
/*    font-size: 0.875rem;*/
/*    color: #666;*/
/*}*/

/* Opção 2: Design Neumórfico */
/*.product-card-minimal {*/
/*    background: #f0f0f0;*/
/*    border-radius: 15px;*/
/*    padding: 1.5rem;*/
/*    position: relative;*/
/*    box-shadow: 8px 8px 15px #d1d1d1, */
/*                -8px -8px 15px #ffffff;*/
/*    cursor: pointer;*/
/*    margin-bottom: 1rem;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.product-card-minimal:hover {*/
/*    box-shadow: 12px 12px 20px #d1d1d1, */
/*                -12px -12px 20px #ffffff;*/
/*}*/

/*.product-card-minimal .add-button {*/
/*    position: absolute;*/
/*    top: 1rem;*/
/*    right: 1rem;*/
/*    background: linear-gradient(145deg, #f0f0f0, #cacaca);*/
/*    color: #4CAF50;*/
/*    width: 35px;*/
/*    height: 35px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    box-shadow: 3px 3px 6px #d1d1d1, */
/*                -3px -3px 6px #ffffff;*/
/*}*/

/*.product-card-minimal .add-button:hover {*/
/*    background: linear-gradient(145deg, #cacaca, #f0f0f0);*/
/*}*/

/* Opção 3: Design Minimalista com Bordas */
/*.product-card-minimal {*/
/*    background: white;*/
/*    border: 2px solid #eee;*/
/*    border-radius: 8px;*/
/*    padding: 1.5rem;*/
/*    position: relative;*/
/*    transition: all 0.3s ease;*/
/*    cursor: pointer;*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.product-card-minimal:hover {*/
/*    border-color: #2196F3;*/
/*}*/

/*.product-card-minimal .add-button {*/
/*    position: absolute;*/
/*    top: -10px;*/
/*    right: -10px;*/
/*    background: #2196F3;*/
/*    color: white;*/
/*    width: 32px;*/
/*    height: 32px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: all 0.2s ease;*/
/*    border: 2px solid white;*/
/*    box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
/*}*/

/*.product-card-minimal .add-button:hover {*/
/*    background: #1976D2;*/
/*    transform: rotate(90deg);*/
/*}*/

/*.product-card-minimal .product-info {*/
/*    border-top: 1px solid #eee;*/
/*    margin-top: 1rem;*/
/*    padding-top: 1rem;*/
/*}*/

/* Estilos comuns para todas as opções */
/*.plus-icon {*/
/*    font-size: 1.2rem;*/
/*    font-weight: bold;*/
/*}*/

/*.product-image {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*}*/

/*.stock i {*/
/*    color: #666;*/
/*    margin-right: 5px;*/
/*}*/


/* Estilo base do card */
.product-card-minimal {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    margin-bottom: 1rem;
}

.product-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Botão de adicionar */
.product-card-minimal .add-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4CAF50;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.product-card-minimal .add-button:hover {
    transform: scale(1.1);
    background: #45a049;
}

/* Container da imagem */
.product-card-minimal .image-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

/* Imagem do produto */
.product-card-minimal .product-image {
    max-width: 100%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.product-card-minimal:hover .product-image {
    transform: scale(1.05);
}

/* Fallback para imagem não disponível */
.product-card-minimal .image-container:empty::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('app/images/no-image-icon.png');
    background-size: 60% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

/* Informações do produto */
.product-card-minimal .product-info {
    text-align: center;
}

.product-card-minimal .price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2196F3;
    margin-bottom: 0.5rem;
}

.product-card-minimal .product-name {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-card-minimal .stock {
    font-size: 0.875rem;
    color: #666;
}

.product-card-minimal .stock i {
    color: #666;
    margin-right: 5px;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
    .product-card-minimal {
        padding: 1rem;
    }
    
    .product-card-minimal .image-container {
        height: 150px;
    }
    
    .product-card-minimal .product-image {
        max-height: 130px;
    }
    
    .product-card-minimal .price {
        font-size: 1.1rem;
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .product-card-minimal .image-container {
        height: 140px;
    }
    
    .product-card-minimal .product-image {
        max-height: 120px;
    }
    
    .product-card-minimal .price {
        font-size: 1rem;
    }
    
    .product-card-minimal .product-name {
        font-size: 0.9rem;
    }
}

/* Estilo para produtos indisponíveis */
.product-card-minimal.unavailable {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
    background: #f8f9fa;
}

.product-card-minimal.unavailable::before {
    content: 'INDISPONÍVEL';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(255, 59, 48, 0.9);
    color: white;
    padding: 5px 20px;
    font-weight: bold;
    z-index: 2;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.product-card-minimal.unavailable .image-container {
    opacity: 0.5;
}

.product-card-minimal.unavailable .product-info {
    opacity: 0.7;
}

.product-card-minimal.unavailable .add-button {
    display: none;
}

/* Estilo alternativo com faixa em vez de texto central */
.product-card-minimal.unavailable-ribbon {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

.product-card-minimal.unavailable-ribbon::before {
    content: 'INDISPONÍVEL';
    position: absolute;
    top: 25px;
    right: -35px;
    transform: rotate(45deg);
    background: #ff3b30;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Estilo para estoque baixo (opcional) */
.product-card-minimal.low-stock .stock {
    color: #ff9500;
}

.product-card-minimal.low-stock .stock i {
    color: #ff9500;
}

/* Ajustes responsivos para produtos indisponíveis */
@media (max-width: 768px) {
    .product-card-minimal.unavailable::before {
        font-size: 0.9rem;
        padding: 4px 15px;
    }
    
    .product-card-minimal.unavailable-ribbon::before {
        font-size: 0.7rem;
        padding: 4px 30px;
    }
}