/* Custom iPhone-like pagination */
.combo-offer-slider .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.combo-offer-slider .owl-dot {
    position: relative;
    width: 30px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.combo-offer-slider .owl-dot span {
    display: none; /* hide default span */
}

.combo-offer-slider .owl-dot b {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #000; /* progress bar color */
    transition: width linear;
}

.banner-container img {
    position: relative;
}

.combo-offers-section .owl-item.active {
    overflow: hidden;
    cursor: pointer;
    opacity: 1;               /* default dimmed */
    transition: all 0.4s ease;

}
.combo-offers-section .owl-item.active:hover {
    opacity: 0.6;
    transform: scale(1.03);
    border-radius: 25px !important;
}
.owl-carousel {
    position: relative;
}
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: space-between;
    left: -30px;
    right: -30px;
}

.blog-slider .owl-nav button.owl-prev,
.blog-slider .owl-nav button.owl-next {
    font-size: 25px !important;
}
.blog-slider .owl-item img {
    border-radius: 16px ;
}

.combo-offers-section .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: 1px solid;
    padding: 0!important;
    font: inherit;
    width: 40px;
    height: 5px;
    border-radius: 25px;
}
.product-tab-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    border-bottom: 2px solid #ddd;
    justify-content: center;
}
.product-tab-nav li {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-bottom: none;
    margin-right: 5px;
    background: #f9f9f9;
    transition: background 0.3s;
}
.product-tab-nav li.active {
    background: #fff;
    font-weight: bold;
    border-top: 2px solid #0073aa;
    border-bottom: 2px solid #fff;
}
.tab-pane {
    display: none;
    padding: 20px 0;
}
.tab-pane.active {
    display: block;
}
.owl-item {
    float: left;
}
.owl-item .list-col-item.item-grid-product-style15.list-3-item{
    width:100%;
    
}
.sec-1 .swiper-pagination {
    position: absolute !important;
    bottom: 20px !important;
}

.random-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 2 columns */
    gap: 30px; /* space between items */
}

.random-products-grid .product-item {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    filter: drop-shadow(2px 4px 6px #f87a2c);
    transition: 0.5s ease;
}

.random-products-grid .product-item:hover {
    transform: scale(1.1);

}

.random-products-grid img {
    max-width: 100%;
    height: auto;
}
span.color-price {
    color: #f87a2c;
    font-weight: 700;
}
.random-products-grid .product-item img {
    width: 100%;
    max-width: 250px;
    height: 100%;
    max-height: 250px;
}

/* ddm works starts on 22-09-2025--- */
.item-product,
.product-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    flex: 1;
}

.product-thumb {
    width: 100%;
    aspect-ratio: 1 / 1; /* Keeps image square */
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the box without stretching */
    display: block;
}

.product-title a {
    display: block;
    white-space: nowrap;      /* Keep title in one line */
    overflow: hidden;         /* Hide overflow */
    text-overflow: ellipsis;  /* Show ... for long text */
}
.owl-nav.disabled {
    display: none;
}
.owl-dots{
    display: none;
}

/* ddm works ends on 22-09-2025--- */
