    body {
        background-color: #FAF9F6;
        margin: 0;
        font-family: Arial, Helvetica, sans-serif;
    }

    .logo {
        font-size: 1.9em;
        color: pink;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25); 
    }

    .topnav {
        overflow: hidden;
        background-color: #fb95c8;
    }

    .topnav a {
        float: right;
        color: white;
        padding: 4px 6px;
        text-decoration: none;
        font-size: 13px;
    }

    .navbar {
        text-align: center;
        background-color:#FAF9F6;
    }

    .navbar-buttons {
        display: flex;
        align-items: center;
        margin-left: auto; 
    }

    .navbar a {
        display: block;
        color: #fb95c8;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 22px;
        margin-right: 50px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25); 
    }

    .navbar .btnLogin-popup,
    .btnCart-popup {
        display: flex;;
        align-items: center;
        width: 85px;
        height: 50px;
        background: transparent;
        border: 2.5px solid #fb95c8;
        outline: none;
        border-radius: 20px;
        cursor: pointer;
        font-size: 22px;
        font-weight: 250;
        margin-left: 25px;
        margin-right: 25px;
        color: #fb95c8;
        transition: .1s;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25); 
    }

    .search {
        margin-right: 10px;
        --padding: 10px;
        width: max-content;
        display: flex;
        align-items: right;
        padding: var(--padding);
        border-radius: 100px;
        background: transparent;
        border: 2.5px solid #fb95c8;
        cursor: pointer;
        outline: none;
    }

    .search-input {
        font-size: 16px;
        color: #fb95c8;
        margin-left: var(--padding);
        outline: none;
        border: none;
        background: transparent;
        width: 300;
        font-size: 1.1em;
        font-weight: 500;
        color: #fb95c8;
        transition: .1s;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25); 
    }

    .search-input::placeholder,
    .search-icon {
        color: #fb95c8;
    }

    img {
        max-width: 100%;
        height: auto;
    }
    
    .cropped-image {
        object-fit: cover; 
        width: 100%; 
        height: 700px; 
    }

    .carousel-item {
        overflow: hidden; 
        height: 700px; 
    }

    .card {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        max-width: 350px;
        padding: 10px;
        margin-bottom: 10px;
        margin:auto;
        text-align: center;
        font-family: arial;
    }
    
    .price {
        color: grey;
        font-size: 22px;
    }
    
    .card button {
        border: none;
        outline: 0;
        padding: 12px;
        color: white;
        background-color: #fb95c8;
        text-align: center;
        cursor: pointer;
        width: 100%;
        font-size: 18px;
    }
    
    .card button:hover {
        opacity: 0.7;
    }

    .popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #FAF9F6; 
        padding: 20px;
        border: 2px solid #ccc;
        z-index: 9999;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
        border-radius: 20px;
    }

    .popup h2 {
        color: #fb95c8; 
    }

    .popup p {
        color: #333; 
    }

    .popup button {
        background-color: #fb95c8; 
        color: white; 
        border: none;
        outline: none;
        padding: 10px 20px;
        cursor: pointer;
        margin-top: 10px;
    }

    .popup button:hover {
        opacity: 0.8;
    }

    .popup-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }

    table {
        border-collapse: collapse;
        width: 100%;
        margin: 0 auto;
    }

    th, td {
        border: 1px solid #ccc; 
        text-align: center; 
        padding: 8px;
    }

    .botbar {
        overflow: hidden;
        background-color: #fb95c8;
    }

    .botbar a {
        float: right;
        color: white;
        padding: 4px 6px;
        text-decoration: none;
        font-size: 13px;
    }

