/* Ensure all text-carrying elements use the beautiful Poppins font family globally */
body, input, button, select, textarea, label, a, h1, h2, h3, h4, h5, h6, p, span:not(.bi):not(.fa):not(.fas):not(.far):not(.fab):not([class*="fa-"]) {
    font-family: 'Poppins', sans-serif !important;
}

/* ============================================================
   HELPCIRCLE WISHLIST PAGE
   ============================================================ */
.helpcircle-wishlist-page {
    background: #fcfcfc;
    min-height: 80vh;
}

.wishlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.wishlist-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 1rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wishlist-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #ddd;
}

.wl-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s;
}

.wl-remove-btn:hover {
    background: #ffeded;
    color: #ff4757;
    border-color: #ffcccc;
}

.wl-img-box {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #fdfdfd;
}

.wl-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.wishlist-card:hover .wl-img-box img {
    transform: scale(1.08);
}

.wl-info {
    flex-grow: 1;
}

.wl-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1c1e;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 2.8rem;
}

.wl-variant-select {
    margin-bottom: 1rem;
}

.wl-price-row {
    margin-bottom: 1rem;
}

.wl-sale-price,
.pc-sale-price {
    font-size: 16px;
    font-weight: 700;
    color: #1a1c1e;
}

.wl-mrp-price,
.pc-mrp-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.wl-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.wl-qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    height: 36px;
    background: #fff;
}

.wl-qty-box button {
    width: 32px;
    height: 100%;
    border: none;
    background: #f8f9fa;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.wl-qty-box span {
    width: 36px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.wl-cart-btn {
    width: 100%;
    background: var(--helpcircle-purple);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
}

.wl-cart-btn:hover {
    background: #4a1599;
}

.wl-empty-state {
    text-align: center;
    padding: 5rem 1rem;
}

.wl-empty-icon {
    font-size: 5rem;
    color: #ffdce5;
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .wishlist-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .wishlist-card {
        padding: 0.75rem;
    }

    .wl-name {
        font-size: 13px;
    }
}

/* ============================================================
   helpcircle SIDE CART DRAWER
   ============================================================ */
.helpcircle-cart-drawer {
    background: #f8f8f8;
}

.cart-drawer-head {
    padding: 20px;
    background: #fff;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-drawer-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1c1e;
    margin: 0;
}

.cart-count-badge {
    background: var(--helpcircle-purple);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 8px;
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-drawer-close:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

.cart-items-wrap {
    padding: 15px;
    overflow-y: auto;
    flex-grow: 1;
}

.side-cart-item {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.side-cart-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: contain;
    background: #fdfdfd;
}

.side-cart-info {
    flex-grow: 1;
    min-width: 0;
}

.side-cart-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1c1e;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-cart-variant {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 6px;
}

.side-cart-price-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side-cart-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1c1e;
}

.side-cart-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
}

.side-cart-remove:hover {
    color: #ff4757;
}

/* Delivery Progress Bar */
.cart-delivery-banner {
    background: #fff8e1;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.delivery-progress-icon {
    font-size: 1.5rem;
    color: #ffc107;
}

.delivery-progress-text {
    flex-grow: 1;
    font-size: 12px;
    font-weight: 600;
    color: #5d4037;
}

.cart-drawer-footer {
    padding: 20px;
    background: #fff;
    border-top: 2px solid #f0f0f0;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.03);
}

.side-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.side-total-label {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

.side-total-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--helpcircle-purple);
}

.side-cart-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.side-checkout-btn {
    grid-column: span 2;
    background: var(--helpcircle-purple);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.side-checkout-btn:hover {
    background: #4a1599;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 0, 77, 0.2);
}

.side-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    text-align: center;
    color: #bbb;
}

.side-cart-empty i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

