.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/farm.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero .lead {
    font-size: 1.8rem;
    font-weight: 300;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 1rem;
    margin-bottom: 0;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.2rem;
}

body {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main {
    flex: 1;
}

.navbar {
    padding: 0.5rem 0;
    background-color: rgb(255, 255, 255) !important; /* Slightly transparent Dodger Blue */
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    /* font-weight: 700; */
    color: rgb(0, 0, 0) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    color: rgb(0, 0, 0) !important;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(135, 218, 243, 0.76);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.75rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-nav {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 10px;
        border-radius: 0 0 10px 10px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background-color: rgba(30, 144, 255, 0.1);
    }

    .navbar-collapse {
        max-height: calc(100vh - 56px);
        overflow-y: auto;
    }
}

.navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
}

/* Add this to create a sticky effect */
.navbar.sticky {
    background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

section {
    min-height: auto; /* Remove fixed height */
    padding: 40px 0; /* Reduce padding */
}

.hero {
    background-image: url('../images/farm.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.8rem;
}

#products, #about, #contact {
    padding-top: 60px; /* Reduce top padding */
    padding-bottom: 60px; /* Reduce bottom padding */
}

footer {
    margin-top: auto;
}

#products {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.product-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Add this to prevent content from overflowing */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-icon {
    font-size: 2.5rem;
    color: #1266f1;
    margin: 20px 0;
    text-align: center;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    padding: 0 20px;
}

.product-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 20px;
    flex-grow: 1;
}

.product-features {
    list-style-type: none;
    padding: 20px;
    margin: 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
}

.product-features li:last-child {
    margin-bottom: 0;
}

.product-features li i {
    color: #1266f1;
    margin-right: 10px;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .product-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .product-card {
        height: auto;
    }
}

/* Update existing styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #1266f1;
}

section {
    padding: 40px 0; /* Reduced padding */
}

#gallery {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: #fff;
    text-align: left;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .gallery-item {
        aspect-ratio: 16 / 9;
    }
}

/* About Section */
#about {
    background-color: #f8f9fa;
    padding: 60px 0; /* Reduced from 80px to 60px */
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 250px; /* Reduced from 300px to 250px */
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    bottom: 15px; /* Reduced from 20px to 15px */
    left: 15px; /* Reduced from 20px to 15px */
    background-color: rgba(18, 102, 241, 0.9);
    color: #ffffff;
    padding: 8px 16px; /* Reduced from 10px 20px to 8px 16px */
    border-radius: 25px; /* Reduced from 30px to 25px */
    font-weight: 600;
    font-size: 1rem; /* Reduced from 1.1rem to 1rem */
}

.about-content {
    background-color: #ffffff;
    padding: 30px; /* Reduced from 40px to 30px */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    color: #1266f1;
    font-weight: 700;
    margin-bottom: 15px; /* Reduced from 20px to 15px */
    font-size: 1.8rem; /* Reduced from 2rem to 1.8rem */
}

.about-content p {
    color: #555;
    line-height: 1.6; /* Reduced from 1.8 to 1.6 */
    font-size: 0.95rem; /* Slightly reduced font size */
}

.about-features {
    display: flex;
    justify-content: space-between;
    margin-top: 20px; /* Reduced from 30px to 20px */
    margin-bottom: 20px; /* Reduced from 30px to 20px */
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem; /* Reduced font size */
}

.feature-item i {
    font-size: 1.3rem; /* Reduced from 1.5rem to 1.3rem */
    margin-right: 8px; /* Reduced from 10px to 8px */
}

@media (max-width: 991px) {
    .about-image-container {
        margin-bottom: 20px; /* Reduced from 30px to 20px */
        max-height: 200px; /* Reduced from 250px to 200px for smaller screens */
    }
    
    .about-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-item {
        margin-bottom: 10px; /* Reduced from 15px to 10px */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #about {
        padding: 40px 0; /* Further reduced padding for smaller screens */
    }

    .about-content {
        padding: 20px;
    }

    .about-content h3 {
        font-size: 1.6rem; /* Further reduced for smaller screens */
    }

    .about-content p, .feature-item {
        font-size: 0.9rem; /* Further reduced for smaller screens */
    }
}

/* General section styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #1e90ff;
}

#contact {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-info {
    background-color: #ffffff;
    transition: transform 0.3s ease-in-out;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    font-size: 1.2rem;
    width: 30px;
}

.map-container {
    height: 100%;
    min-height: 300px;
}

@media (max-width: 991px) {
    .map-container {
        margin-top: 2rem;
        height: 300px;
    }
}

/* Update existing styles */
.btn-primary {
    background-color: #1266f1;
    border-color: #1266f1;
    transition: all 0.3s ease;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #0d47a1;
    border-color: #0d47a1;
    transform: translateY(-2px);
}

.text-primary {
    color: #1266f1 !important;
}

/* Remove any conflicting styles */
#contact::before {
    content: none;
}

.contact-info,
.contact-form {
    margin-bottom: 0;
}

.contact-info:hover,
.contact-form:hover {
    transform: none;
    box-shadow: none;
}

.modal.fade .modal-dialog {
    transform: translate(0, 100%);
}

.modal.show .modal-dialog {
    transform: none;
}

.modal-dialog {
    max-width: 800px; /* Wider modals */
}

