:root {
    --primary-color: #082255;
    --secondary-color: #1A1B1A;
    --third-color: #3376BD;
    --text-color: #333333;
    --primary-gradient: linear-gradient(178.7deg, #3376BD 1.11%, #082255 98.89%);
    --font-family: "Inter", sans-serif;
    --font-heading: 'Purista TRIAL', sans-serif;
    --line-color: #e7ebf1;
    --bg-soft: #f5f7fb;
    --radius-lg: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: normal;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #ddd;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    /* letter-spacing: .5px; */
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: .4s ease;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

@font-face {
    font-family: 'Purista TRIAL';
    src: url('../fonts/PuristaTRIAL-Bold.woff2') format('woff2'),
        url('../fonts/PuristaTRIAL-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Purista TRIAL';
    src: url('../fonts/PuristaTRIAL-SemiBold.woff2') format('woff2'),
        url('../fonts/PuristaTRIAL-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1400px;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1280px;
        font-size: 15px;
    }

}


.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}


.btn-outline-primary {
    display: inline-block;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    padding: 12px 26px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    color: white;
}


.btn-fill-primary {
    display: inline-block;
    border: 0;
    background: var(--primary-gradient);
    color: #ffffff;
    font-weight: 500;
    border-radius: 10px;
    padding: 13px 26px;
    font-size: 0.85rem;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-fill-primary:hover {
    background: #3376BD;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(8, 34, 85, 0.25);
    transform: translateY(-1px);
}



/* Header Css  */

.header {
    padding: 15px 0;
    width: 100%;
    position: sticky;
    background: #ffffff;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.logo img {
    width: 150px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.03);
}

.best-deal {
    background: var(--primary-gradient);
    padding: 10px 22px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(8, 34, 85, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.best-deal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(8, 34, 85, 0.3);
}

.best-deal i {
    font-size: 1rem;
}

/* Search Form */
.search-form form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form input[type="search"] {
    border-radius: 10px;
    padding: 10px 45px 10px 20px;
    border: 1px solid #00000033;
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 265px;
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--secondary-color);
    background: transparent;
}

.search-form input[type="search"]:focus {
    border-color: #3376BD;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(51, 118, 189, 0.15);
}

.search-btn {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form form:hover .search-btn,
.search-form input[type="search"]:focus+.search-btn {
    color: #3376BD;
}

/* Menus */
.menus.desk-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menus.desk-menu li {
    position: relative;
}

.menus.desk-menu li a {
    font-size: .9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-color);
    letter-spacing: 0.5px;
    padding: 6px 0;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.menus.desk-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menus.desk-menu li a:hover::after,
.menus.desk-menu li a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menus.desk-menu li a:hover,
.menus.desk-menu li a.active {
    color: var(--primary-color);
}

/* Account Menus */
.account-menus {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.account-menus li a {
    font-size: 1.25rem;
    color: #1A1B1A;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-menus li a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.cart-icon-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #FE1A16;
    color: #ffffff;
    font-size: 0.55rem;
    font-weight: 600;
    width: 20px;
    height: 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}


/* Banner Section & Swiper */

.banner-section {
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.banner-swiper {
    width: 100%;
}

.banner-slide {
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 100px 0 130px 0;
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 34, 85, 0.4) 0%, rgba(8, 34, 85, 0) 100%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 10;
    color: #ffffff;
}

.banner-title {
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.banner-para {
    margin-bottom: 30px;
    max-width: 520px;
}

.banner-para p {
    color: white;
    margin: 0;
}

.banner-content .btn-outline-primary {
    display: inline-block;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 10px;
    padding: 12px 26px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.banner-content .btn-outline-primary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Promotional Badges */
.banner-promos {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-top: 45px;
}

.promo-badge {
    position: relative;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.promo-badge.promo-refurbished {
    background: var(--primary-color);
    border: 2.5px solid #FFCC00;
    padding: 18px 24px 10px 24px;
    transform: skewX(-12deg);
}

.promo-badge.promo-refurbished .promo-badge-inner {
    transform: skewX(12deg);
}

.promo-tag-label {
    position: absolute;
    top: -12px;
    left: 12px;
    background: #FFCC00;
    color: var(--primary-color);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2.5px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    border: 1.5px solid var(--primary-color);
    text-transform: uppercase;
}

.promo-badge.promo-refurbished .promo-percent {
    font-size: 1.3rem;
    font-weight: 900;
    color: #FFCC00;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-badge.promo-refurbished .promo-desc {
    font-size: 0.72rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.promo-badge.promo-refurbished .promo-desc i {
    color: #FFCC00;
    font-size: 0.85rem;
}

/* Plus Connector */
.promo-plus-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    margin: 0 -12px;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.banner-promos:hover .promo-plus-circle {
    transform: rotate(180deg);
}

/* Right Badge - Accessories */
.promo-badge.promo-accessories {
    background: #ffffff;
    border: 2.5px solid #8B5CF6;
    padding: 0;
    overflow: hidden;
    transform: skewX(-12deg);
    min-width: 170px;
}

.promo-badge.promo-accessories .promo-badge-inner {
    transform: skewX(12deg);
}

.promo-badge.promo-accessories .promo-percent {
    font-size: 1.3rem;
    font-weight: 900;
    color: #8B5CF6;
    font-style: italic;
    line-height: 1.1;
    padding: 14px 20px 4px 20px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
}

.promo-desc-strip {
    background: #8B5CF6;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: calc(100% + 4px);
    margin-left: -2px;
}

.promo-desc-strip i {
    font-size: 0.85rem;
}

/* Hover effects for badges */
.promo-badge:hover {
    transform: skewX(-12deg) translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Swiper Pagination */
.banner-swiper .swiper-pagination-bullets {
    bottom: 25px !important;
}

.banner-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
    margin: 0 6px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: #ffffff !important;
    width: 26px !important;
    border-radius: 5px !important;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .menus.desk-menu {
        gap: 15px;
    }

    .search-form input[type="search"] {
        width: 180px;
    }
}

@media (max-width: 991.98px) {
    .header {
        padding: 12px 0;
    }

    .best-deal {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .search-form input[type="search"] {
        width: 150px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-slide {
        padding: 80px 0 100px 0;
        min-height: 480px;
    }
}

@media (max-width: 767.98px) {
    .navbar-flex {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .search-form {
        order: 4;
        width: 100%;
        margin-top: 10px;
    }

    .search-form form,
    .search-form input[type="search"] {
        width: 100%;
    }

    .menus.desk-menu {
        display: none;
        /* simple fallback: hide menu list on mobile, showing badges & actions */
    }

    .banner-slide {
        background-position: 75% center;
    }
}

@media (max-width: 575.98px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-slide {
        padding: 60px 0 80px 0;
        min-height: 440px;
        background-position: 80% center;
    }

    .banner-promos {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-top: 35px;
    }

    .promo-badge {
        transform: skewX(0deg) !important;
        width: 100%;
        max-width: 280px;
    }

    .promo-badge-inner {
        transform: skewX(0deg) !important;
    }

    .promo-plus-circle {
        display: none;
    }

    .promo-badge:hover {
        transform: translateY(-4px) !important;
    }
}

/* Category Section */

.category-section {
    background: #ffffff;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.bg-color {
    background-color: #f8fafc;
}

.category-btn a {
    color: #505050;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.category-btn a i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.category-btn a:hover {
    color: #3376BD;
}

.category-btn a:hover i {
    transform: translateX(4px);
}

.category-flex-main {
    gap: 20px;
    /* margin-top: 30px; */
    width: 100%;
}

.category-box {
    flex: 1;
    min-width: 160px;
    background-color: #f1f5f9;
    border-radius: 14px;
    padding: 20px;
    height: 235px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #f1f5f9;
}

.category-box .category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A1B1A;
    line-height: 1.2;
    font-family: var(--font-heading);
    z-index: 2;
    transition: color 0.3s ease;
}

.category-box .category-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
    height: auto;
    max-height: 130px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
}

.category-box .category-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    border-color: #e2e8f0;
}

.category-box:hover .category-title {
    color: var(--primary-color);
}

.category-box:hover .category-img img {
    transform: scale(1.06) rotate(1deg);
}

@media (max-width: 991.98px) {
    .category-flex-main {
        flex-wrap: wrap;
        gap: 15px;
    }

    .category-box {
        flex: 1 1 calc(33.33% - 10px);
        height: 175px;
        padding: 20px;
    }

    .category-box .category-img {
        width: 65%;
    }
}

@media (max-width: 767.98px) {
    .category-box {
        flex: 1 1 calc(50% - 8px);
    }
}

@media (max-width: 480px) {
    .category-box {
        flex: 1 1 100%;
        height: 150px;
        padding: 20px;
    }

    .category-box .category-img {
        width: 50%;
    }
}

/* Product Slider Section */

.bg-color {
    background: #00000008;
}

/* .section-header-wrap {
    margin-bottom: 25px;
} */

.product-slider-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.product-slider-nav button {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    border: 0;
    background: #ffffff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-weight: 600;
}

.product-slider-nav button:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    /* border-color: var(--primary-color); */
}


.product-swiper {
    width: 100%;
    padding: 10px 0 20px 0;
}

.product-box {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 14px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.product-box .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.2rem;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.product-box .wishlist-btn:hover,
.product-box .wishlist-btn.active {
    color: #ef4444;
    transform: scale(1.1);
}

.product-box .img-wrap {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}

.product-box .img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-box:hover .img-wrap img {
    transform: scale(1.04);
}

.product-box .swatches {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 24px;
    align-items: center;
}

.product-box .swatch {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.product-box .swatch.selected {
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 3.5px currentColor;
    transform: scale(1.15);
}

.product-box .product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    z-index: 2;
}

.product-box .product-info .name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    /* line-height: 1.35; */
    font-family: var(--font-family);
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-box .product-info .price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #E10600;
    font-family: var(--font-family);
    text-align: right;
    white-space: nowrap;
}

/* ADD TO CART button on hover */
.product-box .add-cart-btn {
    position: absolute;
    bottom: 54px;
    /* positioned over the swatches */
    left: 50%;
    transform: translateX(-50%) translateY(-65px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border: 1.5px solid #1a1b1a;
    color: #1a1b1a;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    width: max-content;
    z-index: 5;
    letter-spacing: 0.5px;
}

.product-box .add-cart-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.product-box:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}


.product-box:hover .add-cart-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(-75px) scale(1);
    pointer-events: auto;
}

/* MacBook Ad Banner */
.add-banner-1 {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.add-banner-1:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.add-banner-1 img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Deal Banner Styles */

.deal-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    min-height: 145px;
    padding: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.02);
}

.deal-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.deal-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.deal-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.deal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.deal-banner p {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--third-color);
    margin-bottom: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}


.deal-banner:hover::before {
    background: rgba(255, 255, 255, 0);
}

@media (max-width: 991.98px) {
    .deal-banner {
        height: 160px;
        padding: 20px;
    }

    .deal-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .deal-banner {
        margin-bottom: 15px;
    }
}

/* Testimonial Section Styles */

.bg-color-2 {
    background: #00000008;
}

.testimonial-container-relative {
    position: relative;
    padding: 0 35px;
}

.testimonial-swiper {
    width: 100%;
    padding: 15px 0 25px 0;
}

.testimonial-box {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 14px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0px 4px 6px 0px #00000026;
}

.testimonial-box p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 400;
    font-family: var(--font-family);
    text-align: left;
}

.testimonials-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonials-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 2px solid #3376BD; */
}

.author-infos {
    flex: 1;
}

.author-infos h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A1B1A;
    margin: 0 0 4px 0;
    font-family: var(--font-heading);
    text-align: left;
}

.author-meta {
    width: 100%;
}

.author-meta span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    font-size: 0.75rem;
}

