.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            text-align: center;
            padding: 60px 0 40px;
            background: linear-gradient(rgba(10,10,15,0.9), rgba(10,10,15,0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%231a1a2e" width="100" height="100"/><path fill="%230a0a0f" d="M0 0L100 100M100 0L0 100" stroke-width="0.5"/></svg>');
            background-size: cover;
            margin-bottom: 30px;
            border-bottom: 1px solid #33334d;
            position: relative;
            overflow: hidden;
        }

        header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #8e6c42, transparent);
        }

        h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            color: #c9a96e;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Cinzel', serif;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .subtitle {
            font-size: 1.2rem;
            color: #aaa;
            max-width: 800px;
            margin: 0 auto 25px;
            font-weight: 300;
        }

        .header-decoration {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }

        .header-decoration span {
            height: 2px;
            width: 60px;
            background: linear-gradient(90deg, transparent, #8e6c42, transparent);
            margin: 0 15px;
        }

        .header-decoration i {
            color: #8e6c42;
            font-size: 1.2rem;
        }

        .perfume-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
            gap: 40px;
            margin-top: 30px;
            justify-content: center;
        }
        
        /* Updated styles for two images per card */
        .perfume-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
            margin-top: 30px;
            justify-content: center;
        }

        .perfume-card {
            background: linear-gradient(145deg, rgba(30, 30, 46, 0.8), rgba(25, 25, 40, 0.8));
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(110, 89, 60, 0.3);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .perfume-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.5), transparent);
        }

        .perfume-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            border-color: rgba(201, 169, 110, 0.5);
        }

        .perfume-images-container {
            display: flex;
            width: 100%;
            height: 300px;
            background: #0c0c1d;
            border-bottom: 1px solid rgba(110, 89, 60, 0.3);
        }

        .perfume-image {
            width: 50%;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .perfume-image:first-child {
            border-right: 1px solid rgba(110, 89, 60, 0.3);
        }

        .perfume-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .perfume-card:hover .perfume-image img {
            transform: scale(1.1);
        }

        .card-content {
            flex-grow: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-header {
            text-align: left;
            margin-bottom: 20px;
            position: relative;
        }

        .rank {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #c9a96e, #8e6c42);
            color: #0a0a0f;
            border-radius: 50%;
            line-height: 50px;
            font-weight: bold;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            margin-bottom: 15px;
            text-align: center;
        }

        .perfume-name {
            font-size: 1.8rem;
            color: #e0d3b8;
            margin: 10px 0 5px;
            font-family: 'Playfair Display', serif;
            letter-spacing: 1px;
        }

        .house {
            font-size: 1.1rem;
            color: #c9a96e;
            font-style: italic;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .card-body {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .notes {
            margin-bottom: 20px;
        }

        .notes-title {
            font-size: 1.2rem;
            color: #c9a96e;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-family: 'Playfair Display', serif;
        }

        .notes-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .note {
            background: rgba(60, 60, 90, 0.5);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.95rem;
            border: 1px solid rgba(110, 89, 60, 0.2);
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .note:hover {
            background: rgba(201, 169, 110, 0.2);
            transform: translateY(-2px);
        }

        .properties {
            margin-bottom: 25px;
        }

        .property {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed rgba(68, 68, 102, 0.5);
        }

        .property-name {
            color: #aaa;
            display: flex;
            align-items: center;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .property-value {
            color: #e0d3b8;
            font-weight: 500;
        }

        .best-for {
            background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(142, 108, 66, 0.1));
            padding: 20px;
            border-radius: 15px;
            margin-top: 25px;
            border-left: 5px solid #c9a96e;
            position: relative;
            overflow: hidden;
        }

        .best-for::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
        }

        .best-for-title {
            color: #c9a96e;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
        }

        .perfume-descriptions {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(68, 68, 102, 0.5);
        }
        
        .perfume-descriptions h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #c9a96e;
            font-family: 'Cinzel', serif;
            letter-spacing: 2px;
            margin-bottom: 40px;
        }
        
        .description-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
            gap: 30px;
            padding: 30px;
            background: linear-gradient(145deg, rgba(20, 20, 30, 0.9), rgba(15, 15, 25, 0.9));
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            border-left: 5px solid #8e6c42;
        }
        
        .description-item:last-child {
            margin-bottom: 0;
        }
        
        .description-item img {
            width: 150px;
            height: 150px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .description-content {
            flex-grow: 1;
        }
        
        .description-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #e0d3b8;
            margin-bottom: 10px;
        }
        
        .description-content p {
            color: #ccc;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        
        .description-notes {
            font-style: italic;
            color: #aaa;
            font-size: 0.9rem;
        }

        footer {
            text-align: center;
            margin-top: 70px;
            padding: 30px;
            color: #777;
            font-size: 0.9rem;
            border-top: 1px solid rgba(68, 68, 102, 0.5);
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8e6c42, transparent);
        }

        /* Responsive adjustments */
        @media (max-width: 1100px) {
            .perfume-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            .subtitle {
                font-size: 1rem;
            }
            .card-content {
                padding: 20px;
            }
            .perfume-name {
                font-size: 1.6rem;
            }
            .description-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .description-item img {
                width: 100%;
                height: auto;
                max-width: 200px;
            }
        }
        
        .icon {
            margin-right: 10px;
            color: #c9a96e;
        }

        .property-icon {
            width: 24px;
            margin-right: 10px;
            text-align: center;
            color: #aaa;
        }

        .rating {
            display: flex;
            margin-top: 5px;
        }

        .rating i {
            color: #c9a96e;
            font-size: 0.9rem;
            margin-right: 2px;
        }

        .card-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(142, 108, 66, 0.2);
            color: #c9a96e;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(201, 169, 110, 0.3);
            z-index: 2;
        }

        .image-placeholder {
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1a2e, #0c0c1d);
            color: #c9a96e;
            font-size: 1.5rem;
        }