:root {
    --helpcircle-brand: #1aa31a;
    /* Emerald - Primary */
    --helpcircle-dark: #2c3e50;
    /* Charcoal - Secondary */
    --helpcircle-purple: #1aa31a;
    /* Alias for backward compatibility */
    --helpcircle-light-purple: #f1fdf1;
    /* Soft green tint */
    --helpcircle-pink: #f0007e;
    --helpcircle-green: #1aa31a;
    --helpcircle-yellow: #ffc107;
    --helpcircle-blue: #0084ff;
    --helpcircle-border: #f1f1f1;
    --helpcircle-bg: #f7f9fd;
    --helpcircle-text: #1a1c1e;
    --helpcircle-text-muted: #8e9196;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    body {
        overflow-x: hidden;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
}

body {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

/* Header Redesign */
.helpcircle-header {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.helpcircle-logo img {
    height: 40px;
}

.location-picker {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    min-width: 150px;
}

.location-picker .label {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: normal;
}

.location-picker .value {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-container {
    flex: 1;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 10px 15px 10px 45px;
    background: #f3f3f3;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s;
}

.search-container input:focus {
    background: #fff;
    border-color: var(--helpcircle-purple);
    box-shadow: 0 0 0 2px rgba(60, 0, 77, 0.1);
    outline: none;
}

.search-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.header-action-item i {
    font-size: 22px;
}

.header-action-item span {
    font-size: 12px;
    font-weight: 600;
}

/* Category Navigation Bar */
.category-nav-bar {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-nav-bar::-webkit-scrollbar {
    display: none;
}

.category-nav-list {
    display: flex;
    padding: 10px 0;
    list-style: none;
    margin: 0;
}

.category-nav-item {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s;
    color: #444;
}

.category-nav-item.active {
    background: var(--helpcircle-purple);
    color: #fff;
}

.category-nav-item:hover:not(.active) {
    background: #f5f5f5;
}

/* Product Card - helpcircle Style */
.helpcircle-product-card {
    background: #fff;
    border: 1px solid #f5f5f5;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.2s;
    position: relative;
}

.helpcircle-product-card:hover {
    border-color: #ddd;
}

.product-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 20px;
    z-index: 2;
}

.product-wishlist-btn.active {
    color: #e53935;
}

.product-img-box {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #222;
}

.product-weight {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.selling-price {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.mrp-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart-container {
    min-width: 80px;
}

.helpcircle-add-btn {
    color: var(--helpcircle-green);
    background: #fff;
    border: 1px solid var(--helpcircle-green);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
    width: 100%;
    text-transform: uppercase;
    transition: all 0.2s;
}

.helpcircle-add-btn:hover {
    background: var(--helpcircle-green);
    color: #fff;
}

.qty-switcher {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--helpcircle-green);
    color: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    width: 100%;
}

.qty-switcher button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 0;
    line-height: 1;
}

.qty-switcher span {
    font-size: 13px;
    font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    .helpcircle-logo,
    .logo-container {
        display: none !important;
    }

    .header-top {
        display: none !important;
        /* The mobile view row is separate now */
    }

    .header-actions {
        gap: 12px;
    }
}

/* Section Styling */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.view-all-link {
    color: var(--helpcircle-green);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

/* Categories Grid (for Home) */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-img-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
}

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

.category-name {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* ── Selectable Category Circles ── */
.cat-circle-item {
    display: block;
    transition: all 0.2s ease;
}

.cat-circle-item .cat-circle-icon {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.cat-circle-item.active .cat-circle-icon {
    border: 3px solid var(--helpcircle-purple) !important;
    box-shadow: 0 4px 14px rgba(60, 0, 77, 0.2) !important;
    transform: scale(1.05);
}

.cat-circle-item:hover:not(.active) .cat-circle-icon {
    border-color: #ccc !important;
    transform: scale(1.03);
}

.cat-circle-item.active span {
    color: var(--helpcircle-purple) !important;
}

/* ── Subcategory Section ── */
.subcategory-section {
    background: #f9fafb;
    border-radius: 12px;
    padding: 12px 8px;
    border: 1px solid #f0f0f0;
}

.subcat-circle {
    transition: all 0.25s ease;
}

.subcat-item:hover .subcat-circle {
    border-color: var(--helpcircle-purple) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(60, 0, 77, 0.1) !important;
}

.subcat-item:hover span {
    color: var(--helpcircle-purple) !important;
}

/* ── Subcategory Scroll Buttons Responsive ── */
@media (max-width: 576px) {
    .subcategory-section {
        padding: 10px 4px;
        border-radius: 10px;
    }

    .subcategory-section .btn.rounded-circle {
        width: 26px !important;
        height: 26px !important;
    }

    .subcategory-section .btn.rounded-circle i {
        font-size: 12px !important;
    }

    .subcat-scroll-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .subcat-item {
        min-width: 70px !important;
        max-width: 70px !important;
    }

    .subcat-circle {
        width: 48px !important;
        height: 48px !important;
    }
}

/* Details Page Redesign */
.helpcircle-product-details {
    padding: 30px 0;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-box {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    background: #fff;
}

.main-image-box img {
    width: 100%;
    height: auto;
}

.thumb-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumb-item {
    width: 70px;
    height: 70px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
}

.thumb-item.active {
    border-color: var(--helpcircle-purple);
}

.product-meta h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-meta .unit-info {
    color: #666;
    margin-bottom: 20px;
}

.product-price-section {
    padding: 20px;
    background: #fdfdfd;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.large-selling-price {
    font-size: 28px;
    font-weight: 800;
}

.large-mrp-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.discount-tag {
    background: var(--helpcircle-green);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
}

.qty-adjustment-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.big-qty-box {
    display: flex;
    align-items: center;
    background: var(--helpcircle-green);
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
}

.big-qty-box button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 0 10px;
}

.big-qty-box span {
    font-size: 18px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

/* Cart Page - helpcircle Style */
.helpcircle-cart-page {
    background: #f8f8f8;
    min-height: calc(100vh - 200px);
    padding: 30px 0 60px;
}

.cart-item-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

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

.cart-item-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-info p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-row.total {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: 700;
    font-size: 18px;
}

.proceed-btn {
    width: 100%;
    background: var(--helpcircle-purple);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
}

/* Checkout Page - helpcircle Style */
.helpcircle-checkout-page {
    background: #f8f8f8;
    padding: 30px 0;
}

.checkout-section-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.checkout-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--helpcircle-purple);
}

.form-floating>label {
    font-size: 13px;
    color: #888;
}

.form-control:focus {
    border-color: var(--helpcircle-purple);
    box-shadow: 0 0 0 0.25rem rgba(60, 0, 77, 0.1);
}

/* Dashboard - helpcircle Style */
.helpcircle-dashboard {
    padding: 30px 0;
    background: #fcfcfc;
}

.dashboard-sidebar {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #f9f9f9;
    transition: all 0.2s;
}

.dashboard-nav-item:hover,
.dashboard-nav-item.active {
    background: var(--helpcircle-light-purple);
    color: var(--helpcircle-purple);
}

.dashboard-nav-item i {
    font-size: 18px;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--helpcircle-purple);
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ============================================================
   SHOP PAGE & SIDEBAR
   ============================================================ */
.sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 90px;
}

.sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1c1e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-item {
    border-bottom: 1px solid #f9f9f9;
}

.cat-header {
    cursor: pointer;
    transition: all 0.2s;
}

.cat-header:hover {
    background: #fdfdfd;
}

.cat-label {
    font-size: 14px;
    color: #444;
}

.sub-list {
    border-left: 2px solid #eee;
}

.sub-item label {
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.sub-item label:hover {
    color: var(--helpcircle-purple);
}

/* Pagination Styling */
.pagination {
    gap: 5px;
}

.page-item .page-link {
    border: 1px solid #eee;
    border-radius: 8px !important;
    color: #444;
    padding: 8px 14px;
    font-weight: 600;
}

.page-item.active .page-link {
    background: var(--helpcircle-purple);
    border-color: var(--helpcircle-purple);
    color: #fff;
}

/* Global Neat Breadcrumb */
.page-breadcrumb {
    background: transparent;
    padding: 0;
    font-size: 13px;
}

.page-breadcrumb .breadcrumb-item a {
    color: #888;
    text-decoration: none;
}

.page-breadcrumb .breadcrumb-item.active {
    color: #1a1c1e;
}

/* Form Controls - Neat UI */
.form-control,
.form-select {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 14px;
    background: #fdfdfd;
    transition: all 0.2s;
}

@media (max-width: 768px) {
    .form-control, .form-select {
        font-size: 16px !important; /* Prevents iOS auto-zoom */
    }
}

.form-control:focus,
.form-select:focus {
    border-color: var(--helpcircle-purple);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(60, 0, 77, 0.05);
}

/* ============================================================
   HOME PAGE - CATEGORY EXPLORER & ROWS
   ============================================================ */
.category-explorer {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--helpcircle-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.main-cat-tabs {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.main-cat-tabs::-webkit-scrollbar {
    display: none;
}

.cat-tab {
    padding: 12px 24px;
    background: #fdfdfd;
    border: 1px solid var(--helpcircle-border);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.cat-tab:hover {
    background: #f9f9f9;
}

.cat-tab.active {
    background: var(--helpcircle-purple);
    color: #fff;
    border-color: var(--helpcircle-purple);
    box-shadow: 0 4px 12px rgba(60, 0, 77, 0.2);
}

.sub-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.sub-cat-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.sub-cat-card:hover {
    transform: translateY(-3px);
}

.sub-cat-img-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
    background: var(--helpcircle-bg);
    border-radius: 20px;
    padding: 15px;
    border: 1px solid var(--helpcircle-border);
}

.sub-cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sub-cat-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1c1e;
    display: block;
    line-height: 1.2;
}

.helpcircle-category-row {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--helpcircle-text);
}

.view-all-link {
    color: var(--helpcircle-purple);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-link:hover {
    color: #4a1599;
    text-decoration: underline;
}

/* ============================================================
   WISHLIST PAGE - PREMIUM CARDS
   ============================================================ */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.wishlist-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--helpcircle-border);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wishlist-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(60, 0, 77, 0.1);
}

.wl-remove-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: #fff5f5;
    color: #ff4757;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.wl-remove-btn:hover {
    background: #ff4757;
    color: #fff;
    transform: rotate(90deg);
}

.wl-img-box {
    display: block;
    width: 100%;
    height: 160px;
    margin-bottom: 15px;
    padding: 10px;
}

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

.wl-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1c1e;
    margin-bottom: 8px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wl-price-row {
    margin-bottom: 15px;
}

.wl-sale-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--helpcircle-purple);
}