.review-stars .bi-star-fill {
    color: #FFC107;
}

.review-stars .bi-star {
    color: #cbd5e1;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

/* Testimonial Nav Arrows */
.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    outline: none;
    background: var(--primary-color);
    color: white;
}

.testimonial-prev {
    left: -12px;
    /* background: #cbd5e1; */
    /* color: #ffffff; */
}


.testimonial-next {
    right: -12px;
    /* background: var(--primary-color); */
    /* color: #ffffff; */
}

.testimonial-next:hover,
.testimonial-prev:hover {
    background: #3376BD;
}

@media (max-width: 767.98px) {
    .testimonial-container-relative {
        padding: 0 15px;
    }

    .testimonial-prev,
    .testimonial-next {
        display: none !important;
    }
}

/* Warranty Section Styles */

.warrenty-section {
    background: linear-gradient(180deg, rgba(8, 34, 85, 0.95) 0%, rgba(8, 34, 85, 0.9) 100%), url('../imgs/warrenty-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.warrenty-header {
    margin-bottom: 20px;
}

.warrenty-box {
    background: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
    margin-top: 40px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: calc(100% - 40px);
}

.warrenty-box:hover {
    /* transform: translateY(8px); */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.warrenty-box .num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 4px 10px rgba(8, 34, 85, 0.2);
}

.warrenty-box .warren-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: -0.2px;
}

.warrenty-box p {
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.warrenty-box p strong {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.warrenty-box .btn-fill-primary {
    text-align: center;
    margin: auto;
}

.warrenty-box .btn-fill-primary:hover {
    background: #3376BD;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(8, 34, 85, 0.25);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .warrenty-box {
        padding: 30px 20px;
        margin-top: 30px;
        height: calc(100% - 30px);
    }

    .warrenty-box .warren-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .warrenty-section {
        padding-bottom: 2rem;
    }

    .warrenty-box {
        margin-top: 20px;
        height: auto;
    }
}

/* Why Choose Us Section Styles */

.why-us-section {
    background: #ffffff;
}



.why-us-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.why-us-box img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-us-box .why-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    letter-spacing: -0.2px;
}

.why-us-box p {
    margin: 0;
    font-size: .99rem;
}

.why-us-box:hover img {
    transform: translateY(-6px);
}

/* Call Us & Live Chat Help Section Styles */


