/**
 * Catalogue Seller Page Styles - Amazon-inspired
 * Uses CSS variables for dynamic theming (--primary-color, --secondary-color)
 * External file for browser caching
 */

/* ========================================
   Banner & Header
   ======================================== */
.seller-banner {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.seller-banner.has-image {
    background-size: cover;
    background-position: center;
}

.seller-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.seller-header {
    position: relative;
    margin-top: -100px;
    z-index: 10;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    background: white;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.seller-logo {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid white;
}

.seller-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-logo .logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.seller-name {
    font-size: 28px;
    font-weight: 700;
    color: #191919;
    margin-bottom: 4px;
}

/* ========================================
   Badges
   ======================================== */
.seller-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background: #f0f0f0;
    color: #666;
}

.seller-type-badge.furniture { background: #e3f2fd; color: #1565c0; }
.seller-type-badge.artist { background: #fce4ec; color: #c62828; }
.seller-type-badge.general { background: #e8f5e9; color: #2e7d32; }

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.performance-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-elite { background: linear-gradient(135deg, #ffd700, #ffb700); color: #191919; }
.badge-top { background: #e3f2fd; color: #1565c0; }
.badge-reliable { background: #f5f5f5; color: #666; }

/* ========================================
   Rating & Stats
   ======================================== */
.seller-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.seller-rating .stars {
    color: #f5af02;
    font-size: 18px;
}

.seller-rating .rating-value {
    font-size: 18px;
    font-weight: 700;
    color: #191919;
}

.seller-rating .rating-count {
    color: #666;
    font-size: 14px;
}

.seller-stats {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.seller-stat {
    text-align: center;
}

.seller-stat .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.seller-stat .stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

/* ========================================
   Buttons & Actions
   ======================================== */
.seller-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-seller-primary {
    background: var(--secondary-color);
    color: #191919;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-seller-primary:hover {
    background: #d99a00;
    color: #191919;
    transform: translateY(-2px);
}

.btn-seller-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-seller-outline:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.btn-seller-outline.btn-whatsapp-action {
    border-color: #25D366;
    color: #25D366;
    padding: 6px 10px;
    border-width: 1px;
    font-size: 1.2em;
}

.btn-seller-outline.btn-whatsapp-action:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-seller-outline.btn-call-action {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 6px 10px;
    border-width: 1px;
    font-size: 1.2em;
}

.btn-seller-outline.btn-call-action:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-seller-outline.btn-instagram-action {
    border-color: #E1306C;
    color: #E1306C;
    padding: 6px 10px;
    border-width: 1px;
    font-size: 1.2em;
}

.btn-seller-outline.btn-instagram-action:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #E1306C;
    color: white;
}

.btn-seller-outline.btn-facebook-action {
    border-color: #1877F2;
    color: #1877F2;
    padding: 6px 10px;
    border-width: 1px;
    font-size: 1.2em;
}

.btn-seller-outline.btn-facebook-action:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.btn-seller-outline.btn-tiktok-action {
    border-color: #000000;
    color: #000000;
    padding: 6px 10px;
    border-width: 1px;
    font-size: 1.2em;
}

.btn-seller-outline.btn-tiktok-action:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

/* ========================================
   Info Cards
   ======================================== */
.seller-info-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: 100%;
}

.seller-info-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #191919;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.seller-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.seller-info-item:last-child {
    margin-bottom: 0;
}

.seller-info-item i {
    width: 20px;
    color: var(--secondary-color);
    margin-top: 2px;
}

.seller-info-item span {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.seller-info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.seller-info-item a:hover {
    text-decoration: underline;
}

/* ========================================
   Tabs Navigation
   ======================================== */
.seller-tabs {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.seller-tabs .container {
    padding: 0;
}

.seller-tabs .nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.seller-tabs .nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.seller-tabs .nav-item {
    flex-shrink: 0;
}

.seller-tabs .nav-link {
    color: #666;
    font-weight: 600;
    padding: 16px 24px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.seller-tabs .nav-link:hover {
    color: var(--primary-color);
    background: #f8f8f8;
}

.seller-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

/* ========================================
   Tabs Cart Buttons
   ======================================== */
.seller-tabs-cart {
    padding-right: 12px;
}

.seller-tabs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    text-decoration: none;
}

.seller-tabs-btn.btn-whatsapp {
    background: #25D366;
    color: white !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.seller-tabs-btn.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.seller-tabs-btn.btn-cart-tabs {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid #e0e0e0;
    box-shadow: none;
}

.seller-tabs-btn.btn-cart-tabs:hover {
    background: #f5f5f5;
    border-color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

.seller-tabs-btn .cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    background: #e53935;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ========================================
   Products Grid
   ======================================== */
.seller-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* ========================================
   Reviews
   ======================================== */
.seller-review {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.review-meta {
    flex: 1;
}

.review-author {
    font-weight: 600;
    color: #191919;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-stars {
    color: #f5af02;
}

.review-content {
    color: #333;
    line-height: 1.6;
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #2e7d32;
    margin-top: 8px;
}

/* ========================================
   About Section
   ======================================== */
.seller-about {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.seller-about h4 {
    font-weight: 700;
    color: #191919;
    margin-bottom: 16px;
}

.seller-about p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.seller-policies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.policy-item i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 18px;
}

.policy-item h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.policy-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ========================================
   Empty State
   ======================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
}

.empty-state h5 {
    color: #666;
    margin-bottom: 10px;
}

/* ========================================
   Catalogue Lateral Menu
   ======================================== */
.catalogue-lateral-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.catalogue-lateral-overlay.show {
    opacity: 1;
    visibility: visible;
}

.catalogue-lateral-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 1051;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}

.catalogue-lateral-menu.show {
    transform: translateX(0);
}

.catalogue-lateral-header {
    padding: 20px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.catalogue-lateral-header .catalogue-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
}

.catalogue-lateral-header .catalogue-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalogue-lateral-header .catalogue-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.catalogue-lateral-header .catalogue-info {
    flex: 1;
    min-width: 0;
}

.catalogue-lateral-header .catalogue-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalogue-lateral-header .catalogue-subtitle {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
}

.catalogue-lateral-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.catalogue-lateral-close:hover {
    background: rgba(255,255,255,0.3);
}

.catalogue-lateral-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.catalogue-lateral-section {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.catalogue-lateral-section:last-child {
    border-bottom: none;
}

.catalogue-lateral-section-title {
    padding: 0 20px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin: 0;
}

.catalogue-lateral-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalogue-lateral-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
}

.catalogue-lateral-nav li a:hover {
    background: #f8f8f8;
    color: var(--primary-color);
}

.catalogue-lateral-nav li a i {
    width: 20px;
    text-align: center;
    color: var(--secondary-color);
    font-size: 16px;
}

.catalogue-lateral-nav li a .badge {
    margin-left: auto;
    background: #f0f0f0;
    color: #666;
    font-weight: 500;
    font-size: 11px;
}

/* ========================================
   Hamburger Button
   ======================================== */
.catalogue-hamburger-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.catalogue-hamburger-btn:hover {
    background: #f5f5f5;
    border-color: var(--primary-color);
}

.catalogue-hamburger-btn .line {
    width: 18px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.2s;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 768px) {
    .seller-banner {
        height: 180px;
    }

    .seller-header {
        margin-top: -50px;
        padding-top: 15px;
        padding-bottom: 20px;
    }

    .seller-header .row {
        flex-direction: column;
    }

    .seller-header .d-flex.align-items-end {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 15px !important;
    }

    .seller-logo {
        width: 90px;
        height: 90px;
        margin-top: -60px;
    }

    .seller-logo .logo-placeholder {
        font-size: 32px;
    }

    .seller-name {
        font-size: 20px;
    }

    .seller-header .flex-grow-1 {
        padding-bottom: 0 !important;
        width: 100%;
    }

    .seller-header .d-flex.flex-wrap {
        justify-content: center;
    }

    .seller-rating {
        justify-content: center;
        flex-wrap: wrap;
    }

    .seller-rating .stars {
        font-size: 14px;
    }

    .seller-rating .rating-value,
    .seller-rating .rating-count {
        font-size: 13px;
    }

    .seller-type-badge,
    .verified-badge,
    .performance-badge {
        font-size: 11px;
        padding: 3px 8px;
    }

    .seller-actions {
        justify-content: center !important;
        margin-top: 15px;
    }

    .seller-tabs {
        top: 0; /* Header is hidden, so no offset needed */
    }

    .seller-tabs .container {
        padding: 0 12px;
    }

    .seller-tabs .nav-link {
        padding: 14px 18px;
        font-size: 13px;
    }

    .seller-tabs .nav-link i {
        margin-right: 6px !important;
    }

    .seller-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ========================================
   Floating Cart Button
   ======================================== */
.floating-cart-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 1.4em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-cart-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: var(--secondary-color);
}

.floating-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    background: #dc3545;
    color: white;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.4);
}

/* ========================================
   Cart Panel
   ======================================== */
.catalogue-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    visibility: hidden;
    transition: background 0.3s ease, visibility 0.3s ease;
}

.catalogue-cart-overlay.show {
    background: rgba(0, 0, 0, 0.5);
    visibility: visible;
}

.catalogue-cart-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100vw;
    height: 100%;
    background: white;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
}

.catalogue-cart-panel.show {
    right: 0;
}

.catalogue-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.catalogue-cart-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.catalogue-cart-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
}

.catalogue-cart-close:hover {
    background: #e9ecef;
    color: #333;
}

.catalogue-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.catalogue-cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.catalogue-cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.catalogue-cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.catalogue-cart-item-details {
    flex: 1;
    min-width: 0;
}

.catalogue-cart-item-name {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalogue-cart-item-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.catalogue-cart-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border-radius: 6px;
    padding: 2px;
}

.catalogue-cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #495057;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.catalogue-cart-qty-btn:hover {
    background: #f8f9fa;
    border-color: var(--primary-color);
}

.catalogue-cart-qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.catalogue-cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 4px;
    font-size: 0.85rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.catalogue-cart-item-remove:hover {
    opacity: 1;
}

.catalogue-cart-footer {
    padding: 16px 20px;
    border-top: 1px solid #e9ecef;
    background: #fff;
}

.catalogue-cart-summary {
    margin-bottom: 16px;
}

.catalogue-cart-actions .btn {
    font-weight: 600;
}

/* ========================================
   Custom Mobile Bottom Navigation
   ======================================== */
.catalogue-mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.catalogue-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6c757d;
    font-size: 0.7rem;
    padding: 8px 12px;
    position: relative;
    transition: color 0.2s ease;
}

.catalogue-mobile-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.catalogue-mobile-nav-item span {
    font-weight: 500;
}

.catalogue-mobile-nav-item.active {
    color: var(--primary-color);
}

.catalogue-mobile-nav-item:hover {
    color: var(--primary-color);
}

.catalogue-mobile-nav-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background: #dc3545;
    color: white;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
    /* Hide tabs menu on mobile - use bottom nav instead */
    .seller-tabs {
        display: none !important;
    }

    /* Add padding to page content for mobile nav */
    .fm-section:last-of-type {
        padding-bottom: 80px;
    }

    .floating-cart-btn {
        display: none; /* Hide floating cart on mobile, use bottom nav instead */
    }
}

@media (min-width: 768px) {
    .floating-cart-btn {
        bottom: 24px;
        right: 24px;
    }

    .catalogue-cart-panel {
        width: 450px;
    }
}

@media (max-width: 576px) {
    .catalogue-cart-panel {
        width: 100%;
        right: -100%;
    }

    .catalogue-cart-item-img {
        width: 60px;
        height: 60px;
    }
}
