/* Base styles for buttons */
.product-filters1 a {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    text-align: center;
    border-radius: 40px;
    /* Add rounded corners */
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
}

/* Styling for the boxed button */
.product-filters1 a.border {
    background-color: #F28123;
    color: #fff;
    border: 2px solid transparent;
    /* No visible border */
}

/* Styling for the border button */
.product-filters1 a.boxed {
    background-color: transparent;
    color: #F28123;
    border: 2px solid #F28123;
    /* Orange border */
}

/* Active state for the border button */
.product-filters1 a.border.active {
    border: 2px solid #c56b18;
    /* Darker orange for active state */
    color: #c56b18;
    /* Darker orange text */
    font-weight: bold;
    /* Make the active button text bold */
}

/* Hover effects */
.product-filters1 a:hover {
    transform: scale(1.05);
    /* Slight zoom on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.product-filters1 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.product-filters1 ul li {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    margin: 15px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 25px;
}

.product-filters1 {
    margin-bottom: 50px;
    margin-top: -110px;
}


#totalsTable {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}

#totalsTable tr {
    display: inline-block;
    margin-right: 20px;
}

#totalsTable td {
    display: inline-block;
    margin-right: 5px;
}

#totalsTable td:first-child {
    font-weight: bold;
}

.bg-app {
    background-color: #051922;
}



/* Slider wrapper */
.hero-slider .single-slider {
    position: relative;
    height: 600px;
    /* fixed height for all slides */
    width: 100%;
    overflow: hidden;
}

/* Image styling */
.hero-slider .slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover;
    /* ensures full width & equal height, no distortion */
    object-position: center center;
}

/* Text overlay */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    /* background: rgba(0, 0, 0, 0.1); */
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 90%;
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.slide-content .btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.slide-content .btn:hover {
    background-color: #0056b3;
}

/* Navigation */
.owl-nav span {
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

/* Dots */
.owl-dots .owl-dot span {
    background: white;
    opacity: 0.7;
}

.owl-dots .owl-dot.active span {
    background: #007bff;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slider .single-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-content .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-slider .single-slider {
        height: 300px;
    }

    .slide-content {
        padding: 10px 15px;
    }

    .slide-content h1 {
        font-size: 1.4rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }
}