body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #000;
    color: white;
    margin: 0;
    padding: 0;
}

header {
    background-color: #000;
    padding: 1.5rem 1rem 0.5rem;
    text-align: center;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-left,
.icon-right {
    display: flex;
    align-items: center;
}

.logo-centered {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-logo {
    height: 160px;
}

.nav-links-container {
    margin-top: 1rem;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
}

.nav-links li a:hover::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: white;
}

.cart-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 2rem;
}

h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
}

th,
td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #333;
}

th {
    background-color: #222;
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

button {
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    background-color: #000;
    color: white;
    border: 1px solid #444;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

button:hover {
    background-color: #222;
    transform: scale(1.03);
}

.cart-actions {
    text-align: center;
    margin-top: 2rem;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .main-logo {
        height: 100px;
    }
    th,
    td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    .cart-actions button {
        width: 90%;
    }
}