:root {
    --main-black: #000000;
    --accent-color: #EF692A;
}

/* HEADER */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #243F84;
}

.navbar .navbar-brand img {
    height: 35px;
}

.navbar a {
    color: #243F84 !important;
}

.navbar a:hover {
    color: #243F84 !important;
}

.navbar .btn-link {
    color: black;
}

/* Centered navbar search */
.navbar-search-form {
    align-items: center;
}

.navbar-search-form .form-control {
    width: 320px;
}

.syn-navbar-search {
    align-items: center;
}



.btn {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.btn:hover {
    background-color: #243F84;
    /* was #cc5722 */
    border-color: #243F84;
}

/* Hide on mobile & tablet */
/* @media (max-width: 991.98px) {
   {
    display: none !important;
  }
} */


/* Hide search form on mobile */
/* @media (max-width: 991.98px) {
  .navbar-search-form {
    display: none !important;
  }
} */

/* Cart Badge */
.badge-notif {
    position: absolute;
    top: -6px;
    right: -8px;
    font-size: 0.65rem;
    padding: 2px 5px;
    line-height: 1;
}

body {
    padding-top: 60px;
}

/* CATEGORY BUBBLES */
.category-bubbles {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    gap: 15px;
    background: #fff;
}

.category-bubbles::-webkit-scrollbar {
    display: none;
}

.category-bubble {
    text-align: center;
    flex: 0 0 auto;
}

.category-bubble img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

/* SIDEBAR */
.offcanvas {
    width: 270px;
}

.offcanvas-header {
    background: #243F84;
    /* was var(--accent-color) */
    ;
    color: white;
}

.offcanvas-header h6 {
    font-weight: bold;
}

.offcanvas-body ul li a {
    color: #333;
    text-decoration: none;
}

.offcanvas-body ul li a:hover {
    background: #243F84;
    /* optional: if you want bg change */
    color: #fff;
    /* to ensure readability */
}

/* White close button in sidebar */
.btn-close {
    filter: invert(1) brightness(100%);
    opacity: 1;
}

/* Search Box */
.search-box {
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px;
}

.search-box input {
    width: calc(100% - 40px);
    margin: 0 10px;
    padding: 8px 8px 8px 30px;
    /* Extra left padding for icon */
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

/* Show only on mobile */
@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}

/* =============================================================================================================
start of Category Slider Styles
================================================================================================================*/
/* ===== CATEGORY SECTION WRAPPER ===== */
.category-section {
    padding: 40px 0;
    background-color: #fdfdfd;
    /* optional background */
}

/* ===== SLIDER TITLE ===== */
.slider-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 24px 0;
    color: #222;
}

/* ===== SLIDER CONTAINER ===== */
.category-slider-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 12px;
    position: relative;
    color: #222;
}

