/* ============================================
   CLEAN CARD SYSTEM - NO PADDING ON IMAGE
   ============================================ */

/* Grid System */


.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4 {
    width: 33.333%;
    padding: 0 15px;
}

.col-md-6 {
    width: 50%;
}

.mb-4 {
    margin-bottom: 30px;
}

/* Card Link Wrapper */
.card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link-wrapper:hover {
    text-decoration: none;
}

/* Clean Card - No Border, No Shadow */
.card-clean {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-clean:hover {
    transform: translateY(-4px);
}

/* Image - NO PADDING AT ALL */
.card-clean-image {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.card-clean-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    transition: transform 0.4s ease;
}

.card-clean:hover .card-clean-image img {
    transform: scale(1.03);
}

/* Content */
.card-clean-content {
    padding: 24px;
}

.card-clean-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #1a1a1a;
    text-align: center;
}

.card-clean-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
    text-align: center;
}

.card-clean-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #6366f1;
    margin: 15px 0;
    text-align: center;
}

/* Features */
.card-clean-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.card-clean-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: #555;
}

.card-clean-features li i {
    color: #10b981;
    font-size: 0.9rem;
    width: 20px;
}

/* Button Clean */
.card-clean-action {
    text-align: center;
    margin-top: 15px;
}

.btn-clean {
    display: inline-block;
    color: #6366f1;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.card-clean:hover .btn-clean {
    color: #4f46e5;
    border-bottom-color: #6366f1;
}

/* No Border, No Shadow */
.card-clean,
.card-clean * {
    border: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 992px) {
    .col-md-6 {
        width: 50%;
    }
    .col-lg-4 {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }
    .col-lg-4 {
        width: 100%;
    }

    .card-clean-image img {
        height: 200px;
    }

    .card-clean-content {
        padding: 20px;
    }

    .card-clean-title {
        font-size: 1.2rem;
    }

    .card-clean-price {
        font-size: 1.4rem;
    }
}