@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --gh-primary: var(--primary-color, #f48721);
    /* Exact Ghorerbazar Orange / Dynamic Custom */
    --gh-secondary: var(--secondary-color, #000000);
    /* Ghorerbazar Black */
    --gh-text: #111111;
    --gh-muted: #555555;
    --gh-light: #f4f6f8;
    --gh-border: #eeeeee;
    --gh-white: #ffffff;
    --gh-success: #28a745;
    --gh-bg-light: #f8f9fa;
    --gh-border-radius: 6px;
}

.bg-gh-primary {
    background-color: var(--gh-primary) !important;
    color: #fff !important;
}

.text-gh-primary {
    color: var(--gh-primary) !important;
}

.border-gh-primary {
    border-color: var(--gh-primary) !important;
}

.bg-gh-secondary {
    background-color: var(--gh-secondary) !important;
    color: #fff !important;
}

@keyframes rsiShaker {

    0%,
    100% {
        transform: scaleX(1);
    }

    10%,
    20% {
        transform: scale3d(0.97, 0.97, 0.97) rotate(-1deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.03, 1.03, 1.03) rotate(1deg);
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.03, 1.03, 1.03) rotate(-1deg);
    }
}

.animate-shake {
    animation: rsiShaker 0.86s cubic-bezier(0.35, 0.06, 0.2, 0.98) infinite both;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--gh-bg-light);
    color: var(--gh-text);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--gh-secondary);
    margin-bottom: 0.5rem;
}

.extra-small {
    font-size: 11px;
}

.fw-600 {
    font-weight: 600;
}

.fw-800 {
    font-weight: 800;
}

/* Header & Navigation Refined */
.gh-header {
    background: var(--gh-white);
    border-bottom: 1px solid #eee;
}

.gh-search-container {
    max-width: 100%;
    border-radius: 4px;
}

.gh-search-container input {
    border: none !important;
    padding: 12px 20px;
    font-size: 14px;
    background: #f8f8f8 !important;
}

.gh-search-container .btn {
    background: #f8f8f8 !important;
    border: none !important;
    padding: 10px 18px;
    color: #000 !important;
    font-size: 16px;
    border-left: 1px solid #eee !important;
    border-radius: 0 !important;
}

.gh-utility-link {
    transition: 0.2s;
    min-width: 60px;
    display: inline-block;
    vertical-align: top;
}

.gh-utility-link i {
    color: #444;
    margin-bottom: 2px;
}

.gh-utility-link:hover i {
    color: var(--gh-primary);
}

.gh-utility-link span {
    font-size: 10px;
    color: #111;
    display: block;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 2px;
}

.gh-nav-bar {
    background: #010101;
}

.gh-nav-link {
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 18px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    transition: 0.2s !important;
    display: inline-block !important;
    border-bottom: 3px solid transparent !important;
}

.gh-nav-link:hover,
.gh-nav-link.active {
    color: var(--gh-primary) !important;
    border-bottom-color: var(--gh-primary) !important;
}

.btn-gh-flash {
    background: #fff !important;
    color: #000 !important;
    border: none !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    transition: 0.3s !important;
    border-radius: 30px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.btn-gh-flash:hover {
    background: var(--gh-primary) !important;
    color: #fff !important;
}

/* Category Slider */
.category-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    border-color: var(--gh-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.category-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: 0.3s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card span {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

/* Section Styles */
.section-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--gh-primary);
    line-height: 1;
    margin: 0;
}

.view-all-btn {
    color: var(--gh-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.2s;
}

.view-all-btn:hover {
    color: var(--gh-secondary);
}

/* Search Results Dropdown */
.search_result {
    max-height: 450px;
    overflow-y: auto;
    z-index: 1050;
}

.search_product ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search_product ul a {
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #f5f5f5;
}

.search_product ul a:hover {
    background: #fafafa;
}

.search_product li {
    display: flex;
    align-items: center;
    padding: 10px 15px;
}

.search_img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.search_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search_content .name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.search_content .price {
    font-size: 13px;
    font-weight: 700;
    color: var(--gh-primary);
    margin: 0;
}

.search_content .price del {
    color: #999;
    font-size: 11px;
    margin-left: 5px;
}

/* Product Card - Vertical */
.tp-product-item {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.tp-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--gh-primary);
}

.tp-product-img-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #fafafa;
}

