
#dot_StepDesc {
    text-align: center;
}

/* #digiFormBuy_FormBtn_SkolaPay → #dot_Btn_Pay */
#dot_Btn_Pay {
    display: none;
    font-weight: bold;
    color: whitesmoke;
    border: none;
    background-color: var(--Dark_Acrylic_background_color);
    border-radius: 8px;
    width: max-content;
    height: 3.5rem;
    cursor: pointer;
    padding: 1.2rem 1rem 1rem 1rem;
    align-self: center;
    margin: 2rem 0 0 0;
}
#dot_Btn_Pay:hover {
    cursor: pointer;
    box-shadow: var(--hoverShoppingBtnShadow);
    background-color: rgb(50 170 82 / 76%);
}
#dot_Btn_Pay:disabled:hover {
    background-color: red;
    cursor: not-allowed;
}

/* #digiFormBuy_Form → #dot_Form */
#dot_Form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#dot_Form h1 {
    text-align: center;
}
#dot_Form img {
    width: 12rem;
    position: relative;
}

/* #digiFormBuy_Form select → #dot_Form select */
#dot_Form select {
    color: #ffffff;
    padding: 0.4rem;
    border: none;
    background-color: var(--Dark_Acrylic_background_color);
    border-radius: 5px;
    font-weight: bold;
    height: 2.5rem;
    width: 100%;
    margin: 1rem;
}
#dot_Form select::-webkit-scrollbar { width: 20px; }
#dot_Form select::-webkit-scrollbar-track { background: var(--Dark_Acrylic_background_color); }
#dot_Form select::-webkit-scrollbar-thumb {
    background-color: #888;
    border: 3px solid var(--Dark_Acrylic_background_color);
}
#dot_Form select::-webkit-scrollbar-thumb:hover { background: #555; }
#dot_Form select option {
    color: whitesmoke;
    background-color: rgb(38 38 38 / 78%);
    font-weight: bold;
}

/* #digiFormBuy_Form_Btn_SkolaCheck → #dot_Btn_SkolaCheck */
#dot_Btn_SkolaCheck {
    font-weight: bold;
    color: whitesmoke;
    padding: 1rem;
    border: none;
    background-color: var(--Dark_Acrylic_background_color);
    border-radius: 8px;
    width: max-content;
    height: 3.5rem;
    cursor: pointer;
    margin: 1rem 0 1rem 0;
}
#dot_Btn_SkolaCheck:hover {
    cursor: pointer;
    box-shadow: var(--hoverShoppingBtnShadow);
    background-color: rgb(50 170 82 / 76%);
}
#dot_Btn_SkolaCheck img { filter: invert(1); }
#dot_Btn_SkolaCheck:disabled:hover {
    background-color: red;
    cursor: not-allowed;
}

/* #digiFormBuy_Form_checkNumObjWrapper → #dot_checkNumObjWrapper */
#dot_checkNumObjWrapper {
    display: none;
    width: 100%;
}

/* #digiFormBuy_SectionUserInfo → #dot_SectionUserInfo */
#dot_SectionUserInfo {
    display: none;
    align-items: end;
    flex-direction: column;
    justify-content: right;
    width: 100%;
}

/* #digiFormBuy_Form_checkNumObj → #dot_checkNumObj */
#dot_checkNumObj::-webkit-inner-spin-button,
#dot_checkNumObj::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#dot_checkNumObj {
    -moz-appearance: textfield;
    min-width: 50%;
    align-self: center;
}

/* ════════════════════════════════════════════════════════════════════════
   2) INTRO SEKCE — řada dvou tlačítek + sekundární tlačítko Doobjednat
   ════════════════════════════════════════════════════════════════════════ */

.digiFormBuy_SectionIntro_BtnRow {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}
/* Override individuálního marginu pro tlačítka v řadě */
.digiFormBuy_SectionIntro_BtnRow .digiFormBuy_SectionIntro_InteractionButton {
    margin: 0;
}