.call-us-box {
    position: relative;
    background: transparent;
    border: 1px solid #00000033;
    border-radius: 10px;
    padding: 35px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.call-us-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.call-us-box .img {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-us-box .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.call-us-box .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.call-span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3376BD;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.call-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A1B1A;
    margin-bottom: 7px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.call-us-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #1A1B1A;
    margin: 0;
}

.call-us-a {
    margin-top: 8px;
    font-family: var(--font-heading);
}

.call-us-a a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.call-us-a a:hover {
    color: #3376BD;
}

.call-btn {
    position: absolute;
    bottom: -18px;
    right: 40px;
    box-shadow: 0 4px 12px rgba(8, 34, 85, 0.22) !important;
}

@media (max-width: 991.98px) {
    .call-us-box {
        margin-bottom: 30px;
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .call-us-box {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
        padding-bottom: 50px;
    }

    .call-us-box .text {
        align-items: center;
        text-align: center;
    }

    .call-btn {
        right: 50%;
        transform: translateX(50%);
    }

    .call-btn:hover {
        transform: translateX(50%) translateY(-1px);
    }
}

/* Background Section (Certified Refurbished Unbeatable Prices) Styles */

.bg-section {
    background-image: url('../imgs/Bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
}


.bg-content {
    position: relative;
    z-index: 5;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    border: 1.8px solid #ffffff;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 26px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .bg-section {
        padding: 60px 0;
    }

    .bg-section::before {
        background: rgba(8, 34, 85, 0.85);
    }

    .bg-title {
        font-size: 1.8rem;
    }
}

/* Footer Section Styles */

.footer {
    background: #ffffff;
    padding: 70px 0 0 0;
    border-top: 1px solid #edf2f7;
    font-family: var(--font-family);
}

.footer-info {
    text-align: left;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 145px;
    height: auto;
}

.footer-info p {
    margin: 0;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: capitalize;
    margin-bottom: 20px;
    text-align: left;
    font-family: var(--font-heading);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li::before {
    content: '';
    color: #7a7a7a;
    font-size: 0.85rem;
    line-height: 1;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: #3376BD;
    transform: translateX(3px);
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    /* font-size: 0.88rem; */
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    /* color: #64748b; */
    text-decoration: none;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: #3376BD;
}

.footer-letter p {
    margin-bottom: 20px;
    text-align: left;
}

.footer-form form {
    position: relative;
    display: flex;
    width: 100%;
    border-radius: 10px;
    background: #f1f5f9;
    padding: 4px;
    overflow: hidden;
}

.footer-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 0.82rem;
    color: var(--primary-color);
    outline: none;
}

.footer-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.footer-form button:hover {
    background: #3376BD;
    box-shadow: 0 4px 10px rgba(8, 34, 85, 0.2);
    transform: scale(1.05);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: flex-start;
}

.footer-socials a {
    color: #64748b;
    font-size: 1.15rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Copyright Bar Styles */

.copyright {
    background: var(--primary-gradient);
    padding: 22px 0;
    color: #ffffff;
    margin-top: 60px;
}

.copyright-text {
    font-size: 0.9rem;
    /* font-weight: 600; */
    /* opacity: 0.85; */
}

.policies-menus {
    display: flex;
    gap: 15px;
    align-items: center;
}

.policies-menus a {
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 400;
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.policies-menus a:hover {
    opacity: 1;
    color: #93c5fd;
}


.copyright-text a:hover {
    opacity: 1;
    color: #93c5fd;
}


.policies-menus .divider {
    opacity: 0.4;
    font-size: 0.8rem;
    user-select: none;
}

@media (max-width: 991.98px) {
    .footer {
        padding: 50px 0 0 0;
    }

    .footer-logo,
    .footer-title {
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .copyright {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .copyright .d-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .policies-menus {
        justify-content: center;
    }
}


/* ======================== INNER PAGES ================================ */

/*  Inner Banner */

.inner-banner {
    /* background: ; */
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    color: #ffffff;
    text-align: left;
    position: relative;
    border-bottom: 3px solid #FFCC00;
}

.inner-banner__title {
    font-size: 2.5rem;
    color: #ffffff;
    /* font-weight: 600; */
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom a {
    color: #ffffff;
    transition: color 0.2s ease;
}

.breadcrumb-custom a:hover {
    color: #FFCC00;
}

.breadcrumb-custom span {
    opacity: 0.7;
}

.breadcrumb-custom .active-crumb {
    color: #FFCC00;
    font-weight: 600;
}

/* Sidebar Header */
.sidebar-header {
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 15px;
}

.sidebar-main-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.btn-reset-filters {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--third-color);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.25s ease;
    padding: 0;
    outline: none;
}

.btn-reset-filters:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Sidebar Filter Widgets */
.sidebar-filter {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 95px;
    /* stick below header */
    /* max-height: calc(100vh - 120px); */
    overflow-y: auto;
    scrollbar-width: thin;
}

.sidebar-filter::-webkit-scrollbar {
    width: 4px;
}

.sidebar-filter::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.filter-widget {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #f1f5f9;
}

.filter-widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Category list style */
.filter-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-category-list li {
    margin-bottom: 13px;
}

.filter-category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.25s ease;
}

.filter-category-list li a:hover,
.filter-category-list li.active a {
    color: var(--third-color);
    transform: translateX(4px);
}

.filter-category-list li a span.count {
    font-size: 0.78rem;
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.filter-category-list li a:hover span.count,
.filter-category-list li.active a span.count {
    background: var(--third-color);
    color: #ffffff;
}

/* Custom Checkbox Design */
.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    user-select: none;
    transition: color 0.2s ease;
}

.custom-checkbox:hover {
    color: var(--primary-color);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #f1f5f9;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--third-color);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox .count {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-left: 6px;
}

/* Price Range Slider Widget */
.price-slider-wrapper {
    padding: 10px 5px 0 5px;
}

.price-slider {
    height: 5px;
    position: relative;
    background: #e2e8f0;
    border-radius: 5px;
    margin-bottom: 22px;
}

.price-slider-progress {
    height: 100%;
    left: 10%;
    right: 20%;
    position: absolute;
    background: var(--third-color);
    border-radius: 5px;
}

.price-slider-input {
    position: relative;
}

.price-slider-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -27px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-slider-input input::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--primary-color);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.price-slider-input input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.price-input-fields {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-field-box {
    display: flex;
    align-items: center;
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 10px;
}

.price-field-box span {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-right: 4px;
}

.price-field-box input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
}

/* Color Swatches Filter */
.color-filter-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-swatch-label {
    position: relative;
    cursor: pointer;
}

.color-swatch-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.color-circle {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.color-swatch-label input:checked~.color-circle {
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px currentColor;
    transform: scale(1.1);
}

.color-swatch-label:hover .color-circle {
    transform: scale(1.1);
}

/* Top Shop Toolbar */
.shop-toolbar {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 14px;
    padding: 15px 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.toolbar-info {
    font-size: 0.92rem;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}

.toolbar-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-select-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-select-wrapper label {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.sort-select {
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 30px 8px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary-color);
    outline: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23334155' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 10px;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
}

.sort-select:focus {
    border-color: var(--third-color);
    box-shadow: 0 0 0 3px rgba(51, 118, 189, 0.15);
}

.view-toggle {
    display: flex;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    border-radius: 8px;
    padding: 3px;
}

.view-toggle-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #64748b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.view-toggle-btn.active {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(8, 34, 85, 0.2);
}

.view-toggle-btn:hover:not(.active) {
    color: var(--primary-color);
    background: #e2e8f0;
}

/* Product Card - Storage/Condition Badges & Tags */
.product-box .tag-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--third-color);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(51, 118, 189, 0.2);
}

.product-box .tag-badge.badge-condition {
    background: #10b981;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.product-box .tag-badge.badge-promo {
    background: #f59e0b;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.2);
}


/* List View Layout Overrides */
.row-cols-list {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.row-cols-list .col {
    width: 100%;
}

.row-cols-list .product-box {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 24px;
    gap: 30px;
    min-height: 200px;
}

.row-cols-list .product-box .img-wrap {
    width: 180px;
    height: 150px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.row-cols-list .product-box .product-details-wrap {
    flex-grow: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.row-cols-list .product-box .swatches {
    justify-content: flex-start;
    margin: 5px 0 12px 0;
}

.row-cols-list .product-box .product-info {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    gap: 20px;
}

.row-cols-list .product-box .product-info .name {
    font-size: 1.15rem;
    font-weight: 600;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.row-cols-list .product-box .product-info .price {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.row-cols-list .product-box .product-actions-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
    gap: 15px;
    min-width: 160px;
    border-left: 1.5px solid #edf2f7;
    padding-left: 30px;
    height: 100%;
}

.row-cols-list .product-box .add-cart-btn {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    margin: 0;
}

.row-cols-list .product-box .wishlist-btn {
    top: 20px;
    right: 20px;
}

.row-cols-list .product-box:hover .add-cart-btn {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(8, 34, 85, 0.15);
}

@media (max-width: 767.98px) {
    .row-cols-list .product-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .row-cols-list .product-box .img-wrap {
        width: 100%;
    }

    .row-cols-list .product-box .product-details-wrap {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .row-cols-list .product-box .swatches {
        justify-content: center;
    }

    .row-cols-list .product-box .product-info {
        flex-direction: column;
        gap: 10px;
    }

    .row-cols-list .product-box .product-info .name {
        text-align: center;
    }

    .row-cols-list .product-box .product-actions-wrap {
        width: 100%;
        border-left: none;
        padding-left: 0;
        align-items: center;
    }
}

/* Branded Promotional Banner Inline */
.shop-promo-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #163673 50%, var(--third-color) 100%);
    border-radius: 14px;
    padding: 35px 45px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 10px 25px rgba(8, 34, 85, 0.15);
}

.shop-promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.shop-promo-banner-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    text-align: left;
}

.shop-promo-badge {
    background: #FFCC00;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.shop-promo-title {
    font-size: 2.1rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.shop-promo-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px !important;
    line-height: 1.5;
}

.shop-promo-btn {
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.shop-promo-btn:hover {
    background: #FFCC00;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.3);
}

.shop-promo-image-wrap {
    position: absolute;
    bottom: -20px;
    right: 40px;
    width: 250px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}

.shop-promo-image-wrap img {
    max-height: 220px;
    object-fit: contain;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.shop-promo-banner:hover .shop-promo-image-wrap img {
    transform: rotate(0deg) scale(1.05);
}

@media (max-width: 991.98px) {
    .shop-promo-banner {
        padding: 30px;
    }

    .shop-promo-image-wrap {
        display: none;
    }

    .shop-promo-title {
        font-size: 1.7rem;
    }
}

/* Custom Pagination */
.pagination-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.pagination-custom li a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1.5px solid #edf2f7;
    background: #ffffff;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pagination-custom li.active a {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(8, 34, 85, 0.2);
}

.pagination-custom li a:hover:not(.active) {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-custom li.disabled a {
    opacity: 0.5;
    pointer-events: none;
}

.pagination-custom li.disabled a:hover {
    transform: none;
}

/* Mobile responsive filters & sticky triggers */
.mobile-filter-bar {
    display: none;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    padding: 12px 15px;
    z-index: 998;
}

.mobile-filter-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(8, 34, 85, 0.2);
}

/* Mobile Sidebar Drawer layout */
@media (max-width: 991.98px) {
    .mobile-filter-bar {
        display: block;
    }

    .sidebar-filter {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        z-index: 1050;
        background: #ffffff;
        border-radius: 0;
        border: none;
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: 100vh;
        padding-top: 60px;
        /* clear overlay top buttons */
    }

    .sidebar-filter.active {
        left: 0;
    }

    .filter-drawer-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 24px;
        background: var(--primary-color);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 10;
    }

    .filter-drawer-header h3 {
        font-size: 1.15rem;
        color: #ffffff;
        margin: 0;
        font-family: var(--font-heading);
    }

    .filter-drawer-close {
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 1.3rem;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .filter-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(2px);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .filter-backdrop.show {
        opacity: 1;
        visibility: visible;
    }
}


/* ============== 404 page ========= */


.error-code {
    font-size: 130px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.error-box h2 {
    font-size: 34px;
    margin: 20px 0;
}

.error-box p {
    max-width: 550px;
    margin: auto;
    color: #666;
}

.error-actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.popular-links {
    margin-top: 30px;
}

.popular-links a {
    margin: 0 8px;
    color: var(--primary-color);
}

/* THANKS YOU PAGE  */



.thankyou-card {
    background: #fff;
    border-radius: 20px;
    /* border: 1px solid #e7edf3; */
    padding: 70px 50px;
    max-width: 850px;
    margin: auto;
}


.thankyou-card h2 {
    font-size: 80px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.thankyou-card p {
    max-width: 560px;
    margin: 20px auto;
    color: #666;
}

.reference-box {
    display: inline-block;
    margin-top: 10px;
    background: #f7f8fa;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
}

.thankyou-actions {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------------------------------------------------------
   POLICY PAGES TYPOGRAPHY & LAYOUTS
   --------------------------------------------------------- */

.policy-container {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333333
}

.policy-header-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 24px;
    font-weight: 600;
}

.policy-container h2 {
    font-size: 1.45rem;
    color: #042346;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
}

.policy-container h3 {
    font-size: 1.15rem;
    color: #042346;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-container p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.policy-container ul,
.policy-container ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.policy-container li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.policy-container a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.policy-container a:hover {
    color: #3f7b20;
    text-decoration: underline;
}

.policy-notice {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 18px 24px;
    border-radius: 8px;
    margin: 28px 0;
    font-style: italic;
    color: #334155;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
}

.policy-table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 28px 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 500px;
}

.policy-table th,
.policy-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.policy-table th {
    background-color: #f1f5f9;
    font-weight: 600;
    color: #042346;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 40px 0;
    border: none;
}

/* ================  shop Detail Css  ===================== */


.product-gallery {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.product-gallery__thumbs {
    position: relative;
}

.thumbs-swiper {
    height: 420px;
}

.thumbs-swiper .swiper-slide {
    height: 70px !important;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e7ebf1;
    cursor: pointer;
    /* opacity: .65; */
    transition: .25s ease;
}

.thumbs-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #3376bd;
}

.thumbs-nav {
    width: 28px;
    height: 28px;
    border: 1px solid var(--primary-color);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 0;
    color: var(--primary-color);
    font-size: .75rem;
}

.thumbs-nav--next {
    margin-top: 8px;
}

.product-gallery__main {
    position: relative;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e7ebf1;
    overflow: hidden;
}

.main-swiper {
    height: 500px;
}

.main-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    overflow: hidden;
}

.main-swiper img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    padding: 30px;
    transition: transform .5s ease;
}

.main-swiper .swiper-slide a:hover img {
    transform: scale(1.06);
}

.product-gallery__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .03em;
    padding: 6px 12px;
    border-radius: 30px;
    color: #fff;
}

.product-gallery__badge--sale {
    background: linear-gradient(120deg, red, #ff7a59);
}

.product-gallery__wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e7ebf1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b2555;
    transition: .2s;
}

.product-gallery__wishlist:hover {
    background: red;
    border-color: red;
    color: #fff;
}

.product-gallery__hint {
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-size: .74rem;
    color: #6b7684;
    background: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #e7ebf1;
}

/* ---------- PRODUCT INFO ---------- */
.product-info__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.meta-tag {
    font-size: .72rem;
    font-weight: 600;
    color: #3376bd;
    background: rgba(51, 118, 189, .1);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-sku {
    font-size: .78rem;
    color: #6b7684;
}

.product-info__title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0b2555;
    line-height: 1.2;
    margin: 15px 0;
}

.product-info__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: .88rem;
}

.product-info__rating .stars {
    color: goldenrod;
    font-size: .85rem;
    letter-spacing: 1px;
}

.product-info__rating .rating-value {
    font-weight: 600;
    color: var(--pc-ink);
}

.product-info__rating .rating-count {
    color: #3376bd;
    text-decoration: none;
}

.product-info__rating .divider {
    color: #e7ebf1;
}

.stock-status {
    color: #1fa971;
    font-weight: 600;
}

.out_of_stock-status {
    color: #d40000;
    font-weight: 600;
}

.product-info__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed #e7ebf1;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d40000;
}

.price-original {
    font-size: 1.1rem;
    color: #6b7684;
    text-decoration: line-through;
}

.price-save {
    font-size: .72rem;
    font-weight: 600;
    color: #1fa971;
    background: rgba(31, 169, 113, .1);
    padding: 4px 10px;
    border-radius: 20px;
}

.product-info__desc {
    /* font-size: .95rem; */
    /* line-height: 1.7; */
    margin-bottom: 25px;
}

.variant-group {
    margin-bottom: 20px;
}

.variant-group__label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #0b2555;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.variant-group__label em {
    font-style: normal;
    color: #3376bd;
    text-transform: none;
    letter-spacing: 0;
}

/* condition chips */
.variant-condition {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.condition-chip {
    position: relative;
    display: block;
    text-align: center;
    border: 1.5px solid #e7ebf1;
    border-radius: 12px;
    padding: 12px 8px;
    cursor: pointer;
    transition: .2s;
}

.condition-chip input {
    position: absolute;
    opacity: 0;
}

.condition-chip__title {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #0b2555;
}

.condition-chip__meta {
    display: block;
    font-size: .7rem;
    color: #6b7684;
    margin-top: 5px;
}

.condition-chip:has(input:checked) {
    border-color: #3376bd;
    background: rgba(51, 118, 189, .06);
    box-shadow: 0 0 0 1px #3376bd inset;
}

/* storage pills */
.variant-pills {
    display: flex;
    gap: 10px;
}

.variant-pill {
    position: relative;
    cursor: pointer;
}

.variant-pill input {
    position: absolute;
    opacity: 0;
}

.variant-pill span {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 10px;
    border: 1.5px solid #e7ebf1;
    font-weight: 600;
    font-size: .85rem;
    color: #0b2555;
    transition: .2s;
}

.variant-pill input:checked+span {
    background: #0b2555;
    border-color: #0b2555;
    color: #fff;
}

/* color swatches */
.variant-swatches {
    display: flex;
    gap: 12px;
}

.swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    background: var(--swatch-color);
    position: relative;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1.5px #e7ebf1;
}

.swatch input {
    position: absolute;
    opacity: 0;
}

.swatch:has(input:checked) {
    box-shadow: 0 0 0 2px #3376bd;
}

/* actions */
.product-info__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 26px 0 20px;
    flex-wrap: wrap;
}

.qty-stepper {
    display: flex;
    align-items: center;
    border: 1.5px solid #e7ebf1;
    border-radius: 10px;
    overflow: hidden;
}

.qty-stepper__btn {
    width: 38px;
    height: 46px;
    border: none;
    background: #fff;
    font-size: 1.1rem;
    color: #0b2555;
}

.qty-stepper__btn:hover {
    background: #f5f7fb;
}

.qty-stepper__input {
    width: 40px;
    height: 46px;
    border: none;
    border-left: 1px solid #e7ebf1;
    border-right: 1px solid #e7ebf1;
    text-align: center;
    font-weight: 600;
    color: var(--pc-ink);
}

.btn-cart,
.btn-buy-now {
    height: 46px;
    padding: 0 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-cart {
    background: #fff;
    border: 1.5px solid #0b2555;
    color: #0b2555;
}

.btn-cart:hover {
    background: #0b2555;
    color: #fff;
}

.btn-buy-now {
    background: linear-gradient(120deg, #0b2555 0%, #3376bd 100%);
    color: #fff;
}

.btn-buy-now:hover {
    filter: brightness(1.08);
    color: #fff;
}

/* delivery check */
.delivery-check {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f7fb;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 22px;
}

.delivery-check i {
    color: #3376bd;
}

.delivery-check input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: .85rem;
    outline: none;
}

.delivery-check button {
    border: none;
    background: #0b2555;
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 7px;
}

/* trust strip */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 18px 0;
    border-top: 1px solid #e7ebf1;
    border-bottom: 1px solid #e7ebf1;
    margin-bottom: 18px;
}

.trust-strip__item {
    text-align: center;
    font-size: .72rem;
    color: #0b2555;
    font-weight: 600;
}

.trust-strip__item i {
    display: block;
    font-size: 1.3rem;
    color: #3376bd;
    margin-bottom: 6px;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .85rem;
    color: #6b7684;
}

.product-share a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e7ebf1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b2555;
}

.product-share a:hover {
    background: #0b2555;
    color: #fff;
    border-color: #0b2555;
}

/* ---------- TABS ---------- */
.product-tabs {
    margin-top: 70px;
}

.product-tabs__nav {
    list-style: none;
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0 0 30px;
    border-bottom: 1px solid #e7ebf1;
    /* overflow-x: auto; */
}

.product-tabs__nav button {
    border: none;
    background: none;
    padding: 14px 22px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    position: relative;
    white-space: nowrap;
}

.product-tabs__nav button.active {
    color: #0b2555;
}

.product-tabs__nav button.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px 3px 0 0;
}

