/**
 * Alrowad Pico - B2B Shop Page Redesign
 * Premium Industrial/Medical Catalogue Style
 * Version: 2.0
 * 
 * Brand Color Palette:
 * - Primary Blue: #0A2E50
 * - Secondary Blue: #1A4F8A
 * - Accent Gold: #C89A3E
 * - Neutral Gray: #6a6a78
 * - Background Light: #cfd1d0
 */

/* ========================================
   CSS Variables & Root Configuration
   ======================================== */
:root {
    /* Brand Colors */
    --pico-primary: #0A2E50;
    --pico-primary-light: #1A4F8A;
    --pico-accent: #1A4F8A;
    --pico-accent-hover: #0A2E50;
    --pico-success: #C89A3E;
    --pico-gold: #C89A3E;
    --pico-warning: #C89A3E;

    /* Neutrals */
    --pico-white: #ffffff;
    --pico-bg-light: #f5f6f5;
    --pico-bg-card: #ffffff;
    --pico-border: #cfd1d0;
    --pico-border-light: #e5e6e5;

    /* Text */
    --pico-text-dark: #0A2E50;
    --pico-text-body: #1A4F8A;
    --pico-text-muted: #6a6a78;
    --pico-text-light: #9a9aa8;

    /* Shadows */
    --pico-shadow-sm: 0 2px 4px rgba(10, 46, 80, 0.06);
    --pico-shadow-md: 0 4px 12px rgba(10, 46, 80, 0.1);
    --pico-shadow-lg: 0 8px 24px rgba(10, 46, 80, 0.12);
    --pico-shadow-hover: 0 12px 32px rgba(10, 46, 80, 0.15);

    /* Spacing */
    --pico-space-xs: 0.25rem;
    --pico-space-sm: 0.5rem;
    --pico-space-md: 1rem;
    --pico-space-lg: 1.5rem;
    --pico-space-xl: 2rem;
    --pico-space-2xl: 3rem;

    /* Border Radius */
    --pico-radius-sm: 4px;
    --pico-radius-md: 8px;
    --pico-radius-lg: 12px;
    --pico-radius-xl: 16px;

    /* Transitions */
    --pico-transition-fast: 0.15s ease;
    --pico-transition-normal: 0.25s ease;
    --pico-transition-slow: 0.4s ease;

    /* Typography */
    --pico-font-main: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --pico-font-heading: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ========================================
   Shop Page Container
   ======================================== */
.pico-shop-page {
    background: var(--pico-bg-light);
    min-height: 100vh;
    padding-bottom: var(--pico-space-2xl);
}

/* ========================================
   Shop Header / Hero Section (Compact)
   ======================================== */
.pico-shop-header {
    background: linear-gradient(135deg, var(--pico-primary) 0%, var(--pico-primary-light) 100%);
    padding: var(--pico-space-xl) 0;
    margin-bottom: var(--pico-space-xl);
    position: relative;
    overflow: hidden;
}

.pico-shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.pico-shop-header__content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--pico-space-lg);
    position: relative;
    z-index: 1;
}

.pico-shop-header__title {
    color: var(--pico-white);
    font-family: var(--pico-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 var(--pico-space-sm);
    letter-spacing: -0.02em;
}

.pico-shop-header__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    max-width: 600px;
}

/* Breadcrumb */
.pico-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--pico-space-sm);
    margin-bottom: var(--pico-space-md);
    font-size: 0.875rem;
}

.pico-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--pico-transition-fast);
}

.pico-breadcrumb a:hover {
    color: var(--pico-white);
}

.pico-breadcrumb__separator {
    color: rgba(255, 255, 255, 0.4);
}

.pico-breadcrumb__current {
    color: var(--pico-white);
    font-weight: 500;
}

/* ========================================
   Shop Main Layout
   ======================================== */
.pico-shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--pico-space-lg);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--pico-space-xl);
}

