.prices-calculator-section {

    padding: 90px 24px;

    background: #f7f3ef;

}



.prices-calculator-inner {

    width: min(1280px, 100%);

    margin: 0 auto;

}



.dm-calculator {

    width: 100%;

}



.dm-card {

    overflow: hidden;

    padding: 34px;

    border: 1px solid #e5d8cf;

    border-radius: 26px;

    background: #ffffff;

    box-shadow:

        0 18px 50px rgba(55, 39, 28, 0.08);

}



.dm-title {

    max-width: 1000px;

    margin: 0 auto;

    color: #2f2924;

    font-family:

        Georgia,

        "Times New Roman",

        serif;

    font-size: clamp(30px, 4vw, 35px);

    line-height: 1.08;

    text-align: center;

}



.dm-subtitle {

    max-width: 1200px;

    margin: 16px auto 34px;

    color: #756d67;

    font-size: 16px;

    line-height: 1.7;

    text-align: center;

}



.dm-subtitle strong,

.dm-subtitle b {

    color: #b95f38;

}



.dm-layout {
    display: grid;
    grid-template-columns:
        minmax(220px, 255px)
        minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}


/*
 * Επιλογές calculator
 */

.dm-panel {
    padding: 18px;
    border: 1px solid #e6ddd6;
    border-radius: 20px;
    background: #fbf9f7;
}

.dm-grid {
    display: grid;
    gap: 8px;
}

.dm-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.dm-field label,
.dm-addon-field label {
    display: block;
    margin: 0 0 7px;
    color: #332c27;
    font-size: 13px;
    font-weight: 800;
}

.dm-field select,
.dm-picker-trigger,
.dm-business-search-wrap input {
    width: 100%;
    min-height: 35px;
    padding: 10px 13px;
    border: 1px solid #d9ccc3;
    border-radius: 12px;
    outline: none;
    background: #ffffff;
    color: #332c27;
    font: inherit;
}

.dm-field select:focus,
.dm-picker-trigger:focus,
.dm-business-search-wrap input:focus {
    border-color: #c76c40;
    box-shadow:
        0 0 0 4px
        rgba(199, 108, 64, 0.12);
}

.dm-picker-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.dm-field select {
    font-size: 16px;
    font-weight: 400;
}

#businessTypeLabel {
    font-size: 16px;
    font-weight: 400;
}

.dm-picker-trigger:hover {
    border-color: #c76c40;
}

.dm-picker-arrow {
    color: #c76c40;
}


/*
 * LIVE / DJ
 */

.dm-addon-row {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        1px
        minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
}

.dm-addon-field {
    min-width: 0;
}

.dm-addon-divider {
    background: #ded2ca;
}

.dm-options {
    display: grid;
    width: 80px;
    grid-template-columns:
        1fr
        1fr;
    padding: 2px;
    border-radius: 999px;
    background: #ece4de;
}

.dm-toggle {
    min-height: 30px;
    padding: 4px 6px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #655c55;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.dm-addon-row:not(.dm-addon-row-table-seats)
.dm-addon-field {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dm-addon-row:not(.dm-addon-row-table-seats)
.dm-addon-field label {
    width: 112px;
    text-align: center;
}

.dm-toggle.is-active {
    background: #332c27;
    color: #ffffff;
    box-shadow:
        0 3px 10px
        rgba(55, 39, 28, 0.14);
}

.dm-toggle.is-active[data-value="yes"] {
    background: #c76c40;
}


/*
 * Τραπεζοκαθίσματα
 */

#tableSeatsField[hidden] {
    display: none !important;
}

#tableSeatsField:not([hidden]) {
    display: grid;
}

.dm-addon-row-table-seats {
    grid-template-columns: 1fr;
    margin-top: 2px;
    padding-top: 8px;
    border-top: 1px solid #e6ddd6;
}

.dm-addon-row-table-seats .dm-addon-field {
    width: 100%;
}

.dm-addon-row-table-seats {
    grid-template-columns: 1fr;
    margin-top: 2px;
    padding-top: 14px;
    border-top: 1px solid #e6ddd6;
}

.dm-addon-row-table-seats
.dm-addon-field {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dm-addon-row-table-seats
.dm-addon-field label {
    width: 100%;
    margin-bottom: 7px;
    text-align: center;
}

.dm-addon-row-table-seats
.dm-options {
    width: 80px;
    margin: 0 auto;
}


/*
 * Νέες κάρτες αποτελέσματος
 */

.dm-results-cards {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(220px, 1fr));
    gap: 12px;
    min-width: 0;
}

.dm-result-card {
    display: flex;
    min-width: 0;
    min-height: 245px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 20px;
    border: 1px solid #e6ddd6;
    border-radius: 20px;
    text-align: center;
}

.dm-result-card-label {
    max-width: 240px;
    color: #514943;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.dm-result-card-amount {
    display: block;
    margin-top: 80px;
    color: #332c27;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.dm-result-card-note {
    max-width: 240px;
    margin: 12px auto 0;
    color: #756d67;
    font-size: 12px;
    line-height: 1.5;
}


/*
 * Dreamradios
 */

.dm-result-card-dream {
    border-color: #dfbba6;
    background:
        linear-gradient(
            145deg,
            #fff8f4,
            #f7e7dd
        );
}

.dm-result-card-dream
.dm-result-card-label {
    color: #7d4329;
}

.dm-result-card-dream
.dm-result-card-amount {
    color: #b95f38;
}


/*
 * Παγκόσμιο ρεπερτόριο
 */

