:root {
    --bs-breadcrumb-divider: '/';
}

/* Hide the default browser password reveal icon */
input[type="password"]::-webkit-password-reveal-button,
input[type="password"]::-ms-reveal {
    display: none;
    -webkit-appearance: none;
}

#pagination-container {
    padding: 0 20px !important;
}


/* General form styles */
.account__login--input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9;
}

.account__login--btn {
    width: 100%;
    border-radius: .5rem;
    font-size: 1.5rem;
}

@media only screen and (min-width: 992px) {
    .primary__btn {
        font-size: 1.6rem;
        line-height: 4.5rem;
        height: 4.5rem;
    }
}

@media only screen and (min-width: 768px) {
    .primary__btn {
        font-size: 1.5rem;
        line-height: 4rem;
        height: 4rem;
        padding: 0 2rem;
    }
}

.primary__btn {
    font-size: 1.4rem;
    font-weight: 2.8rem;
    line-height: 3.5rem;
    display: inline-block;
    height: 3.5rem;
    padding: 0 1.8rem;
    letter-spacing: .2px;
    border-radius: .3rem;
    background: #ee2761;
    color: #fff;
    border: 0;
}

/* Label styles */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

/* Focused input field styles */
.account__login--input:focus {
    border-color: #007bff;
    background-color: #fff;
    outline: none;
}

/* Input fields when filled with valid data */
.account__login--input:valid {
    border-color: #28a745;
    /* Green border for valid inputs */
}

/* Error message styles */
.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

/* Checkbox styles */
.checkout__checkbox--input {
    margin-right: 10px;
}

.checkout__checkbox--label {
    font-size: 14px;
    color: #333;
}

/* Success message */
.success-message {
    color: green;
    font-size: 14px;
    margin-top: 10px;
}

.p-0 {
    padding: 0 !important;
}

.pb-9 {
    padding-bottom: 2.8125rem !important;
}

.pt-10 {
    padding-top: 3.125rem !important;
}



/* --- Main Footer Area Styling --- */
.footer-area {
    background: linear-gradient(135deg, #1a2a45 0%, #122038 100%);
    /* Dark background for a modern feel */
    color: #fff;
    /* Soft text color for readability */
    padding-top: 60px;
}

/* --- Footer Main Section --- */
.footer-main {
    padding-bottom: 50px;
}

/* --- Widget Items --- */
.widget-item .widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
    /* Subtle separator */
    position: relative;
}

/* Underline effect for the title */
.widget-item .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    /* Sits on top of the border */
    height: 2px;
    width: 50px;
    background-color: #00bfff;
    /* A nice accent color */
}

.widget-about .desc {
    line-height: 1.7;
}

.widget-logo img {
    margin-bottom: 20px;
}

/* --- Navigation Links Styling (Services, Quick Links) --- */
.widget-nav {
    list-style: none;
    padding: 0;
}

.widget-nav li {
    margin-bottom: 12px;
}

.widget-nav a {
    color: #e0e0e0;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    /* SMOOTH TRANSITION FOR HOVER */
}

/* --- The Hover Effect for Menu Items --- */
.widget-nav a:hover {
    color: #ffffff;
    /* Brighten text on hover */
    transform: translateX(10px);
    /* Move text to the right */
}

.widget-nav a .fa {
    margin-right: 10px;
    /* Space between icon and text */
    font-size: 14px;
    width: 20px;
    /* Ensures consistent alignment */
    text-align: center;
}

/* --- Social Media Icons --- */
.widget-social {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    /* Space between icons */
}

.widget-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #ffffff !important;
    background-color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    /* SMOOTH TRANSITION */
}

/* --- Hover Effect for Social Icons --- */
.widget-social a:hover {
    background-color: #00bfff;
    transform: translateY(-3px) scale(1.05);
}