.tab-panel {
    display: none;
    animation: fadeIn .35s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid #e7ebf1;
}

.spec-table th {
    text-align: left;
    padding: 12px 10px;
    width: 40%;
    color: #6b7684;
    font-weight: 600;
    font-size: .88rem;
}

.spec-table td {
    padding: 12px 10px;
    font-weight: 600;
    color: #0b2555;
    font-size: .88rem;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-columns h6 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0b2555;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-columns h6 i {
    color: #3376bd;
}


.condition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.condition-card {
    background: #fff;
    border: 1px solid #e7ebf1;
    border-radius: 10px;
    padding: 26px 22px;
    position: relative;
}

.condition-card__num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0b2555;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 14px;
}

.condition-card h6 {
    font-weight: 600;
    color: #0b2555;
    margin-bottom: 8px;
}

.condition-card p {
    color: #6b7684;
    font-size: .85rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.condition-card__badge {
    font-size: .72rem;
    font-weight: 600;
    color: #3376bd;
    background: rgba(51, 118, 189, .08);
    padding: 5px 12px;
    border-radius: 20px;
}

.inbox-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.inbox-item {
    text-align: center;
    padding: 24px 10px;
    border: 1px solid #e7ebf1;
    border-radius: 14px;
    font-size: .82rem;
    font-weight: 600;
    color: #0b2555;
}

.inbox-item i {
    display: block;
    font-size: 1.6rem;
    color: #3376bd;
    margin-bottom: 10px;
}


/* ================== ABout Page Css ================== */

.about-story,
.about-values,
.about-cta {
    font-family: var(--font-family);
    color: var(--text-color);
}

.about-story__media img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.about-story__stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(8, 34, 85, .1);
}

