.al-grid-list-container-f32526e9 {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.al-grid-card-f32526e9 {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.al-grid-card-f32526e9:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.al-grid-card-img-wrapper-f32526e9 {
    width: 100%;
    padding-top: 66.66%; /* 3:2 Aspect Ratio */
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.al-grid-card-img-f32526e9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.al-grid-card-f32526e9:hover .al-grid-card-img-f32526e9 {
    transform: scale(1.05);
}

.al-grid-card-content-f32526e9 {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.al-grid-card-title-f32526e9 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.al-grid-card-desc-f32526e9 {
    margin: 0 0 16px;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.al-grid-card-footer-f32526e9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.al-grid-card-price-f32526e9 {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
}

.al-grid-card-btn-f32526e9 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.al-grid-card-btn-f32526e9:hover {
    background-color: #333333;
}