/* --- Footer Bottom (Copyright Area) --- */
.footer-bottom {
    background: linear-gradient(135deg, #3b4c73 0%, #2a384f 100%);
}

/* Flexbox layout for the content area */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

.footer-bottom .copyright {
    margin: 0;
    color: #777;
    font-size: 14px;
}

/* Styling for the main link (AuraVia Team) */
.footer-bottom .copyright a {
    color: #00bfff;
    /* Accent color for the link */
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom .copyright a:hover {
    text-decoration: underline;
}

.footer-bottom .copyright .fa-heart {
    color: #e25555;
    /* Red heart icon */
}

/* Styling for the developer credit link */
.developer-credit a {
    color: #a9a9a9;
    /* Slightly brighter text */
    text-decoration: none;
    border-bottom: 1px dotted #777;
    /* Subtle dotted underline */
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: #ffffff;
    /* White on hover */
    border-bottom-color: #ffffff;
}

/* --- Responsive behavior for mobile screens --- */
@media (max-width: 767px) {
    .px-sm {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        justify-content: center;
    }

    .blog-post-sm {
        margin-bottom: 30px;
    }

    .product-sidebar-widget {
        margin-top: 20px;
    }

    .product-details-action .pr-dt-qnt {
        display: none;
    }

    .pr-dt-actionsbtn .product-details-cart-wishlist {
        margin-top: 2px;
    }

    .product-details-pro-qty {
        padding-bottom: 5px;
    }

    .footer-area {
        padding-top: 4px;
    }
}


/* ======================================================
   New Sidebar Design: Minimalist & Clean
====================================================== */

/* --- General Sidebar & Widget Style --- */
.product-sidebar-widget .product-widget {
    /* We remove the background, shadow, and border for a cleaner look */
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    /* Subtle line separator */
    padding: 20px 10px;
    margin-bottom: 20px;
    box-shadow: none;
}

.product-sidebar-widget .product-widget:last-child {
    border-bottom: none;
}

.product-widget-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #111827;
    /* Darker, more modern text color */
    margin-bottom: 24px;
    border-bottom: none;
}


/* --- Price Filter Customization --- */
.product-widget .noUi-target {
    background: #f3f4f6;
    box-shadow: none;
    border: none;
    height: 5px;
}

.product-widget .noUi-connect {
    background: #1f2937;
    /* A sophisticated dark gray */
}

.product-widget .noUi-handle {
    border-radius: 50%;
    background: #fff;
    border: 2px solid #1f2937;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 18px;
    width: 18px;
    top: -7px;
    right: -9px;
    cursor: pointer;
}

.product-widget .noUi-handle:focus {
    outline: none;
}

.product-widget .slider-labels {
    margin-top: 15px;
    color: #4b5563;
    font-size: 15px;
}


/* --- Elegant Category List --- */
.product-widget-category {
    padding-left: 0;
    list-style-type: none;
    margin: 0;
}

.product-widget-category li a {
    display: block;
    padding: 10px 5px;
    margin-bottom: 2px;
    color: #4b5563;
    /* Softer text color */
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-left: none;
    /* Removed the side border */
}

.product-widget-category li a:hover {
    background-color: #f3f4f6;
    /* Subtle hover effect */
    color: #111827;
}

/* --- New Active Class Style! ✨ --- */
.product-widget-category li a.active {
    background-color: transparent;
    color: #111827;
    font-weight: 700;
    /* Bold text indicates active state */
}


/* --- Category Title Style --- */
#category-title {
    color: #111827;
    font-weight: 600;
    font-size: 24px;
}

/* ======================================================
   Modern Blog Card Styling
====================================================== */

/* --- Main Card Design (Border, Shadow, etc.) --- */
.post-item {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    /* Subtle light gray border */
    border-radius: 12px;
    /* Rounded corners */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    /* Ensures image corners are also rounded */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    /* CRUCIAL for equal height */
}

/* --- Hover Effect --- */
.post-item:hover {
    transform: translateY(-5px);
    /* Lifts the card up slightly */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* --- Equal Height Solution using Flexbox --- */
.post-item {
    display: flex;
    flex-direction: column;
    /* Stacks image and content vertically */
}

.post-item .content {
    flex-grow: 1;
    /* Allows the content area to expand and fill empty space */
    padding: 1px 25px;
    padding-bottom: 20px;
}

/* --- Typography and Spacing --- */
.post-item .title a {
    color: #111827;
    /* Darker text for better readability */
}

.post-item p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #364958;
}

.post-item h4 a{
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #231942;
}

.section-title .title{
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #231942;
}

@media (max-width: 767px) {
.section-title .title{
    line-height: 44px;
}

}


.blog-img{
    height: 18rem;
    width:100%;
}

/* Optional: Add a date display */
.post-item .meta {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
}


/*----------------------------------faq--------*/
.premium-faq-section {
    background: linear-gradient(135deg, #1a2a45 0%, #122038 100%);
    font-family: 'Nunito Sans', sans-serif;
    padding: 80px 0;
    color: #f0f0f0;
}

.premium-faq-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

/* Creative underline for the title */
.premium-faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #00f5d4;
    /* Vibrant teal accent */
    border-radius: 2px;
}

.premium-faq-section .section-subtitle {
    font-size: 1.1rem;
    color: #a0b3d1;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.premium-faq-section .faq-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-faq-section .faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 245, 212, 0.5);
}

.premium-faq-section .faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    position: relative;
}

.premium-faq-section .faq-question::after {
    content: '\2b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.5rem;
    transition: transform 0.3s ease-in-out; 
    color: #00f5d4;
}

/* This part remains the same and rotates the '+' into an 'x' */
.premium-faq-section .faq-card.active .faq-question::after {
    transform: rotate(45deg);
}


.premium-faq-section .faq-card.active .faq-question {
    color: #00f5d4;
}


.premium-faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    /*transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.5s ease;*/
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #a0b3d1;
}

.premium-faq-section .faq-card.active .faq-answer {
    max-height: 500px;
    /* A large enough value to show content */
    padding: 0 25px 20px 25px;
    transition: max-height 1s cubic-bezier(1, 0, 1, 0), padding 0.5s ease;
}

.premium-faq-section .faq-answer strong {
    color: #e0e0e0;
}