body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #e9ecef;
}

/* Carousel styles */
.carousel-image {
    object-fit: cover;
    height: 60vh;
    min-height: 300px;
}

.carousel-caption-custom {
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    top: 30%;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partner cards */
.partner-card{
    background: #fff;
    height: 100px;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.partner-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-card-img {
    max-height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    object-fit: cover;
}

.partner-card:hover .partner-card-img{
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-image {
        height: 40vh;
    }
    .partner-card {
        height: 80px;
    }
    .partner-card-img {
        max-height: 45px;
    }
}



/* Card adjustments (location)*/
.card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f9fa;
}
.thumb-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #f8f9fa;
}

.brand-img {
    display: block;
    max-height: 50px;
    max-width: 100%;
    height: 50px;
    object-fit: cover;
}

/* Category Links */
.category-link {
  text-decoration: none;
  color: #212529;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-link:hover {
  font-size: 1.3rem;
  color: #0d6efd;
  text-shadow: 0px 2px 5px rgba(13, 110, 253, 0.5);
}

.navbar .dropdown-menu {
    z-index: 1055; 
}

.hover-zoom img {
    transition: transform 0.3s;
}
.hover-zoom:hover img {
    transform: scale(1.05);
}
.hover-zoom .mask {
    background-color: rgba(251,251,251,0.15);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.hover-zoom:hover .mask {
    opacity: 1;
}