.tp-product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: 0.5s;
}

.tp-product-item:hover .tp-product-img {
    transform: scale(1.08);
}

.tp-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-hot {
    background: #ff3838;
    color: #fff;
}

.badge-offer {
    background: var(--gh-primary);
    color: #fff;
}

.badge-save {
    background: #ffcc00;
    color: #000;
}

/* Yellow badge like Ghorer Bazar */

.tp-product-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.tp-product-title {
    border: none !important;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    line-height: 1.4;
    margin-bottom: 8px;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none;
    transition: color 0.2s;
}

.tp-product-title:hover {
    color: var(--gh-primary);
}

.tp-product-price {
    margin-bottom: 12px;
}

.tp-current-price {
    color: var(--gh-primary);
    font-weight: 800;
    font-size: 18px;
    margin-right: 8px;
}

.tp-old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 12px;
    font-weight: 500;
}

/* Card Variation height alignment */
.tp-product-item .tp-product-actions {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tp-product-item select.form-select-sm {
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    background-color: #f8fafc;
    border-color: #e2e8f0;
    margin-bottom: 8px;
}

/* Owl Carousel Navigation Style Upgrade */
.owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
    gap: 8px;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    width: 38px !important;
    height: 38px !important;
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50% !important;
    color: #64748b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    font-size: 18px !important;
}

.owl-nav button:hover {
    background: var(--gh-primary) !important;
    color: #fff !important;
    border-color: var(--gh-primary) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
}

.owl-nav button.disabled {
    opacity: 0.4 !important;
    pointer-events: none !important;
}

.tp-card-actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
}

.tp-btn-buy, .tp-btn-cart-ghost, .tp-btn-stockout {
    padding: 10px 15px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    white-space: nowrap;
    border-radius: 6px !important;
    width: 100% !important;
}

.tp-add-to-cart-btn {
    background: var(--gh-primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    width: 100%;
    transition: 0.3s;
    font-size: 14px;
    text-transform: uppercase;
}

.tp-add-to-cart-btn:hover {
    background: var(--gh-secondary);
    color: #fff;
}

.tp-btn-buy {
    background: var(--gh-primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    text-transform: uppercase;
    flex: 1;
    text-align: center;
    text-decoration: none;
}

.tp-btn-buy:hover {
    background: var(--gh-secondary);
    color: #fff;
}

.tp-btn-cart-ghost {
    background: transparent;
    color: var(--gh-primary);
    border: 2px solid var(--gh-primary);
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    text-transform: uppercase;
    flex: 1;
    text-align: center;
    text-decoration: none;
}

.tp-btn-cart-ghost:hover {
    background: var(--gh-primary);
    color: #fff;
}

.tp-btn-stockout {
    background: #f8fafc !important;
    color: #64748b !important;
    border: 1px solid #e2e8f0 !important;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    cursor: not-allowed;
    opacity: 0.9;
    width: 100%;
}

/* Toastr Modern UI Fix */
#toast-container > div {
    opacity: 1 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    border-radius: 8px !important;
    padding: 15px 15px 15px 50px !important;
    background-image: none !important;
    font-family: inherit !important;
    width: 350px !important;
}

#toast-container > .toast-success {
    background-color: #10b981 !important;
}

#toast-container > .toast-error {
    background-color: #ef4444 !important;
}

#toast-container > div:before {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: #fff;
}

#toast-container > .toast-success:before {
    content: "\f058";
}

#toast-container > .toast-error:before {
    content: "\f06a";
}

#toast-container .toast-message {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #fff !important;
}

/* Stock Out Styles */
.stock-out-image {
    filter: grayscale(1) opacity(0.6);
}

.stock-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    pointer-events: none;
}

/* Product Card - Horizontal (Landscape) */
.tp-product-horizontal {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    display: flex;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
}

