/* Mobile nav overrides — loaded after main.css */

/* Make header fixed on mobile/tablet devices */
@media (max-width: 991px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .header-1:not(.sticky-header) {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Hide the JS-driven sticky header on mobile since main header is already fixed */
    .sticky-header {
        display: none !important;
    }

    /* Prevent content from hiding behind the fixed header */
    body {
        padding-top: 70px;
    }
}

/* Show cart icon on mobile/tablet (main.css hides .cart-icon below 1199px) */
@media (max-width: 1199px) {
    .header-1 .header-right .menu-cart .cart-icon.cart-icon-mobile {
        display: inline-block !important;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

/* Shrink the maroon curved background on tablet */
@media (max-width: 991px) {
    .header-1 .header-main:after,
    .sticky-header .header-main:after {
        width: 211px !important;
        height: 70px !important;
    }
}

/* Smaller logo */
.header-1 .header-left .logo a img {
    max-width: 128px;
}

/* Mobile search icon */
.menu-cart .search-icon-mobile {
    position: relative;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: transparent;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid rgba(79, 83, 107, 0.3);
    color: var(--header);
    font-size: 16px;
}

.menu-cart a[data-bs-target="#searchModal"] {
    display: inline-block !important;
}
@media (min-width: 768px) {
    .menu-cart a[data-bs-target="#searchModal"] {
        display: none !important;
    }
}

/* ══════════════════════════════════════════════════════════
   Shop Toolbar – Applied Filters + Sort (Desktop)
   ══════════════════════════════════════════════════════════ */

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    flex-wrap: wrap;
}

.shop-toolbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.shop-result-count {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background: #e0e0e0;
    flex-shrink: 0;
    margin: 0 4px;
}

/* Applied filter pills */
.applied-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #f5f0f0;
    border: 1px solid #e8dede;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--theme2, #8B2A2A);
    text-decoration: none !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.applied-pill:hover {
    background: var(--theme2, #8B2A2A);
    color: #fff !important;
    border-color: var(--theme2, #8B2A2A);
}

.applied-pill i:first-child {
    font-size: 11px;
    opacity: 0.7;
}

.applied-pill .remove-x {
    font-size: 9px;
    opacity: 0.5;
    margin-left: 2px;
    transition: opacity 0.15s;
}

.applied-pill:hover .remove-x {
    opacity: 1;
}

.applied-pill--sale {
    background: #fff5f0;
    border-color: #ffe0cc;
    color: #e65100;
}

.applied-pill--sale:hover {
    background: #e65100;
    color: #fff !important;
    border-color: #e65100;
}

.clear-all-link {
    font-size: 12px;
    color: #999;
    text-decoration: none !important;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.15s;
    white-space: nowrap;
}

.clear-all-link:hover {
    color: var(--theme2, #8B2A2A);
    background: #faf5f5;
}

/* Sort dropdown (desktop) */
.shop-toolbar-right {
    flex-shrink: 0;
}

.sort-dropdown-wrap {
    position: relative;
}

.sort-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sort-dropdown-btn:hover {
    border-color: #ccc;
    background: #f0f1f2;
}

.sort-dropdown-btn i:first-child {
    color: var(--theme2, #8B2A2A);
    font-size: 12px;
}

.sort-arrow {
    font-size: 9px;
    color: #999;
    transition: transform 0.2s ease;
    margin-left: 2px;
}

.sort-dropdown-wrap.open .sort-arrow {
    transform: rotate(180deg);
}

.sort-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid #eee;
    z-index: 100;
    overflow: hidden;
    animation: sortDropFade 0.15s ease;
}

.sort-dropdown-wrap.open .sort-dropdown-menu {
    display: block;
}

@keyframes sortDropFade {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.sort-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    text-decoration: none !important;
    transition: all 0.15s ease;
}

.sort-dropdown-item:hover {
    background: #f8f5f5;
    color: var(--theme2, #8B2A2A);
}

.sort-dropdown-item.active {
    background: linear-gradient(135deg, var(--theme2, #8B2A2A), var(--theme, #6B1A1A));
    color: #fff !important;
}

.sort-dropdown-item i {
    width: 16px;
    font-size: 12px;
    text-align: center;
    opacity: 0.7;
}

.sort-dropdown-item.active i {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════
   Modern Sidebar Styles (Desktop + Tablet)
   ══════════════════════════════════════════════════════════ */

.sidebar-modern {
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.sidebar-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

/* Search bar */
.sidebar-search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 14px;
}

.sidebar-search-wrap i {
    color: #999;
    font-size: 14px;
    flex-shrink: 0;
}

.sidebar-search-wrap input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #333;
    width: 100%;
}

.sidebar-search-wrap input::placeholder {
    color: #aaa;
}

/* Card header (collapsible) */
.sidebar-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s ease;
}

.sidebar-card-header:hover {
    background: #fafafa;
}

.sidebar-card-header h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #2d2d2d;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-card-header h6 i {
    color: var(--theme2, #8B2A2A);
    font-size: 13px;
    width: 18px;
    text-align: center;
}

.sidebar-card-header .toggle-icon {
    font-size: 11px;
    color: #999;
    transition: transform 0.25s ease;
}

.sidebar-card-header.collapsed .toggle-icon {
    transform: rotate(180deg);
}

/* Card body */
.sidebar-card-body {
    padding: 8px 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    overflow: hidden;
}

.sidebar-card-body.collapsed {
    max-height: 0 !important;
    padding: 0;
    opacity: 0;
}

/* Filter items */
.sidebar-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 20px;
    text-decoration: none !important;
    color: #555;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}

.sidebar-filter-item:hover {
    background: #f8f5f5;
    color: var(--theme2, #8B2A2A);
    border-left-color: var(--theme2, #8B2A2A);
    padding-left: 23px;
}

.sidebar-filter-item.active {
    background: linear-gradient(135deg, var(--theme2, #8B2A2A), var(--theme, #6B1A1A));
    color: #fff !important;
    border-left-color: transparent;
    font-weight: 600;
}

.sidebar-filter-item.active .filter-count {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.filter-count {
    background: #f0f0f0;
    color: #888;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 24px;
    text-align: center;
    line-height: 1.4;
}

/* Mini search inside filter cards (authors) */
.sidebar-search-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 16px 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eee;
}

.sidebar-search-mini i {
    color: #bbb;
    font-size: 12px;
    flex-shrink: 0;
}

.sidebar-search-mini input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    color: #333;
    width: 100%;
}

.sidebar-search-mini input::placeholder {
    color: #bbb;
}

/* Scrollable filter list */
.sidebar-filter-list {
    max-height: 280px;
    overflow-y: auto;
}

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

.sidebar-filter-list::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-filter-list::-webkit-scrollbar-thumb {
    background: var(--theme2, #8B2A2A);
    border-radius: 10px;
}

/* ── Price Slider ── */
.price-slider-wrap {
    position: relative;
    height: 36px;
    margin: 8px 20px 16px;
}

.price-slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 5px;
    background: #e9ecef;
    border-radius: 5px;
}

.price-slider-range {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--theme2, #8B2A2A), var(--theme, #6B1A1A));
    border-radius: 5px;
}

.price-slider-input {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
    height: 36px;
}

.price-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid var(--theme2, #8B2A2A);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.price-slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 10px rgba(139,42,42,0.3);
}

.price-slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid var(--theme2, #8B2A2A);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.price-inputs-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 12px;
}

.price-input-field {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 6px 10px;
    flex: 1;
}

.price-input-field span {
    color: #999;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.price-input-field input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    -moz-appearance: textfield;
}

.price-input-field input::-webkit-outer-spin-button,
.price-input-field input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-separator {
    color: #ccc;
    font-size: 16px;
    flex-shrink: 0;
}

.price-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: calc(100% - 40px);
    margin: 0 20px 16px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--theme2, #8B2A2A), var(--theme, #6B1A1A));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.price-filter-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139,42,42,0.3);
}

.price-filter-btn i {
    font-size: 11px;
}

/* Compact header on mobile */
@media (max-width: 767px) {
    .header-top-1 { display: none; }

    .header-1 .header-left { gap: 0 !important; }
    .header-1 .header-left .logo a { margin-right: 0 !important; }
    .header-1 .header-left .logo { margin-bottom: 0 !important; }
    .header-1 .header-main { padding: 8px 0; }
    .header-1 .header-right .menu-cart { gap: 6px; }
    .header-humbager { margin-left: 0 !important; }

    .header-1 .header-right .menu-cart .cart-icon.cart-icon-mobile,
    .menu-cart .search-icon-mobile,
    .header-1 .header-right .menu-cart .sidebar__toggle .bar-icon-2 {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

/* ── Hero section mobile ── */
@media (max-width: 767px) {
    .hero-1 .hero-content h1,
    .hero-2 .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-1 .hero-content h6,
    .hero-2 .hero-content h6 {
        font-size: 20px;
        line-height: 1.3;
    }

    .hero-1 .hero-items .hero-content {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .hero-section .theme-btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .cta-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    /* Feature section: icons only in a row */
    .feature-section.section-padding {
        padding: 16px 0;
    }

    .feature-wrapper {
        display: flex !important;
        justify-content: space-around;
        padding: 12px 8px !important;
        gap: 0 !important;
    }

    .feature-wrapper .feature-box-items {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .feature-wrapper .feature-box-items .content {
        display: none;
    }

    .feature-wrapper .feature-box-items .icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        line-height: 50px;
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-wrapper .feature-box-items .icon i {
        font-size: 24px;
        line-height: 1;
    }

    /* Section title + button on one line */
    .section-title-area {
        flex-wrap: nowrap !important;
        gap: 8px !important;
        align-items: center;
        margin-bottom: 12px;
    }

    .section-title-area .section-title {
        flex: 1;
        min-width: 0;
    }

    .section-title-area .section-title h2 {
        font-size: 17px;
        white-space: nowrap;
        line-height: 1;
    }

    .section-title-area .theme-btn.transparent-btn {
        font-size: 0 !important;
        padding: 0 !important;
        min-width: 0 !important;
        border: none !important;
        background: rgba(139, 21, 56, 0.08) !important;
        color: #8B1538 !important;
        border-radius: 50% !important;
        width: 32px !important;
        height: 32px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .section-title-area .theme-btn.transparent-btn i {
        font-size: 13px !important;
        margin: 0 !important;
        color: #8B1538;
    }

    .section-title-area .theme-btn.transparent-btn::before {
        display: none !important;
    }

    /* Force 2 cards per row in swiper */
    .book-slider .swiper-wrapper {
        gap: 0;
    }

    .book-slider .swiper-slide {
        width: calc(50% - 6px) !important;
        margin-right: 12px !important;
    }

    /* Compact product cards */
    .shop-box-items {
        border-radius: 10px !important;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
        height: auto !important;
    }

    .shop-box-items .book-thumb {
        height: 160px !important;
        padding: 0 !important;
        border-radius: 10px 10px 0 0 !important;
        background: #f5f5f5 !important;
    }

    .shop-box-items .book-thumb img {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }

    .shop-box-items .book-thumb .post-box {
        top: 6px !important;
        left: 6px !important;
    }

    .shop-box-items .book-thumb .post-box li {
        font-size: 9px !important;
        padding: 2px 6px !important;
    }

    .shop-box-items .book-thumb .shop-icon {
        display: none !important;
    }

    .shop-box-items .shop-content {
        padding: 8px 10px 10px !important;
        flex: unset !important;
    }

    .shop-box-items .shop-content h5 {
        font-size: 10px;
        margin-bottom: 0 !important;
        opacity: 0.5;
        line-height: 1.2;
    }

    .shop-box-items .book-titles {
        min-height: unset !important;
        margin-bottom: 2px !important;
    }

    .shop-box-items .book-titles h3 a,
    .shop-box-items .shop-content h3 a {
        font-size: 13px !important;
        line-height: 1.3 !important;
        -webkit-line-clamp: 1 !important;
        font-weight: 600 !important;
    }

    .shop-box-items .book-titles .urdu-title {
        display: none !important;
    }

    .shop-box-items .price-list {
        margin: 0 !important;
        display: flex !important;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .shop-box-items .price-list li {
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
    }

    .shop-box-items .price-list li del {
        font-size: 10px;
        font-weight: 400;
        opacity: 0.4;
    }

    .shop-box-items .author-post {
        display: none !important;
    }

    .shop-box-items .shop-button,
    .shop-box-items .shop-content .shop-button {
        margin-top: 6px !important;
    }

    .shop-box-items .shop-button .theme-btn {
        padding: 7px 0 !important;
        font-size: 11px !important;
        min-width: 0 !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
    }

    /* Categories: horizontal scrollable chips */
    .book-catagories-section {
        padding: 0 0 24px !important;
        background: none !important;
    }

    .book-catagories-wrapper {
        padding: 0 !important;
    }

    .book-catagories-wrapper::before {
        display: none !important;
    }

    .book-catagories-wrapper .section-title {
        max-width: none !important;
        text-align: left !important;
        margin: 0 0 12px 0 !important;
        background: none !important;
        padding: 0 !important;
    }

    .book-catagories-wrapper .section-title h2 {
        font-size: 18px;
        font-style: normal;
        text-align: left !important;
    }

    .book-catagories-wrapper .array-button {
        display: none !important;
    }

    .book-catagories-slider {
        overflow: visible !important;
    }

    .book-catagories-slider .swiper-wrapper {
        display: flex !important;
        flex-wrap: nowrap !important;
        transform: none !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding-bottom: 4px;
        justify-content: flex-start !important;
    }

    .book-catagories-slider .swiper-wrapper::-webkit-scrollbar {
        display: none;
    }

    .book-catagories-slider .swiper-slide {
        width: auto !important;
        flex-shrink: 0 !important;
        margin-right: 0 !important;
    }

    .book-catagories-wrapper .book-catagories-items {
        margin-top: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px;
        background: #fff;
        border: 1.5px solid #eee;
        border-radius: 50px;
        padding: 6px 16px 6px 6px !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        white-space: nowrap;
        text-align: left !important;
    }

    .book-catagories-wrapper .book-catagories-items .book-thumb {
        width: 36px !important;
        height: 36px !important;
        line-height: 36px !important;
        min-width: 36px !important;
        flex-shrink: 0;
    }

    .book-catagories-wrapper .book-catagories-items .book-thumb .circle-shape {
        display: none !important;
    }

    .book-catagories-wrapper .book-catagories-items .book-thumb img {
        max-width: 24px;
    }

    .book-catagories-wrapper .book-catagories-items .book-thumb > div {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.7rem !important;
        box-shadow: none !important;
    }

    .book-catagories-wrapper .book-catagories-items .number {
        display: none !important;
    }

    .book-catagories-wrapper .book-catagories-items h3 {
        margin: 0 !important;
        font-size: 13px !important;
        font-weight: 500;
    }

    .book-catagories-wrapper .book-catagories-items h3 a {
        color: #333;
    }

    /* Top Books grid: 2 columns on mobile */
    .book-shop-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Top Rating section compact */
    .top-ratting-book-section {
        padding: 24px 0 !important;
    }

    .top-ratting-book-wrapper {
        padding: 14px 12px !important;
        border-radius: 12px !important;
    }

    .top-ratting-book-wrapper .section-title-area {
        gap: 12px !important;
    }

    .top-ratting-book-wrapper .section-title-area .section-title h2 {
        font-size: 15px !important;
        white-space: nowrap;
    }


    .top-ratting-book-wrapper .top-ratting-box-items {
        flex-wrap: nowrap !important;
        margin-top: 12px !important;
        padding: 10px !important;
        border-radius: 10px !important;
        gap: 12px !important;
    }

    .top-ratting-book-wrapper .top-ratting-box-items .book-thumb {
        max-width: 70px !important;
        min-width: 70px;
        padding: 8px !important;
    }

    .top-ratting-book-wrapper .top-ratting-box-items .book-content h5 {
        font-size: 11px !important;
        line-height: 1.2 !important;
        margin-bottom: 2px;
    }

    .top-ratting-book-wrapper .top-ratting-box-items .book-content h3 {
        font-size: 13px !important;
    }

    .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header {
        flex-wrap: nowrap !important;
        gap: 8px !important;
    }

    .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon {
        display: none !important;
    }

    .top-ratting-book-wrapper .top-ratting-box-items .book-content .author-post {
        display: none !important;
    }

    .top-ratting-book-wrapper .top-ratting-box-items .book-content span {
        font-size: 14px !important;
        margin: 4px 0 !important;
    }

    .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn {
        flex-wrap: nowrap !important;
        gap: 8px !important;
    }

    .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .star {
        display: none !important;
    }

    .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn {
        padding: 8px 14px !important;
        font-size: 11px !important;
        min-width: 0 !important;
        border-radius: 6px !important;
        width: 100%;
    }

    .top-ratting-book-wrapper .shop-banner {
        display: none !important;
    }

    /* Category circle position fix */
    .book-catagories-wrapper .book-catagories-items .book-thumb > div {
        top: 2% !important;
    }

    /* Tighter section spacing globally */
    .section-padding {
        padding: 40px 0;
    }

    /* ── Footer redesign ── */

    .contact-info-area {
        display: none !important;
    }

    .footer-section {
        padding-top: 0 !important;
    }

    .footer-widgets-wrapper {
        padding: 28px 0 16px !important;
    }

    .footer-widgets-wrapper .plane-shape {
        display: none !important;
    }

    /* Logo + social — centered */
    .footer-widgets-wrapper .single-footer-widget {
        margin-top: 0 !important;
        text-align: center;
    }

    .footer-widgets-wrapper .single-footer-widget .widget-head {
        margin-bottom: 6px !important;
    }

    .footer-widgets-wrapper .single-footer-widget .widget-head a img {
        max-width: 120px !important;
        margin: 0 auto;
    }

    .footer-widgets-wrapper .single-footer-widget .footer-content > p {
        font-size: 12px;
        opacity: 0.7;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
        margin-top: 0 !important;
        margin-bottom: 8px;
        justify-content: center;
        gap: 10px !important;
    }

    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
        width: 34px;
        height: 34px;
        line-height: 34px;
        border-radius: 8px;
        background: rgba(255,255,255,0.1) !important;
        border: none;
        font-size: 14px;
        transition: background 0.2s;
    }

    /* Divider after logo section */
    .footer-widgets-wrapper .row > .col-xl-3:first-child {
        padding-bottom: 16px;
        margin-bottom: 4px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Links — 2 columns side by side */
    .footer-widgets-wrapper .row {
        gap: 0 !important;
    }

    .footer-widgets-wrapper .row > .col-xl-3:nth-child(2),
    .footer-widgets-wrapper .row > .col-xl-3:nth-child(3) {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        text-align: left !important;
        padding-left: 0 !important;
    }

    .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
        font-size: 13px !important;
        padding-bottom: 6px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.6;
        font-weight: 500 !important;
    }

    .footer-widgets-wrapper .single-footer-widget .widget-head h3::before,
    .footer-widgets-wrapper .single-footer-widget .widget-head h3::after {
        display: none !important;
    }

    .footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
        margin-bottom: 6px !important;
    }

    .footer-widgets-wrapper .single-footer-widget .list-area li a {
        font-size: 13px;
        opacity: 0.85;
    }

    .footer-widgets-wrapper .single-footer-widget .list-area li a i {
        display: none;
    }

    .footer-widgets-wrapper .single-footer-widget .list-area li:hover {
        margin-left: 0 !important;
    }

    /* Newsletter — modern input */
    .footer-widgets-wrapper .row > .col-xl-3:nth-child(4) {
        text-align: left !important;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 12px;
        padding-top: 8px;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .footer-widgets-wrapper .row > .col-xl-3:nth-child(4) .single-footer-widget {
        text-align: left !important;
    }

    .footer-widgets-wrapper .row > .col-xl-3:nth-child(4) .footer-content > p {
        display: block;
        -webkit-line-clamp: unset;
        font-size: 12px;
        opacity: 0.6;
        margin-bottom: 0;
        text-align: left !important;
    }

    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
        margin-top: 10px !important;
    }

    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
        padding: 10px 46px 10px 14px !important;
        font-size: 13px;
        border-radius: 8px !important;
        background: rgba(255,255,255,0.08) !important;
        border: 1px solid rgba(255,255,255,0.15) !important;
    }

    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
        display: flex !important;
        align-items: center;
        position: relative !important;
    }

    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        right: 6px !important;
        bottom: auto !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 6px !important;
        background: rgba(255,255,255,0.12) !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn i {
        font-size: 16px !important;
        transform: rotate(0deg) !important;
    }

    /* Footer bottom */
    .footer-bottom {
        padding: 12px 0 !important;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .footer-bottom .footer-wrapper {
        flex-direction: column !important;
        text-align: center;
        gap: 6px;
    }

    .footer-bottom .footer-wrapper p {
        font-size: 11px;
        opacity: 0.5;
    }

    .footer-bottom .brand-logo {
        justify-content: center;
    }

    .footer-bottom .brand-logo li span strong {
        font-size: 10px !important;
        opacity: 0.6;
    }

    /* ══════════════════════════════════════════
       SHOP PAGE — mobile overrides
       ══════════════════════════════════════════ */

    /* Hide breadcrumb banner entirely — saves ~120px */
    .breadcrumb-wrapper {
        display: none !important;
    }

    /* Hide old sort/results bar on mobile — replaced by filter pills */
    .shop-default-wrapper .woocommerce-notices-wrapper {
        display: none !important;
    }

    /* ── Filter pills bar ── */
    .shop-filter-col {
        padding: 0 !important;
        margin-bottom: 10px;
    }

    .shop-filter-bar {
        display: flex;
        gap: 8px;
        overflow: visible;
        padding: 4px 12px 4px;
        flex-wrap: nowrap;
    }

    .filter-pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 0 12px;
        height: 32px;
        border-radius: 20px;
        border: 1px solid #ddd;
        background: #fff;
        font-size: 12px;
        font-weight: 500;
        color: #444;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.2s;
        text-decoration: none;
        flex-shrink: 0;
    }

    .filter-pill i:first-child {
        font-size: 11px;
        opacity: 0.6;
    }

    .filter-pill .filter-arrow {
        font-size: 8px;
        opacity: 0.4;
        margin-left: 2px;
    }

    .filter-pill:hover,
    .filter-pill:focus {
        border-color: #8B1538;
        color: #8B1538;
        text-decoration: none;
    }

    .filter-pill.active {
        background: #8B1538;
        border-color: #8B1538;
        color: #fff;
    }

    .filter-pill.active i {
        opacity: 1;
        color: #fff;
    }

    /* Filter dropdown panels */
    .filter-pill-wrap {
        position: relative;
        flex-shrink: 0;
    }

    .filter-dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        min-width: 220px;
        max-width: calc(100vw - 24px);
        max-height: 300px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        border: 1px solid #eee;
        z-index: 1000;
        overflow: hidden;
    }

    .filter-pill-wrap:last-child .filter-dropdown {
        left: auto;
        right: 0;
    }

    .filter-dropdown.open {
        display: block;
    }

    .filter-dropdown-search {
        padding: 8px;
        border-bottom: 1px solid #f0f0f0;
    }

    .filter-dropdown-search input {
        width: 100%;
        padding: 7px 10px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        font-size: 12px;
        outline: none;
        background: #f9f9f9;
    }

    .filter-dropdown-search input:focus {
        border-color: #8B1538;
        background: #fff;
    }

    .filter-dropdown-list {
        max-height: 220px;
        overflow-y: auto;
    }

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

    .filter-dropdown-list::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

    .filter-dropdown-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 14px;
        font-size: 13px;
        color: #333;
        text-decoration: none;
        transition: background 0.15s;
        border-bottom: 1px solid #f8f8f8;
    }

    .filter-dropdown-item:last-child {
        border-bottom: none;
    }

    .filter-dropdown-item:hover {
        background: #f5f5f5;
        color: #8B1538;
        text-decoration: none;
    }

    .filter-dropdown-item.active {
        background: rgba(139, 21, 56, 0.06);
        color: #8B1538;
        font-weight: 600;
    }

    .filter-dropdown-item.clear-filter {
        color: #8B1538;
        font-weight: 500;
        font-size: 12px;
        border-bottom: 1px solid #f0f0f0;
    }

    .filter-dropdown-item .filter-count {
        font-size: 11px;
        color: #999;
        font-weight: 400;
        margin-left: auto;
    }

    .filter-dropdown-item i {
        font-size: 12px;
        width: 16px;
        text-align: center;
        opacity: 0.5;
    }

    /* Hide sidebar on mobile */
    .shop-default-wrapper .row > .col-xl-3.col-lg-4.order-2 {
        display: none !important;
    }

    /* Make product area full width */
    .shop-default-wrapper .row > .col-xl-9.col-lg-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Shop section: tighter padding */
    .shop-section.section-padding {
        padding: 8px 0 24px !important;
    }

    /* Product grid: 2 columns */
    .shop-default-wrapper .tab-content .row {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
    }

    .shop-default-wrapper .tab-content .row > .col-12.col-sm-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
        margin-bottom: 12px !important;
    }

    /* Product cards on shop page: compact */
    .shop-default-wrapper .shop-box-items .book-thumb {
        height: 170px !important;
        padding: 0 !important;
        border-radius: 8px 8px 0 0 !important;
        background: #f5f5f5 !important;
    }

    .shop-default-wrapper .shop-box-items .book-thumb img {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }

    .shop-default-wrapper .shop-box-items .book-thumb .shop-icon {
        display: none !important;
    }

    .shop-default-wrapper .shop-box-items .shop-content {
        padding: 8px 10px 10px !important;
    }

    .shop-default-wrapper .shop-box-items .shop-content h5 {
        font-size: 10px !important;
        margin-bottom: 2px !important;
        opacity: 0.5;
    }

    .shop-default-wrapper .shop-box-items .book-titles {
        min-height: unset !important;
        margin-bottom: 4px !important;
        gap: 0 !important;
    }

    .shop-default-wrapper .shop-box-items .book-titles h3 a {
        font-size: 13px !important;
        line-height: 1.3 !important;
        -webkit-line-clamp: 1 !important;
    }

    .shop-default-wrapper .shop-box-items .book-titles .urdu-title {
        display: none !important;
    }

    .shop-default-wrapper .shop-box-items .price-list {
        margin: 0 !important;
        display: flex !important;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .shop-default-wrapper .shop-box-items .price-list li {
        font-size: 14px !important;
        font-weight: 700;
        white-space: nowrap;
    }

    .shop-default-wrapper .shop-box-items .price-list li del {
        font-size: 10px !important;
        font-weight: 400;
        opacity: 0.4;
    }

    .shop-default-wrapper .shop-box-items .author-post {
        display: none !important;
    }

    .shop-default-wrapper .shop-box-items .shop-button {
        margin-top: 6px !important;
    }

    .shop-default-wrapper .shop-box-items .shop-button .theme-btn {
        padding: 7px 0 !important;
        font-size: 11px !important;
        min-width: 0 !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
    }

    .shop-default-wrapper .shop-box-items .book-thumb .post-box {
        top: 6px !important;
        left: 6px !important;
    }

    .shop-default-wrapper .shop-box-items .book-thumb .post-box li {
        font-size: 9px !important;
        padding: 2px 6px !important;
    }

    /* Pagination hidden by JS when infinite scroll is active */

    /* ══════════════════════════════════════════
       CART PAGE — mobile card layout
       ══════════════════════════════════════════ */

    .cart-section.section-padding {
        padding: 15px 0 30px !important;
    }

    .cart-section .row.g-5 {
        --bs-gutter-x: 0 !important;
        --bs-gutter-y: 1rem !important;
    }

    /* Kill the 700px fixed width from main.css and prevent overflow */
    .main-cart-wrapper,
    .main-cart-wrapper .table-responsive {
        overflow: hidden !important;
        max-width: 100% !important;
    }

    .cart-table,
    .main-cart-wrapper .table,
    .main-cart-wrapper .table-responsive .table,
    .main-cart-wrapper .table-responsive > table {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        display: block !important;
    }

    .cart-table thead,
    .main-cart-wrapper .table thead {
        display: none !important;
    }

    .cart-table tbody,
    .main-cart-wrapper .table tbody {
        display: block !important;
        width: 100% !important;
    }

    .cart-table tbody tr,
    .main-cart-wrapper .table tbody tr {
        display: flex !important;
        flex-wrap: wrap !important;
        padding: 15px !important;
        margin-bottom: 12px !important;
        border: 1px solid #eee !important;
        border-radius: 10px !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
        position: relative !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .cart-table tbody tr td,
    .main-cart-wrapper .table tbody tr td {
        border: none !important;
        padding: 4px 0 !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    /* Product cell: full width row with image + title */
    .cart-table tbody tr td:first-child,
    .main-cart-wrapper .table tbody tr td:first-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 10px !important;
        padding-right: 40px !important;
    }

    .main-cart-wrapper .table tbody tr td:first-child .d-flex {
        gap: 12px !important;
    }

    .main-cart-wrapper .table tbody tr td:first-child .cart-product-image img,
    .main-cart-wrapper .table tbody tr td:first-child .cart img {
        width: 65px !important;
        height: 80px !important;
        border-radius: 6px !important;
    }

    .main-cart-wrapper .table tbody tr td:first-child .cart-product-title,
    .main-cart-wrapper .table tbody tr td:first-child .cart-title {
        font-size: 14px !important;
    }

    /* Price, quantity, subtotal: distribute in a row */
    .cart-table tbody tr td:nth-child(2),
    .cart-table tbody tr td:nth-child(3),
    .cart-table tbody tr td:nth-child(4),
    .main-cart-wrapper .table tbody tr td:nth-child(2),
    .main-cart-wrapper .table tbody tr td:nth-child(3),
    .main-cart-wrapper .table tbody tr td:nth-child(4) {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Action/remove button — top-right of card */
    .cart-table tbody tr td:nth-child(5),
    .main-cart-wrapper .table tbody tr td:nth-child(5) {
        position: absolute !important;
        top: 12px !important;
        right: 12px !important;
        flex: 0 0 auto !important;
        width: auto !important;
    }

    .main-cart-wrapper .table tbody tr td .cart-price {
        margin-right: 0 !important;
        font-size: 14px !important;
    }

    .main-cart-wrapper .table tbody tr td .subtotal-price {
        font-size: 14px !important;
    }

    .main-cart-wrapper .table tbody tr td .quantity-basket .qty,
    .main-cart-wrapper .table tbody tr td .qty {
        padding: 6px 10px !important;
        border-radius: 25px !important;
    }

    .main-cart-wrapper .table tbody tr td .quantity-basket .qty input,
    .main-cart-wrapper .table tbody tr td .qty input {
        width: 35px !important;
        font-size: 14px !important;
    }

    /* Cart footer (coupon + continue) */
    .main-cart-wrapper .cart-wrapper-footer {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .main-cart-wrapper .cart-wrapper-footer form {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .main-cart-wrapper .cart-wrapper-footer .theme-btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* Cart total sidebar */
    .main-cart-wrapper .cart-total {
        margin-top: 10px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .main-cart-wrapper .cart-total .theme-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 14px !important;
        font-size: 16px !important;
    }

    /* Deal section header in cart */
    .deal-section-header td {
        flex: 0 0 100% !important;
    }

    .deal-item-row td:first-child {
        flex: 0 0 100% !important;
    }

    /* Data labels for cart cells on mobile */
    .main-cart-wrapper .table tbody tr td[data-label]::before {
        content: attr(data-label);
        display: block;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        color: #999;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
        text-align: center;
    }

    /* Empty cart — center properly */
    .cart-table tbody tr td[colspan],
    .main-cart-wrapper .table tbody tr td[colspan] {
        flex: 0 0 100% !important;
        width: 100% !important;
        text-align: center !important;
    }

    .empty-cart i {
        font-size: 48px !important;
    }

    /* ══════════════════════════════════════════
       WISHLIST PAGE — mobile card layout
       ══════════════════════════════════════════ */

    .cart-section .table thead {
        display: none !important;
    }

    .cart-section .table tbody tr {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 15px;
        margin-bottom: 12px;
        border: 1px solid #eee;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .cart-section .table tbody tr td {
        border: none !important;
        padding: 5px 0 !important;
    }

    .cart-section .table tbody tr td:first-child {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }

    .cart-section .table tbody tr td:first-child .d-flex {
        gap: 12px !important;
    }

    .cart-section .table tbody tr td:nth-child(2) {
        flex: 1;
    }

    .cart-section .table tbody tr td:nth-child(3) {
        flex: 0 0 auto;
    }

    .cart-section .table tbody tr td:nth-child(3) .theme-btn {
        padding: 10px 16px !important;
        font-size: 12px !important;
    }

    /* ══════════════════════════════════════════
       CHECKOUT PAGE — mobile layout
       ══════════════════════════════════════════ */

    .checkout-section.section-padding {
        padding: 15px 0 30px !important;
    }

    .checkout-section .row.g-5 {
        --bs-gutter-y: 1.5rem !important;
    }

    .checkout-single h4 {
        font-size: 20px !important;
    }

    .checkout-order-area {
        margin-top: 0 !important;
    }

    .checkout-order-area h3 {
        font-size: 20px !important;
    }

    .checkout-item p {
        font-size: 13px !important;
    }

    .checkout-order-area .theme-btn {
        width: 100%;
        text-align: center;
        padding: 14px !important;
        font-size: 16px !important;
    }

    /* ══════════════════════════════════════════
       PRODUCT DETAILS — mobile layout
       ══════════════════════════════════════════ */

    .shop-details-section.section-padding {
        padding: 15px 0 30px !important;
    }

    .shop-details-wrapper .shop-details-image .shop-details-thumb img {
        max-height: 350px;
        object-fit: contain;
    }

    .shop-details-wrapper .shop-details-content .shop-content h1 {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    .shop-details-wrapper .shop-details-content .shop-content h2 {
        font-size: 18px !important;
    }

    .shop-details-wrapper .shop-details-content .price-list h3 {
        font-size: 22px !important;
    }

    .shop-details-wrapper .shop-details-content .cart-wrapper {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket {
        width: 140px !important;
    }

    .shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket .qty {
        padding: 8px 15px !important;
    }

    .shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn {
        padding: 14px 25px !important;
        font-size: 14px !important;
    }

    .shop-details-wrapper .shop-details-content .cart-wrapper .icon-box {
        display: flex !important;
        gap: 8px;
    }

    /* Thumbnail nav on product page */
    .thumbnail-nav {
        gap: 6px !important;
        margin-top: 10px !important;
    }

    .thumbnail-nav .thumbnail-img {
        width: 50px !important;
        height: 60px !important;
    }

    /* Tabs on product page */
    .shop-details-wrapper .description-wrapper .nav-tabs .nav-link {
        font-size: 13px !important;
        padding: 10px 14px !important;
    }

    /* ══════════════════════════════════════════
       DEAL PAGES — mobile layout
       ══════════════════════════════════════════ */

    .deal-gallery .main-image img {
        max-height: 300px;
        object-fit: contain;
    }

    .deal-info-section .deal-title {
        font-size: 20px !important;
    }

    .deal-pricing-section .deal-price-lg {
        font-size: 24px !important;
    }

    .deal-group-card .deal-content h3 {
        font-size: 1.1rem !important;
    }

    /* ══════════════════════════════════════════
       CONTACT PAGE — mobile layout
       ══════════════════════════════════════════ */

    .contact-section.section-padding {
        padding: 15px 0 30px !important;
    }

    .contact-info-items {
        margin-bottom: 15px !important;
    }

    .contact-info-items h3 {
        font-size: 16px !important;
        word-break: break-all;
    }

    .contact-content h2 {
        font-size: 22px !important;
    }

    /* ══════════════════════════════════════════
       FOOTER — mobile layout
       ══════════════════════════════════════════ */

    .footer-section .contact-info-area {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 20px 0 !important;
    }

    .footer-section .contact-info-items {
        flex-direction: row !important;
        text-align: left !important;
        gap: 15px !important;
    }

    .footer-widgets-wrapper {
        padding: 30px 0 !important;
    }

    .footer-widgets-wrapper .plane-shape {
        display: none !important;
    }

    .single-footer-widget {
        margin-bottom: 20px !important;
    }

    .single-footer-widget .widget-head img {
        max-width: 120px !important;
    }

    .footer-bottom .footer-wrapper {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }

    .footer-bottom .footer-wrapper p {
        font-size: 12px !important;
    }

    /* ══════════════════════════════════════════
       GENERAL — section padding + misc mobile
       ══════════════════════════════════════════ */

    .section-padding {
        padding: 30px 0 !important;
    }

    /* Return policies, privacy, about pages */
    .return-policy-section h2,
    .privacy-section h2 {
        font-size: 22px !important;
    }

    /* Checkout success page */
    .checkout-success-section {
        padding: 20px !important;
    }
}
