body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

header {
    background: #e79ab3;
    color: white;
    position: relative;
    z-index: 9999;
}


.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
}

.logo {
    font-size: 28px;
    font-family: "Playfair Display", serif;
}

.logo span {
    font-family: "Pacifico", cursive;
}

.search-box {
    display: flex;
    width: 55%;
}

.search-box input {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 10px 0 0 10px;
    outline: none;
    font-size: 15px;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.search-box button {
    background: white;
    padding: 10px 20px;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    color: #d46f91;
    font-size: 22px;
}

.icons {
    display: flex;
    align-items: center;
    gap: 35px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s ease;
    cursor: pointer;
}
.icon-item:hover span {
    opacity: 0.7;
}
.icon-item span {
    font-size: 13px;
    margin-top: 4px;
}
.icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-bottom: 4px;
}
.icon-circle {
    width: 50px;
    height: 50px;
    background: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    margin-bottom: 6px;
}

.icon-circle img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    opacity: 0.6;

    position: relative;
    top: 1px;
}


.menu {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 15px 0;
    font-size: 16px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.menu a:hover {
    text-decoration: underline;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    border-radius: 6px;
    padding: 8px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.dropdown-content a {
    color: #d46f91;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #f3d0dc;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    text-decoration: underline;
}

.hero-slider {
    position: relative;
    height: 400px;
    background: #faf3e6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;      
    justify-content: center;  
    text-align: center;       
    opacity: 0;
    transition: opacity .5s ease;
}


.slide.active {
    opacity: 1;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid #d97d9a;
    color: #d97d9a;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
}

.arrow.left { left: 30px; }
.arrow.right { right: 30px; }

.dots {
    position: absolute;
    bottom: 35px;
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cfcfcf;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #d97d9a;
}

.arrival-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #d46f8f;
    margin-bottom: 40px;
}
.slide-btn {
    background: #e48aa6;
    color: white;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
    transition: .3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slide-btn:hover {
    transform: scale(1.08);
    background: #d46f8f;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.product-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.product-card {
    position: relative;
    background: #fff;
    padding: 6px;               
    padding-bottom: 75px;
    border-radius: 12px;
    text-align: center;
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    z-index: 1;
    margin-bottom: -20px;
}

.product-card:hover {
    transform: scale(1.3);
    box-shadow: 0px 20px 45px rgba(0,0,0,0.15);
    z-index: 20;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 400;
    color: #444;
    margin: 10px 0;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #d46f8f;
}

.parcel {
    font-size: 12px;
    color: #888;
}


.product-buttons {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: .25s ease;
}
.product-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}


.product-card:hover .product-buttons {
    opacity: 1;
}
.product-card:hover {
    transform: scale(1.07);
    box-shadow: 0px 20px 45px rgba(0,0,0,0.15);
    z-index: 20;
}

.btn-buy {
    background: #e48aa6;
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
}

.btn-view {
    border: 2px solid #e48aa6;
    color: #e48aa6;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;      
    justify-content: center;  
    text-align: center;       
    opacity: 0;
    transition: opacity .5s ease;
    overflow: hidden; 
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;   
    z-index: 0;      
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #333;
}
.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;        
    display: block;
}
.categorias {
    padding: 80px 0;
    text-align: center;
}

.categorias h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #d97d9a;
}

.produtos-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.linha {
    position: relative;
    overflow: hidden;
    margin-bottom: 70px;
}

.linha::before,
.linha::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.linha::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.linha::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.track {
    display: flex;
    gap: 30px;
    cursor: grab;
    user-select: none;
}

.track img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.produto-item {
    min-width: 220px;
    flex-shrink: 0;
    text-align: center;
}

.produto-item img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s ease;
}

.produto-item:hover img {
    transform: scale(1.08);
}

.descricao {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
}

.arrow-prod {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-prod.left { left: 10px; }
.arrow-prod.right { right: 10px; }

.arrow-prod img { width: 18px; }

