#dse-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dse-popup-content {
    background: #f2f9ff;
    padding: 55px 40px;
    border-radius: 0px;
    width: 90%;
    max-width: 600px;
    position: relative;
}


#dse-close-popup {
    position: absolute;
    top: -17px;
    right: -17px;
    font-size: 26px;
    cursor: pointer;
    background-color: #ad8b73;
    color: #fff;
    border-radius: 50px;
    width: 42px;
    height: 42px;
    text-align: center;
}

#dse-form-container {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.dse-form-step {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.dse-field-wrap {
    margin-bottom: 15px;
}

.dse-field-wrap label {
    display: block;
    font-weight: 400;
    margin-bottom: 5px;
}

.dse-field-wrap input[type="text"],
.dse-field-wrap input[type="date"],
.dse-field-wrap input[type="email"],
.dse-field-wrap select {
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 0px;
    padding: 12px;
    background-color: #fff;
}

.dse-form-navigation {
    margin-top: 20px;
    text-align: right;
}

.dse-form-navigation button {
    width: 100%;
    padding: 17px;
    background: #ad8b73;
    color: #fff;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dse-error-container {
    padding: 10px;
    background: #fdf2f2;
    border: 1px solid #f8baba;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 10px;
}

.dse-form-navigation button:hover {
    background: #ad8b73e6;
}

#dse-success-message {
    text-align: center;
    font-size: 18px;
    padding: 20px;
}

.dse-order-pay-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dse-order-table th, .dse-order-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #eee;
}

.dse-responsive-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .dse-order-table thead {
        display: none;
    }
    .dse-order-table, .dse-order-table tbody, .dse-order-table tr, .dse-order-table td {
        display: block;
        width: 100%;
    }
    .dse-order-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
    }
    .dse-order-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    .dse-order-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        text-align: left;
        font-weight: bold;
    }
    .dse-order-table tfoot td.dse-total-label {
        display: none;
    }
    .dse-order-table tfoot td {
        text-align: right;
        padding-left: 50%;
    }
}

/* WooCommerce My Account */
.woocommerce-account .woocommerce {
    padding: 24px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    flex: 0 0 220px;
    border-right: 1px solid #2A2A2A;
    padding-right: 20px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li + li {
    margin-top: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 10px 12px;
    color: #2A2A2A;
    text-decoration: none;
    border: 1px solid #2A2A2A;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a:focus {
    background: #AD8B73;
    color: #fff;
    border-color: #AD8B73;
}

.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    color: #2A2A2A;
    line-height: 1.7;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
    color: #2A2A2A;
    margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: #AD8B73;
    text-decoration: none;
    border-bottom: 1px solid #AD8B73;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover,
.woocommerce-account .woocommerce-MyAccount-content a:focus {
    color: #2A2A2A;
    border-bottom-color: #2A2A2A;
}

@media (max-width: 900px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        flex: 1 1 auto;
        border-right: none;
        border-bottom: 1px solid #2A2A2A;
        padding-right: 0;
        padding-bottom: 16px;
    }
}
