/* === CABEÇALHO DO MENU === */
header.bg-pink {
    background-color: #f9c7a5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Logo */
.logo {
    flex: 1;
    text-align: center;
}
.logo img.logo-img {
    height: 40px;
    transition: transform 0.3s ease;
}
.logo img.logo-img:hover {
    transform: scale(1.05);
}

/* Ícones no Cabeçalho */
.icon-group {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.icon-btn {
    font-size: 1.2rem;
    padding: 8px;
    border: none;
    background: transparent;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.icon-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}
.cart-count, .favorites-count {
    display: none;
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff6b6b;
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 600;
}

/* === MENU LATERAL === */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 320px;
    background: linear-gradient(to bottom, #fff, #f9f9f9);
    z-index: 1050;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
    padding: 20px 15px;
    border-right: 2px solid #f9c7a5;
    scrollbar-width: thin;
    scrollbar-color: #ff9f60 #f9f9f9;
}
.sidebar.active {
    left: 0;
}
.sidebar .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ff9f60;
    background: #fff;
    border: 1px solid #ff9f60;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.sidebar .close-btn:hover {
    background: #ff9f60;
    color: #fff;
}
.sidebar h2 {
    color: #ff6b6b;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #f9c7a5;
    padding-bottom: 10px;
}
.sidebar::-webkit-scrollbar {
    width: 8px;
}
.sidebar::-webkit-scrollbar-thumb {
    background-color: #ff9f60;
    border-radius: 10px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
    background-color: #ff6b6b;
}
.sidebar::-webkit-scrollbar-track {
    background: #f9f9f9;
}

/* Categorias no Menu Lateral */
.category-item {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.category-item i {
    color: #ff9f60;
    font-size: 1.2rem;
}
.category-item a {
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    flex-grow: 1;
}
.category-item:hover {
    background-color: #f9c7a5;
    color: #fff;
    border-color: #ff9f60;
    transform: translateX(5px);
}
.category-item:hover a,
.category-item:hover i {
    color: #fff;
}

/* === RODAPÉ === */
footer.bg-pink {
    background-color: #f9c7a5;
    text-align: center;
    padding: 15px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.social-icon {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.social-icon:hover {
    color: #ff6b6b;
}

/* === MENU MINHA CONTA === */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: linear-gradient(to bottom, #fff, #f9f9f9);
}
.modal-header {
    background-color: #ff9f60;
    color: #fff;
    /* border-bottom: 2px solid #f9c7a5; */
    padding: 20px;
}
.modal-header .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.modal-header .btn-close {
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
.modal-header .btn-close:hover {
    color: #f9f9f9;
}
.modal-body {
    padding: 20px;
    font-size: 1rem;
}
.modal-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
    border: 2px solid #f9c7a5;
    color: #333;
}
.modal-btn:hover {
    background-color: #f9c7a5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.modal-btn i {
    color: #ff9f60;
    margin-right: 10px;
}
.modal-btn:hover i {
    color: #fff;
}
.btn-danger {
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.btn-danger:hover {
    background-color: #ff4e87;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 75, 135, 0.3);
}

/* === BARRA DE PESQUISA === */
.search-bar {
    display: none;
    flex: 3;
    align-items: center;
    background: #fff;
    border-radius: 25px;
    padding: 5px 10px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.search-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 5px;
    background: transparent;
    font-size: 1rem;
    color: #333;
}
.search-btn {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}
.search-btn:hover { color: #ff6b6b; }

/* Responsividade da Barra de Pesquisa */
@media (min-width: 992px) {
    .search-bar {
        display: flex;
    }
}