.ec-grid-ba5f09d4 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.ec-card-ba5f09d4 {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    background-color: #1A3322;
    border: 1px solid #C5A86D;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ec-card-ba5f09d4:hover {
    transform: translateY(-5px);
}

.ec-bestseller-badge-ba5f09d4 {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: #C5A86D;
    color: #1A3322;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.ec-image-ba5f09d4 {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #0b1a10;
    z-index: 1;
}

.ec-image-ba5f09d4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ec-title-ba5f09d4 {
    color: #E8C78B;
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-family: 'Cinzel', serif, sans-serif;
}

.ec-pricing-wrap-ba5f09d4 {
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ec-original-price-ba5f09d4 {
    color: #999;
    font-size: 1rem;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.ec-sales-price-ba5f09d4 {
    color: #E8C78B;
    font-size: 1.5rem;
    font-weight: bold;
}

.ec-btn-ba5f09d4 {
    display: inline-block;
    background-color: #E8C78B;
    color: #1A3322;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.ec-btn-ba5f09d4:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .ec-card-ba5f09d4 {
        flex: 1 1 100%;
    }
}
