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

        .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(46, 30, 46, 0.8), rgba(40, 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, 105, 0.3);
            position: relative;
        }

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

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

        .perfume-images-container {
            display: flex;
            width: 100%;
            height: 300px;
            background: #1d0c1d;
            border-bottom: 1px solid rgba(110, 89, 105, 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, 105, 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, #e8b5d3, #c96ea9);
            color: #1a0a1a;
            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: #f0d3e8;
            margin: 10px 0 5px;
            font-family: 'Playfair Display', serif;
            letter-spacing: 1px;
        }

        .house {
            font-size: 1.1rem;
            color: #e8b5d3;
            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: #e8b5d3;
            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(90, 60, 90, 0.5);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.95rem;
            border: 1px solid rgba(110, 89, 105, 0.2);
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .note:hover {
            background: rgba(232, 181, 211, 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(102, 68, 102, 0.5);
        }

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

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

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

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

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

        .icon {
            margin-right: 10px;
            color: #e8b5d3;
        }

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

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

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

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

        @media (max-width: 768px) {
            .card-content {
                padding: 20px;
            }
            .perfume-name {
                font-size: 1.6rem;
            }
        }
        .perfume-descriptions {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(102, 68, 102, 0.5);
}

.perfume-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e8b5d3;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.description-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(30, 20, 30, 0.9), rgba(25, 15, 25, 0.9));
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #c96ea9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.description-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.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);
    border: 2px solid rgba(201, 110, 169, 0.3);
}

.description-content {
    flex-grow: 1;
}

.description-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #f0d3e8;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.description-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #e8b5d3, transparent);
}

.description-content p {
    color: #e8d0e0;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.description-notes {
    font-style: italic;
    color: #d8b0cb;
    font-size: 0.9rem;
    padding: 10px 15px;
    background: rgba(90, 60, 90, 0.3);
    border-radius: 8px;
    border-left: 3px solid #e8b5d3;
}

/* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e8b5d3, #c96ea9);
            color: #1a0a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
         .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(90, 60, 90, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: rgba(232, 181, 211, 0.2);
            transform: translateY(-3px);
        }
        footer {
            background: linear-gradient(135deg, rgba(30, 20, 30, 0.9), rgba(25, 15, 25, 0.9));
            padding: 40px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(102, 68, 102, 0.5);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            color: #e8b5d3;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .footer-section p, .footer-section a {
            color: #d8b0cb;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #e8b5d3;
        }
/* Responsive adjustments for descriptions */
@media (max-width: 768px) {
    .description-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .description-item img {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .description-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .perfume-descriptions h2 {
        font-size: 2rem;
    }
}
