/* Page Title */
        .page-title {
            text-align: center;
            margin: 25px 0;
            color: var(--primary);
            font-size: 28px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
        }
        
        /* Products Grid - 2 columns */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 30px 0;
        }
        
        .product-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--primary-light);
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(120, 54, 141, 0.2);
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-content {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-title {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 8px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .product-description {
            color: var(--gray);
            margin-bottom: 10px;
            font-size: 12px;
            flex-grow: 1;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        
        .current-price {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .original-price {
            font-size: 12px;
            color: var(--gray);
            text-decoration: line-through;
        }
        
        .product-btn {
            display: block;
            width: 100%;
            background: var(--primary);
            color: white;
            text-align: center;
            padding: 8px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
        }
        
        .product-btn:hover {
            background: var(--primary-dark);
        }
        
        /* Categories Section */
        .categories-section {
            margin: 40px 0;
        }
        
        .section-title {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 22px;
            text-align: center;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .category-card {
            background: var(--white);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--primary-light);
        }
        
        .category-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(120, 54, 141, 0.2);
        }
        
        .category-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: var(--primary);
            font-size: 20px;
        }
        
        .category-name {
            font-weight: 600;
            color: var(--primary);
            font-size: 14px;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 400px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            
            .page-title {
                font-size: 24px;
            }
            
            .categories-grid {
                grid-template-columns: 1fr;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
                .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 10px;
        }
        
        .stars {
            color: #FFD700;
            display: flex;
            gap: 2px;
        }
        
        .rating-count {
            font-size: 12px;
            color: var(--gray);
        }
                
        .recommended-section {
            width: 100%;
            max-width: 500px;
            padding: 20px;
            background: var(--background);
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 20px;
        }
        
        .recommended-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--secondary);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            text-align: center;
        }
        
        .recommended-articles {
            display: flex;
            overflow-x: auto;
            gap: 15px;
            padding: 10px 5px;
            scrollbar-width: thin;
            -ms-overflow-style: none;
        }
        
        .recommended-articles::-webkit-scrollbar {
            height: 5px;
        }
        
        .recommended-articles::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        
        .recommended-article {
            flex: 0 0 auto;
            width: 160px;
            background: #f8f9fa;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }
        
        .recommended-article:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .article-img {
            width: 100%;
            object-fit: cover;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }
        
        .article-details {
            padding: 12px;
        }
        
        .article-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--secondary);
            margin-bottom: 8px;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .article-link {
            display: block;
            text-align: center;
            background: var(--primary);
            color: white;
            padding: 8px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 0.85rem;
            margin-top: 5px;
            transition: background 0.3s ease;
        }
        
        .article-link:hover {
            background: var(--secondary);
        }
