.product-header {
    background: #272727;
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.container-first {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.product-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Nome do Produto */
.product-name {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Links das Âncoras */
.anchors {
    display: flex;
    align-items: center;
    gap: 30px;
}

.anchors a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    font-weight: 600;
    transition: color 0.3s;
}

.anchors a:hover {
    color: #FFD700;
}

.anchors .order-button {
    background: #FFD700;
    color: #1c1c1c;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    border: 1px solid #dbdbdb;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
    flex-shrink: 0;
}

.anchors .order-button:hover {
    background: #ffde4a;
    color: #1c1c1c;
}


/* Menu Hambúrguer no Mobile */
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
    .anchors {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        background: #272727;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 90%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .anchors.open {
        display: flex;
    }
}