@media (max-width: 1024px) {
    .pico-shop-container {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Sidebar / Filters
   ======================================== */
.pico-shop-sidebar {
    position: sticky;
    top: var(--pico-space-lg);
    height: fit-content;
}

@media (max-width: 1024px) {
    .pico-shop-sidebar {
        position: static;
        display: none;
    }

    .pico-shop-sidebar.active {
        display: block;
    }
}

.pico-filter-toggle {
    display: none;
    width: 100%;
    padding: var(--pico-space-md);
    background: var(--pico-white);
    border: 1px solid var(--pico-border);
    border-radius: var(--pico-radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--pico-text-dark);
    cursor: pointer;
    margin-bottom: var(--pico-space-md);
    transition: all var(--pico-transition-fast);
}

.pico-filter-toggle:hover {
    background: var(--pico-bg-light);
}

.pico-filter-toggle svg {
    margin-right: var(--pico-space-sm);
}

@media (max-width: 1024px) {
    .pico-filter-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.pico-filter-section {
    background: var(--pico-white);
    border-radius: var(--pico-radius-lg);
    box-shadow: var(--pico-shadow-sm);
    margin-bottom: var(--pico-space-md);
    overflow: hidden;
}

.pico-filter-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--pico-space-md) var(--pico-space-lg);
    border-bottom: 1px solid var(--pico-border-light);
    cursor: pointer;
    transition: background var(--pico-transition-fast);
}

.pico-filter-section__header:hover {
    background: var(--pico-bg-light);
}

.pico-filter-section__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--pico-text-dark);
    margin: 0;
}

.pico-filter-section__toggle {
    width: 20px;
    height: 20px;
    color: var(--pico-text-muted);
    transition: transform var(--pico-transition-fast);
}

.pico-filter-section.collapsed .pico-filter-section__toggle {
    transform: rotate(-90deg);
}

.pico-filter-section__body {
    padding: var(--pico-space-md) var(--pico-space-lg);
}

.pico-filter-section.collapsed .pico-filter-section__body {
    display: none;
}

/* Category Filter Items */
.pico-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pico-category-item {
    margin-bottom: var(--pico-space-xs);
}

.pico-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--pico-space-sm) var(--pico-space-md);
    border-radius: var(--pico-radius-md);
    text-decoration: none;
    color: var(--pico-text-body);
    font-size: 0.875rem;
    transition: all var(--pico-transition-fast);
}

.pico-category-link:hover {
    background: var(--pico-bg-light);
    color: var(--pico-accent);
}

.pico-category-link.active {
    background: var(--pico-accent);
    color: var(--pico-white);
}

.pico-category-link__count {
    background: var(--pico-bg-light);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pico-text-muted);
}

.pico-category-link.active .pico-category-link__count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--pico-white);
}

/* Priority Badge */
.pico-priority-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    background: var(--pico-success);
    color: var(--pico-white);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-left: var(--pico-space-sm);
}

/* CTA Section */
.pico-cta-section {
    background: linear-gradient(135deg, var(--pico-primary) 0%, var(--pico-primary-light) 100%) !important;
    color: white;
}

.pico-cta-section h4,
.pico-cta-section p {
    color: white;
}

.pico-cta-section svg {
    color: rgba(255, 255, 255, 0.9);
}

.pico-btn--whatsapp {
    background: white;
    color: var(--pico-primary);
    border: none;
}

.pico-btn--whatsapp:hover {
    background: var(--pico-bg-light);
    transform: translateY(-2px);
}

/* New CTA Section Design */
.pico-cta-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--pico-space-md);
    padding: var(--pico-space-lg);
}

.pico-cta-icon {
    flex-shrink: 0;
}

.pico-cta-icon svg {
    color: rgba(255, 255, 255, 0.9);
}

.pico-cta-text {
    flex: 1;
}

.pico-cta-text h4 {
    margin: 0 0 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

.pico-cta-text p {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.pico-btn--contact {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: var(--pico-space-md);
}

.pico-btn--contact:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* CTA Buttons Container */
.pico-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--pico-space-sm);
    padding: 0 var(--pico-space-lg) var(--pico-space-lg);
}

.pico-btn--whatsapp-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--pico-space-sm);
}

.pico-btn--whatsapp-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Products Grid Area
   ======================================== */
.pico-shop-main {
    min-width: 0;
}

/* Toolbar */
.pico-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--pico-space-md);
    margin-bottom: var(--pico-space-lg);
    padding: var(--pico-space-md) var(--pico-space-lg);
    background: var(--pico-white);
    border-radius: var(--pico-radius-lg);
    box-shadow: var(--pico-shadow-sm);
}

.pico-shop-toolbar__results {
    font-size: 0.9375rem;
    color: var(--pico-text-muted);
}

.pico-shop-toolbar__results strong {
    color: var(--pico-text-dark);
    font-weight: 600;
}

.pico-shop-toolbar__actions {
    display: flex;
    align-items: center;
    gap: var(--pico-space-md);
}

