body {
    background-color: rgba(173, 167, 167, 0.089) !important;
}

.header-gradient {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 25px rgba(0, 0, 0, 0.2);
}

.custom-heavy-shadow {
    box-shadow: 0 5px 5px rgba(104, 104, 104, 0.25);
}

/* Ensure Swiper Container is Relative */
.swiper-container {
    position: relative;
    padding: 10px;
}

/* Category Header: Title + Arrows */
.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}

/* Category Name (Left Side) */
.category-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
}

/* Increase Space Between Navigation Buttons */
.swiper-nav {
    display: flex;
    gap: 30px; /* Increased from 20px to 30px */
}

.swiper-button-prev1,
.swiper-button-next1 {
    width: 35px;
    height: 35px;
    background-color: #bfc0c2; /* ash/gray tone */
    border-radius: 6px; /* subtle rounded square */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: none;
    z-index: 10;
}

.swiper-button-prev1:hover,
.swiper-button-next1:hover {
    background-color: #5a6268; /* darker ash on hover */
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.swiper-button-prev1::after,
.swiper-button-next1::after {
    font-size: 20px;
    color: #fff;
}

.swiper {
    width: 100%;
    padding-top: 10px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.card {
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.card-img-top {
    transition: transform 0.3s ease-in-out;
}

.card:hover .card-img-top {
    cursor: pointer;
    transform: scale(1.02);
}

.bg-light-green {
    background: rgb(232, 238, 232);
}

.bg-light-warning {
    background: rgb(235, 233, 227);
}

.bg-light-purple {
    background: #e4e1e7;
}

.light-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 300%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1),
        transparent 70%
    );
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.footer-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: black;
}

.footer-content a {
    color: black;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
    color: rgb(102, 0, 0);
}
.lotus-band {
    background: linear-gradient(
        to right,
        #800000 0%,
        #ffd100 50%,
        #000000 100%
    );
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: url("lotus-art-circle1.png");
    background-repeat: repeat-x;
    background-size: auto 100%;
    z-index: 0;
    opacity: 1;
}
.footer-logos img {
    width: 40px;
    height: 40px;
}
#carouselExample {
    height: 300px;
}
#carouselExample .carousel-item img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}
.gradient-text {
    font-weight: 700;
    background: linear-gradient(90deg, rgb(57, 70, 62), rgb(24, 24, 24));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.loading-overlay {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(1px);
    z-index: 10;
    transition: opacity 0.4s ease;
}
.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}
.swiper-container {
    position: relative;
}
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}
.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.skeleton-box {
    background-color: #e0e0e0;
    border-radius: 4px;
    animation: pulse 1.5s infinite;
    color: transparent !important;
}
.skeleton-img {
    width: 100%;
    height: 120px;
    background-color: #e0e0e0;
    border-radius: 0.5rem;
    animation: pulse 1.5s infinite;
    object-fit: cover;
}
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}
html {
    scroll-behavior: smooth;
}
.gradient-border {
    padding: 4px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
}

.gradient-border img {
    display: block;
    background-color: white;
}
