/* style.css */
.hc-67dab18c-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

@media (min-width: 1025px) {
    .hc-67dab18c-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hc-67dab18c-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.hc-67dab18c-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hc-67dab18c-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hc-67dab18c-image-wrapper {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.hc-67dab18c-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hc-67dab18c-card:hover .hc-67dab18c-image-wrapper img {
    transform: scale(1.05);
}

.hc-67dab18c-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #12755e;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

.hc-67dab18c-location {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #fff;
    padding: 2px 10px; /* Reduced vertical padding by default */
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #1c2a39;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
}

.hc-67dab18c-location svg {
    color: #1a73e8;
    width: 12px;
    height: 12px;
}

.hc-67dab18c-content {
    padding: 12px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hc-67dab18c-title {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #1c2a39;
    line-height: 1.3;
}

.hc-67dab18c-description {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    padding-right: 32px;
}

.hc-67dab18c-arrow {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    transition: background 0.3s ease, color 0.3s ease;
}

.hc-67dab18c-arrow svg {
    width: 14px;
    height: 14px;
}

.hc-67dab18c-card:hover .hc-67dab18c-arrow {
    background: #1a73e8;
    color: #fff;
}