* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
header {
    background: #305C72;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}

header img {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    height: auto;
    border-radius: 8px;
}

header h1 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
#nav2{
    padding-top: 20px;
    width:100%;
    height:50%;
    background-color: #60B2A6;
    align-content: center;
    position: relative;
    bottom:40px;
}

#searchh{
    
    bottom:60px;
    width:100%;
    height:80%;
}

.filter-section{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #60B2A6;
    color: #fff;
    height:50px;
}

#searchBar{
    width:50%;
    display: flex;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
}
.all{
    color: black;
    background-color:white;
    font: weight 800px;
    display: flex;
    align-content: center;
    align-self: center;
    height:30px;
    position: relative;
    border-radius:5px;
    cursor: pointer;

}
#all hover{
    background-color:#60B2A6;
    color: #fff;
}
/* #wish{
    cursor: pointer;
    font-weight:bold;
    display: flex;
    align-items: center;
} */

          


/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px;
    margin-left: 120px;
    margin-right: 120px;
}

/* Product Card Style */
.product-card {
    background: #fff;
    border: 1px solid #275556;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card:hover {
    transform: scale(1.05);
}

/* Image Styling */
.product-card img {
    width: 100%; /* Ensure image spans the width of the card */
    height: auto; /* Keep aspect ratio intact */
    max-height: 250px; /* Max height for image */
    object-fit: contain; /* Ensure the whole image is visible */
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

/* Title and Description */
.product-card h2 {
    margin: 10px 0;
    font-size: 1.5rem; /* Increased font size */
    font-weight: bold;
    color: #333;
}

.product-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Price and Rating - Align these to opposite sides */
.product-card .price-rating-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

/* Price Styling */
.product-card .price {
    font-size: 2.5rem; /* Increased font size for price */
    font-weight: bold;
    color: #27ae60; /* Green color for price */
}

.product-card .price .discount {
    font-size: 2rem; /* Slightly smaller for the original price */
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
}

/* Rating Styling */
.product-card .rating {
    font-size: 1rem;
    color: #f39c12; /* Gold color for rating */
    font-weight: bold;
}

/* Button Styling */
button {
    background: #60B2A6;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

button:hover {
    background: #305C72;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: auto;
    margin-bottom: 0;
}

/* Add padding-top to avoid content being hidden behind the fixed header */
body {
    padding-top: 120px; /* Adjust this value to match your header height */
}

/* Other styles remain the same... */

/* Short description and Read More/Show Less button */
/* Other styles remain the same... */

/* Short description and Read More/Show Less button */
.short-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.more-description,
.less-description {
    color: #007bff;
    cursor: pointer;
    font-weight: bold;
}

/* Add hover effect for the Read More / Show Less button */
.more-description:hover,
.less-description:hover {
    text-decoration: underline;
}

