:root {
    --cor-primaria: #d63384;
    /* Rosa forte Bootstrap */
    --cor-secundaria: #ffe4ee;
    /* Rosa claro pastel */
    --cor-texto: #555;
    --cor-fundo: #fffafc;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
}

/* Navbar Customizada */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-link {
    color: #666;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--cor-primaria);
}

/* Botão Toggler (Burger) na Esquerda */
.navbar-toggler {
    border-color: var(--cor-primaria);
    margin-right: 15px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(214, 51, 132, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section (Banner) */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('https://images.unsplash.com/photo-1459411552884-841db9b3cc2a?q=80&w=2449&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid var(--cor-secundaria);
}

/* Imagens de Logo */
.logo-navbar {
    height: 50px;
    width: auto;
}

.logo-hero {
    max-width: 300px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    /* mix-blend-mode: multiply; Opcional: ajuda a mesclar o fundo branco da imagem se o fundo do site for levemente diferente */
}

.logo-footer {
    max-width: 180px;
    margin-bottom: 20px;
}

/* Títulos das Seções */
.section-title {
    color: var(--cor-primaria);
    border-bottom: 2px solid var(--cor-secundaria);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 40px;
    margin-top: 60px;
}

/* Cards de Produto */
.card-produto {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    height: 100%;
}

.card-produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(214, 51, 132, 0.15);
}

.card-img-wrapper {
    height: 250px;
    overflow: hidden;
    background-color: var(--cor-secundaria);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-primaria);
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-produto:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    color: var(--cor-primaria);
    font-weight: 600;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.btn-comprar {
    background-color: var(--cor-primaria);
    color: white;
    border-radius: 25px;
    padding: 8px 25px;
    border: none;
    transition: background 0.3s;
}

.btn-comprar:hover {
    background-color: #b02a6b;
    color: white;
}

/* Botão Veja Mais */
.btn-veja-mais {
    color: var(--cor-primaria);
    border: 2px solid var(--cor-primaria);
    border-radius: 30px;
    padding: 10px 35px;
    font-weight: 600;
    margin-top: 40px;
    transition: all 0.3s ease;
    background-color: transparent;
    text-decoration: none;
    display: inline-block;
}

.btn-veja-mais:hover {
    background-color: var(--cor-primaria);
    color: #fff;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--cor-secundaria);
    color: var(--cor-primaria);
    padding: 40px 0;
    margin-top: 80px;
}

/* Botão Whatsapp Flutuante */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.float-wa:hover {
    background-color: #128C7E;
    color: #fff;
}

/* Estilos da Página de Produto */
.breadcrumb-item a {
    color: var(--cor-primaria);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #999;
}

/* Galeria / Carrossel */
.carousel-item img {
    border-radius: 15px;
    cursor: zoom-in;
    /* Indica que é clicável */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--cor-primaria);
}

/* Detalhes do Produto */
.product-title {
    color: var(--cor-primaria);
    font-weight: 700;
    margin-bottom: 10px;
}

.product-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.product-price small {
    font-size: 1rem;
    color: #777;
    font-weight: normal;
}

.btn-comprar-grande {
    background-color: #25d366;
    /* Verde Whatsapp */
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;
    display: block;
}

.btn-comprar-grande:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.info-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    margin-top: 20px;
}

.info-label {
    color: var(--cor-primaria);
    font-weight: 600;
}

/* Estilo Personalizado para as Setas do Carrossel */
.custom-carousel-control {
    background-color: var(--cor-primaria);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, background-color 0.2s;
}

.custom-carousel-control:hover {
    transform: scale(1.1);
    background-color: #b02a6b;
}

.custom-carousel-control i {
    color: white;
    font-size: 18px;
    margin-top: 2px;
}

.custom-carousel-control .fa-chevron-left {
    margin-right: 2px;
}

.custom-carousel-control .fa-chevron-right {
    margin-left: 2px;
}

/* Modal de Zoom */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    border: none;
}

.btn-close-white {
    background-color: white;
    opacity: 1;
    border-radius: 50%;
    padding: 10px;
}

.modal-body img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel-item img {
        height: 350px;
    }
}

/* Estilos Específicos do Catálogo ADAPTADOS */

/* Barra de Pesquisa */
.search-container {
    position: relative;
    margin-bottom: 30px;
}

.search-input {
    border-radius: 50px;
    padding: 12px 20px 12px 45px;
    border: 2px solid var(--cor-secundaria);
    width: 100%;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 0.2rem rgba(214, 51, 132, 0.1);
}

.search-button {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cor-primaria);
    background: none;
    border: none;
    padding: 0;
    z-index: 10;
    transition: color 0.3s;
}

.search-button:hover {
    color: #b02a6b;
}

.search-icon {
    /* Icon styles can be simple now */
}

/* Filtros Laterais */
.filter-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.filter-title {
    color: var(--cor-primaria);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
    cursor: pointer;
    /* Indica que é clicável */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Efeito de rotação na seta quando colapsado */
.filter-title[aria-expanded="false"] .fa-chevron-up {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.filter-title .fa-chevron-up {
    transition: transform 0.3s;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    /* Alinha ícone e texto verticalmente */
    justify-content: flex-start;
    /* Alinha tudo à esquerda */
}

.category-item i {
    width: 25px;
    /* Largura fixa para alinhar textos */
    text-align: center;
    margin-right: 10px;
    /* Espaço entre ícone e texto */
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover,
.category-item.active {
    color: var(--cor-primaria);
    font-weight: 600;
}

/* Mensagem de "Nenhum produto encontrado" */
.no-results {
    display: none;
    text-align: center;
    padding: 40px;
    color: #999;
}

.page-link {
    color: var(--cor-primaria);
    border: none;
    margin: 0 5px;
    border-radius: 5px;
}

.page-link:hover {
    color: #fff;
    background-color: var(--cor-secundaria);
}

.page-item.active .page-link {
    background-color: var(--cor-primaria);
    border-color: var(--cor-primaria);
    color: white;
}

.logo-contato {
    color: var(--cor-primaria);
}