.category-header{
    background: linear-gradient(135deg, #E91E63, #AD1457);
    color:white;
    padding:60px 0;
    text-align:center;
}

.category-header h1{
    font-size:40px;
    margin-bottom:10px;
}

.category-header p{
    opacity:0.9;
}

/* FILTERS */

.filters{
    background:#fff;
    padding:20px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.filters .container{
    display:flex;
    gap:15px;
    justify-content:space-between;
    flex-wrap:wrap;
}

.filters input{
    flex:1;
    min-width:200px;
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:10px;
}

.filters select{
    padding:12px 15px;
    border-radius:10px;
    border:1px solid #ddd;
}

/* PRODUCTS GRID */

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
    gap:25px;
    padding:40px 0;
}

/* CARD */

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
    text-align:center;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-card h3{
    margin:10px 0 5px;
}

.product-card p{
    color:#E91E63;
    font-weight:600;
}

.product-card button{
    margin:15px;
    width:80%;
    padding:10px;
    border:none;
    border-radius:10px;
    background:#E91E63;
    color:white;
    cursor:pointer;
}

.product-card button:hover{
    background:#c2185b;
}

/* BACKDROP */
.backdrop{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:none;
    z-index:999;
}

/* SIDEBAR */
.cart-sidebar{
    position:fixed;
    top:0;
    right:-400px;
    width:360px;
    height:100%;
    background:#fff;
    z-index:1000;
    box-shadow:-5px 0 15px rgba(0,0,0,0.2);
    transition:0.3s;
    display:flex;
    flex-direction:column;
}

.cart-sidebar.active{
    right:0;
}

.backdrop.active{
    display:block;
}

/* HEADER */
.cart-header{
    padding:20px;
    background:#E91E63;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cart-header .close{
    cursor:pointer;
    font-size:18px;
}

/* ITEMS */
.cart-items{
    flex:1;
    overflow:auto;
    padding:15px;
}

.cart-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
    border-bottom:1px solid #eee;
    padding-bottom:10px;
}

.cart-item h4{
    font-size:14px;
}

.qty-controls{
    display:flex;
    align-items:center;
    gap:8px;
}

.qty-controls button{
    width:25px;
    height:25px;
    border:none;
    background:#E91E63;
    color:white;
    cursor:pointer;
    border-radius:5px;
}

/* FOOTER */
.cart-footer{
    padding:15px;
    border-top:1px solid #eee;
}

.cart-total{
    font-size:18px;
    font-weight:bold;
    margin-bottom:10px;
}

.btn-abrirCheckout{
    width:100%;
    padding:12px;
    background:#25D366;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

/* MENU */

nav{
    background: linear-gradient(135deg, #E91E63, #AD1457);
}

nav ul{
    display:flex;
    justify-content:center;
    list-style:none;
    flex-wrap:wrap;
}

nav li{
    padding:18px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#ffd6e4;
}

.logo a{
    text-decoration: none;
    color: inherit;
}

a{
    text-decoration: none;
}

.logo a{
    text-decoration: none;
    color: #E91E63;
    font-weight: 700;
    font-size: 28px;
}

.btn-finalizar{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg, #25D366, #1ebe5d);
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    margin-top:10px;
}

.btn-finalizar:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(37,211,102,0.3);
}