/* Sort Dropdown */
.pico-sort-select {
    padding: var(--pico-space-sm) var(--pico-space-md);
    padding-right: 2.5rem;
    border: 1px solid var(--pico-border);
    border-radius: var(--pico-radius-md);
    font-size: 0.875rem;
    color: var(--pico-text-body);
    background: var(--pico-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    appearance: none;
    cursor: pointer;
    transition: border-color var(--pico-transition-fast);
}

.pico-sort-select:hover,
.pico-sort-select:focus {
    border-color: var(--pico-accent);
    outline: none;
}

/* View Toggle */
.pico-view-toggle {
    display: flex;
    background: var(--pico-bg-light);
    border-radius: var(--pico-radius-md);
    padding: 3px;
}

.pico-view-toggle__btn {
    padding: var(--pico-space-sm);
    border: none;
    background: transparent;
    color: var(--pico-text-muted);
    cursor: pointer;
    border-radius: var(--pico-radius-sm);
    transition: all var(--pico-transition-fast);
}

.pico-view-toggle__btn:hover {
    color: var(--pico-text-dark);
}

.pico-view-toggle__btn.active {
    background: var(--pico-white);
    color: var(--pico-accent);
    box-shadow: var(--pico-shadow-sm);
}

/* ========================================
   Products Grid
   ======================================== */
.pico-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--pico-space-lg);
}

.pico-products-grid.list-view {
    grid-template-columns: 1fr;
}

/* ========================================
   Product Card
   ======================================== */
.pico-product-card {
    background: var(--pico-white);
    border-radius: var(--pico-radius-lg);
    box-shadow: var(--pico-shadow-sm);
    overflow: hidden;
    transition: all var(--pico-transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pico-product-card:hover {
    box-shadow: var(--pico-shadow-hover);
    transform: translateY(-4px);
}

/* List View */
.pico-products-grid.list-view .pico-product-card {
    flex-direction: row;
}

.pico-products-grid.list-view .pico-product-card__image {
    width: 240px;
    flex-shrink: 0;
}

.pico-products-grid.list-view .pico-product-card__body {
    flex: 1;
}

/* Product Image */
.pico-product-card__image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--pico-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pico-product-card__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: var(--pico-space-md);
    transition: transform var(--pico-transition-slow);
}

.pico-product-card:hover .pico-product-card__img {
    transform: scale(1.05);
}

/* Product Badges */
.pico-product-card__badges {
    position: absolute;
    top: var(--pico-space-md);
    left: var(--pico-space-md);
    display: flex;
    flex-direction: column;
    gap: var(--pico-space-xs);
}

.pico-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.pico-badge--category {
    background: var(--pico-primary);
    color: var(--pico-white);
}

.pico-badge--certified {
    background: var(--pico-success);
    color: var(--pico-white);
}

.pico-badge--new {
    background: var(--pico-accent);
    color: var(--pico-white);
}

/* Quick Actions */
.pico-product-card__actions {
    position: absolute;
    top: var(--pico-space-md);
    right: var(--pico-space-md);
    display: flex;
    flex-direction: column;
    gap: var(--pico-space-xs);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--pico-transition-normal);
}

.pico-product-card:hover .pico-product-card__actions {
    opacity: 1;
    transform: translateX(0);
}

.pico-quick-action {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pico-white);
    border: none;
    border-radius: var(--pico-radius-md);
    box-shadow: var(--pico-shadow-md);
    color: var(--pico-text-body);
    cursor: pointer;
    transition: all var(--pico-transition-fast);
}

.pico-quick-action:hover {
    background: var(--pico-accent);
    color: var(--pico-white);
}

/* Product Body */
.pico-product-card__body {
    padding: var(--pico-space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pico-product-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pico-accent);
    margin-bottom: var(--pico-space-sm);
}

.pico-product-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pico-success);
    margin: 0 0 var(--pico-space-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pico-product-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--pico-transition-fast);
}

.pico-product-card__title a:hover {
    color: var(--pico-accent);
}

.pico-product-card__excerpt {
    font-size: 0.875rem;
    color: var(--pico-text-muted);
    line-height: 1.5;
    margin-bottom: var(--pico-space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Product Features List */
.pico-product-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--pico-space-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--pico-space-xs);
}

.pico-product-card__feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: var(--pico-bg-light);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--pico-text-body);
}

.pico-product-card__feature svg {
    width: 12px;
    height: 12px;
    color: var(--pico-success);
}

