.nav-links a:first-child {
    color: #FFB800;
}

.menu-section {
    background-color: #0F0F0F;
    padding: 100px 20px;
    text-align: center;
}

.categories-container {
    max-width: 1180px;
    margin: auto;
    display: flex;
    gap: 26px;
    padding-bottom: 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
}

.categories-container a:first-child {
    color: #FFB800;
}

.categories-container a:not(:first-child) {
    filter: brightness(50%);
}

.categories-container a:not(:first-child):hover {
    filter: none;
}

.category-card {
    border: 2px solid #3f3d3d;
    min-width: 174px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
}

.categories-container a {
    text-decoration: none;
    text-wrap: nowrap;
    color: #ffff;
    font-weight: 400;
}

.categories-container a:hover {
    color: #FFB800;
}

.menu-section img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
}
  
.categories-container:hover::-webkit-scrollbar-thumb {
    background: #3f3d3d;
    border-radius: 10px;
}

.category {
    padding: 100px 20px;
    text-align: center;
    letter-spacing: 10px;
    font-size: 40px;
    font-weight: 600;
    color: #FFB800;
}

.products-container {
    max-width: 1260px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.product-card {
    border: 2px solid #3f3d3d;
    padding: 40px;
    border-radius: 10px;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.product-card:hover .product-name{
    color: #D1AB47;
}

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

.product-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-name {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    height: 60px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
}

.product-description{
    font-size: 18px;
    font-weight: 300;
    height: 81px;
}

.product-button {
    background-color: #D1AB47;
    font: inherit;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    padding: 8px 60px;
    cursor: pointer;
    width: 100%;
}

.product-button:hover{
    background-color: #9b7a28;
    font-weight: 600;
}