.dm-result-card-global {
    border-color: #ddd6d0;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f2ef
        );
}

.dm-result-card-global
.dm-result-card-label {
    color: #49423d;
}


/*
 * Εξοικονόμηση
 */

.dm-result-card-saving {
    border-color: #d5dec7;
    background:
        linear-gradient(
            145deg,
            #f8faf4,
            #edf3e5
        );
}

.dm-result-card-saving
.dm-result-card-label {
    color: #526139;
}

.dm-result-card-saving
.dm-result-card-amount {
    color: #526139;
}

.dm-result-card-percent {
    margin-top: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(
        82,
        97,
        57,
        0.1
    );
    color: #526139;
    font-size: 12px;
    font-weight: 800;
}


/*
 * CTA
 */

.dm-calculator-action {
    grid-column: 2;
    display: flex;
    justify-content: center;
    padding-top: 2px;
}

.dm-cta {
    display: flex;
    width: min(440px, 100%);
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 14px;
    background: #c76c40;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    box-shadow:
        0 8px 20px
        rgba(169, 84, 46, 0.18);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.dm-cta:hover {
    transform: translateY(-2px);
    background: #a9542e;
    box-shadow:
        0 12px 26px
        rgba(169, 84, 46, 0.24);
}


/*
 * Υποσημείωση
 */

.dm-note {
    max-width: 1050px;
    margin: 24px auto 0;
    color: #8a7465;
    font-size: 12px;
    line-height: 1.65;
    text-align: center;
}



.dm-business-picker {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

}



.dm-business-picker.is-open {

    display: flex;

}



.dm-business-picker-backdrop {

    position: absolute;

    inset: 0;

    background: rgba(42, 35, 30, 0.68);

    backdrop-filter: blur(4px);

}



.dm-business-picker-panel {

    position: relative;

    display: flex;

    width: min(820px, 96vw);

    max-height: 86vh;

    flex-direction: column;

    overflow: hidden;

    border: 1px solid #e1d4cb;

    border-radius: 24px;

    background: #ffffff;

    box-shadow:

        0 30px 90px rgba(35, 26, 20, 0.3);

}



.dm-business-picker-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 14px;

    padding: 20px 22px;

    border-bottom: 1px solid #e5d8cf;

    background: #f6ebe4;

}



.dm-business-picker-head strong {

    color: #332c27;

    font-family:

        Georgia,

        "Times New Roman",

        serif;

    font-size: 22px;

}



.dm-business-picker-close {

    padding: 0;

    border: 0;

    background: transparent;

    color: #332c27;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;

}



.dm-business-search-wrap {

    padding: 16px 20px;

    border-bottom: 1px solid #e9dfd8;

}



.dm-business-picker-groups {

    overflow-y: auto;

    padding: 16px 20px 22px;

}



.dm-business-group {

    margin-bottom: 20px;

}



.dm-business-group-title {

    margin: 0 0 10px;

    padding-left: 10px;

    border-left: 4px solid #c76c40;

    color: #7c4931;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 0.08em;

}



.dm-business-options-grid {

    display: grid;

    grid-template-columns:

        repeat(3, minmax(0, 1fr));

    gap: 9px;

}



.dm-business-option {

    min-height: 44px;

    padding: 9px 10px;

    border: 1px solid #e2d7cf;

    border-radius: 12px;

    background: #ffffff;

    color: #514943;

    font: inherit;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;

}



.dm-business-option:hover {

    border-color: #c76c40;

    background: #fbf1eb;

}



.dm-business-option.is-selected {

    border-color: #c76c40;

    background: #f4dfd3;

    color: #9d4e2b;

}



body.dm-picker-open {

    overflow: hidden;

}

@media (max-width: 1100px) {

    .dm-layout {
        grid-template-columns: 1fr;
    }

    .dm-panel {
        width: 100%;
    }

    .dm-results-cards {
        grid-template-columns:
            repeat(3, minmax(200px, 1fr));
        gap: 10px;
    }

    .dm-result-card {
        min-height: 220px;
    }

    .dm-result-card-amount {
        font-size: clamp(22px, 2.6vw, 30px);
    }

    .dm-calculator-action {
        grid-column: auto;
    }
}


@media (max-width: 820px) {

    .prices-calculator-section {
        padding: 64px 16px;
    }

    .dm-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .dm-title {
        font-size:
            clamp(28px, 7vw, 38px);
    }

    .dm-subtitle {
        margin-bottom: 26px;
        font-size: 15px;
    }

    .dm-results-cards {
        grid-template-columns: 1fr;
    }

    .dm-result-card {
        min-height: auto;
        padding: 26px 18px;
    }

    .dm-result-card-label {
        max-width: 420px;
    }

    .dm-result-card-note {
        max-width: 420px;
    }

    .dm-business-picker {
        align-items: flex-start;
        padding: 10px;
    }

    .dm-business-picker-panel {
        width: 100%;
        max-height: 92vh;
        border-radius: 18px;
    }

    .dm-business-options-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 560px) {

    .prices-calculator-section {
        padding:
            52px
            12px;
    }

    .dm-card {
        padding:
            20px
            14px;
    }

    .dm-panel {
        padding: 16px;
    }

    .dm-addon-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dm-addon-divider {
        display: none;
    }

    .dm-addon-row-table-seats {
        grid-template-columns: 1fr;
    }

    .dm-result-card-amount {
        font-size: 34px;
    }

    .dm-cta {
        width: 100%;
    }

    .dm-business-options-grid {
        grid-template-columns: 1fr;
    }
}