/* Product Footer */
.pico-product-card__footer {
    display: flex;
    align-items: center;
    gap: var(--pico-space-sm);
    padding-top: var(--pico-space-md);
    border-top: 1px solid var(--pico-border-light);
    margin-top: auto;
}

/* RFQ Button */
.pico-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--pico-space-sm);
    padding: var(--pico-space-sm) var(--pico-space-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--pico-radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--pico-transition-fast);
}

.pico-btn--primary {
    background: var(--pico-accent);
    color: var(--pico-white);
}

.pico-btn--primary:hover {
    background: var(--pico-accent-hover);
    transform: translateY(-1px);
}

.pico-btn--secondary {
    background: transparent;
    color: var(--pico-text-body);
    border: 1px solid var(--pico-border);
}

.pico-btn--secondary:hover {
    border-color: var(--pico-accent);
    color: var(--pico-accent);
}

.pico-btn--full {
    width: 100%;
}

.pico-btn--rfq {
    background: linear-gradient(135deg, var(--pico-accent) 0%, #0b5ed7 100%);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.pico-btn--rfq:hover {
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.4);
}

.pico-btn svg {
    width: 16px;
    height: 16px;
}

/* View Details Link */
.pico-product-card__link {
    font-size: 0.8125rem;
    color: var(--pico-text-muted);
    text-decoration: none;
    transition: color var(--pico-transition-fast);
}

.pico-product-card__link:hover {
    color: var(--pico-accent);
}

/* ========================================
   RFQ Modal
   ======================================== */
.pico-modal-overlay,
.iab2b-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 28, 39, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pico-space-lg);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--pico-transition-normal);
}

.pico-modal-overlay.active,
.iab2b-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pico-modal,
.iab2b-modal {
    background: var(--pico-white);
    border-radius: var(--pico-radius-xl);
    box-shadow: var(--pico-shadow-lg);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.95);
    transition: transform var(--pico-transition-normal);
}

.pico-modal-overlay.active .pico-modal,
.iab2b-modal-overlay.active .iab2b-modal {
    transform: translateY(0) scale(1);
}

.pico-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--pico-space-lg) var(--pico-space-xl);
    border-bottom: 1px solid var(--pico-border-light);
}

.pico-modal__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pico-text-dark);
    margin: 0;
}

.pico-modal__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pico-bg-light);
    border: none;
    border-radius: var(--pico-radius-md);
    color: var(--pico-text-body);
    cursor: pointer;
    transition: all var(--pico-transition-fast);
}

.pico-modal__close:hover {
    background: var(--pico-primary);
    color: var(--pico-white);
}

.pico-modal__body {
    padding: var(--pico-space-xl);
}

/* RFQ Form */
.pico-form-group {
    margin-bottom: var(--pico-space-lg);
}

.pico-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pico-space-md);
}

@media (max-width: 480px) {
    .pico-form-row {
        grid-template-columns: 1fr;
    }
}

.pico-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pico-text-dark);
    margin-bottom: var(--pico-space-sm);
}

.pico-form-label span {
    color: #dc3545;
}

.pico-form-input,
.pico-form-textarea {
    width: 100%;
    padding: var(--pico-space-md);
    border: 1px solid var(--pico-border);
    border-radius: var(--pico-radius-md);
    font-size: 0.9375rem;
    color: var(--pico-text-dark);
    transition: all var(--pico-transition-fast);
}

.pico-form-input:focus,
.pico-form-textarea:focus {
    outline: none;
    border-color: var(--pico-accent);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.pico-form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* Product Summary in Modal */
.pico-rfq-product {
    display: flex;
    align-items: center;
    gap: var(--pico-space-md);
    padding: var(--pico-space-md);
    background: var(--pico-bg-light);
    border-radius: var(--pico-radius-md);
    margin-bottom: var(--pico-space-lg);
}

.pico-rfq-product__image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--pico-radius-sm);
    background: var(--pico-white);
}

.pico-rfq-product__info {
    flex: 1;
}

.pico-rfq-product__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--pico-text-dark);
    margin: 0 0 4px;
}

.pico-rfq-product__category {
    font-size: 0.75rem;
    color: var(--pico-text-muted);
}

/* ========================================
   Pagination
   ======================================== */
.pico-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--pico-space-sm);
    margin-top: var(--pico-space-2xl);
    padding: var(--pico-space-lg);
    background: var(--pico-white);
    border-radius: var(--pico-radius-lg);
    box-shadow: var(--pico-shadow-sm);
}

