/* ADD THIS TO YOUR EXISTING style.css - DON'T REPLACE, JUST ADD */

/* Creative solution to hide text but show cards */
.aroma-image {
    width: 160px;
    height: 120px;
    object-fit: cover !important; /* Change from contain to cover */
    object-position: 0 -30px !important; /* Shift image up to hide top text */
    overflow: hidden;
    filter: brightness(0.9) contrast(1.4) saturate(1.2); /* Enhance colors */
    transition: all 0.6s ease;
    transform: rotate(-2deg);
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Alternative approach - zoom and crop */
.aroma-collage-container .aroma-image:nth-child(even) {
    transform: scale(1.3) rotate(2deg); /* Zoom in to crop edges */
    object-position: center center;
}

/* Another approach - use clip-path to cut off top portion */
.aroma-collage-container .aroma-image:nth-child(3n) {
    clip-path: polygon(0 25%, 100% 25%, 100% 100%, 0 100%); /* Cut off top 25% */
    transform: scale(1.2) rotate(-3deg);
}

/* Or use a gradient overlay to fade out text areas */
.aroma-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, 
        rgba(255,255,255,0.9) 0%, 
        rgba(255,255,255,0) 100%
    );
    pointer-events: none;
}
.aroma-collage-section {
    display: none !important;
}
