/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
}

.notification.show {
    transform: translateX(0);
    display: block;
}

.notification.success {
    background-color: #48bb78;
}

.notification.error {
    background-color: #f44336;
}

.notification.warning {
    background-color: #ff9800;
} 
        .variation-selection-container {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .variation-option-group {
            margin-bottom: 25px;
        }

        .variation-option-title {
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 16px;
            color: #2d3748;
        }

        .variation-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .variation-option {
            padding: 10px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 14px;
            background-color: #f8fafc;
        }

        .variation-option:hover {
            border-color: #cbd5e0;
            background-color: #edf2f7;
        }

        .variation-option.selected {
            background-color: #4a6cf7;
            color: white;
            border-color: #4a6cf7;
        }

        .variation-option.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            text-decoration: line-through;
        }

        .selected-variations-display {
            margin-top: 25px;
            padding: 20px;
            background: #f0f9f7;
            border-radius: 8px;
            border-left: 4px solid #06e5b6;
        }

        .selected-variation-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
            padding: 10px;
            background: white;
            border-radius: 6px;
        }

        .selected-variation-info {
            flex-grow: 1;
        }

        .selected-variation-name {
            font-weight: 500;
            color: #333;
        }

        .selected-variation-details {
            font-size: 13px;
            color: #718096;
        }

        .remove-variation-btn {
            background-color: #ff4757;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
        }

        .variations-table-container {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .variations-header {
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 16px;
            color: #2d3748;
        }

        .variations-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        .variations-table th {
            text-align: left;
            padding: 12px 15px;
            background-color: #f5f7ff;
            border-bottom: 1px solid #e1e5eb;
            font-weight: 600;
            color: #4a5568;
            font-size: 14px;
        }

        .variations-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e1e5eb;
            font-size: 14px;
        }

        .variation-quantity-input {
            width: 70px;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            text-align: center;
        }

        .add-variation-btn {
            background-color: #4a6cf7;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            transition: background-color 0.2s;
        }

        .add-variation-btn:hover {
            background-color: #3a5ce5;
        }

        .add-variation-btn:disabled {
            background-color: #a0aec0;
            cursor: not-allowed;
        }

        .empty-variations-state {
            text-align: center;
            padding: 40px 20px;
            color: #718096;
        }

        .empty-variations-state i {
            font-size: 48px;
            margin-bottom: 15px;
            color: #cbd5e0;
        }

        .variation-summary {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 20px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .summary-total {
            font-weight: 600;
            font-size: 18px;
            color: #2d3748;
            border-bottom: none;
        }

        .price {
            font-weight: 600;
            color: #4a6cf7;
        }

        .shipping {
            color: #28a745;
        }

        .shipping-option {
            display: flex;
            align-items: center;
            padding: 10px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            margin-bottom: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .shipping-option:hover {
            border-color: #cbd5e0;
            background-color: #f8fafc;
        }

        .shipping-option.selected {
            border-color: #06e5b6;
            background-color: #f0f9f7;
        }

        .shipping-option input {
            margin-right: 10px;
        }

        .shipping-option-details {
            flex-grow: 1;
        }

        .shipping-option-name {
            font-weight: 600;
            font-size: 14px;
            color: #333;
        }

        .shipping-option-price {
            font-size: 14px;
            color: #06e5b6;
            font-weight: 600;
        }

        .shipping-option-desc {
            font-size: 12px;
            color: #666;
            margin-top: 2px;
        }

        .shipping-section {
            margin: 20px 0;
            padding: 15px;
            background: #f8fafc;
            border-radius: 8px;
        }

        .shipping-section-title {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 16px;
            color: #2d3748;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #48bb78;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateX(150%);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .notification.show {
            transform: translateX(0);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .product-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 10;
        }
        
        .product-badge.new {
            background: #4CAF50;
        }
        
        .product-badge.sale {
            background: #f44336;
        }
        
        .product-badge.offer {
            background: #ff9800;
        }
        
        .product-badge.sold-out {
            background: #666;
        }
        
        .product-badge.low-stock {
            background: #ff9800;
        }
        
        .product-badge.free-shipping {
            background: #06e5b6;
        }
        
        .baobabtrade-badge {
            background: #06e5b6;
        }
        
        .product-image {
            position: relative;
            overflow: hidden;
            background: #f8f8f8;
            padding: 20px;
            text-align: center;
            flex: 0 0 auto;
        }
        
        .product-image img {
            width: 100%;
            height: 200px;
            object-fit: contain;
            transition: all 0.4s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.08);
        }
        
        .product-slider {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .slider-container {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .slider-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f8f8;
        }
        
        .slider-slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .product-video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            max-height: 200px;
            background: #000;
        }

        .video-controls {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            transition: opacity 0.3s ease;
        }

        .video-play-btn {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #333;
            font-size: 18px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .video-play-btn:hover {
            background: #06e5b6;
            color: white;
            transform: scale(1.1);
        }

        .video-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            z-index: 5;
        }

        .video-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            z-index: 2;
        }

        .slider-nav {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 5px;
            z-index: 6;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0,0,0,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6px;
            color: white;
        }
        
        .slider-dot.active {
            background: #06e5b6;
            transform: scale(1.2);
        }
        
        .slider-dot i {
            opacity: 0.8;
        }
        
        .slider-dot.active i {
            opacity: 1;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.8);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 6;
        }
        
        .slider-arrow.prev {
            left: 5px;
        }
        
        .slider-arrow.next {
            right: 5px;
        }
        
        .product-slider:hover .slider-arrow {
            opacity: 1;
        }
        
        .slider-arrow:hover {
            background: #06e5b6;
            color: white;
        }
        
        .product-info {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-category {
            font-size: 12px;
            color: #666;
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .product-category:hover {
            color: #06e5b6;
        }
        
        .product-title {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            text-decoration: none;
            line-height: 1.4;
            margin-bottom: 10px;
            transition: color 0.3s ease;
            height: 42px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .product-title:hover {
            color: #06e5b6;
        }
        
        .product-sku {
            font-size: 11px;
            color: #888;
            margin-bottom: 8px;
            font-family: monospace;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .stars {
            color: #ffc107;
            margin-right: 8px;
        }
        
        .rating-count {
            font-size: 13px;
            color: #666;
        }
        
        .product-price {
            margin-top: auto;
        }
        
        .price-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .current-price {
            font-size: 18px;
            font-weight: 700;
            color: #06e5b6;
        }
        
        .original-price {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
        }
        
        .discount-percent {
            font-size: 12px;
            color: #f44336;
            font-weight: 600;
        }
        
        .add-to-cart {
            display: block;
            width: 100%;
            background: #06e5b6;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 15px;
            text-align: center;
            text-decoration: none;
        }
        
        .add-to-cart:hover {
            background: #05c49a;
        }
        
        .add-to-cart.sold-out {
            background: #ccc;
            cursor: not-allowed;
        }
        
        .add-to-cart.sold-out:hover {
            background: #ccc;
        }

        .quick-add-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .quick-add-modal.active {
            display: flex;
        }

        .quick-add-content {
            background: white;
            border-radius: 12px;
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            animation: modalSlideIn 0.3s ease;
        }

        .quick-add-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .quick-add-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
        }

        .close-quick-add {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .close-quick-add:hover {
            background: #f5f5f5;
            color: #333;
        }

        .quick-add-body {
            display: flex;
            flex: 1;
            overflow: hidden;
        }

        .quick-add-images {
            flex: 0 0 300px;
            padding: 20px;
            border-right: 1px solid #eee;
            background: #fafafa;
        }

        .quick-add-image-main {
            width: 100%;
            height: 250px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 8px;
            overflow: hidden;
        }

        .quick-add-image-main img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .quick-add-image-thumbs {
            display: flex;
            gap: 10px;
            overflow-x: auto;
        }

        .quick-add-image-thumb {
            width: 60px;
            height: 60px;
            border: 2px solid transparent;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
        }

        .quick-add-image-thumb.active {
            border-color: #06e5b6;
        }

        .quick-add-image-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .quick-add-details {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
        }

        .quick-add-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .quick-add-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #06e5b6;
            margin-bottom: 15px;
        }

        .quick-add-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .quick-add-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .quick-add-actions {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .btn-quantity {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 6px;
            overflow: hidden;
        }

        .btn-quantity button {
            background: #f8f9fa;
            border: none;
            width: 40px;
            height: 40px;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-quantity button:hover {
            background: #e9ecef;
        }

        .btn-quantity input {
            width: 50px;
            border: none;
            text-align: center;
            font-size: 16px;
            background: white;
        }

        .btn-add-to-cart {
            flex: 1;
            background: #06e5b6;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 16px;
        }

        .btn-add-to-cart:hover {
            background: #05c49a;
        }

        .btn-add-to-cart:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .selected-variations {
            background: #f0f9f7;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #06e5b6;
        }

        .selected-variation {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .selected-variation:last-child {
            margin-bottom: 0;
        }

        .variation-label {
            font-weight: 600;
            color: #333;
        }

        .variation-value {
            color: #06e5b6;
        }

        .ps-layout--shop {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .ps-layout__left {
            flex: 0 0 280px;
        }
        
        .ps-layout__right {
            flex: 1;
        }
        
        .shop-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            background: #fff;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .results-count {
            font-size: 14px;
            color: #666;
        }
        
        .sort-options select {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
        }
        
        .view-options {
            display: flex;
        }
        
        .view-options button {
            background: none;
            border: 1px solid #ddd;
            padding: 8px 12px;
            margin-left: 5px;
            cursor: pointer;
            border-radius: 4px;
            color: #666;
        }
        
        .view-options button.active {
            background: #06e5b6;
            color: white;
            border-color: #06e5b6;
        }

        .active-filters {
            background: #fff;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .filter-badge {
            display: inline-block;
            background: #06e5b6;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .filter-badge .remove {
            margin-left: 8px;
            cursor: pointer;
            font-weight: bold;
        }

        .scrollable-categories {
            max-height: 300px;
            overflow-y: auto;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 10px;
            background: #fafafa;
        }
        
        .scrollable-categories::-webkit-scrollbar {
            width: 6px;
        }
        
        .scrollable-categories::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .scrollable-categories::-webkit-scrollbar-thumb {
            background: #06e5b6;
            border-radius: 10px;
        }
        
        .scrollable-categories::-webkit-scrollbar-thumb:hover {
            background: #05c49a;
        }
        
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .category-list li {
            margin-bottom: 8px;
        }
        
        .category-list a {
            color: #666;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
        }
        
        .category-list a:hover {
            color: #06e5b6;
            background: #f0f9f7;
        }
        
        .category-list a.active {
            color: #06e5b6;
            background: #e6f7f4;
            font-weight: 600;
            border-left: 3px solid #06e5b6;
        }
        
        .category-list .count {
            background: #e9ecef;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 11px;
            color: #666;
        }
        
        .category-list a.active .count {
            background: #06e5b6;
            color: white;
        }

        .rating-filter {
            margin: 20px 0;
        }
        
        .rating-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .rating-option {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        
        .rating-option:hover {
            background: #f0f9f7;
            border-color: #06e5b6;
        }
        
        .rating-option.active {
            background: #e6f7f4;
            border-color: #06e5b6;
        }
        
        .rating-option input {
            margin-right: 10px;
        }
        
        .rating-stars {
            color: #ffc107;
            margin-right: 8px;
        }
        
        .rating-count {
            font-size: 12px;
            color: #666;
            margin-left: auto;
        }

        .country-filter {
            margin: 20px 0;
        }
        
        .country-list {
            max-height: 200px;
            overflow-y: auto;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 10px;
            background: #fafafa;
        }
        
        .country-list::-webkit-scrollbar {
            width: 6px;
        }
        
        .country-list::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .country-list::-webkit-scrollbar-thumb {
            background: #06e5b6;
            border-radius: 10px;
        }

        .subcategories-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .subcategories-modal.active {
            display: flex;
        }
        
        .modal-content {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: modalSlideIn 0.3s ease;
        }
        
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .modal-header {
            background: #06e5b6;
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .close-modal {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
        }
        
        .close-modal:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .modal-body {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .subcategories-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .subcategories-list li {
            margin-bottom: 8px;
        }
        
        .subcategories-list a {
            display: block;
            padding: 12px 16px;
            color: #333;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        
        .subcategories-list a:hover {
            background: #f0f9f7;
            color: #06e5b6;
            border-color: #06e5b6;
            transform: translateX(5px);
        }
        
        .subcategories-list a.active {
            background: #06e5b6;
            color: white;
            border-color: #06e5b6;
        }
        
        .view-all-category {
            display: block;
            margin-top: 15px;
            padding: 12px 16px;
            background: #f8f9fa;
            color: #06e5b6;
            text-decoration: none;
            border-radius: 6px;
            text-align: center;
            font-weight: 600;
            border: 2px dashed #06e5b6;
            transition: all 0.3s;
        }
        
        .view-all-category:hover {
            background: #06e5b6;
            color: white;
        }

        .price-slider {
            margin: 20px 0;
        }
        
        .price-inputs {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }
        
        .price-input {
            width: 45%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .price-btn {
            background: #06e5b6;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .price-btn:hover {
            background: #05c49a;
        }

        .brand-list {
            max-height: 200px;
            overflow-y: auto;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 10px;
            background: #fafafa;
        }
        
        .brand-list::-webkit-scrollbar {
            width: 6px;
        }
        
        .brand-list::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .brand-list::-webkit-scrollbar-thumb {
            background: #06e5b6;
            border-radius: 10px;
        }
        
        .checkbox-item {
            display: block;
            margin-bottom: 10px;
            padding: 5px 0;
            cursor: pointer;
        }
        
        .checkbox-item input {
            margin-right: 8px;
        }

        .pagination {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 40px 0;
            padding: 0;
        }
        
        .pagination li {
            margin: 0 5px;
        }
        
        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-decoration: none;
            color: #666;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .pagination a:hover {
            background: #f0f0f0;
            color: #06e5b6;
        }
        
        .pagination a.active {
            background: #06e5b6;
            color: white;
        }

        .offer-tag {
            background: linear-gradient(45deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 8px;
            box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .offer-tag i {
            font-size: 10px;
        }

        .cart-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #4CAF50;
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 10000;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: slideInRight 0.3s ease;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .cart-notification.error {
            background: #f44336;
        }

        .cart-notification.warning {
            background: #ff9800;
        }

        .mobile-filters-header {
            display: none;
            background: #06e5b6;
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 15px;
            border-radius: 8px;
        }

        .mobile-filters-header i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .mobile-filters-header.active i {
            transform: rotate(180deg);
        }

        .mobile-filter-controls {
            display: none;
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .mobile-filter-section {
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        .mobile-filter-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .mobile-filter-section h5 {
            margin-bottom: 10px;
            color: #333;
            font-weight: 600;
        }

        .mobile-filter-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .mobile-filter-buttons button {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
        }

        .apply-filters {
            background: #06e5b6;
            color: white;
        }

        .reset-filters {
            background: #f8f9fa;
            color: #666;
            border: 1px solid #ddd !important;
        }

        .stock-status {
            font-size: 12px;
            margin-top: 5px;
            font-weight: 500;
        }

        .stock-status.in-stock {
            color: #4CAF50;
        }

        .stock-status.low-stock {
            color: #ff9800;
        }

        .stock-status.out-of-stock {
            color: #f44336;
        }

        .shipping-badge {
            display: inline-block;
            background: #06e5b6;
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: 600;
            margin-left: 5px;
        }

        .free-shipping-badge {
            background: #28a745;
        }

        .widget-shipping {
            margin: 20px 0;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .widget-shipping h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #333;
        }

        .shipping-options-widget {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .shipping-option-widget {
            display: flex;
            align-items: center;
            padding: 8px 10px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .shipping-option-widget:hover {
            border-color: #cbd5e0;
            background-color: #fff;
        }

        .shipping-option-widget.active {
            border-color: #06e5b6;
            background-color: #f0f9f7;
        }

        .shipping-option-widget input {
            margin-right: 8px;
        }

        .shipping-option-widget-label {
            flex: 1;
            font-size: 14px;
            color: #333;
        }

        .shipping-option-widget-price {
            font-size: 14px;
            color: #06e5b6;
            font-weight: 600;
        }

        .product-shipping-info {
            margin-top: 8px;
            font-size: 12px;
            color: #666;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .product-shipping-info.free {
            color: #28a745;
            font-weight: 600;
        }

        .product-shipping-info i {
            font-size: 11px;
        }

        @media (max-width: 991px) {
            .ps-layout--shop {
                flex-direction: column;
            }
            
            .ps-layout__left {
                flex: 1;
                display: none;
            }
            
            .ps-layout__left.mobile-visible {
                display: block;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            
            .scrollable-categories {
                max-height: 200px;
            }
            
            .modal-content {
                width: 95%;
                margin: 20px;
            }

            .quick-add-content {
                flex-direction: column;
                max-height: 95vh;
            }

            .quick-add-images {
                flex: 0 0 auto;
                border-right: none;
                border-bottom: 1px solid #eee;
            }

            .quick-add-image-main {
                height: 200px;
            }

            .mobile-filters-header {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .mobile-filter-controls {
                display: block;
            }

            .ps-layout__left .widget {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 15px;
            }
            
            .shop-controls {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .scrollable-categories {
                max-height: 150px;
            }
            
            .modal-body {
                max-height: 300px;
            }

            .mobile-filter-buttons {
                flex-direction: column;
            }

            .quick-add-actions {
                flex-direction: column;
            }

            .btn-quantity {
                justify-content: center;
            }

            .quantity-option {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .quantity-controls {
                align-self: flex-end;
            }
        }
        
        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .product-slider {
                height: 150px;
            }
            
            .scrollable-categories {
                max-height: 120px;
            }
        }
    