.pico-pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--pico-space-sm);
    border: 1px solid var(--pico-border);
    border-radius: var(--pico-radius-md);
    background: var(--pico-white);
    color: var(--pico-text-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--pico-transition-fast);
}

.pico-pagination__btn:hover {
    border-color: var(--pico-accent);
    color: var(--pico-accent);
}

.pico-pagination__btn.active {
    background: var(--pico-accent);
    border-color: var(--pico-accent);
    color: var(--pico-white);
}

.pico-pagination__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   Category Cards (Above Product Grid)
   ======================================== */
.pico-category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--pico-space-md);
    margin-bottom: var(--pico-space-xl);
}

.pico-category-card {
    display: flex;
    align-items: center;
    gap: var(--pico-space-md);
    padding: var(--pico-space-lg);
    background: var(--pico-white);
    border-radius: var(--pico-radius-lg);
    box-shadow: var(--pico-shadow-sm);
    text-decoration: none;
    transition: all var(--pico-transition-normal);
    border: 2px solid transparent;
}

.pico-category-card:hover {
    box-shadow: var(--pico-shadow-md);
    border-color: var(--pico-accent);
}

.pico-category-card.active {
    border-color: var(--pico-accent);
    background: rgba(13, 110, 253, 0.02);
}

.pico-category-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pico-bg-light);
    border-radius: var(--pico-radius-md);
    color: var(--pico-success);
}

.pico-category-card__info {
    flex: 1;
}

.pico-category-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--pico-text-dark);
    margin: 0 0 4px;
}

.pico-category-card__count {
    font-size: 0.8125rem;
    color: var(--pico-text-muted);
}

/* Priority Indicator */
.pico-category-card--priority::after {
    content: 'TOP';
    position: absolute;
    top: -8px;
    right: var(--pico-space-md);
    padding: 3px 8px;
    background: var(--pico-success);
    color: var(--pico-white);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.pico-category-card--priority {
    position: relative;
}

/* ========================================
   Trust Badges
   ======================================== */
.pico-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--pico-space-lg);
    padding: var(--pico-space-xl);
    background: var(--pico-white);
    border-radius: var(--pico-radius-lg);
    box-shadow: var(--pico-shadow-sm);
    margin-bottom: var(--pico-space-xl);
}

.pico-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--pico-space-sm);
    text-align: center;
}

.pico-trust-badge__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pico-bg-light);
    border-radius: 50%;
    color: var(--pico-success);
}

.pico-trust-badge__text {
    font-size: 0.8125rem;
    color: var(--pico-text-body);
    font-weight: 500;
}

/* ========================================
   Empty State
   ======================================== */
.pico-empty-state {
    text-align: center;
    padding: var(--pico-space-2xl);
    background: var(--pico-white);
    border-radius: var(--pico-radius-lg);
    box-shadow: var(--pico-shadow-sm);
}

.pico-empty-state__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--pico-space-lg);
    color: var(--pico-text-light);
}

.pico-empty-state__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pico-text-dark);
    margin: 0 0 var(--pico-space-sm);
}

.pico-empty-state__text {
    color: var(--pico-text-muted);
    margin: 0 0 var(--pico-space-lg);
}

/* ========================================
   Loading Skeleton
   ======================================== */
.pico-skeleton {
    background: linear-gradient(90deg, var(--pico-bg-light) 25%, #e9ecef 50%, var(--pico-bg-light) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--pico-radius-md);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.pico-skeleton--image {
    aspect-ratio: 4/3;
}

.pico-skeleton--text {
    height: 1rem;
    margin-bottom: var(--pico-space-sm);
}

.pico-skeleton--text-short {
    width: 60%;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
    .pico-shop-header {
        padding: var(--pico-space-lg) 0;
    }

    .pico-shop-container {
        padding: 0 var(--pico-space-md);
    }

    .pico-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: var(--pico-space-md);
    }

    .pico-shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .pico-shop-toolbar__actions {
        justify-content: space-between;
    }

    .pico-category-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pico-trust-badges {
        gap: var(--pico-space-md);
        padding: var(--pico-space-lg);
    }
}

