.swiper-container {
    width: 100%;
    overflow: hidden;
}
.container-fluid-title-hotspot{
	width:100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.post__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px; /* adjust to desired card size */
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.post__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.post__tag-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    min-width: 24px;
    min-height: 24px;
}
.post__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}
.post__tag-box:hover .post__tag {
    transform: scale(1.1);
}
/* Popover styles (basic, you can use a library like Tippy.js for better popovers) */
.popover {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1050;
    max-width: 285px;
    opacity: 1;
    will-change: transform;
}
.popover.show {
    display: block;
}
.bs-popover-bottom .arrow {
    top: -8px;
}
.bs-popover-top .arrow {
    bottom: -8px;
    transform: rotate(225deg);
    top: auto;
}
.popover__wrapper {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
}
.popover__wrapper img[aria-hidden="true"] {
    width: 16px;
    height: 16px;
    margin-left: auto;
}
.popover__image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}
.popover__center {
    flex: 1;
    text-align: left;
    margin-right: 8px;
}
.product-name {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
}
.product-price {
    margin: 4px 0 0;
    font-size: 13px;
    color: #666;
}
.popover__product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.popover__product-link:hover {
    text-decoration: none;
    color: inherit;
}
.arrow {
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.06);
    top: -8px;
}
/* Make slides square and images cover the square */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Wrapper enforces a 1:1 aspect ratio; max-width keeps cards reasonable */
.post__image-wrapper {
    width: 100%;
    max-width: 300px; /* adjust to desired card size */
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

/* Image fills the wrapper and is cropped to cover */
.post__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
    .post__image-wrapper::before {
        content: "";
        display: block;
        padding-top: 100%;
    }
    .post__image {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* Add these styles at the end of your CSS file */

.hp-section .headings__row h3,
.hp-section .headings__row p {
    transition: text-align 0.3s ease;
}
/* Style for Swiper navigation arrows */
.swiper-button-prev,
.swiper-button-next {
    background-color: #ffffff; 
    color: #000000; 
    width: 30px; 
    height: 40px; 
    border: 2px solid #000000;
    top:65%;
    opacity: 0.7; 
    transition: opacity 0.3s ease, background-color 0.3s ease; 
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 1; 
    background-color: #f0f0f0; 
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px; 
    font-weight: bold; 
}

.swiper-button-prev {
    left: 2%; 
}

.swiper-button-next {
    right: 2%; 
}

/* Ensure arrows are visible over the carousel */
.swiper-button-prev,
.swiper-button-next {
    z-index: 10; /* Above other elements */
}

/* Adjust for smaller screens if needed */
@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }


    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .hp-section .headings__row h3,
    .hp-section .headings__row p {
        text-align: center;
    }
}