#gallery {
    background-color: #f0f8ff;
    overflow: hidden;
    padding: 40px 0; /* Reduced padding */
    min-height: auto; /* Remove fixed height */
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px; /* Reduced margin */
}

.gallery-container {
    overflow: hidden;
    position: relative;
    padding: 10px 0; /* Add some padding to container */
}

.gallery-scroll {
    display: flex;
    animation: scroll 40s linear infinite;
}

.gallery-img {
    flex-shrink: 0;
    width: 437px; /* Increased from 350px (25% increase) */
    height: 325px; /* Increased from 260px (25% increase) */
    margin-right: 25px; /* Slightly increased margin */
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-125%); /* Adjusted for larger images */
    }
}

/* Ensure the animation loops smoothly */
.gallery-scroll::after {
    content: "";
    display: flex;
    flex-shrink: 0;
    width: 25px; /* Same as margin-right of .gallery-img */
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px; /* Changed from 150px to 75px */
}

.wave-divider .shape-fill {
    fill: #FFFFFF;
}

#products .card {
    transition: transform 0.3s ease-in-out;
    height: auto; /* Allow cards to adjust to content */
}

#products .card:hover {
    transform: translateY(-5px);
}

#products .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px; /* Reduce padding */
}

#products .fas.fa-3x {
    color: var(--primary-color);
    font-size: 2.5em; /* Slightly reduce icon size */
}

#products .list-unstyled li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem; /* Reduce font size */
    margin-bottom: 5px; /* Reduce margin */
}

.gallery {
  padding: 2rem 0;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Add these styles to your existing CSS file */

/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

.section-title {
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #1266f1;
}

/* Gallery Styles */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* About Section Styles */
#about {
    background-color: #f8f9fa;
}

.about-content {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    color: #1266f1;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-item img {
        height: 200px;
    }
}

/* Update existing styles */
.navbar {
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.feature-box:hover {
    background-color: #f8f9fa;
}

.feature-box h3,
.feature-box p {
    color: #333;
}

.btn-primary {
    background-color: #1266f1;
    border-color: #1266f1;
}

.btn-primary:hover {
    background-color: #0d47a1;
    border-color: #0d47a1;
}

.btn-outline-primary {
    color: #1266f1;
    border-color: #1266f1;
}

.btn-outline-primary:hover {
    background-color: #1266f1;
    color: #ffffff;
}

/* Update icon styles */
.mdi {
    line-height: 1;
}

.product-icon .mdi {
    font-size: 2.5rem;
}

.feature-item .mdi {
    font-size: 1.5rem;
}

.contact-item .mdi {
    font-size: 1.2rem;
    width: 30px;
}

/* You may need to adjust some margins or paddings to ensure proper alignment */

/* Add this to your existing CSS */
.social-links a {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links .mdi-facebook:hover {
    color: #1877F2 !important;
}

.social-links .mdi-whatsapp:hover {
    color: #25D366 !important;
}

.social-links .mdi-instagram:hover {
    color: #E4405F !important;
}

/* Add these styles at the end of your CSS file */

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s;
}

.navbar-nav .nav-link {
    font-size: 1.2rem;
    padding: 1rem;
}

@media (max-width: 767px) {
    .btn-lg {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn-lg:last-child {
        margin-bottom: 0;
    }
}

.feature-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-box h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-box p {
    color: #ffffff;
}

/* Add these styles at the end of your CSS file */

/* Shop Styles */
.product-card {
    margin-bottom: 30px;
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.cart-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #1266f1;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    padding: 80px 20px 20px; /* Increased top padding to account for navbar */
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

/* Add a close button to the cart */
.cart-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Adjust the navbar z-index to ensure it's above the cart */
.navbar {
    z-index: 1002;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cart-sidebar {
        padding-top: 60px; /* Slightly less top padding on mobile */
    }
}

#map-fallback {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

#map-fallback p {
    margin-bottom: 10px;
}

#send-message {
    background-color: #f8f9fa;
}

#send-message .card {
    border: none;
    border-radius: 15px;
}

#send-message .form-control {
    border-radius: 10px;
}

#send-message .btn-primary {
    border-radius: 10px;
    padding: 12px 30px;
}

#send-message .card-title {
    color: #1266f1;
    font-weight: 700;
}

/* Add these styles to your existing CSS file */

#admin .table-responsive {
    max-height: 600px;
    overflow-y: auto;
}

#admin form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
    #admin .col-md-4 {
        margin-bottom: 30px;
    }
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 5px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.cart-item-details p {
    margin-bottom: 5px;
    color: #666;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.cart-item-quantity button {
    padding: 2px 6px;
    font-size: 0.8rem;
}

.cart-item-remove {
    cursor: pointer;
    color: #dc3545;
    margin-left: 10px;
}

.cart-item-remove:hover {
    color: #bd2130;
}

/* Update these styles for the cart */
.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #1266f1;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    padding: 80px 20px 20px; /* Increased top padding to account for navbar */
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

/* Style for the cart notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.cart-notification.show {
    opacity: 1;
}

/* Style for the cart badge */
.badge {
    font-size: 0.8rem;
    padding: 0.25em 0.6em;
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

.card-img-container {
    width: 100%;
    height: 200px; /* Adjust this value to your desired image height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