@media (max-width: 480px) {
    .pico-products-grid {
        grid-template-columns: 1fr;
    }

    .pico-category-cards {
        grid-template-columns: 1fr;
    }

    .pico-modal {
        border-radius: var(--pico-radius-lg);
        max-height: 85vh;
    }

    .pico-modal__body {
        padding: var(--pico-space-lg);
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {

    .pico-shop-sidebar,
    .pico-filter-toggle,
    .pico-pagination,
    .pico-modal-overlay {
        display: none !important;
    }

    .pico-shop-container {
        grid-template-columns: 1fr;
    }

    .pico-product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--pico-border);
    }
}

/* ========================================
   iab2b Modal Styles (illusionArt B2B Suite)
   ======================================== */
.iab2b-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--pico-space-lg, 1.5rem) var(--pico-space-xl, 2rem);
    border-bottom: 1px solid var(--pico-border-light, #e9ecef);
}

.iab2b-modal__header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pico-text-dark, #212529);
    margin: 0;
}

.iab2b-modal__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pico-bg-light, #f8f9fa);
    border: none;
    border-radius: 8px;
    color: var(--pico-text-body, #495057);
    cursor: pointer;
    font-size: 24px;
    transition: all 0.15s ease;
}

.iab2b-modal__close:hover {
    background: var(--pico-primary, #0a2e50);
    color: #fff;
}

.iab2b-modal__body {
    padding: var(--pico-space-xl, 2rem);
}

.iab2b-rfq-product {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--pico-bg-light, #f8f9fa);
    border-radius: 8px;
    margin-bottom: 16px;
}

.iab2b-rfq-product__image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
}

.iab2b-rfq-product__title {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--pico-primary, #0a2e50);
}

.iab2b-rfq-product__sku {
    font-size: 12px;
    color: #666;
}

.iab2b-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

@media (max-width: 500px) {
    .iab2b-form-row {
        grid-template-columns: 1fr;
    }
}

.iab2b-form-group {
    margin-bottom: 14px;
}

.iab2b-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--pico-text-dark, #212529);
    margin-bottom: 6px;
}

.iab2b-form-group label span {
    color: #dc3545;
}

.iab2b-form-group input,
.iab2b-form-group select,
.iab2b-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--pico-border, #dee2e6);
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.iab2b-form-group input:focus,
.iab2b-form-group select:focus,
.iab2b-form-group textarea:focus {
    outline: none;
    border-color: var(--pico-primary, #0a2e50);
}

.iab2b-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.iab2b-btn--primary {
    background: var(--pico-primary, #0a2e50);
    color: #fff;
}

.iab2b-btn--primary:hover {
    background: #1a3a5c;
}

.iab2b-btn--full {
    width: 100%;
}

/* ========================================
   RFQ Cart Icon
   ======================================== */
.iab2b-cart-icon {
    position: fixed;
    bottom: 100px;
    left: 24px;
    right: auto;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00D4E6 0%, #4B71D1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 212, 230, 0.4);
    z-index: 9995;
    transition: all 0.3s ease;
}

.iab2b-cart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 212, 230, 0.5);
}

.iab2b-cart-counter {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* ========================================
   RFQ Cart Drawer
   ======================================== */
.iab2b-cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.iab2b-cart-drawer.active {
    opacity: 1;
    visibility: visible;
}

.iab2b-cart-drawer__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.iab2b-cart-drawer__content {
    position: absolute;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.iab2b-cart-drawer.active .iab2b-cart-drawer__content {
    right: 0;
}

.iab2b-cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #0a2e50 0%, #1a4f8a 100%);
    color: #fff;
}

.iab2b-cart-drawer__header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.iab2b-cart-drawer__close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.iab2b-cart-drawer__close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.iab2b-cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.iab2b-cart-drawer__footer {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

/* Cart Empty State */
.iab2b-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #94a3b8;
    text-align: center;
    padding: 40px;
}

.iab2b-cart-empty svg {
    margin-bottom: 16px;
}

.iab2b-cart-empty p {
    margin: 0;
    font-size: 15px;
}

/* Cart Item */
.iab2b-cart-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 12px;
    position: relative;
}

.iab2b-cart-item__image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
}

.iab2b-cart-item__info {
    flex: 1;
    min-width: 0;
}

.iab2b-cart-item__info h4 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.iab2b-cart-item__variant {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}

.iab2b-cart-item__qty {
    display: flex;
    align-items: center;
    gap: 0;
}

.iab2b-cart-item__qty-btn {
    width: 28px;
    height: 28px;
    background: #e2e8f0;
    border: none;
    color: #475569;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.iab2b-cart-item__qty-btn:first-child {
    border-radius: 6px 0 0 6px;
}

