.luxury-slider-wrapper-af4e187d {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.luxury-card-af4e187d {
    background: rgba(26, 46, 30, 0.85); /* dark green herbal vibe */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3); /* gold border */
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: #fdfbf7; /* cream text */
}

.luxury-card-af4e187d:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.luxury-image-wrapper img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.luxury-card-af4e187d:hover .luxury-image-wrapper img {
    transform: scale(1.05);
}

.luxury-title {
    font-size: 1.2rem;
    margin: 15px 0 10px;
    color: #fdfbf7;
    font-family: "Playfair Display", serif;
}

.luxury-price {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: bold;
}

.luxury-buy-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #d4af37;
    color: #1a2e1e;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.luxury-buy-btn:hover {
    background: #fdfbf7;
    color: #1a2e1e;
}

.luxury-slider-notice {
    padding: 20px;
    background: #eee;
    text-align: center;
    border: 1px dashed #ccc;
    color: #333;
}