/* Sekundární tlačítko "Doobjednat fotku" — průhledné s bílým rámečkem */
.digiFormBuy_SectionIntro_BtnDotisk {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    backdrop-filter: blur(10px);
}
.digiFormBuy_SectionIntro_BtnDotisk:hover {
    background-color: rgba(255, 255, 255, 0.25) !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}
/*.digiFormBuy_SectionIntro_BtnDotisk:hover .button-icon img {
    filter: none !important;
}*/

/* ════════════════════════════════════════════════════════════════════════
   3) UPLOAD FOTKY + NÁHLED
   ════════════════════════════════════════════════════════════════════════ */

.dot_PhotoFile {
    width: 100%;
    align-items: flex-start !important;
    flex-direction: column;
}
.dot_PhotoFile legend {
    margin-bottom: 0.4rem;
}
.dot_PhotoFile input[type="file"] {
    width: 100%;
    /*background: #fff;*/
    /*color: #000;*/
    cursor: pointer;
    padding: 0.7rem;
    border-radius: 5px;
    height: auto;
    font-weight: normal;
    box-sizing: border-box;
}
.dot_PhotoFileHint {
    font-size: 0.85rem;
    color: #aaa;
    margin: -0.2rem 0 0.5rem 0;
    width: 100%;
    text-align: right;
}

#dot_PhotoPreviewWrapper {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
    box-sizing: border-box;
}
#dot_PhotoPreview {
    max-width: 100% !important;
    max-height: 240px;
    width: auto !important;
    border-radius: 6px;
    display: block;
    margin: 0 auto 0.5rem auto;
}
#dot_PhotoFileInfo {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
    word-break: break-all;
}

/* ════════════════════════════════════════════════════════════════════════
   4) TEXTAREA POZNÁMKY
   ════════════════════════════════════════════════════════════════════════ */

.dot_NoteContainer {
    width: 100%;
    flex-direction: column;
    align-items: flex-start !important;
}
.dot_NoteContainer legend {
    margin-bottom: 0.4rem;
}
.dot_NoteContainer textarea {
    width: 100%;
    color: white;
    padding: 1rem;
    border: none;
    background-color: var(--Dark_Acrylic_background_color);
    border-radius: 5px;
    font-weight: bold;
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
    box-sizing: border-box;
}

/* ════════════════════════════════════════════════════════════════════════
   5) MOBIL — řada tlačítek pod sebe
   ════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .digiFormBuy_SectionIntro_BtnRow {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .digiFormBuy_SectionIntro_BtnRow .digiFormBuy_SectionIntro_InteractionButton {
        width: 100%;
        justify-content: center;
    }
}


/* ════════════════════════════════════════════════════════════════════════
   6) MODERNÍ STEP BADGE (kruhové číslo s gradientem) + INFO BOX PLATEB
   ════════════════════════════════════════════════════════════════════════ */

.modernStepBadge {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.6rem auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
    transition: transform 250ms ease;
}
.modernStepBadge svg { width: 100%; height: 100%; display: block; }
.modernStepBadge[data-step="2"] { transform: scale(1.05); }

/* Info box pod tlačítkem Zaplatit — hláška + loga peněženek */
.paymentInfoBox {
    margin-top: 1.4rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}
.paymentInfoBox_text {
    margin: 0 0 0.8rem 0;
    color: #e5e5e5;
    font-size: 0.95rem;
    line-height: 1.45;
}
.paymentInfoBox_text strong { color: #fff; }

.paymentInfoBox_walletsRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding-top: 0.6rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}
.paymentInfoBox_walletsHint {
    color: #aaa;
    font-size: 0.85rem;
    margin-right: 0.3rem;
}

.walletBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 28px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.walletBadge svg {
    width: 22px;
    height: 22px;
    color: #000;
}
.walletBadge--apple svg  { color: #000; }
.walletBadge--card  svg  { color: #444; width: 26px; height: 18px; }
