.qr-card {
    border: none;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

.qr-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.qr-card:hover {
    box-shadow: 0 20px 40px rgba(255, 153, 51, 0.2);
}

.card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 20px;
    /* display: flex; */
    /* height: 100%; */
    align-items: flex-end;
}

.saffron-tag {
    background-color: #FF9933;
    color: #000;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.btn-action {
    background-color: transparent;
    color: #FF9933;
    border: 2px solid #FF9933;
    font-weight: 700;
    border-radius: 12px;
    transition: 0.3s;
}
.btn-action:hover {
    background-color: #FF9933;
    color: #000;
}

.qr-glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 153, 51, 0.4);
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    display: inline-block;
}

.qr-img {
    width: 150px;
    height: 150px;
    background: white;
    padding: 5px;
    border-radius: 12px;
}

.qr-label {
    color: #FF9933;
    font-size: 10px;
    font-weight: 700;
    margin-top: 5px;
}


