.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4eee8;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 90px;
    /*font-size: 32px;*/
}
.navbar-left,
.navbar-right {
    display: flex;
    list-style-type: none;
    margin: 10px;
    padding: 30px;
    gap: 20px;
}
.nav-logo .logo-text {
    font-size: 36px;
    font-weight: bold;
    color: black;
    text-decoration: none;
    font-family: 'Georgia', serif;
}
.homepage header {
    padding-top: 80px;
    text-align: center;
}
.navitem a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 36px;
}

.navitem a:hover:not(.active) {
    background-color: #a18a7f;
}
.material-icons {
    vertical-align: middle;
    font-size: 34px;
    margin-right: 10px;
    line-height: 1;
}
/*products------------------------------------------------*/
.products {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding: 120px 10px 0;
    gap: 50px;
    justify-content: center;
}
.Pcard {

    border: 3px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    background: pink;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 620px;

}
.price {
    color: black;
    font-size: 25px;
    margin: 0px 0;
}
.Pcard img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.2s ease;
    padding-top: 10px;
}
.Pcard img:hover {
    transform: scale(1.20);
}
.Pcard .content {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
}
.Pcard button {
    border: none;
    padding: 8px 12px;
    color: white;
    background-color: #e91e63;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    border-radius: 7px;

}
.Pcard button:hover {
    opacity: 0.7;
}
.Pcard select {
    width: 90%;
    padding-bottom: 10px;
    margin: 10px 0;
    border-radius: 6px;
    font-size: 16px;
    outline: none;

}
.Pcard select {
    outline: none;
    border-color: #a18a7f;
}
/*shade menu------------------------------------------------*/
.Shade {
    background: pink;
    padding: 15px;
    border-radius: 10px;
    font-size: 25px;
    min-width: 1px;
}
.Shade option{
    color: pink;
    padding: 10px;
}

/*Category------------------------------------------------*/
.category {
    margin-bottom: 40px;
}
.category h2 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}
/*Cart--------------------------------------------------*/
.cart-container {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #f9e3ec;
    font-size:14pt;
    box-shadow: 2px 2px 5px black;
}


.cart-table {
    width: 100%;
    margin-top: 120px;
    background-color: white;
}

.cart-table th,
.cart-table td {
    border: 2px solid #ddd;
    padding: 10px;
    text-align: center;
}
.cart-table th {
    background-color: #f8f8f8;
    font-weight: bold;
}

div.content {
    font-family: helvetica;
    background-color: #f8f8f8;
    font-size: 14pt;
    width: 75%;
    margin: 80px auto;
    background-color: #f9e3ec;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px black;
}

/*--------------------------------------------------*/
footer {
    font-size: 10pt;
    color: white;
    padding: 15px;
    background-color: #e1a0b5;
}


.category-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.home .btn {
    padding: 10px 15px;
    background-color: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.category-list a {
    padding: 10px 15px;
    background-color: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.home p {
    font-size: 24px;
}
/*Shade-Match--------------------------------------------------*/
.match button {
    padding: 10px;
    color:white;
    background-color: #e91e63;
    border-radius: 8px;
    transition: background 0.3s;
}
.match,
#result {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}


