/* ================================
   GLOBAL (nur im Gift-Wizard)
=================================== */

.gift-wizard {
    --card-bg: #ffffff;
    --card-border: #e6e6e6;
    --card-shadow: rgba(0,0,0,0.06);
    --accent: #0066ff;
    --accent-hover: #0053d6;
    --text-main: #222;
    --text-muted: #666;
    --radius: 25px;
    --transition: 0.25s ease;
}

/* ================================
   WIZARD STEP HEADER
=================================== */
.gift-wizard h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ================================
   GRID FOR OPTIONS
=================================== */
.gift-wizard .option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

/* ================================
   OPTION CARD
=================================== */
.gift-wizard .option-card {
    position: relative;
    cursor: pointer;

    display: flex;
    flex-direction: column;   /* 🔥 WICHTIG */
    align-items: center;

    border-radius: var(--radius);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 6px 18px var(--card-shadow);

    transition: transform var(--transition),
                box-shadow var(--transition),
                border var(--transition);

    padding: 0px;
    height: 100%;             /* 🔥 gleiche Höhe im Grid */
}


.gift-wizard .option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================================
   HIDDEN RADIO
=================================== */
.gift-wizard .option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* ================================
   OPTION IMAGE
=================================== */
.gift-wizard .option-card .option-image {
    width: 100%;
    /*aspect-ratio: 2 / 3; */   /* Hochformat-Gutschein */
    object-fit: contain;
    border-radius: var(--radius);
    margin-bottom: 10px;
}

/* ================================
   LABEL INSIDE CARD
=================================== */
.gift-wizard .option-label {
    text-align: center;
    font-size: 1rem;
    color: var(--text-main);
}

.gift-wizard .option-label strong {
    font-size: 1.25rem;
    margin-bottom: 8px;
    display: block;
    color: var(--accent);
}


/* ================================
   ACTIVE / SELECTED STATE
=================================== */
.gift-wizard .option-card:has(input[type="radio"]:checked) {
    border-color: var(--accent);
    box-shadow: 0 10px 28px rgba(0,102,255,0.25);
}

/* ================================
   BUTTON
=================================== */
.gift-wizard .btn.primary {
    display: inline-block;
    padding: 14px 22px;
    border-radius: var(--radius);
    background: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
    width: 100%;
    margin-top: 20px;
}

.gift-wizard .btn.primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 22px rgba(0, 102, 255, 0.3);
}

.gift-wizard .btn.primary:active {
    transform: scale(0.98);
}

/* ================================
   RESPONSIVE
=================================== */
@media (max-width: 600px) {
    .gift-wizard h2 {
        font-size: 1.6rem;
    }

    .gift-wizard .option-card {
        padding: 0px;
        min-height: 88px;
    }

    .gift-wizard .option-card .option-image {
      /*  width: 48px;
        height: 48px;
        margin-right: 14px;*/
        border-radius: 10px;
    }

    .gift-wizard .option-label {
        font-size: 1rem;
    }

    .gift-wizard .option-label strong {
        font-size: 1.15rem;
    } 
}
