.apt-wrap {
    border: 6px solid #E85D26;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    font-family: inherit;
}

/* ---- Header ---- */
.apt-main-title {
    text-align: center;
    color: #2E7D32;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    padding: 20px 20px 10px;
    line-height: 1.3;
}

.apt-subtitle {
    text-align: center;
    background-color: #C8E6C9;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 20px;
    margin: 0;
}

.apt-season {
    text-align: center;
    background-color: #FFF9C4;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 20px;
    margin: 0;
}

/* ---- Currency Bar ---- */
.apt-currency-bar {
    text-align: center;
    background-color: #E3F2FD;
    color: #1565C0;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 20px;
    margin: 0;
}

/* ---- Desktop Table ---- */
.apt-table-desktop {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.apt-table-desktop table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.apt-th-room,
.apt-th-pkg {
    padding: 10px 12px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    border: 1px solid #c8c8c8;
    background-color: #C8E6C9;
}

.apt-th-room {
    text-align: left;
    padding-left: 20px;
    vertical-align: middle;
    width: 40%;
}

.apt-th-sub {
    padding: 8px 12px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    border: 1px solid #c8c8c8;
    background-color: #FFF9C4;
}

.apt-td-room {
    padding: 10px 12px;
    font-size: 15px;
    text-align: left;
    padding-left: 20px;
    border: 1px solid #c8c8c8;
    font-weight: 700;
}

.apt-td-price {
    padding: 10px 12px;
    font-size: 15px;
    text-align: center;
    border: 1px solid #c8c8c8;
}

/* ---- Price spans ---- */
.apt-price {
    white-space: nowrap;
}

/* ---- Mobile Cards (hidden on desktop) ---- */
.apt-mobile-cards {
    display: none;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .apt-table-desktop {
        display: none;
    }

    .apt-mobile-cards {
        display: block;
        padding: 10px;
    }

    .apt-main-title {
        font-size: 20px;
        padding: 15px 10px 8px;
    }

    .apt-subtitle {
        font-size: 14px;
        padding: 8px 10px;
    }

    .apt-season {
        font-size: 13px;
        padding: 6px 10px;
    }

    /* Card */
    .apt-card {
        border: 1px solid #c8c8c8;
        border-radius: 8px;
        margin-bottom: 16px;
        overflow: hidden;
        background: #fff;
    }

    .apt-card-room {
        background-color: #C8E6C9;
        color: #1a1a1a;
        font-weight: 700;
        font-size: 15px;
        padding: 10px 14px;
        border-bottom: 1px solid #c8c8c8;
    }

    .apt-card-pkg-label {
        background-color: #FFF9C4;
        color: #1a1a1a;
        font-weight: 700;
        font-size: 14px;
        padding: 8px 14px;
        border-bottom: 1px solid #e0e0e0;
    }

    .apt-card-prices {
        display: flex;
        border-bottom: 1px solid #e0e0e0;
    }

    .apt-card-price-cell {
        flex: 1;
        text-align: center;
        padding: 10px 8px;
        border-right: 1px solid #e0e0e0;
    }

    .apt-card-price-cell:last-child {
        border-right: none;
    }

    .apt-card-sub-label {
        display: block;
        font-size: 12px;
        color: #666;
        margin-bottom: 4px;
        font-weight: 600;
    }

    .apt-card-value {
        display: block;
        font-size: 15px;
        font-weight: 700;
        color: #1a1a1a;
    }
}