.about-story__stats strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
}

.about-story__stats span {
    font-size: .8rem;
    opacity: .65;
}

/* value cards */
.value-card {
    background: #fff;
    border: 1px solid rgba(8, 34, 85, .08);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    transition: .25s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(8, 34, 85, .1);
    border-color: var(--third-color);
}

.value-card i {
    font-size: 1.6rem;
    color: var(--third-color);
    margin-bottom: 14px;
    display: block;
}

.value-card_title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.value-card p {
    font-size: .84rem;
    opacity: .7;
    line-height: 1.6;
    margin: 0;
}

/* cta strip */
.about-cta {
    background: var(--primary-gradient);
    padding: 50px 0;
}

.about-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.about-cta__title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.about-cta__inner p {
    color: rgba(255, 255, 255, .75);
    margin: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid white;
}

.btn-cta:hover {
    background: transparent;
    color: #fff;
}

/* process cards */
.process-card {
    position: relative;
    padding: 15px 4px;
    text-align: center;
}

.process-card__num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: rgba(51, 118, 189, .25);
    margin-bottom: 8px;
}

.process-card_title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.process-card p {
    font-size: .84rem;
    line-height: 1.6;
    margin: 0;
}

/* ================= Contact Us page  =================== */


.contact-page,
.support-strip,
.map-section {
    font-family: var(--font-family);
    color: var(--text-color);
}

.contact-intro__title,
.contact-form-card__title,
.map-overlay-card h5,
.info-card h6,
.support-strip__item h6 {
    font-family: var(--font-heading);
}


.info-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line-color);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    transition: .25s ease;
}

.info-card:hover {
    border-color: var(--third-color);
    box-shadow: 0 12px 30px rgba(8, 34, 85, .08);
    transform: translateY(-2px);
}

.info-card__icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.info-card__body h6 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: .95rem;
}

.info-card__body a {
    color: var(--third-color);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
}

.info-card__body a:hover {
    text-decoration: underline;
}

.info-card__body a.no-underline {
    color: var(--text-color);
    font-weight: 500;
}

.info-card__note {
    display: block;
    font-size: .76rem;
    color: var(--text-color);
    opacity: .6;
    margin-top: 3px;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .85rem;
    color: var(--text-color);
    opacity: .8;
}

.contact-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: .2s;
}

.contact-social a:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
}

/* ---------- RIGHT: FORM ---------- */
.contact-form-card {
    background: #fff;
    border: 1px solid var(--line-color);
    border-radius: 22px;
    padding: 46px 42px;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

.contact-form-card__badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--third-color);
    background: rgba(51, 118, 189, .08);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.contact-form-card__title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.form-label-custom {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}


.form-control {
    font-size: .8rem;
}

.form-control-custom {
    width: 100%;
    border: 1px solid var(--line-color);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: var(--font-family);
    font-size: .92rem;
    color: var(--text-color);
    background: var(--bg-soft);
    transition: .2s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--third-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(51, 118, 189, .12);
}

.form-select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23082255' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
}

.field-error {
    display: none;
    font-size: .76rem;
    color: #e5484d;
    margin-top: 6px;
}

.was-validated .form-control-custom:invalid~.field-error,
.form-control-custom.is-invalid~.field-error {
    display: block;
}

.form-control-custom.is-invalid {
    border-color: #e5484d;
    background: #fff5f5;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    margin-top: 8px;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 600;
    font-size: .92rem;
    padding: 15px 34px;
    border-radius: 12px;
    transition: .25s ease;
}

.btn-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(8, 34, 85, .25);
}

.btn-submit i {
    transition: transform .25s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

.contact-form-card form.is-hidden {
    display: none;
}

.form-success {
    display: none;
    align-items: flex-start;
    gap: 16px;
    background: rgba(31, 169, 113, .08);
    border: 1px solid rgba(31, 169, 113, .25);
    border-radius: 14px;
    padding: 22px;
}

.form-success.is-visible {
    display: flex;
}

.form-success i {
    font-size: 1.6rem;
    color: #1fa971;
}

.form-success h6 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.form-success p {
    font-size: .88rem;
    color: var(--text-color);
    opacity: .75;
    margin: 0;
}

/* ---------- SUPPORT STRIP ---------- */
.support-strip {
    background: var(--primary-color);
    padding: 46px 0;
}

.support-strip__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.support-strip__item i {
    font-size: 1.6rem;
    color: var(--third-color);
}

.support-strip__item h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: .92rem;
}

.support-strip__item p {
    color: rgba(255, 255, 255, .65);
    font-size: .8rem;
    margin: 0;
    line-height: 1.5;
}

/* ---------- MAP ---------- */
.map-section {
    position: relative;
    padding-bottom: 90px;
}

.map-section__frame {
    width: 100%;
    height: 460px;
    filter: grayscale(0.15) contrast(1.02);
}

.map-section__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-overlay-card {
    position: relative;
    margin-top: -110px;
    margin-left: 0;
    max-width: 340px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 24px 50px rgba(8, 34, 85, .18);
}

.map-overlay-card__eyebrow {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--third-color);
}

.map-overlay-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 8px 0 14px;
}

.map-overlay-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .86rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.map-overlay-card p i {
    color: var(--third-color);
}

.map-overlay-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-weight: 600;
    font-size: .85rem;
    color: var(--primary-color);
    text-decoration: none;
}

.map-overlay-card__link:hover {
    color: var(--third-color);
}



/* ==========================================================================
   SHOPPING CART PAGE DETAILS
   ========================================================================== */
.cart-table-wrap {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.cart-table th {
    background-color: #f8fafc;
    color: #333333;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 20px;
}

.cart-table td {
    padding: 24px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background-color: #f8fafc;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
}

.cart-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-product-title {
    font-size: 1rem;
    font-weight: 750;
    margin-bottom: 4px;
}

.cart-product-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cart-product-title a:hover {
    color: var(--primary-color);
}

.cart-product-merchant {
    font-size: 0.8125rem;
    color: #64748b;
    margin-bottom: 2px;
}

.cart-product-merchant a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.cart-product-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    display: block;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    width: fit-content;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease;
}

.qty-box:hover {
    border-color: #94a3b8;
}

