body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    margin: 0;
    position: absolute;
}


/* header */
.header {
    position: fixed;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    padding: 5px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e1e1e1;
    z-index: 6;
}

.nav-bar-logo img {

    width: 120px;
    height: auto;
}



.category select {
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s;
}

.category select:focus {
    border-color: #007bff;
    outline: none;
}

.search-container {
    flex: 1;
}

#search-btn {
    flex: 0.3;
}

.search {
    flex: 1;
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
}

.search input[type="text"] {
    flex: 2;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.search input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
}

.search button {
    flex: 1;
    padding: 10px;
    margin-left: 10px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search button:hover {
    background-color: #0056b3;
}

#search-results {
    margin-top: 10px;
}





/*product container*/

.product-section-item-wrapper {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    gap: 2px;
    flex-wrap: wrap;
    margin: 20px;
    margin-top: 50px;
    margin-bottom: 0px;
    margin-right: 30px;

}
.service-link{
    text-decoration: none;
}

.product-item {
    width: 250px;
    max-width: 280px;
    border-radius: 7px;
    margin: 10px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}

.product-image {
    background: transparent;
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    
   
}

.product-image img {
    overflow: hidden;
    object-fit: cover;
    height: 100%;
    
    border-radius: 10px;
}

.product-text {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: left;

}
.product-text .service-name{
    text-align: left;
    
}

.product-title {
    color: rgb(50, 50, 50);
    font-size: 16px;
    font-weight: 500;
    
}

.product-purchace {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: auto;
}

.product-price {
    color: rgb(219, 55, 5);
    font-size: 22px;
    font-weight: bold;
}

.add-to-cart {
    padding: 7px 21px;
    border-radius: 7px;
    font-size: 16px;
}

.blue-btn {
    background-color: rgb(65, 105, 255);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.blue-btn:hover {
    background-color: rgb(102, 136, 240);
}


.pagination{
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
   font-size: 20px;
   font-weight: 500;
}
.pagination a{
    text-decoration: none;
}

.account-icon{
    margin-right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.account-icon p{
    font-size: 0px;
}

/* Container for account icon and dropdown */
.account-container {
    position: relative;
    display: inline-block;
}

/* Account icon styling */
.account-icon img {
    cursor: pointer;
}

/* Dropdown menu styling */
.dropdown-menu {
    display: none; /* Initially hidden */
    position: absolute;
    top: 100%; /* Position below the icon */
    right: 0; /* Align to the right of the icon */
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    padding: 20px;
}

/* Links inside the dropdown */
.dropdown-menu a {
    display: block;
    padding: 10px;
    padding-left: 5px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    
}
.dropdown-menu img{
    margin-right: 15px;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0; /* Highlight on hover */
}

/* Show dropdown on hover */
.account-container:hover .dropdown-menu {
    display: block;
}
.nav-bar-link li{
    display: flex;
    align-items: center;
}
.nav-bar-link a{
    text-decoration: none;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    
}
.nav-sp-link{
    color: rgb(64, 105, 225);
}

.nav-sp-link:hover{
    color: rgb(64,64,64);
}

.nav-bar-link {
    display: flex;
    align-items: center;
}

.nav-bar-link ul {
    list-style: none;
    display: flex;
}

.nav-bar-link li {
    margin-left: 0px;
}
.nav-bar-link button {
    margin-left: 60px;
    padding: 8px 20px;
    border-radius: 7px;
}