.wl-mrp-price {
    font-size: 12px;
    color: #888;
    text-decoration: line-through;
    margin-left: 8px;
}

.wl-cart-btn {
    width: 100%;
    background: var(--helpcircle-purple);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.wl-cart-btn:hover {
    background: #4a1599;
    box-shadow: 0 4px 12px rgba(60, 0, 77, 0.2);
}

.wl-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.wl-empty-icon {
    font-size: 80px;
    color: #fce4ec;
    margin-bottom: 20px;
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* ============================================================
   GLOBAL UTILITIES
   ============================================================ */
.badge-promo {
    background: #fff3e0;
    color: #e65100;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 5px;
    text-transform: uppercase;
}

.rounded-20 {
    border-radius: 20px !important;
}

.shadow-premium {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
}

/* Mobile Optimizations */
@media (max-width: 576px) {
    .section-title {
        font-size: 18px;
    }

    .category-explorer {
        padding: 15px;
        border-radius: 15px;
    }

    .sub-cat-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }

    .sub-cat-img-box {
        width: 70px;
        height: 70px;
        padding: 10px;
    }

    .cat-tab {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Global Quantity Adjustment Box (Cart, Checkout, Product Cards) */
.pc-qty-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 32px;
    background: #fdfdfd;
}

.pc-qty-box button {
    width: 30px;
    height: 100%;
    border: none;
    background: none;
    font-weight: bold;
    color: var(--helpcircle-purple);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-qty-box button:hover {
    background: #f5f5f5;
}

.pc-qty-box input {
    width: 30px;
    border: none;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    pointer-events: none;
    background: transparent;
    color: #333;
}

/* ============================================================
   AUTHENTIC helpcircle MOBILE EXPERIENCE
   ============================================================ */
:root {
    --zp-primary: #3c004d;
    --zp-light-bg: #f8fbff;
    --zp-border: #f1f1f1;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        background-color: #f7f9fd;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Header Refinement */
    .helpcircle-header {
        padding: 12px 0 0;
    }

    .search-container {
        margin: 10px 0;
        border-radius: 12px;
        border: 1px solid #eee;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .search-container input {
        height: 42px;
        font-size: 13px;
    }

    /* Product Cards - FLAT & NEAT */
    .helpcircle-product-card {
        border: 1px solid var(--zp-border) !important;
        box-shadow: none !important;
        border-radius: 12px !important;
        padding: 10px !important;
        background: #fff;
    }

    .selling-price {
        font-size: 14px !important;
        color: #1a1c1e;
    }

    .mini-meta,
    .extra-small,
    .label {
        font-size: 10px !important;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: #888;
    }

    /* Bottom Nav Fix */
    .bottom-nav-mobile {
        height: 65px;
        background: #fff;
        border-top: 1px solid #eee;
        display: flex;
        align-items: center;
    }

    .bottom-nav-item i {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }

    .bottom-nav-item span {
        font-size: 10px;
        font-weight: 600;
    }

    /* Buttons */
    .helpcircle-icon-add-btn {
        width: 34px !important;
        height: 34px !important;
        border-radius: 10px !important;
        font-size: 1rem !important;
    }

    .pc-qty-box {
        height: 34px !important;
        border-radius: 10px !important;
    }

    /* Forms */
    .checkout-card {
        padding: 16px !important;
        border-radius: 16px !important;
        margin-bottom: 12px;
    }

    .form-control {
        font-size: 13px !important;
        padding: 10px !important;
    }
}

/* ============================================================
   HELPCIRCLE CUSTOMER DASHBOARD (ZEPTO STYLE)
   ============================================================ */
.helpcircle-dashboard {
    background-color: #f7f9fd;
    min-height: 90vh;
}

.helpcircle-account-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.account-avatar i {
    color: var(--helpcircle-purple);
}

.dashboard-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #1a1c1e !important;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    border: 1px solid #eee;
}

.link-item span {
    color: #1a1c1e;
}

.link-item.active {
    background: #f8eaff;
    border-color: #e0b0ff;
}

.link-item.active span {
    color: var(--helpcircle-purple);
}

.text-pink-helpcircle {
    color: #f0007e !important;
}

.bg-pink-helpcircle {
    background-color: #f0007e !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .dashboard-links-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .link-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
        gap: 8px;
    }

    .link-item i {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .link-item span {
        font-size: 13px;
    }

    /* Fix row overflow */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    .row > * {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Responsive Table Wrapper */
    .table-responsive {
        border: 0;
    }

    /* Input sizing to prevent iOS zoom */
    input[type="text"], 
    input[type="tel"], 
    input[type="email"], 
    input[type="password"], 
    input[type="search"], 
    select, 
    textarea {
        font-size: 16px !important;
    }

    /* Global padding fix for mobile */
    .container, .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Product Details Image Height */
    .main-image-box {
        height: 250px !important;
    }

    /* Button scaling */
    .btn-lg {
        padding: 12px 20px !important;
        font-size: 16px !important;
    }

    /* Hero Banner Scaling Update */
    .hero-banner {
        height: 220px !important;
    }

    .hero-content h1 {
        font-size: 24px !important;
    }
}