.tp-product-horizontal:hover {
    border-color: var(--gh-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tp-horizontal-img {
    width: 140px;
    min-width: 140px;
    border-right: 1px solid #f5f5f5;
    position: relative;
    background: #fafafa;
}

.tp-horizontal-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.tp-horizontal-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tp-horizontal-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.tp-horizontal-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

/* Footer */
.gh-footer {
    background: #0e2222;
    color: #eee;
    padding: 60px 0 30px;
}

.gh-footer h5 {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.gh-footer-link {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.2s;
    font-size: 13px;
}

.gh-footer-link:hover {
    color: var(--gh-primary);
    transform: translateX(5px);
}

.hotline-box {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.hotline-box:hover {
    border-color: var(--gh-primary) !important;
    background: rgba(244, 135, 33, 0.05);
}

/* Mobile Bottom Nav */
.gh-mobile-nav {
    background: #fff;
    border-top: 1px solid #eee;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.gh-m-nav-item {
    color: #666;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.gh-m-nav-item i {
    display: block;
    font-size: 18px;
    margin-bottom: 2px;
}

.gh-m-nav-item span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.gh-m-nav-item.active {
    color: var(--gh-primary);
}

/* Professional Floating Counter Widget on Right Vertical Center */
.gh-floating-cart-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gh-primary);
    color: #fff;
    width: 70px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 1040;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.gh-floating-cart-btn:hover {
    padding-right: 5px;
}

.gh-floating-cart-btn i {
    font-size: 20px;
    margin-bottom: 3px;
}

.gh-floating-cart-btn .item-count {
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.gh-floating-cart-btn .cart-total {
    font-size: 10px;
    opacity: 0.9;
}

/* Sidebar Cart (Offcanvas) */
.offcanvas-cart {
    width: 400px !important;
}

.cart-sidebar-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-sidebar-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-sidebar-close {
    cursor: pointer;
    font-size: 12px;
    color: #777;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-sidebar-close:hover {
    color: var(--gh-primary);
}

.cart-item-list {
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gh-primary) #f1f1f1;
}

.cart-item-single {
    padding: 15px 20px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: start;
    gap: 15px;
    position: relative;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

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

.cart-item-info {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.cart-item-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.cart-item-price {
    font-weight: 800;
    color: var(--gh-primary);
    font-size: 14px;
}

.cart-item-single .cart-item-remove {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ccc;
    cursor: pointer;
    transition: 0.2s;
}

.cart-item-single .cart-item-remove:hover {
    color: #ff0000;
}

.cart-sidebar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 800;
}

.cart-btn-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-side-checkout {
    background: var(--gh-primary);
    color: #fff;
    font-weight: 800;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-side-cart {
    background: #333;
    color: #fff;
    font-weight: 800;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 13px;
}

/* UI Fixes & Helpers */
.object-fit-cover {
    object-fit: cover;
}

.ratio {
    --bs-aspect-ratio: 56.25%;
}

.grayscale {
    filter: grayscale(1);
    transition: 0.3s;
}

.grayscale:hover {
    filter: grayscale(0);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (max-width: 991px) {
    .gh-desktop-nav {
        display: none !important;
    }

    .gh-header {
        padding: 10px 0;
    }

    .tp-horizontal-img {
        width: 110px;
        min-width: 110px;
    }

    body {
        padding-bottom: 57px !important;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 16px;
    }

    .tp-product-title {
        font-size: 13px;
    }

    .tp-current-price {
        font-size: 16px;
    }

    .tp-horizontal-img {
        width: 90px;
        min-width: 90px;
    }
}

.gh-livesearch-results {
    max-height: 480px;
    overflow-y: auto;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gh-livesearch-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none !important;
    transition: 0.2s ease-in-out;
}

.gh-livesearch-item:hover {
    background: #f9f9f9;
}

.gh-livesearch-img {
    width: 55px;
    height: 55px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    background: #fff;
}

.gh-livesearch-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gh-livesearch-info {
    flex: 1;
    min-width: 0;
}

.gh-livesearch-name {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin-bottom: 4px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gh-livesearch-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gh-livesearch-price .current {
    font-size: 14px;
    font-weight: 700;
    color: var(--gh-primary);
}

.gh-livesearch-price .old {
    font-size: 12px;
    color: #888;
    text-decoration: line-through;
}

/* Live Search Overlay Styles */
.search_result,
.search_result_mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 480px;
    overflow-y: auto;
}

.search_product ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search_product a {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.search_product li {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f8f9fa;
    transition: 0.2s;
}

.search_product li:hover {
    background: #fcfcfc;
}

.search_img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #eee;
}

.search_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.search_content {
    flex: 1;
    min-width: 0;
}

.search_content .name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search_content .price {
    font-size: 13px;
    font-weight: 800;
    color: var(--gh-primary);
    margin: 0;
}

.search_content .price del {
    font-size: 11px;
    color: #999;
    font-weight: 400;
    margin-left: 5px;
}

/* Mobile Bottom Nav Active Style */
.gh-mobile-nav-item.active {
    color: var(--gh-primary) !important;
}


/* Customer Account Section Refined */
.customer-section {
    background-color: var(--gh-bg-light);
    padding: 40px 0;
}

.customer-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
    margin-left: 15px; /* Added gap from sidebar */
}

.customer-sidebar-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #f1f1f1;
    margin-bottom: 30px;
}

.customer-auth {
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--gh-secondary) 0%, #333 100%);
    text-align: center;
}

.customer-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background: #fff;
}

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

.customer-name p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.customer-name h5 {
    color: #fff !important; /* Ensure it stays white on dark background */
    margin-top: 5px;
    font-size: 16px;
    font-weight: 700;
}

.sidebar-menu ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.sidebar-menu ul li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-menu ul li a i {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    stroke-width: 2.5;
}

.sidebar-menu ul li a:hover {
    background: #f8f9fa;
    color: var(--gh-primary);
}

.sidebar-menu ul li a.active {
    background: rgba(244, 135, 33, 0.05);
    color: var(--gh-primary);
    border-left-color: var(--gh-primary);
}

.logout-link:hover {
    color: #dc3545 !important;
}

/* Account Main Content */
.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.account-title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.account-subtitle {
    margin: 5px 0 0;
    color: #777;
    font-size: 14px;
}

.account-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
}

.grid-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-item .info-label {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    color: #999;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-item .info-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--gh-secondary);
}

.info-item.full-width {
    grid-column: 1 / -1;
}

/* Recent Orders Table */
.section-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header-mini h5 {
    margin: 0;
    font-weight: 800;
}

.view-all-link {
    color: var(--gh-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
}

.custom-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.custom-table thead th {
    background: #f8f9fa;
    border: none !important;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    padding: 15px;
}

.custom-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-top: 1px solid #f1f1f1;
    font-weight: 600;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.btn-action {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    color: #555;
    transition: 0.3s;
}

.btn-action:hover {
    background: var(--gh-primary);
    color: #fff;
}

.btn-theme-outline {
    border: 2px solid var(--gh-primary);
    color: var(--gh-primary);
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 6px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-theme-outline i {
    width: 16px;
    height: 16px;
}

.btn-theme-outline:hover {
    background: var(--gh-primary);
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .customer-sidebar {
        margin-bottom: 30px;
    }
    .customer-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .account-header {
        text-align: center;
        justify-content: center;
    }
    
    .account-card {
        padding: 20px;
    }
    
    .grid-info-container {
        grid-template-columns: 1fr;
    }
}


/* Custom Pagination - Minimalist Ghorer Bazar Style */
.gh-pagination .pagination {
    margin-bottom: 0;
    gap: 8px;
    border: none !important;
}

.gh-pagination .page-item {
    border: none !important;
    margin: 0 2px;
}

.gh-pagination .page-link {
    border: none !important;
    background: transparent !important;
    color: #666 !important;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: none !important;
    padding: 0 !important;
}

.gh-pagination .page-item.active .page-link {
    background: var(--gh-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(var(--gh-primary-rgb, 244, 135, 33), 0.2) !important;
}

.gh-pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background: #f1f3f5 !important;
    color: var(--gh-primary) !important;
}

.gh-pagination .page-item.disabled .page-link {
    color: #ccc !important;
    opacity: 0.5;
    background: transparent !important;
}

/* Minimalist Arrows Fix */
.gh-pagination .page-item:first-child .page-link,
.gh-pagination .page-item:last-child .page-link {
    font-size: 18px;
    background: transparent !important;
}

.gh-pagination .page-item:first-child .page-link:hover,
.gh-pagination .page-item:last-child .page-link:hover {
    background: #f1f3f5 !important;
}

.gh-pagination-wrapper .showing-text {
    font-size: 13px;
    color: #888;
    margin-top: 15px;
    font-weight: 500;
}


.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Customer Account Section */