

        /* Sidebar Styles */
        .sidebar {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            height: fit-content;
        }

        .filter-section {
            margin-bottom: 30px;
        }

        .filter-title {
			font-size: 21px;
			font-weight: 600;
			margin-bottom:15px;
			font-family: 'TrajanPro';
			text-transform: uppercase;
			color: #000;
			letter-spacing: .8px;
        }
		
		.filter-title hr{
			background-color: #7b1f1f;
			border: 0px;
			height: 2px;
			opacity: 1;
			width: 150px;
			margin: 9px 0px 0px 0px;}

        .filter-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            cursor: pointer;
            transition: color 0.3s;
        }

        .filter-item:hover {
            color: #7b1f1f;
        }

        .filter-item input[type="checkbox"] {
            margin-right: 10px;
        }

        .count {
            background: #f0a500;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 12px;
        }

        .latest-releases {
            margin-top: 30px;
        }

        .release-item {
            display: flex;
            margin-bottom: 26px;
        }

        .release-thumb {
            width: 70px;
            height: 106px;
            margin-right: 25px;
            border-radius: 0px;
			border:solid 1px #ccc;
			box-shadow:0px 0px 7px #525252;
            background-repeat:no-repeat;
			background-position:center;
			background-size:cover;
        }

        .release-info h4 {
			font-size: 16.5px;
			margin-bottom: 5px;
			font-family: 'TrajanPro';
			color: #912222;
			font-weight: 600;
        }

        .stars {
			color: #f0a500;
				font-size: 16px;
				margin-bottom: 5px;
        }

        .price {
				color: #000;
				font-weight: 500;
        }

		.add_prod_inner{
			padding:50px 0px !important;}
	
        /* Main Content */
        .main-content {

        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .page-title {
			font-size: 28px;
			text-transform: uppercase;
			font-family: 'TrajanPro';
			color: #9d1d01;
			font-weight: 600;
			margin-bottom: 0px;
			position: relative;
			top: 5px;
        }

        .sort-dropdown {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 20px;
            background: #f8f6f3;
            font-size: 14px;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 15px;
        }

        .product-card {
            background: white;
            border-radius: 0px;
			padding:2px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .product-image {
            height:auto;
            position: relative;
            background-repeat:no-repeat;
			background-position:center;
			background-size:cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .product-image:hover::before {
            opacity: 1;
        }

        .product-image.living { background: linear-gradient(135deg, #8e9eab 0%, #eef2f3 100%); }
        .product-image.successful { background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%); }
        .product-image.need { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
        .product-image.discovering { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
        .product-image.value { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
        .product-image.vedic { background: linear-gradient(135deg, #4568dc 0%, #b06ab3 100%); }
        .product-image.talks1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .product-image.talks2 { background: linear-gradient(135deg, #2980b9 0%, #6bb6ff 100%); }
        .product-image.sadhana { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        .product-image.growth { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
        .product-image.relating { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

        .action-buttons {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) translateY(-10px);
            display: flex;
            gap: 15px;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .product-image:hover .action-buttons {
            opacity: 1;
            transform: translate(-50%, -50%) translateY(0);
        }

        .action-btn {
            width: 45px;
            height: 45px;
            background: transparent;
            border: 2px solid rgba(255,255,255,0.8);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: white;
            font-size: 16px;
            backdrop-filter: blur(10px);
        }

        .action-btn:hover {
            background: rgba(255,255,255,0.2);
            border-color: white;
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px 2px;
            text-align: center;
        }

        .product-title {
            font-size: 17px;
            font-weight: bold;
            margin-bottom: 10px;
			line-height:25px;
			font-family: 'TrajanPro';
            text-transform: uppercase;
            color:#9f1d03;
        }

        .product-meta {
		font-size: 13px;
		color: #000;
		margin-bottom: 5px;
		font-weight: 500;
			}

        .product-stars {
		color: #f0a500;
			font-size: 19px;
			margin-bottom: 7px;
        }

        .product-price {
            color: #333333;
            font-size: 17px;
            font-weight: bold;
        }

        /* Pagination Styles */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            gap: 10px;
        }

        .page-numbers {
            display: flex;
            gap: 5px;
            align-items: center;
        }

        .page-btn {
            padding: 10px 15px;
            border: 1px solid #ddd;
            background: white;
            color: #666;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            min-width: 40px;
        }

        .page-btn:hover {
            background: #f8f6f3;
            border-color: #7b1f1f;
            color: #7b1f1f;
        }

        .page-btn.active {
            background: #7b1f1f;
            color: white;
            border-color: #7b1f1f;
        }

        .page-btn.active:hover {
            background: #b83a24;
        }

        .prev-btn, .next-btn {
            padding: 10px 20px;
            font-weight: 500;
        }

        .page-dots {
            color: #999;
            padding: 0 5px;
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                padding: 10px;
            }

            .sidebar {
                order: 2;
				margin-top:20px;
            }

            .main-content {
                order: 1;
                padding: 20px 0px;
            }
			
			.add_prod_inner {
    		padding: 0px 0px 10px 0px !important;}
		
			.prev-btn, .next-btn{
				display:none;}

            .header {
                flex-direction: inherit;
                gap: 15px;
                text-align: center;
            }

            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 15px;
            }

            .page-title {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: 1fr 1fr;
            }

            .product-info {
                padding: 15px;
            }

            .product-title {
                font-size: 14px;
            }
        }