/* 공동목 카드 이미지 스타일 */
.price-card.price-card-image {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.price-card.price-card-image .price-icon {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.price-card.price-card-image .price-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.price-card.price-card-image .price-type {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    background: rgba(45, 80, 22, 0.92);
    color: white;
    padding: 15px 20px;
    margin: 0;
    z-index: 10;
    font-size: clamp(28px, 4vw, 38px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.price-card.price-card-image .price-amount {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 80, 22, 0.95);
    color: white;
    padding: 20px;
    margin: 0;
    z-index: 10;
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* 그라데이션 오버레이 효과 */
.price-card.price-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

/* 호버 효과 */
.price-card.price-card-image:hover .price-icon img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.price-card.price-card-image:hover .price-type,
.price-card.price-card-image:hover .price-amount {
    background: rgba(90, 143, 58, 0.95);
}

/* 반응형 */
@media (max-width: 768px) {
    .price-card.price-card-image {
        min-height: 320px;
    }
    
    .price-card.price-card-image .price-type {
        bottom: 65px;
        padding: 12px 15px;
    }
    
    .price-card.price-card-image .price-amount {
        padding: 15px;
    }
}
