/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}


.section-gap {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #f7941d;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: #777;
    margin-bottom: 40px;
    font-size: 16px;
}

.primary-btn {
    display: inline-block;
    background: #f7941d;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.primary-btn:hover {
    background: #e07e0c;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.bat-hero {
    background: url('img/banner/common-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #595757;
    position: relative;
}

.bat-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(5, 186, 252, 0.779);
    color: #080808;
}

.bat-hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.bat-hero-content .primary-btn {
    font-size: 16px;
    padding: 15px 40px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Filter Section */
.bat-filter-section {
    background: #f9f9f9;
    padding: 40px 0;
    margin-top: -50px;
    position: fixed;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.filter-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #444;
}

.filter-group .form-control {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: none;
}

#price-range {
    margin-top: 10px;
}

/* Bat Collections */
.bat-collections {
    margin-top: 30px;
}

.bat-type-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.bat-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bat-img-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bat-type-card img {
    max-height: 100%;
    max-width: 100%;
    transition: all 0.3s ease;
}

.bat-type-card:hover img {
    transform: scale(1.05);
}

.bat-type-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.bat-type-card p {
    color: #777;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Featured Bats */
.featured-bats {
    margin-top: 30px;
}

.single-product {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.single-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.single-product .position-relative {
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.single-product:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    color: #fff;
    background: #0994f0;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #fff;
    color: #1da3f7;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #046cec;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.willow-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #222;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
}

.product-details {
    padding: 20px;
}

.product-details h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.price h6 {
    font-size: 18px;
    font-weight: 700;
    color: #f7941d;
    display: inline-block;
    margin-right: 10px;
}

.price .l-through {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

.product-rating {
    margin-bottom: 15px;
}

.product-rating .fa {
    color: #f7941d;
    font-size: 14px;
}

.product-rating span:last-child {
    color: #777;
    font-size: 13px;
    margin-left: 5px;
}

.prd-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.social-info {
    display: flex;
    align-items: center;
    gap: 6px; /* adds spacing between icon and text */
}


.social-info:hover {
    color: #f7941d;
}

.hover-text {
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.social-info:hover .hover-text {
    display: block;
}

.view-all-btn {
    font-size: 16px;
    padding: 12px 40px;
}

/* Bat Care Section */
.bat-care-section {
    background: #f9f9f9;
}

.bat-care-img {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bat-care-img img {
    transition: all 0.5s ease;
}

.bat-care-img:hover img {
    transform: scale(1.05);
}

.bat-care-content {
    padding-left: 30px;
}

.bat-care-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.care-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.bat-care-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.bat-care-list li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.bat-care-list i {
    color: #f7941d;
    margin-right: 10px;
    font-size: 18px;
    margin-top: 3px;
}

.care-guide-btn {
    padding: 12px 30px;
}

/* Customization Section */
.customization-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.custom-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-option:hover {
    background: rgba(247, 148, 29, 0.2);
    transform: translateY(-10px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #f7941d;
    transition: all 0.3s ease;
}

.custom-option:hover .icon-circle {
    background: #f7941d;
    color: #fff;
}

.custom-option h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.custom-option p {
    color: #ddd;
    font-size: 14px;
}

.custom-btn {
    background: transparent;
    border: 2px solid #f7941d;
    padding: 12px 40px;
}

.custom-btn:hover {
    background: #f7941d;
    border-color: #f7941d;
}

.testimonials-section {
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-item {
        transition: transform 0.3s ease;
        height: 100%;
    }
    
    .testimonial-item:hover {
        transform: translateY(-5px);
    }
    
    .quote-icon svg {
        opacity: 0.7;
    }
    
    .owl-carousel .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        transform: translateY(-50%);
    }
    
    .owl-carousel .owl-nav button {
        position: absolute;
        width: 48px;
        height: 48px;
        border-radius: 50%!important;
        background: white!important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        color: #333!important;
        font-size: 24px!important;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .owl-carousel .owl-nav button:hover {
        background: var(--bs-primary)!important;
        color: white!important;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        left: -24px;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: -24px;
    }
    
    .owl-carousel .owl-dots {
        margin-top: 30px;
        text-align: center;
    }
    
    .owl-carousel .owl-dots button.owl-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ddd!important;
        margin: 0 5px;
    }
    
    .owl-carousel .owl-dots button.owl-dot.active {
        background: var(--bs-primary)!important;
        transform: scale(1.2);
    }
    /* Responsive Styles */
@media (max-width: 991px) {
    .section-gap {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .bat-hero-content h1 {
        font-size: 40px;
    }
    
    .bat-hero-content p {
        font-size: 18px;
    }
    
    .bat-filter-section {
        margin-top: 0;
    }
    
    .filter-container {
        padding: 20px;
    }
    
    .bat-care-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-gap {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .bat-hero {
        height: 60vh;
    }
    
    .bat-hero-content h1 {
        font-size: 32px;
    }
    
    .bat-hero-content p {
        font-size: 16px;
    }
    
    .bat-type-card {
        padding: 20px 15px;
    }
    
    .testimonial-item {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 24px;
    }
    
    .bat-hero-content h1 {
        font-size: 28px;
    }
    
    .primary-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .filter-group {
        margin-bottom: 15px;
    }
    
    .bat-img-container {
        height: 150px;
    }
}
.section-gap {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #4e54c8, #8f94fb);
}

.filter-container {
    border: 1px solid #eee;
}

.filter-title {
    color: #333;
    font-weight: 600;
}

.single-product {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}

.single-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.price-badge, .willow-badge, .rating-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.willow-badge {
    background-color: #343a40 !important;
}

.rating-badge {
    background-color: #ffc107 !important;
}

.product-image {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-product:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.single-product:hover .product-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.single-product:hover .overlay-content {
    transform: translateY(0);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.brand-label {
    font-size: 0.85rem;
}

.current-price {
    font-size: 1.2rem;
}

.original-price {
    font-size: 0.9rem;
}

.discount-percent {
    font-size: 0.75rem;
    padding: 2px 6px;
}

.stars {
    display: inline-block;
}

.page-item.active .page-link {
    background-color: #4e54c8;
    border-color: #4e54c8;
}

.page-link {
    color: #4e54c8;
}

@media (max-width: 767.98px) {
    .section-gap {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .filter-container {
        padding: 15px !important;
    }
    
    .product-badge-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
}/* Product Card Styling */
.single-product {
    transition: all 0.3s ease;
    overflow: hidden;
}

.single-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.product-badge-container .badge {
    margin-right: 5px;
    font-size: 0.75rem;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.single-product:hover .product-overlay {
    opacity: 1;
}

.price-badge {
    background-color: #dc3545 !important;
}

.willow-badge {
    background-color: #212529 !important;
}

.rating-badge {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

/* Filter Section Styling */
.filter-container {
    position: sticky;
    top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-title {
    color: #333;
    font-weight: 600;
}

.filter-group-title {
    color: #555;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .filter-container {
        position: static;
        margin-bottom: 30px;
    }
}
/* Product Card Styling */
.single-product {
    transition: all 0.3s ease;
    overflow: hidden;
}

.single-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.product-badge-container .badge {
    margin-right: 5px;
    font-size: 0.75rem;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.single-product:hover .product-overlay {
    opacity: 1;
}

.price-badge {
    background-color: #dc3545 !important;
}

.willow-badge {
    background-color: #212529 !important;
}

.rating-badge {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

/* Filter Section Styling */
.filter-container {
    position: sticky;
    top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-title {
    color: #333;
    font-weight: 600;
}

.filter-group-title {
    color: #555;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .filter-container {
        position: static;
        margin-bottom: 30px;
    }
}