* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #111;
    color: #fff;
}

header {
    background: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #e91e63;
}

.cart a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product {
    background: #1c1c1c;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.product img {
    width: 100%;
    border-radius: 10px;
}

.product button {
    margin-top: 10px;
    padding: 10px;
    background: #e91e63;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.product button:hover {
    background: #ff2f7a;
}
.image-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-slider img {
    width: 100%;
    display: none;
    transition: transform 0.3s ease;
}

.image-slider img.active {
    display: block;
}

.image-slider:hover img.active {
    transform: scale(1.1);
}

/* SETAS */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 18px;
    padding: 8px 12px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.image-slider:hover .arrow {
    opacity: 1;
}

.arrow.left {
    left: 5px;
}

.arrow.right {
    right: 5px;
}
