  
     
        .main-container {
            /* min-height: 100vh;    */
           
            /* padding: 60px 20px; */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

  
        .fragrance-grid {
            display: flex;
            gap: 20px;
            width: 100%;
            justify-content: center;
            flex-wrap: nowrap;
        }

        .fragrance-card {
            height: 200px;
            width: 200px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(50px);
        }

        .fragrance-card:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.1s forwards; }
        .fragrance-card:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.2s forwards; }
        .fragrance-card:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.3s forwards; }
        .fragrance-card:nth-child(4) { animation: fadeInUp 0.8s ease-out 0.4s forwards; }
        .fragrance-card:nth-child(5) { animation: fadeInUp 0.8s ease-out 0.5s forwards; }
        .fragrance-card:nth-child(6) { animation: fadeInUp 0.8s ease-out 0.6s forwards; }

        .fragrance-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        }

        .card-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: absolute;
            top: 0;
            left: 0;
            transition: all 0.8s ease;
            filter: brightness(0.7);
        }

        .fragrance-card:hover .card-bg {
            transform: scale(1.1);
            filter: brightness(1);
        }

        .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            color: white;
            z-index: 2;
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
					color:white;
            margin-bottom: 10px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease 0.1s;
        }

        .fragrance-card:hover .card-title {
            transform: translateY(0);
            opacity: 1;
        }

        .card-desc {
            font-size: 0.9rem;
            opacity: 0.9;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease 0.2s;
        }

        .fragrance-card:hover .card-desc {
            transform: translateY(0);
            opacity: 1;
        }

        /* Icon styling */
        .card-icon {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transform: scale(0) rotate(-180deg);
            transition: all 0.5s ease 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .fragrance-card:hover .card-icon {
            transform: scale(1) rotate(0deg);
        }

        /* Category-specific styles */
        .fruity {
            background: linear-gradient(45deg, #ff9a9e, #fad0c4);
        }

        .fruity .card-bg {
            background-image: url('https://www.fawwaha.com/cdn/shop/files/fruity_notes.webp?v=1752313536&width=360');
        }

        .fruity:hover {
            box-shadow: 0 20px 40px rgba(255, 154, 158, 0.4);
        }

        .fruity .card-icon {
            color: #e91e63;
        }

        .citrus {
            background: linear-gradient(45deg, #f6d365, #fda085);
        }

        .citrus .card-bg {
            background-image: url('https://www.fawwaha.com/cdn/shop/files/citrus_notes.webp?v=1752313555&width=360');
        }

        .citrus:hover {
            box-shadow: 0 20px 40px rgba(246, 211, 101, 0.4);
        }

        .citrus .card-icon {
            color: #ff9800;
        }

        .woody {
            background: linear-gradient(45deg, #a3bded, #6991c7);
        }

        .woody .card-bg {
            background-image: url('https://www.fawwaha.com/cdn/shop/files/woody_notes.webp?v=1752313575&width=360');
        }

        .woody:hover {
            box-shadow: 0 20px 40px rgba(163, 189, 237, 0.4);
        }

        .woody .card-icon {
            color: #795548;
        }

        .spicy {
            background: linear-gradient(45deg, #f093fb, #f5576c);
        }

        .spicy .card-bg {
            background-image: url('https://www.fawwaha.com/cdn/shop/files/spicy_notes.webp?v=1752313628&width=360');
        }

        .spicy:hover {
            box-shadow: 0 20px 40px rgba(240, 147, 251, 0.4);
        }

        .spicy .card-icon {
            color: #f44336;
        }

        .floral {
            background: linear-gradient(45deg, #fbc2eb, #a6c1ee);
        }

        .floral .card-bg {
            background-image: url('https://www.fawwaha.com/cdn/shop/files/floral_notes.webp?v=1752313645&width=360');
        }

        .floral:hover {
            box-shadow: 0 20px 40px rgba(251, 194, 235, 0.4);
        }

        .floral .card-icon {
            color: #e91e63;
        }

        .arabic {
            background: linear-gradient(45deg, #4facfe, #00f2fe);
        }

        .arabic .card-bg {
            background-image: url('https://www.fawwaha.com/cdn/shop/files/arabic_notes.webp?v=1752313663&width=360');
        }

        .arabic:hover {
            box-shadow: 0 20px 40px rgba(79, 172, 254, 0.4);
        }

        .arabic .card-icon {
            color: #2196f3;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes titleGlow {
            0% { text-shadow: 0 0 15px rgba(255,255,255,0.5); }
            100% { text-shadow: 0 0 25px rgba(255,255,255,0.8), 0 0 35px rgba(255,255,255,0.6); }
        }

        /* Responsive design */
        @media (max-width: 1400px) {
            .fragrance-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 900px) {
            .fragrance-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 600px) {
            .fragrance-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 400px;
            }
            
            .fragrance-card {
                height: 280px;
            }
            
            .page-title {
                font-size: 2.5rem;
                margin-bottom: 50px;
            }
            
            .card-title {
                font-size: 1.6rem;
            }
        }
    