.iab2b-cart-item__qty-btn:last-child {
    border-radius: 0 6px 6px 0;
}

.iab2b-cart-item__qty-btn:hover {
    background: #cbd5e1;
}

.iab2b-cart-item__qty-input {
    width: 50px;
    height: 28px;
    border: 1px solid #e2e8f0;
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.iab2b-cart-item__remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #fee2e2;
    border: none;
    border-radius: 50%;
    color: #ef4444;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
}

.iab2b-cart-item__remove:hover {
    background: #ef4444;
    color: #fff;
}

/* Cart Summary */
.iab2b-cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #64748b;
}

.iab2b-cart-clear {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 13px;
    cursor: pointer;
}

.iab2b-cart-clear:hover {
    text-decoration: underline;
}

/* Add to Cart Button Animation */
.iab2b-add-to-cart.added {
    background: #10b981 !important;
    pointer-events: none;
}

@media (max-width: 480px) {
    .iab2b-cart-drawer__content {
        max-width: 100%;
    }

    .iab2b-cart-icon {
        bottom: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   Comparison Bar
   ======================================== */
.iab2b-compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    z-index: 9997;
    padding: 12px 0;
}

.iab2b-compare-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.iab2b-compare-bar__items {
    display: flex;
    gap: 12px;
}

.iab2b-compare-bar__item {
    position: relative;
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.iab2b-compare-bar__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.iab2b-compare-bar__remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.iab2b-compare-bar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.iab2b-compare-bar__count {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.iab2b-compare-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00D4E6 0%, #4B71D1 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.iab2b-compare-bar__btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 230, 0.3);
}

.iab2b-compare-bar__clear {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 13px;
    cursor: pointer;
}

/* Add to Compare Button */
.iab2b-add-compare {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.iab2b-add-compare:hover {
    background: #00D4E6;
    color: #fff;
}

.iab2b-add-compare.added {
    background: #10b981;
    color: #fff;
}

/* Comparison Page */
.iab2b-comparison-page {
    padding: 40px 0;
}

.iab2b-comparison-loading {
    text-align: center;
    padding: 60px;
    color: #64748b;
}

.iab2b-comparison-empty {
    text-align: center;
    padding: 60px;
}

.iab2b-comparison-empty svg {
    margin-bottom: 16px;
}

.iab2b-comparison-empty h3 {
    font-size: 20px;
    color: #334155;
    margin: 0 0 8px;
}

.iab2b-comparison-empty p {
    color: #64748b;
    margin: 0 0 20px;
}

.iab2b-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.iab2b-comparison-table th {
    background: #0F2942;
    color: #fff;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    width: 150px;
    vertical-align: top;
}

.iab2b-comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.iab2b-comparison-table tr:last-child td {
    border-bottom: none;
}

.compare-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
}

.compare-name {
    font-weight: 600;
    color: #0F2942;
    text-decoration: none;
    font-size: 16px;
}

.compare-name:hover {
    color: #00D4E6;
}

.compare-attrs {
    list-style: none;
    margin: 0;
    padding: 0;
}

.compare-attrs li {
    margin-bottom: 6px;
    font-size: 13px;
    color: #475569;
}

.compare-rfq-btn {
    width: 100%;
}

@media (max-width: 768px) {
    .iab2b-compare-bar__inner {
        flex-wrap: wrap;
    }

    .iab2b-compare-bar__item {
        width: 50px;
        height: 50px;
    }

    .iab2b-comparison-table {
        display: block;
        overflow-x: auto;
    }
}

/* ========================================
   Comparison Page Styling
   ======================================== */
.iab2b-comparison-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.iab2b-comparison-loading,
.iab2b-comparison-empty {
    text-align: center;
    padding: 60px 20px;
}

.iab2b-comparison-empty svg {
    margin-bottom: 20px;
}

.iab2b-comparison-empty h3 {
    font-size: 20px;
    color: #334155;
    margin: 0 0 8px;
}

.iab2b-comparison-empty p {
    color: #64748b;
    margin: 0 0 24px;
}

.iab2b-comparison-table-wrap {
    overflow-x: auto;
}

.iab2b-comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.iab2b-comparison-table th {
    background: #0F2942;
    color: #fff;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    width: 140px;
    vertical-align: top;
}

.iab2b-comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    font-size: 14px;
}

.iab2b-comparison-table tr:last-child td {
    border-bottom: none;
}

.compare-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
}

