html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



.owl-prev, .owl-next {
    background-color: transparent !important;
}

.flaticon-arrows-4,
.flaticon-arrows-3 {
    font-size: 50px;
}

.category-carousel {
    position: relative;
    padding: 0px 0px 0px 30px;
}

.category-prev,
.category-next {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    z-index: 10;
    background-color: #00000000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.category-prev {
    left: 0;
}

.category-next {
    right: 0;
}

.category-carousel .swiper-slide {
    text-align: center;
}

.category-carousel img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}


.product-card {
    background: #0b0f2f;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    height: 500px; /* Fixed height to contain everything */
}

    .product-card:hover {
        transform: translateY(-5px);
    }

.product-image-container {
    position: relative;
}

.product-image {
    max-height: 250px;
    object-fit: contain;
    width: 100%;
    border-radius: 10px;
}

.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: goldenrod;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 2;
}

.badge-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 40px;
    width: 40px;
}

.product-weight {
    margin-top: 15px;
    font-size: 14px;
    color: #ccc;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
}

.live-price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
    color: #ffd700;
}

/* Hover-reveal section */
/*     .hover-details {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: #0b0f2f;
                padding: 20px;
                opacity: 0;
                max-height: 0;
                transition: opacity 0.4s, max-height 0.4s;
                overflow: hidden;
                z-index: 5;
            }


            .product-card:hover .hover-details {
                opacity: 1;
                max-height: 300px;
            } */
/* Hover Section */
.hover-details {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0b0f2f;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    z-index: 10;
}

/* On hover show the section */
.product-card:hover .hover-details {
    opacity: 1;
    max-height: 200px;
    padding-bottom: 20px;
}


.product-rating {
    color: gold;
    font-size: 14px;
    margin-bottom: 8px;
}

.product-description {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .product-actions .btn {
        padding: 8px 16px;
        border-radius: 5px;
        font-size: 14px;
    }

.btn-buy,
.btn-cart {
    background-color: #1c2c6d;
    color: #fff;
    border: none;
}

    .btn-cart i {
        margin-right: 4px;
    }

.row {
    position: relative;
    overflow: visible; /* Add this */
}
.single-new-trend {
    transition: transform 0.3s ease-in-out;
}

    .single-new-trend:hover {
        transform: scale(1.05); /* Zoom 5% */
    }

/* Make Swiper pagination bullets white */
.category-pagination .swiper-pagination-bullet {
    background-color: white !important;
    opacity: 0.7;
}

/* Active bullet brighter */
.category-pagination .swiper-pagination-bullet-active {
    background-color: white !important;
    opacity: 1;
}

.single-new-trend {
    transition: transform 0.4s ease-in-out;
    overflow: hidden;
    border-radius: 25px;
    border-radius: 12px; /* Rounded corners for full box */
}

    .single-new-trend:hover {
        transform: scale(1.05); /* Zoom full div on hover */
    }

    .single-new-trend img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px; /* Rounded image */
    }