.category-slider {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-track {
    display: flex;
    transition: transform 0.25s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
}

/* ===== SLIDE ITEM ===== */
.category-slide {
    flex: 0 0 20%;
    max-width: 20%;
    text-align: center;
    padding: 8px 0;
    box-sizing: border-box;
    user-select: none;
}

.category-circle {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ccc;
    margin: 0 auto 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: block;
}

/* Hover + Active Effect */
.category-slide.active .category-circle,
.category-slide:hover .category-circle {
    border-color: #243F84;
    /* was #EF692A */
    box-shadow: 0 4px 20px rgba(36, 63, 132, 0.4);
}

.category-label {
    color: #222;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== PAGINATION DOTS ===== */
.carousel-indicators {
    position: relative;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-left: 0;
    list-style: none;
    user-select: none;
}

.carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #EF692A;
    box-shadow: 0 0 6px rgba(239, 105, 42, 0.8);
}

.carousel-indicators button:focus {
    outline: 2px solid #EF692A;
    outline-offset: 2px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 991.98px) {
    .category-slide {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .category-circle {
        width: 110px;
        height: 110px;
    }

    .category-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .category-slide {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .category-circle {
        width: 90px;
        height: 90px;
    }

    .category-label {
        font-size: 1rem;
    }
}

/*===============================================================================================================
product card stles start
================================================================================================================*/
/* ===== PRODUCTS SECTION WRAPPER ===== */
.products-section {
    background-color: #fdfdfd;
}

.products-section__heading {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    border: 1px solid var(--border-color, #ddd);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    background: var(--bg-color, #fff);
    height: 100%;
}

.product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card__image-container {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}

.product-card__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card__image-container:hover .product-card__image {
    transform: scale(1.05);
}

.product-card__title {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color, #333);
}

/*===============================================================================================================
product details stles end
================================================================================================================*/
:root {
    --pd-primary: #2c3e50;
    --pd-secondary: #3498db;
    --pd-accent: #e74c3c;
    --pd-light: #f8f9fa;
}

/* Main Product Image */
.product-details__image-main {
    height: 400px;
    background: var(--pd-light);
    border-radius: 10px;
    overflow: hidden;
}

.product-details__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnails */
.product-details__thumb {
    width: 80px;
    height: 80px;
    background: var(--pd-light);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.product-details__thumb.active,
.product-details__thumb:hover {
    border-color: var(--pd-secondary);
    transform: scale(1.05);
}

.product-details__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details__title {
    font-weight: 800;
    color: var(--pd-primary);
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}


.product-details__section-title {
    font-weight: 700;
    color: var(--pd-primary);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
    margin: 0px 0 20px;
}

/* Decorative underline with gradient */
.product-details__section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, var(--pd-primary), var(--pd-secondary));
    border-radius: 2px;
}

.product-details__option {
    border: 1px solid #ddd;
    padding: 8px 15px;
    margin: 4px;
    border-radius: 5px;
    transition: 0.3s;
    background: white;
}

.product-details__option.active,
.product-details__option:hover {
    background: var(--pd-primary);
    color: white;
}

/* Cart Controls */
.product-details__purchase {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-details__qty {
    width: 150px;
}

.product-details__add-btn {
    background: var(--pd-accent);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

.product-details__add-btn:hover {
    background: #c0392b;
}

/* Meta List */
.product-details__meta {
    list-style: none;
    padding: 0;
}

.product-details__meta li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.product-details__meta li:last-child {
    border-bottom: none;
}

/* Related Products */
.related-product {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.related-product:hover {
    transform: translateY(-5px);
}

.related-product__img-container {
    height: 200px;
    overflow: hidden;
}

.related-product__img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-product__title {
    font-weight: 600;
    font-size: 1rem;
}

/* Mobile Sticky Footer */
.product-details__footer-bar {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 8px 12px;
    z-index: 1100;
}

.product-details__footer-btn {
    background: var(--pd-accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
}

@media (min-width: 992px) {
    .product-details__footer-bar {
        display: none;
    }
}

/* =========== IMPORTANT FIX =========== */
/* Ensure last content isn't hidden by sticky footer */
@media (max-width: 991.98px) {
    .product-details {
        padding-bottom: 70px !important;
        /* should match footer height + a bit extra */
    }
}

/*===============================================================================================================
end of Category Slider Styles
================================================================================================================*/
/*===============================================================================================================
login page styles start
================================================================================================================*/
.login-container {
    max-width: 360px;
    margin: auto;
    border-radius: 25px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    background: transparent;
}

/* Illustration */
.login-illustration {
    background-color: transparent;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

/* White form section */
.login-form-section {
    background-color: #fff;
    color: #333;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 25px;
}

.login-form-section h5 {
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

/* Inputs */
.login-form-control {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 0;
    box-sizing: border-box;
}

/* Forgot Password link */
.login-forgot {
    color: #EF692A;
}

/* Login button */
.login-btn-login {
    background-color: #EF692A;
    border: none;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    color: white;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.2s;
    cursor: pointer;
}

.login-btn-login:hover {
    background-color: #243F84;
    /* was #148a58 */
}

/* Extra links */
.login-extra-links {
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
}

.login-extra-links a {
    color: #EF692A;
    text-decoration: none;
    font-weight: 500;
}

/* Responsive tweaks for mobile */
@media (max-width: 480px) {
    .login-container {
        box-shadow: none;
    }

    .login-form-section {
        background-color: transparent !important;
        color: black;
    }
}

/*===============================================================================================================
end of login page styles
================================================================================================================*/

/*===============================================================================================================
cart page styles start
================================================================================================================*/
/* ===== Desktop (original styles) ===== */
.cart-item {
    background-color: #fff;
    border-radius: 8px;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.category {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.qty-info {
    font-size: 0.85rem;
    color: #6c757d;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.qty-control button {
    width: 28px;
    height: 28px;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
}

.qty-control button.btn-outline-secondary {
    color: #fff;
    background-color: #EF692A;
    border-color: #EF692A;
}

.qty-control button.btn-outline-secondary:hover {
    background-color: #243F84;
    border-color: #243F84;
    color: #fff;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.summary-row span {
    font-weight: 500;
}

.total-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #EF692A;
}

hr {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
    border-color: #dee2e6;
}

/* Scoped to only buttons inside the cart summary card */
.cart-summary-card .btn-primary {
    font-size: 1.1rem;
    padding: 0.6rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    display: block;
    margin-left: auto;
    background-color: #EF692A;
    border-color: #EF692A;
    color: #fff;
}

.cart-summary-card .btn-primary:hover {
    background-color: #243F84;
    border-color: #243F84;
    color: #fff;
}

.badge-notif {
    background-color: #EF692A;
    /* your custom color */
}

.input-group-text i {
    color: #EF692A;
    font-size: 1.2rem;
}

.input-group-text {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
}

.apply-btn {
    background: #EF692A;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 0 14px;
    border-radius: 0 6px 6px 0;
}

.apply-btn:hover {
    background: #243F84;
}

/* ===== Mobile overrides ===== */
@media (max-width: 991.98px) {

    /* Summary table look */
    .cart-summary-card {
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
        max-width: 100%;
        margin: 0;
    }

    .summary-row {
        border-bottom: 1px solid #f1f1f1;
        padding: 10px 0;
        margin: 0;
    }

    .summary-row:last-of-type {
        border-bottom: none;
    }

    .total-price {
        background: #fafafa;
        font-weight: 700;
        font-size: 1.05rem;
    }

    .cart-summary-card .btn-primary {
        display: none !important;
    }

    /* Sticky footer with border and divider */
    .cart-footer-bar {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
        /* footer border */
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
        padding: 0;
        z-index: 999;
    }

    .cart-footer-continue,
    .cart-footer-checkout {
        flex: 1;
        text-align: center;
        padding: 12px 0;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        border-radius: 0;
    }

    .cart-footer-continue {
        background: #EF692A;
        color: #ffff;
        border-right: 1px solid #dee2e6;
        /* divider */
        text-decoration: none;
    }

    .cart-footer-continue:hover {
        background: #243F84;
        color: #fff;
    }

    .cart-footer-checkout {
        background: #243F84;
        color: #fff;
    }

    .cart-footer-checkout:hover {
        background: #cc5722;
    }

    .container.py-4 {
        padding-bottom: 60px !important;
    }

    /* space for footer */
}

@media (min-width: 992px) {
    .cart-footer-bar {
        display: none !important;
    }
}

/*===============================================================================================================
end of Category Slider Styles
================================================================================================================*/
/*===============================================================================================================
change password styles start
================================================================================================================*/
.change-pass-card {
    max-width: 355px;

    padding: 2rem 1.5rem 1.5rem 1.5rem;

}

.change-pass-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
}

.change-pass-icon img {
    width: 100%;
    height: 50%;
    object-fit: contain;
}

/* Target button inside card without a direct custom class */
.change-pass-card .btn-primary {
    background-color: #EF692A;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    border: none;
}

.change-pass-card .btn-primary:hover,
.change-pass-card .btn-primary:focus {
    background-color: #243F84;
    color: #fff;
}

.form-control:focus {
    border-color: #EF692A;
    box-shadow: 0 0 0 0.2rem rgba(239, 105, 42, 0.12);
}

.eye-icon {
    cursor: pointer;
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #bdbdbd;
    font-size: 1.1em;
}

/*===============================================================================================================
change password styles end
================================================================================================================*/
/*===============================================================================================================
brand selection styles start
================================================================================================================*/

.page-body {
    background: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-frame {
    background: #fff;
    width: 370px;
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.12);
    padding: 36px 20px 32px 20px;
    position: relative;
    border: 1.5px solid #ededed;
}

.brand-title {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.brand-title span {
    color: #EF692A;
}

.brand-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.brand-card {
    display: flex;
    align-items: center;
    background: #f6f6f6;
    border-radius: 13px;
    padding: 15px 19px 15px 12px;
    border: 2px solid #f0f0f0;
    color: #333;
    font-size: 15.5px;
    font-weight: 500;
    cursor: pointer;
    transition: border .17s, box-shadow .17s, background .14s;
    position: relative;
    outline: none;
    user-select: none;
}

.brand-card.selected {
    border: 2px solid #EF692A;
    box-shadow: 0 0 0 2px rgba(239, 105, 42, 0.25);
    background: #fff3ec;
}

.brand-logo {
    display: block;
    max-width: 60px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 7px;
    margin-right: 17px;
    background: #fff;
    box-shadow: 0 1px 8px #1111;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
    padding: 3px;
}

.brand-arrow {
    margin-left: auto;
    color: #bbb;
    font-size: 21px;
    transition: color .18s;
}

.brand-card.selected .brand-arrow {
    color: #EF692A;
}

.next-btn {
    margin: 32px 0 0 0;
    width: 100%;
    padding: 15px 0;
    background: #EF692A;
    color: #fff;
    border: none;
    border-radius: 11px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.next-btn .arrow {
    margin-left: 6px;
    font-size: 21px;
}

.next-btn:hover {
    background: #243F84;
}

@media (max-width: 500px) {
    .device-frame {
        width: 95vw;
        min-width: 0;
        padding: 8vw 2.5vw 8vw 2.5vw;
    }

    .brand-title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .device-frame {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
    }
}

/*===============================================================================================================
brand selection styles end
================================================================================================================*/
/*===============================================================================================================
vehicle selection styles start
================================================================================================================*/
.vehicle-selection {
    background: #f8f9fa;
    /* White background */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.vehicle-selection .vehicle-card {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 16px;
    color: #222;
    text-align: center;
    padding: 18px 8px 14px 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #0001;
    cursor: pointer;
    user-select: none;
}

.vehicle-selection .text {
    color: #EF692A;
}

.vehicle-selection .vehicle-card.selected {
    border-color: #EF692A !important;
    box-shadow: 0 4px 18px #28a74522;
}

.vehicle-selection .circle-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e6e6e6;
    box-shadow: 0 1px 6px #0002;
    display: block;
    margin: 0 auto 10px auto;
    background: #eee;
}

.vehicle-selection .btn-orange {
    background: #EF692A;
    /* Default background */
    color: #fff;
    border-radius: 999px;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 12px 0;
    border: none;
    width: 100%;
}

.vehicle-selection .btn-orange:focus,
.vehicle-selection .btn-orange:hover {
    background: #243F84;
    /* Hover background */
    color: #fff;
}

/*===============================================================================================================
vehicle selection styles end
 ================================================================================================================*/
/* -----------------------
   Product Card Styles
----------------------- */
.card.custom-card {
    background: linear-gradient(145deg, #ffffff, #f7f8fa);
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    padding: 8px;
}

.card.custom-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.card.custom-card h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.card.custom-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 6px;
}

.card.custom-card .price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ff6b00;
}

/* -----------------------
   Filter Box Styles
----------------------- */
.filter-box {
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    border-radius: 14px;
    padding: 15px 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.filter-box:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.filter-box .form-select,
.filter-box .form-control {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-box .form-select:focus,
.filter-box .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.15rem rgba(59, 130, 246, 0.25);
}

.filter-box .btn {
    border-radius: 10px;
    font-weight: 600;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border: none;
    transition: all 0.3s ease;
}

.filter-box .btn:hover {
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
}

.filter-box .btn {
    border-radius: 10px;
    font-weight: 600;
    background: #ff6b00;
    /* main-black variable ka use */
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.filter-box .btn:hover {
    background: #2c3e50;
    /* hover me thoda dark black */
    transform: translateY(-1px);
}


.btn-reset {
    display: inline-flex;
    /* flex so align-items works */
    justify-content: center;
    /* text center horizontally */
    align-items: center;
    /* text center vertically */
    padding: 10px 16px;
    /* button ka proper size */
    border-radius: 10px;
    font-weight: 600;
    background: #2c3e50;
    /* replace with var(--main-black) if you have */
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    /* pointer on hover */
}

.btn-reset:hover {
    background: #1a252f;
    /* darker shade on hover */
    color: #fff;
}


/* -----------------------
   Responsive
----------------------- */
@media (max-width: 767px) {
    .filter-box {
        padding: 12px 15px;
    }
}



/* -----------------------
   Mobile Bottom Nav Styles
----------------------- */
/* Mobile Nav Styling */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.mobile-nav a {
    flex: 1;
    font-size: 13px;
    color: #243F84;
    text-decoration: none;
    padding: 6px 0;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav a i {
    font-size: 18px;
    display: block;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover / Active Animation */
.mobile-nav a:hover i,
.mobile-nav a:focus i {
    transform: translateY(-4px) scale(1.1);
    color: #ff6b00;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
    color: #ff6b00;
}

/* Active link highlight (optional, works on hover/focus) */
.mobile-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: #ff6b00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav a:hover::after,
.mobile-nav a:focus::after {
    width: 40%;
}

/* Responsive hide on desktop */
@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
}

/* Active link style */
.mobile-nav a.active,
.mobile-nav a.active i {
    color: #ff6b00;
}

.mobile-nav a.active::after {
    width: 40%;
    background-color: #ff6b00;
}


/* Table Styling */
.orders-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.orders-table th,
.orders-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.orders-table th {
    background-color: #f7f7f7;
    font-weight: 600;
}

.orders-table tr:hover {
    background-color: #fdf5f0;
}

.order-link {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 500;
}

.order-link:hover {
    text-decoration: underline;
}

/* Invoice Button */
.btn-invoice {
    background: #ff6b00;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-invoice:hover {
    background: #e65a00;
}

/* Mobile Card View */
/* Mobile Order Card Styling */
.order-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    /* Light border */
    border-radius: 12px;
    /* Smooth corners */
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Hover shadow */
    transform: translateY(-3px);
    /* Lift effect */
}

.order-card-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    /* Divider line */
}

.order-card-row:last-child {
    border-bottom: none;
    /* Remove last border */
}

.order-card-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.order-card-value {
    font-weight: 500;
    color: #222;
    font-size: 14px;
}

.order-card a {
    color: #e65a00;
    text-decoration: none;
}

.order-card a:hover {
    text-decoration: underline;
}

/* Download Button Style */
.btn-invoice {
    background: #e65a00;
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-invoice:hover {
    background: #2c3e50;
}

/* Responsive */
@media (max-width: 768px) {
    .orders-table {
        display: none;
    }
}

@media (min-width: 769px) {
    .order-card {
        display: none;
    }
}

.product-details__purchase {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    margin-top: 20px;
    flex-wrap: wrap;
    /* mobile me line break */
}

.product-details__qty {
    flex: 1;
    min-width: 150px;
}

.product-details__section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #444;
}

.form-select {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
}

.product-details__add-btn {
    flex: 1;
    min-width: 160px;
    height: 46px;
    border: none;
    border-radius: 10px;
    background: #ff6a1a;
    /* brand color */
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .1s;
}

.product-details__add-btn:hover {
    background: #e55b0f;
    transform: translateY(-1px);
}

.product-details__add-btn:active {
    transform: translateY(0) scale(.98);
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .product-details__purchase {
        flex-direction: column;
        align-items: stretch;
    }

    .product-details__add-btn {
        width: 100%;
    }
}

/* Section wrapper */
.product-details__section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.product-details__section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #444;
}

/* Option grid */
.option-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

/* Button style */
.option-btn {
    border: 1px solid #ddd;
    background: #f8f8f8;
    padding: 10px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.option-btn:hover {
    background: #f1f1f1;
    transform: translateY(-1px);
}

.option-btn.is-active {
    background: #ff6a1a;
    color: #fff;
    border-color: #ff6a1a;
    box-shadow: 0 3px 10px rgba(255, 106, 26, 0.3);
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .option-group {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row on small screens */
    }
}


.option-btn {
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.875rem;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    transition: all 0.2s ease-in-out;
}

.option-btn:hover {

    color: #0d6efd;
    background: #f8faff;
}

.option-btn.active {
    background: #2c3e50;
    color: #fff !important;
    border-color: #0b5ed7;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.fixed-add-to-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid #ddd;
    padding: 12px 16px;
    box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

/* Price text */
.fixed-add-to-cart .price-text {
    font-size: 18px;
    font-weight: 600;
    color: #800020;
}