.compare-name {
    font-weight: 600;
    color: #0F2942;
    text-decoration: none;
}

.compare-name:hover {
    color: #00D4E6;
}

.compare-attrs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-attrs li {
    margin-bottom: 6px;
    font-size: 13px;
}

.iab2b-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.iab2b-btn--primary {
    background: linear-gradient(135deg, #00D4E6 0%, #4B71D1 100%);
    color: #fff;
    border: none;
}

.iab2b-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 230, 0.3);
}

/* Category Badge as Link on Shop */
a.pico-badge--category {
    text-decoration: none !important;
    transition: all 0.2s;
}

a.pico-badge--category:hover {
    background: #0F2942 !important;
    color: #fff !important;
    transform: scale(1.05);
}

/* ========================================
   Lightbox for Image Zoom (Shop Page)
   ======================================== */
.iab2b-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iab2b-lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.iab2b-lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
}

.iab2b-lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.iab2b-lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 30px;
    color: #0F2942;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.iab2b-lightbox__close:hover {
    background: #00D4E6;
    color: #fff;
}

/* Cart Icon on Product Page (same as Shop) */
.iab2b-cart-icon {
    position: fixed !important;
    bottom: 100px !important;
    left: 24px !important;
    right: auto !important;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00D4E6 0%, #4B71D1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 212, 230, 0.4);
    z-index: 9995 !important;
}

/* ========================================
   Catalog Download Buttons
   ======================================== */
.pico-catalog-downloads {
    padding: var(--pico-space-lg) 0;
}

.pico-catalog-buttons {
    display: flex;
    gap: var(--pico-space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.pico-catalog-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--pico-space-sm);
    padding: var(--pico-space-md) var(--pico-space-xl);
    background: linear-gradient(135deg, var(--pico-primary) 0%, var(--pico-primary-light) 100%);
    color: var(--pico-white);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--pico-radius-lg);
    box-shadow: var(--pico-shadow-md);
    transition: all var(--pico-transition-normal);
}

.pico-catalog-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--pico-shadow-lg);
    color: var(--pico-white);
}

.pico-catalog-btn svg {
    flex-shrink: 0;
}

.pico-catalog-btn--secondary {
    background: linear-gradient(135deg, var(--pico-gold) 0%, #d4b06a 100%);
}

.pico-catalog-btn--secondary:hover {
    background: linear-gradient(135deg, #a67f2e 0%, var(--pico-gold) 100%);
}

@media (max-width: 576px) {
    .pico-catalog-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .pico-catalog-btn {
        justify-content: center;
    }
}

/* ========================================
   Skeleton Loading Animation
   ======================================== */
.pico-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--pico-radius-md);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.pico-product-card--skeleton {
    pointer-events: none;
}

.pico-product-card--skeleton .pico-product-card__image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.pico-product-card--skeleton .pico-product-card__title,
.pico-product-card--skeleton .pico-product-card__sku,
.pico-product-card--skeleton .pico-btn {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    color: transparent !important;
    border-radius: 4px;
}

/* ========================================
   Quick View Button on Product Cards
   ======================================== */
.pico-product-card__quick-view {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    box-shadow: var(--pico-shadow-sm);
}

.pico-product-card:hover .pico-product-card__quick-view {
    opacity: 1;
    transform: translateY(0);
}

.pico-product-card__quick-view:hover {
    background: var(--pico-primary);
    color: #fff;
}

/* ========================================
   Recently Viewed Section
   ======================================== */
.pico-recently-viewed {
    padding: var(--pico-space-2xl) 0;
    background: var(--pico-bg-light);
}

.pico-recently-viewed__title {
    font-size: 1.5rem;
    color: var(--pico-primary);
    margin-bottom: var(--pico-space-lg);
    font-weight: 700;
}

.pico-recently-viewed__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--pico-space-md);
}

/* ========================================
   View Toggle (Grid/List)
   ======================================== */
.pico-view-toggle {
    display: flex;
    gap: 5px;
    background: var(--pico-bg-light);
    padding: 4px;
    border-radius: var(--pico-radius-md);
}

.pico-view-toggle__btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: var(--pico-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pico-text-muted);
    transition: all 0.2s;
}

.pico-view-toggle__btn.active,
.pico-view-toggle__btn:hover {
    background: var(--pico-primary);
    color: #fff;
}