.qty-btn {
    border: none;
    background: none;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.qty-btn:hover {
    background-color: #f1f5f9;
    color: var(--secondary-color);
}

.qty-input {
    border: none;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    width: 44px;
    height: 36px;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: none;
}

.qty-input:focus {
    outline: none;
}

.cart-remove-btn {
    border: none;
    background: none;
    color: #94a3b8;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-remove-btn:hover {
    background-color: #fee2e2;
    color: #ef4444;
    transform: scale(1.08);
}




/* ==========================================================================
   CART & CHECKOUT SUMMARY DETAILS
   ========================================================================== */

.cart-summary-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.summary-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.summary-calc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.summary-calc-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
    color: #333333
}

.summary-calc-list .calc-label {
    color: #64748b;
}

.summary-calc-list .calc-value {
    font-weight: 600;
    color: var(--secondary-color);
}

.summary-total-row {
    border-top: 1px solid #eef2f6;
    padding-top: 18px;
    margin-top: 6px;
}

.summary-total-row .calc-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color) !important;
}

.summary-total-row .calc-value {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-color);
}


.coupon-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(81, 156, 43, 0.1);
}

.trust-indicators-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #eef2f6;
    padding-top: 20px;
}

.trust-indicator-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: #333333
}

.trust-icon {
    font-weight: 600;
    font-size: 0.95rem;
}


/* ==========================================================================
   CHECKOUT PAGE DETAILS
   ========================================================================== */
.checkout-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.checkout-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 24px;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 14px;
}

.checkout-card .form-control:focus,
.checkout-card .form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(81, 156, 43, 0.1) !important;
}

.shipping-option-card {
    display: block;
    cursor: pointer;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.25s ease;
    background: #fff;
    position: relative;
}

.shipping-option-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.shipping-option-card.active {
    border-color: var(--primary-color);
    background-color: #f8f8f8;
}

.shipping-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Payment tabs */
.payment-tabs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.payment-tab-btn {
    border: 1px solid #eef2f6;
    background-color: #fff;
    border-radius: 12px;
    padding: 14px 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.payment-tab-btn:hover {
    border-color: #cbd5e1;
    color: var(--secondary-color);
}

.payment-tab-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #f8f8f8;
}

.payment-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.payment-method-panel {
    display: none;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 24px;
    background-color: #f8fafc;
    margin-top: 16px;
}

.payment-method-panel.active {
    display: block;
}

/* Checkout Summary List Items */
.checkout-product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-product-thumb {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #f8fafc;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
}

.checkout-product-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.checkout-product-thumb .thumb-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #64748b;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-product-info {
    flex-grow: 1;
}

.checkout-prod-name {
    font-size: 0.875rem;
    font-weight: 750;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.checkout-prod-merchant {
    font-size: 0.75rem;
    color: #64748b;
    display: block;
}

.checkout-product-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ==========================================================================
   SIMULATED CHECKOUT LOADER SCREEN
   ========================================================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 35, 70, 0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.spinner-container {
    max-width: 320px;
}

.premium-spinner {
    width: 56px;
    height: 56px;
    border: 3px solid rgba(81, 156, 43, 0.15);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



.wishlist-page {
    font-family: var(--font-family);
    color: var(--text-color);
}

.breadcrumb-custom__icon {
    font-size: .7rem;
}

.inner-banner--wishlist {
    background: linear-gradient(135deg, rgba(8, 34, 85, 0.92) 0%, rgba(51, 118, 189, 0.92) 100%), url('imgs/Bg.jpg');
    background-size: cover;
    background-position: center;
}

/* toolbar */
.wishlist-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 22px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(8, 34, 85, .1);
}

.wishlist-toolbar__count {
    font-size: .95rem;
    opacity: .75;
}

.wishlist-toolbar__count strong {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.wishlist-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wishlist-sort {
    border: 1px solid rgba(8, 34, 85, .15);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: .85rem;
    color: var(--text-color);
    background: #fff;
}

.btn-move-all,
.btn-clear-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: .85rem;
    font-weight: 600;
    border: 1px solid rgba(8, 34, 85, .15);
    background: #fff;
    color: var(--primary-color);
}

.btn-move-all:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
}

.btn-clear-all {
    color: #e5484d;
    border-color: rgba(229, 72, 77, .25);
}

.btn-clear-all:hover {
    background: #e5484d;
    border-color: transparent;
    color: #fff;
}

/* grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wishlist-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(8, 34, 85, .08);
    border-radius: 16px;
    overflow: hidden;
    transition: opacity .3s ease, transform .3s ease;
}

.wishlist-card:hover {
    box-shadow: 0 16px 32px rgba(8, 34, 85, .1);
}

.wishlist-card.is-removing {
    opacity: 0;
    transform: scale(.92);
}

.wishlist-card__remove {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(8, 34, 85, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    color: var(--primary-color);
}

.wishlist-card__remove:hover {
    background: #e5484d;
    border-color: transparent;
    color: #fff;
}

.wishlist-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: .68rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary-gradient);
    padding: 5px 11px;
    border-radius: 20px;
}

.wishlist-card__media {
    display: block;
    padding: 26px;
    background: var(--bg-soft, #f5f7fb);
}

.wishlist-card__media img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.wishlist-card__body {
    padding: 18px 18px 22px;
}

.wishlist-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--third-color);
    margin-bottom: 8px;
}

.wishlist-card__meta--oos {
    color: #e5484d;
}

.wishlist-card__title {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    font-size: .95rem;
    margin-bottom: 8px;
    text-decoration: none;
}

.wishlist-card__title:hover {
    color: var(--third-color);
}

.wishlist-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.price-current {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.price-original {
    font-size: .82rem;
    color: var(--text-color);
    opacity: .5;
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
    padding: 11px;
    border-radius: 9px;
}

.btn-add-cart:hover {
    filter: brightness(1.08);
}

.btn-add-cart:disabled {
    background: rgba(8, 34, 85, .08);
    color: var(--text-color);
    opacity: .6;
    cursor: not-allowed;
}

/* empty state */
.wishlist-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 70px 20px;
}

.wishlist-empty.is-visible {
    display: flex;
}

.wishlist-empty i {
    font-size: 2.6rem;
    color: rgba(51, 118, 189, .35);
    margin-bottom: 18px;
}

.wishlist-empty h5 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.wishlist-empty p {
    opacity: .7;
    margin-bottom: 22px;
}

.btn-shop-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
}

.btn-shop-now:hover {
    color: #fff;
    filter: brightness(1.08);
}




/* Account Dashboard Layout */
.dashboard-wrapper {
    background-color: #f8fafc;
}

.dashboard-sidebar {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.dashboard-user-card {
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.dashboard-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    /* border: 3px solid #fff; */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.dashboard-menu-link.active,
.dashboard-menu-link:hover {
    background-color: var(--third-color);
    color: white;
}

.dashboard-menu-link.logout {
    margin-top: 15px;
    border-top: 1px solid #e2e8f0;
    border-radius: 0;
    padding-top: 15px;
    color: #ef4444 !important;
    background: white !important;

}

.dashboard-panel {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.dashboard-panel-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 24px;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 16px;
}

.order-table th {
    background-color: #f8fafc;
    color: #333333;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
}

.order-table td {
    padding: 16px;
    font-size: 0.925rem;
    color: #333333;
    vertical-align: middle;
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 30px;
}

.status-badge--success {
    background-color: #dcfce7;
    color: #15803d;
}

.status-badge--warning {
    background-color: #fef3c7;
    color: #b45309;
}

.status-badge--info {
    background-color: #e0f2fe;
    color: #0369a1;
}


/* =========================================================================
   AUTHENTICATION & REGISTRATION REDESIGN
   ========================================================================== */

/* Auth Section background */

.auth-section {
    background-color: #f8fafc;
}


.auth-form-wrap {
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.auth-form-wrap:before {
    position: absolute;
    content: "";
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    top: -80px;
    left: -90px;
    border-radius: 50%;
    z-index: -1;
}


/* Custom form control to match layout and design system */

.form-control-custom {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #cbd5e1;
    appearance: none;
    border-radius: 10px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-custom:focus {
    color: var(--text-color);
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(81, 156, 43, 0.15);
}

.form-label-custom {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-bottom: 8px;
    display: block;
}


.auth-option-card {
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-option-card:hover {
    border-color: var(--primary-color);
    background-color: #f8fafc;
}

.auth-option-card.active {
    border-color: var(--primary-color);
    background-color: rgba(81, 156, 43, 0.05);
}

.auth-option-card-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.auth-option-card-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    user-select: none;
}

/* OTP Inputs */
.auth-otp-wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}

.auth-otp-field {
    width: 52px;
    height: 52px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: var(--secondary-color);
    transition: all 0.15s ease;
}

.auth-otp-field:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(81, 156, 43, 0.15);
}

/* Password Helper criteria items */
.password-criteria {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.password-criteria-item {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-left: 12px;
    position: relative;
}

.password-criteria-item::before {
    position: absolute;
    content: "";
    background: #cbd5e1;
    font-weight: bold;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    left: 0;
    top: 7px;
}

/* =============== SERACH PAGE CSS ================== */



/* ---------- RESULTS TOOLBAR ---------- */
.results-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}

.results-toolbar__summary {
    font-size: .9rem;
    opacity: .75;
    margin: 0;
}

.results-toolbar__summary strong {
    color: var(--primary-color);
}

.results-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-sort {
    border: 1px solid rgba(8, 34, 85, .15);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: .85rem;
    background: #fff;
}

.view-toggle {
    display: flex;
    border: 1px solid rgba(8, 34, 85, .15);
    border-radius: 8px;
    overflow: hidden;
}

.view-toggle__btn {
    width: 38px;
    height: 38px;
    border: none;
    background: #fff;
    color: var(--primary-color);
}

.view-toggle__btn.active,
.view-toggle__btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* active filter chips */
.active-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.active-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(51, 118, 189, .08);
    color: var(--primary-color);
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 8px 6px 14px;
    border-radius: 20px;
}

.active-chip button {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: rgba(8, 34, 85, .1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
}

.active-chip button:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ---------- RESULTS GRID ---------- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.result-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(8, 34, 85, .08);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .25s ease;
}

.result-card:hover {
    box-shadow: 0 16px 32px rgba(8, 34, 85, .1);
}

.result-card__wish {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(8, 34, 85, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: var(--primary-color);
}

.result-card__wish:hover {
    background: #e5484d;
    border-color: transparent;
    color: #fff;
}

.result-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: .68rem;

    color: #fff;
    background: linear-gradient(120deg, #ff3b3b, #ff7a59);
    padding: 5px 11px;
    border-radius: 20px;
}

.result-card__badge--new {
    background: var(--primary-gradient);
}

.result-card__media {
    display: block;
    padding: 24px;
    background: #f5f7fb;
}

.result-card__media img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.result-card__body {
    padding: 16px 18px 20px;
}

.result-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .7rem;

    color: var(--third-color);
    margin-bottom: 8px;
}

.result-card__meta--oos {
    color: #e5484d;
}

.result-card__title {
    display: block;
    font-weight: 600;
    font-size: .92rem;
    color: var(--text-color);
    margin-bottom: 8px;
    text-decoration: none;
}

.result-card__title:hover {
    color: var(--third-color);
}

.result-card__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    opacity: .7;
    margin-bottom: 10px;
}

.result-card__rating i {
    color: #f4b740;
}

.result-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}

.price-current {
    font-family: var(--font-heading);

    font-size: 1.05rem;
    color: var(--primary-color);
}

.price-original {
    font-size: .78rem;
    opacity: .5;
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    background: var(--primary-gradient);
    color: #fff;

    font-size: .82rem;
    padding: 10px;
    border-radius: 9px;
}

.btn-add-cart:hover {
    filter: brightness(1.08);
}

.btn-add-cart:disabled {
    background: rgba(8, 34, 85, .08);
    color: var(--text-color);
    opacity: .6;
    cursor: not-allowed;
}

/* ---------- PAGINATION ---------- */
.results-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(8, 34, 85, .15);
    border-radius: 8px;
    background: #fff;
    color: var(--primary-color);
    font-size: .85rem;
    font-weight: 600;
}

.page-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
}

.page-btn:disabled {
    opacity: .4;
}

.page-dots {
    color: var(--text-color);
    opacity: .5;
}

/* ---------- NO RESULTS ---------- */
.no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 70px 20px;
}

.no-results.is-visible {
    display: flex;
}

.no-results i {
    font-size: 2.6rem;
    color: rgba(51, 118, 189, .35);
    margin-bottom: 18px;
}

.no-results h5 {
    font-family: var(--font-heading);
    color: var(--primary-color);

    margin-bottom: 8px;
}

.no-results p {
    opacity: .7;
    max-width: 420px;
    margin-bottom: 20px;
}

.no-results__suggestions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}

.no-results__suggestions a {
    background: rgba(51, 118, 189, .08);
    color: var(--primary-color);
    font-size: .8rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    text-decoration: none;
}

.no-results__suggestions a:hover {
    background: var(--primary-gradient);
    color: #fff;
}

.btn-shop-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #fff;

    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
}

.btn-shop-now:hover {
    color: #fff;
    filter: brightness(1.08);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .results-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-hero__form {
        flex-wrap: wrap;
    }

    .search-hero__form button {
        width: 100%;
    }
}


/* ==========================================================================
   BLOG Hero & Grid Styles
   ========================================================================== */

/* .blog-featured-wrap {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.blog-featured-img {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-body {
    padding: 40px;
}

.blog-category-badge {
    background-color: #F2FEEB;
    color: var(--primary-color);
    
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.blog-featured-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 12px;
    margin-bottom: 16px;
}

.blog-featured-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-featured-title a:hover {
    color: var(--primary-color);
}

.blog-featured-excerpt {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.blog-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar-mini {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 0.8125rem;
}

.author-info-mini {
    display: flex;
    flex-direction: column;
}

.author-name {
    
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.post-meta {
    font-size: 0.75rem;
    color: #94a3b8;
} */

/* Blog Cards */
.blog-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(4, 35, 70, 0.06);
    border-color: rgba(81, 156, 43, 0.15);
}

.blog-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 5px 8px;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-size: .7rem;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.03);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--third-color);
}

.blog-card-title a {
    color: var(--third-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    /* color: #64748b; */
    /* line-height: 1.5; */
    /* font-size: 0.875rem; */
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.blog-card-author {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.blog-readmore-link {
    font-size: 0.75rem;

    color: var(--primary-color) !important;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-readmore-link {
    transform: translateX(3px);
}

/* Pagination */
.pagination-custom .page-link {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 19px;
    color: var(--secondary-color);
    transition: all 0.2s ease;
    background: #fff;
    width: auto;
}

.pagination-custom .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.pagination-custom .page-link:hover:not(.active) {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: var(--primary-color) !important;
}

/* ==========================================================================
   BLOG SIDEBAR
   ========================================================================== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}


.sidebar-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    transition: color 0.2s ease;
}

.sidebar-categories-list a:hover {
    color: var(--primary-color);
}

.badge-count {
    background-color: #f1f5f9;
    color: #000;
    font-size: 0.8rem;
    padding: 4px 9px;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.sidebar-categories-list a:hover .badge-count {
    background-color: #F2FEEB;
    color: var(--primary-color);
}

.popular-articles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-article-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.popular-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-title {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 0;
    transition: color 0.2s ease;
}

.popular-article-item:hover .popular-title {
    color: var(--primary-color);
}

.popular-date {
    font-size: 0.75rem;
    color: #94a3b8;
}


/* ==========================================================================
   BLOG DETAILS PAGE
   ========================================================================== */


.blog-detail-category-eyebrow {
    background-color: #F2FEEB;
    color: var(--primary-color);

    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.blog-detail-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #64748b;
}

.meta-separator {
    color: #cbd5e1;
}

.blog-detail-content p {
    /* font-size: 1rem; */
    /* line-height: 1.7; */
    /* color: #475569; */
    /* margin-bottom: 20px; */
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 24px;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin: 30px 0;
    font-weight: 600;
    line-height: 1.6;
}

.key-takeaways-box {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    border-radius: 0 12px 12px 0;
}

.takeaway-title {
    /* font-size: 1rem; */
    /* font-weight: 800; */
    /* margin-bottom: 12px; */
}

.takeaway-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.takeaway-list li {
    position: relative;
    padding-left: 24px;
    font-size: 1rem;
    margin: 0 0 8px;
}

.takeaway-list li::before {
    /* content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“"; */
    /* position: absolute; */
    /* left: 0; */
    /* color: var(--primary-color); */
}

.article-share-row {
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.share-social-icons {
    display: flex;
    gap: 8px;
}

.share-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.share-icon-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}


.cart-offcanvas {
    width: 400px;
}

.cart-item-img img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 4px;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    line-height: 1;
    cursor: pointer;
}

.qty-value {
    margin: 0 10px;
    font-weight: 500;
}

.cart-item-price {
    font-weight: 700;
    font-size: 14px;
}

.cart-remove-btn {
    border: none;
    background: none;
    color: #c0392b;
    margin-top: 8px;
    cursor: pointer;
}

.btn-checkout {
    display: block;
    text-align: center;
    background: #111;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.btn-checkout:hover {
    background: #333;
    color: #fff;
}

.btn-continue {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
}





/* Author spotlight card */
/* 
.author-spotlight-card {
    background-color: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 20px;
}

.author-avatar-big {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.author-spotlight-details {
    flex-grow: 1;
}

.author-spotlight-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.author-spotlight-title {
    font-size: 0.8125rem;
    color: var(--primary-color);
    
    text-transform: uppercase;
    display: block;
}

.author-spotlight-text {
    font-size: 0.875rem;
    line-height: 1.6;
} */

/* Comments timeline */

/* 
.comments-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 0.875rem;
    flex-shrink: 0;
}

.comment-body {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.comment-author-name {
    
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.comment-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.comment-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #475569;
}

.add-comment-form-wrap {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(4, 35, 70, 0.02);
}
 */


/* ---------- REVIEWS TAB PANEL ---------- */
.reviews-container {
    background: #fff;
    padding: 20px 0;
}

.reviews-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Summaries column */
.reviews-summary-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reviews-summary-col .summary-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1A1B1A;
    margin-bottom: 10px;
    font-family: var(--font-family);
}

.overall-rating-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

.overall-score {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1A1B1A;
    line-height: 1;
    font-family: var(--font-heading);
}

.overall-label {
    font-size: 0.9rem;
    color: #6b7684;
    font-weight: 500;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
}

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breakdown-stars {
    display: flex;
    gap: 3px;
    color: goldenrod;
    font-size: 0.95rem;
    width: 95px;
}

.breakdown-stars .bi-star {
    color: #d1d7e0;
}

.breakdown-bar {
    flex-grow: 1;
    height: 7px;
    background: #f1f3f7;
    border-radius: 10px;
    overflow: hidden;
}

.breakdown-bar-fill {
    height: 100%;
    background: #d1d7e0;
    border-radius: 10px;
}

.breakdown-count {
    width: 35px;
    font-size: 0.88rem;
    color: #6b7684;
    text-align: right;
    font-weight: 500;
}

/* Form column */
.reviews-form-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reviews-form-col .form-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1A1B1A;
    margin-bottom: 10px;
    font-family: var(--font-family);
}

.add-review-form {
    display: grid;
    grid-template-columns: 120px 1fr;
    row-gap: 20px;
    column-gap: 15px;
    align-items: center;
}

.add-review-form .form-row {
    display: contents;
    /* allows labels and inputs to behave as grid items directly */
}

.add-review-form .form-label {
    font-weight: 600;
    color: #1A1B1A;
    font-size: 0.95rem;
    margin: 0;
    align-self: center;
}

.add-review-form .form-label.textarea-label {
    align-self: start;
    margin-top: 12px;
}

.interactive-stars {
    display: flex;
    gap: 6px;
    color: #d1d7e0;
    font-size: 1.25rem;
    cursor: pointer;
    align-self: center;
    transition: color 0.2s;
}

.interactive-stars i {
    transition: transform 0.1s;
}

.interactive-stars i:hover {
    transform: scale(1.15);
}

.interactive-stars i.bi-star-fill {
    color: #ffd400;
}

.add-review-form .form-control {
    border-radius: 20px;
    padding: 10px 18px;
    border: 1px solid #e7ebf1;
    outline: none;
    font-family: var(--font-family);
    font-size: 0.92rem;
    color: var(--text-color);
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.add-review-form textarea.form-control {
    border-radius: 18px;
    height: 100px;
    resize: none;
    padding: 12px 18px;
}

.add-review-form .form-control:focus {
    border-color: #3376bd;
    box-shadow: 0 0 0 3px rgba(51, 118, 189, 0.1);
}

/* Button style */
.btn-add-review {
    grid-column: 2;
    justify-self: start;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-add-review:hover {
    background: var(--third-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-add-review:active {
    transform: translateY(0);
}

/* Reviews List Section */
.reviews-list-section {
    margin-top: 40px;
    border-top: 1px solid #e7ebf1;
    padding-top: 40px;
}

.review-item {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #e7ebf1;
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-item-stars {
    color: goldenrod;
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    gap: 3px;
}

.review-item-stars .bi-star {
    color: #d1d7e0;
}

.review-item-meta {
    font-size: 0.85rem;
    color: #718096;
}

.review-item-meta strong {
    color: #1A1B1A;
    font-weight: 600;
}

/* Responsive adjustment for reviews grid */
@media (max-width: 991px) {
    .reviews-top-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .add-review-form {
        grid-template-columns: 100px 1fr;
    }
}

/* ==========================================================================
   REDESIGNED CHECKOUT CUSTOM STYLES
   ========================================================================== */
.demo-state-switcher {
    background: #f8fafc;
    border: 1px dashed #3376bd;
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(4, 35, 70, 0.03);
}

.demo-state-switcher .btn-check:checked+.btn-outline-primary {
    background-color: #3376bd;
    border-color: #3376bd;
    color: #fff;
}

.address-detail-preview {
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 18px;
    margin-top: 14px;
    position: relative;
    transition: all 0.25s ease;
}

.address-detail-preview::before {
    content: "\F3E3";
    /* Bootstrap Icon bi-geo-alt-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.15;
}

.payment-dropdown-container {
    margin-bottom: 20px;
}

.contact-sign-in-bar {
    background: #fcfdfe;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper .bi-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}


/* Orders Page Redesign Styles */
.order-filters {
    margin-bottom: 28px;
}

.order-filters .nav-pills {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.order-filters .nav-link {
    background-color: #fff;
    color: #475569;
    border: 1px solid #cbd5e1;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.order-filters .nav-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: #f8fafc;
}

.order-filters .nav-link.active {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(8, 34, 85, 0.15);
}

.order-card {
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 24px;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.order-card-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #cbd5e1;
    padding: 16px 20px;
}

.order-card-body {
    padding: 20px;
}

.order-card-footer {
    background-color: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 14px 20px;
}

/* Timeline Stepper CSS */
.order-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 25px 0;
    padding: 0 10px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #cbd5e1;
    z-index: 1;
}

.order-timeline-progress {
    position: absolute;
    top: 18px;
    left: 0;
    height: 3px;
    background-color: #519C2B;
    z-index: 1;
    transition: width 0.3s ease;
}

.timeline-step {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.step-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #cbd5e1;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #cbd5e1;
    transition: all 0.3s ease;
}

.timeline-step.active .step-icon {
    background-color: #519C2B;
    color: #fff;
    box-shadow: 0 0 0 2px #519C2B;
}

.timeline-step.cancelled .step-icon {
    background-color: #ef4444;
    color: #fff;
    box-shadow: 0 0 0 2px #ef4444;
}

.timeline-step.returned .step-icon {
    background-color: #193160;
    color: #fff;
    box-shadow: 0 0 0 2px #193160;
}

.step-label {
    margin-top: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-step.active .step-label {
    color: #042346;
}

.timeline-step.cancelled .step-label {
    color: #ef4444;
}

.timeline-step.returned .step-label {
    color: #193160;
}

/* Status Badges */
.status-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge--pending {
    background-color: #f1f5f9;
    color: #475569;
}

.status-badge--processing {
    background-color: #fef3c7;
    color: #b45309;
}

.status-badge--shipped {
    background-color: #e0f2fe;
    color: #0369a1;
}

.status-badge--delivered {
    background-color: #dcfce7;
    color: #15803d;
}

.status-badge--cancelled {
    background-color: #fee2e2;
    color: #b91c1c;
}

.status-badge--returned {
    background-color: #f3e8ff;
    color: #6b21a8;
}

.status-badge--return-requested {
    background-color: #fae8ff;
    color: #082255;
}

/* Modals & Info Cards */
.info-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #f8fafc;
}

.product-item-row {
    border: 1px solid #eef2f6;
    border-radius: 12px;
    background-color: #fff;
    transition: box-shadow 0.2s ease;
}

.product-item-row:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.price-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #475569;
}

/* File Upload drag-drop mockup style */
.upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background-color: #f8fafc;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.upload-box:hover {
    border-color: var(--primary-color);
    background-color: #f1f5f9;
}

.upload-box i {
    font-size: 1.8rem;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
}

/* Mobile responsive timeline styling */
@media (max-width: 768px) {
    .order-timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        margin: 20px 0;
        gap: 24px;
    }

    .order-timeline::before {
        left: 28px;
        top: 0;
        width: 4px;
        height: 100%;
        transform: none;
    }

    .order-timeline-progress {
        left: 28px;
        top: 0;
        width: 4px;
        height: 100%;
        transform: none;
    }

    .timeline-step {
        flex-direction: row;
        gap: 15px;
        background-color: transparent;
        padding: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .step-icon {
        border-width: 2px;
    }

    .step-label {
        margin-top: 0;
        text-align: left;
    }
}