.cma-login-wrapper,
            .cma-login-wrapper * {
                box-sizing: border-box;
            }

            .cma-login-wrapper {
                max-width: 760px;
                margin: 35px auto;
                padding: 42px;
                background: #fff;
                border-radius: 12px;
                border: 1px solid rgba(227, 0, 27, 0.18);
                border-top: 4px solid #e3001b;
                box-shadow: 0 8px 25px rgba(227, 0, 27, 0.08);
                text-align: center;
                font-family: inherit;
            }

            .cma-login-icon {
                color: #e3001b;
                font-size: 42px;
                margin-bottom: 14px;
            }

            .cma-login-wrapper h3 {
                margin: 0 0 10px;
                color: #222;
                font-size: 1.6em;
                font-weight: 500;
            }

            .cma-login-wrapper p {
                margin: 0 0 24px;
                color: #555;
                font-weight: 500;
            }

            .cma-login-error,
            .cma-login-success {
                margin: 0 auto 22px;
                padding: 13px 16px;
                max-width: 480px;
                border-radius: 8px;
                font-weight: 700;
                text-align: left;
            }

            .cma-login-error {
                background: rgba(227, 0, 27, 0.06);
                border-left: 4px solid #e3001b;
                color: #b00016;
            }

            .cma-login-success {
                background: rgba(46, 125, 50, 0.08);
                border-left: 4px solid #2e7d32;
                color: #2e7d32;
            }

            .cma-login-form {
                max-width: 480px;
                margin: 0 auto;
                text-align: left;
            }

            .cma-login-field {
                margin-bottom: 16px;
            }

            .cma-login-field label {
                display: block;
                margin-bottom: 7px;
                color: #222;
                font-weight: 700;
            }

            .cma-login-field input[type="text"],
            .cma-login-field input[type="password"],
            .cma-login-field input[type="email"] {
                width: 100%;
                min-height: 46px;
                padding: 11px 13px;
                border: 1px solid rgba(227, 0, 27, 0.22);
                border-radius: 8px;
                background: #fff;
                color: #222;
                font-size: 1em;
                outline: none;
            }

            .cma-login-field input[type="text"]:focus,
            .cma-login-field input[type="password"]:focus,
            .cma-login-field input[type="email"]:focus {
                border-color: #e3001b;
                box-shadow: 0 0 0 3px rgba(227, 0, 27, 0.08);
            }

            .cma-login-remember {
                display: flex;
                align-items: center;
                gap: 8px;
                margin: 4px 0 20px;
                color: #444;
                font-weight: 600;
            }

            .cma-login-remember input {
                width: 16px;
                height: 16px;
                accent-color: #e3001b;
            }

            .cma-login-submit {
                width: 100%;
                min-height: 48px;
                padding: 12px 20px;
                border: none;
                border-radius: 8px;
                background: #e3001b;
                color: #fff;
                font-weight: 800;
                cursor: pointer;
                transition: all 0.25s ease;
            }

            .cma-login-submit:hover {
                background: #c90018;
                box-shadow: 0 6px 14px rgba(227, 0, 27, 0.18);
                transform: translateY(-1px);
            }

            .cma-login-links {
                margin-top: 18px;
                text-align: center;
            }

            .cma-login-links a {
                color: #e3001b;
                font-weight: 700;
                text-decoration: none;
            }

            .cma-login-links a:hover {
                text-decoration: underline;
            }

            @media (max-width: 768px) {
                .cma-login-wrapper {
                    margin: 20px 12px;
                    padding: 28px 18px;
                }

                .cma-login-wrapper h3 {
                    font-size: 1.35em;
                }
            }
        

            :root {
                --gite-red: #e3001b;
                --gite-red-soft: rgba(227, 0, 27, 0.18);
                --gite-red-top: rgba(227, 0, 27, 0.62);
                --gite-red-shadow: rgba(227, 0, 27, 0.07);
                --gite-dark: #222222;
                --gite-gray-bg: #f9f9fa;
                --gite-border: #e0e0e0;
            }

            .cma-wrapper,
            .cma-wrapper * {
                box-sizing: border-box;
            }

            .cma-wrapper {
                display: block;
                font-family: inherit;
                margin: 30px auto;
                max-width: 1200px;
                width: 100%;
            }

            .cma-topbar {
                display: flex;
                align-items: center;
                background: #fff;
                padding: 15px 25px;
                border-radius: 12px;
                border: 1px solid var(--gite-red-soft);
                border-top: 4px solid var(--gite-red);
                border-bottom: 1px solid rgba(227, 0, 27, 0.22);
                box-shadow: 0 5px 20px var(--gite-red-shadow);
                margin-bottom: 30px;
                width: 100%;
            }

            .cma-topbar-user {
                font-size: 1.1em;
                color: var(--gite-dark);
                font-weight: 700;
                display: flex;
                align-items: center;
                flex: 1;
                min-width: 0;
            }

            .cma-topbar-user i {
                color: var(--gite-red);
                margin-right: 10px;
                font-size: 1.3em;
                flex: 0 0 auto;
            }

            .cma-topbar ul {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                gap: 15px;
                justify-content: center;
                align-items: center;
            }

            .cma-topbar-spacer {
                flex: 1;
            }

            .cma-topbar li {
                margin: 0;
            }

            .cma-topbar a {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 10px 20px;
                text-decoration: none;
                color: #555;
                font-weight: 600;
                cursor: pointer;
                border-radius: 8px;
                transition: all 0.3s ease;
                white-space: nowrap;
            }

            .cma-topbar a i {
                margin-right: 8px;
                font-size: 1.1em;
                color: var(--gite-red);
                transition: color 0.3s;
                flex: 0 0 auto;
            }

            .cma-topbar a:hover {
                background: transparent;
                color: #555;
                transform: none;
                box-shadow: none;
            }

            .cma-topbar a.active:hover {
                background: var(--gite-red);
                color: #fff;
                box-shadow: 0 4px 10px rgba(227, 0, 27, 0.2);
            }

            .cma-topbar a.active {
                background: var(--gite-red);
                color: #fff;
                box-shadow: 0 4px 10px rgba(227, 0, 27, 0.2);
            }

            .cma-topbar a.active i {
                color: #fff;
            }

            .cma-content {
                background: #fff;
                padding: 40px;
                border-radius: 12px;
                border: 1px solid var(--gite-red-soft);
                border-top: 3px solid var(--gite-red-top);
                border-bottom: 1px solid rgba(227, 0, 27, 0.22);
                box-shadow: 0 5px 20px var(--gite-red-shadow);
                width: 100%;
                overflow: hidden;
            }

            .cma-tab-content {
                display: none;
                animation: fadeIn 0.4s ease;
            }

            .cma-tab-content.active {
                display: block;
            }

            .cma-tab-content h2 {
                margin-top: 0;
                color: var(--gite-dark);
                border-bottom: 1px solid rgba(227, 0, 27, 0.14);
                padding-bottom: 15px;
                margin-bottom: 25px;
                font-weight: 500;
                font-size: 1.5em;
                overflow-wrap: anywhere;
            }

            .cma-dashboard-intro {
                text-align: center;
            }

            .cma-dashboard-title {
                color: #FEFEFE !important;
                background-color: var(--gite-red);
                display: inline-block;
                padding: 8px 20px !important;
                border: none !important;
                border-radius: 8px;
                margin: 0 auto 20px !important;
            }

            .cma-dashboard-copy {
                font-size: 1.1em;
                color: #555;
                font-weight: 600;
                margin: 0;
            }

            .cma-soft-box {
                background: #fff;
                border-radius: 12px;
                border: 1px solid var(--gite-red-soft);
                border-top: 3px solid var(--gite-red-top);
                padding: 30px;
                margin-top: 20px;
                margin-bottom: 20px;
                box-shadow: 0 5px 18px var(--gite-red-shadow);
                width: 100%;
                overflow: hidden;
            }

            .cma-wallet-box {
                display: grid;
                grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr) minmax(240px, 0.8fr);
                gap: 22px;
                align-items: stretch;
                margin-top: 24px;
            }

            .cma-wallet-panel,
            .cma-points-panel {
                background: linear-gradient(135deg, rgba(227, 0, 27, 0.06), rgba(227, 0, 27, 0.015));
                border: 1px solid rgba(227, 0, 27, 0.16);
                border-left: 5px solid var(--gite-red);
                border-radius: 12px;
                padding: 24px;
                min-width: 0;
            }

            .cma-wallet-label {
                display: flex;
                align-items: center;
                gap: 10px;
                color: var(--gite-dark);
                font-weight: 800;
                margin-bottom: 10px;
                font-size: 1.05em;
            }

            .cma-wallet-label i {
                color: var(--gite-red);
                font-size: 1.2em;
            }

            .cma-wallet-amount {
                color: var(--gite-red);
                font-size: 2.5em;
                line-height: 1;
                font-weight: 900;
                margin: 12px 0;
                letter-spacing: 0;
            }

            .cma-points-amount {
                color: var(--gite-red);
                font-size: 2.35em;
                line-height: 1;
                font-weight: 900;
                margin: 12px 0;
                letter-spacing: 0;
            }

            .cma-points-amount span {
                display: inline-block;
                margin-left: 6px;
                font-size: 0.42em;
                line-height: 1;
                font-weight: 900;
                text-transform: uppercase;
                vertical-align: middle;
            }

            .cma-wallet-text {
                color: #555;
                font-weight: 700;
                line-height: 1.55;
                margin: 0;
            }

            .cma-wallet-history {
                background: #fff;
                border: 1px solid rgba(227, 0, 27, 0.14);
                border-radius: 12px;
                padding: 22px;
                min-width: 0;
            }

            .cma-wallet-history h3 {
                margin: 0 0 14px;
                color: var(--gite-dark);
                font-size: 1.05em;
                font-weight: 800;
            }

            .cma-box-heading {
                display: flex;
                align-items: center;
                gap: 8px;
                color: var(--gite-red) !important;
            }

            .cma-box-heading i {
                color: var(--gite-red);
                font-size: 1em;
                flex: 0 0 auto;
            }

            .cma-wallet-history-list {
                list-style: none;
                margin: 0;
                padding: 0;
            }

            .cma-wallet-history-list li {
                display: flex;
                justify-content: space-between;
                gap: 14px;
                padding: 11px 0;
                border-bottom: 1px solid rgba(227, 0, 27, 0.11);
                color: #555;
                font-weight: 600;
            }

            .cma-wallet-history-list li:last-child {
                border-bottom: none;
            }

            .cma-wallet-history-list strong {
                color: var(--gite-dark);
            }

            .cma-wallet-history-list span {
                color: var(--gite-red);
                font-weight: 900;
                white-space: nowrap;
            }

            .cma-wallet-empty {
                margin: 0;
                color: #666;
                line-height: 1.55;
                font-weight: 600;
            }

            .cma-order-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
                gap: 25px;
                margin-top: 20px;
            }

            .cma-orders-title {
                color: var(--gite-red) !important;
                font-weight: 900 !important;
            }

            .cma-order-card {
                background: #fff;
                border: 1px solid var(--gite-red-soft);
                border-top: 3px solid var(--gite-red-top);
                border-radius: 12px;
                padding: 25px;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                transition: all 0.3s ease;
                box-shadow: 0 2px 12px var(--gite-red-shadow);
                overflow: hidden;
                min-width: 0;
            }

            .cma-order-card::before {
                content: '\f072';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                position: absolute;
                top: -10px;
                right: -10px;
                font-size: 8em;
                color: var(--gite-gray-bg);
                opacity: 0.4;
                transform: rotate(-15deg);
                z-index: 0;
                transition: all 0.4s ease;
            }

            .cma-order-card:hover {
                box-shadow: 0 12px 30px rgba(227, 0, 27, 0.08);
                transform: translateY(-5px);
                border-color: rgba(227, 0, 27, 0.45);
            }

            .cma-order-card:hover::before {
                transform: rotate(0deg) scale(1.1);
                color: #ffebee;
            }

            .cma-order-card > * {
                position: relative;
                z-index: 1;
            }

            .cma-order-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                gap: 12px;
                border-bottom: 1px dashed rgba(227, 0, 27, 0.18);
                padding-bottom: 15px;
                margin-bottom: 20px;
            }

            .cma-order-main {
                display: flex;
                flex-direction: column;
                gap: 6px;
                min-width: 0;
                flex: 1 1 auto;
            }

            .cma-order-id {
                display: inline-flex;
                align-items: center;
                font-weight: 800;
                color: var(--gite-red);
                font-size: 1.1em;
                min-width: 0;
                overflow-wrap: anywhere;
            }

            .cma-order-id i {
                color: var(--gite-red);
                margin-right: 5px;
                font-size: 0.9em;
            }

            .cma-order-title {
                color: #555;
                font-size: 0.9em;
                font-weight: 700;
                line-height: 1.35;
                overflow-wrap: anywhere;
            }

            .cma-order-date {
                display: inline-flex;
                align-items: center;
                color: #555;
                font-size: 0.88em;
                font-weight: 700;
                white-space: nowrap;
                line-height: 1.2;
                margin-top: 3px;
            }

            .cma-order-date i {
                color: var(--gite-red);
                margin-right: 7px;
                font-size: 0.95em;
            }

            .cma-order-body {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 14px;
                margin-bottom: 25px;
            }

            .cma-order-price-box {
                display: flex;
                flex-direction: column;
                min-width: 0;
            }

            .cma-order-price-label {
                font-size: 0.75em;
                color: var(--gite-red);
                text-transform: uppercase;
                font-weight: 900;
                letter-spacing: 1px;
                margin-bottom: 5px;
            }

            .cma-order-price {
                font-size: 1.6em;
                font-weight: 800;
                color: var(--gite-dark);
                overflow-wrap: anywhere;
            }

            .cma-order-footer {
                display: flex;
                justify-content: flex-end;
            }

            .cma-btn-view {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 10px 20px;
                background: var(--gite-red);
                color: #fff;
                text-decoration: none;
                border-radius: 8px;
                font-size: 0.85em;
                font-weight: 700;
                transition: all 0.3s ease;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                text-align: center;
            }

            .cma-btn-view i {
                margin-left: 8px;
                transition: transform 0.3s ease;
                flex: 0 0 auto;
            }

            .cma-order-card:hover .cma-btn-view {
                background: #c90018;
                color: #fff;
            }

            .cma-order-card:hover .cma-btn-view i {
                transform: translateX(4px);
            }

            .cma-status {
                padding: 6px 14px;
                border-radius: 30px;
                font-size: 0.75em;
                font-weight: 800;
                text-transform: uppercase;
                display: inline-block;
                letter-spacing: 0.5px;
                box-shadow: 0 2px 5px rgba(0,0,0,0.05);
                white-space: nowrap;
            }

            .status-completed {
                background-color: #e8f5e9;
                color: #2e7d32;
                border: 1px solid #c8e6c9;
            }

            .status-processing {
                background-color: #fff3e0;
                color: #ef6c00;
                border: 1px solid #ffe0b2;
            }

            .status-on-hold {
                background-color: #fff8e1;
                color: #f57f17;
                border: 1px solid #ffecb3;
            }

            .status-cancelled,
            .status-failed {
                background-color: #ffebee;
                color: #c62828;
                border: 1px solid #ffcdd2;
            }

            .status-default {
                background-color: #f5f5f5;
                color: #424242;
                border: 1px solid #e0e0e0;
            }

            .cma-order-details-table {
                width: 100%;
                border-collapse: collapse;
                table-layout: auto;
            }

            .cma-order-details-table th,
            .cma-order-details-table td {
                padding: 15px;
                border-bottom: 1px solid rgba(227, 0, 27, 0.14);
                text-align: left;
                vertical-align: top;
                overflow-wrap: anywhere;
            }

            .cma-order-details-table th {
                font-weight: 700;
                color: #777;
                text-transform: uppercase;
                font-size: 0.8em;
                letter-spacing: 1px;
            }

            .cma-btn-back {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 10px 20px;
                background: var(--gite-gray-bg);
                color: var(--gite-dark);
                text-decoration: none;
                border-radius: 8px;
                font-weight: 700;
                margin-bottom: 20px;
                transition: all 0.3s ease;
                max-width: 100%;
                text-align: center;
            }

            .cma-btn-back:hover {
                background: var(--gite-red);
                color: #fff;
                transform: translateX(-3px);
            }

            .cma-order-detail-actions {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 10px;
                flex-wrap: wrap;
            }

            .cma-ticket-download,
            .cma-ticket-download:visited,
            .cma-ticket-download:focus,
            .cma-ticket-download:hover {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-height: 36px;
                padding: 8px 16px;
                border-radius: 8px;
                background: var(--gite-red);
                color: #fff !important;
                font-size: 0.82em;
                font-weight: 900;
                text-decoration: none;
                text-transform: uppercase;
                letter-spacing: 0.3px;
                box-shadow: 0 4px 10px rgba(227,0,27,0.18);
            }

            .cma-ticket-download i,
            .cma-ticket-download:visited i,
            .cma-ticket-download:focus i,
            .cma-ticket-download:hover i {
                margin-right: 7px;
                color: #fff !important;
            }

            .cma-ticket-download:hover {
                background: var(--gite-red);
                color: #fff !important;
                text-decoration: none;
            }

            .wc-item-meta {
                list-style: none;
                padding: 0;
                margin: 0;
                font-size: 0.9em;
                color: #555;
                overflow-wrap: anywhere;
            }

            .wc-item-meta li {
                margin-bottom: 4px;
            }

            .wc-item-meta li strong {
                color: var(--gite-dark);
                font-weight: 700;
            }

            .wc-item-meta li p {
                display: inline;
                margin: 0;
            }

            .cma-passengers-title,
            .cma-box-title {
                color: var(--gite-dark);
                font-size: 1.4em;
                margin-top: 0;
                margin-bottom: 25px;
                border-bottom: 3px solid var(--gite-red);
                padding-bottom: 10px;
                display: inline-block;
                overflow-wrap: anywhere;
            }

            .cma-passenger-group {
                margin-bottom: 30px;
            }

            .cma-passenger-group:last-child {
                margin-bottom: 0;
            }

            .cma-passengers-table {
                width: 100%;
                border-collapse: collapse;
                background: var(--gite-gray-bg);
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 2px 5px rgba(0,0,0,0.02) inset;
            }

            .cma-passengers-table th,
            .cma-passengers-table td {
                padding: 15px 20px;
                text-align: left;
                border-bottom: 1px solid rgba(227, 0, 27, 0.16);
                overflow-wrap: anywhere;
            }

            .cma-passengers-table th {
                font-weight: 700;
                color: #444;
                text-transform: uppercase;
                font-size: 0.8em;
                letter-spacing: 0.5px;
                background: #eee;
            }

            .cma-passengers-table td strong {
                color: var(--gite-dark);
            }

            .cma-passengers-table tr:last-child td {
                border-bottom: none;
            }

            .cma-bottom-grid {
                display: grid;
                grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
                gap: 22px;
                align-items: stretch;
                margin-top: 24px;
            }

            .cma-bottom-grid .cma-soft-box {
                margin-top: 0;
                margin-bottom: 0;
            }

            .cma-assist-box {
                background: #fff;
                padding: 25px;
                border-radius: 10px;
                border: 1px solid var(--gite-red-soft);
                border-top: 3px solid var(--gite-red-top);
                box-shadow: 0 5px 15px rgba(227,0,27,0.08);
                display: flex;
                flex-direction: column;
                justify-content: center;
                position: relative;
                overflow: hidden;
                transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            }

            .cma-assist-title {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 5px;
                color: var(--gite-red);
                font-size: 1.1em;
                font-weight: 800;
            }

            .cma-assist-title i {
                color: var(--gite-red);
                font-size: 1em;
                flex: 0 0 auto;
            }

            .cma-assist-text {
                color: #666;
                font-weight: 700;
                line-height: 1.5;
            }

            .cma-assist-text a {
                color: var(--gite-red);
                font-weight: 900;
                text-decoration: none;
            }

            .cma-assist-text a:hover {
                color: var(--gite-red);
                text-decoration: none;
            }

            .cma-billing-address {
                font-style: normal;
                color: #555;
                line-height: 1.8;
                font-weight: 600;
                overflow-wrap: anywhere;
            }

            .cma-summary-table {
                width: 100%;
                border-collapse: collapse;
            }

            .cma-summary-table th,
            .cma-summary-table td {
                padding: 13px 0;
                border-bottom: 1px solid rgba(227, 0, 27, 0.14);
                vertical-align: middle;
                overflow-wrap: anywhere;
            }

            .cma-summary-table th {
                text-align: left;
                color: #666;
                font-weight: 700;
                padding-right: 14px;
            }

            .cma-summary-table td {
                text-align: right;
                color: var(--gite-dark);
                font-weight: 800;
            }

            .cma-summary-table tr:last-child th,
            .cma-summary-table tr:last-child td {
                border-bottom: none;
                font-size: 1.1em;
            }

            .cma-summary-highlight {
                margin-top: 18px;
                padding: 14px 16px;
                background: rgba(227, 0, 27, 0.05);
                border-left: 4px solid var(--gite-red);
                border-radius: 8px;
                color: #555;
                font-weight: 600;
                overflow-wrap: anywhere;
            }

            @media (max-width: 900px) {
                .cma-wrapper {
                    padding-left: 14px;
                    padding-right: 14px;
                    margin-top: 18px;
                    margin-bottom: 18px;
                }

                .cma-topbar {
                    flex-direction: column;
                    align-items: stretch;
                    gap: 15px;
                    padding: 18px;
                }

                .cma-topbar-user {
                    justify-content: center;
                    text-align: center;
                    width: 100%;
                }

                .cma-topbar-spacer {
                    display: none;
                }

                .cma-topbar ul {
                    display: grid;
                    grid-template-columns: 1fr;
                    width: 100%;
                    gap: 8px;
                }

                .cma-topbar a {
                    width: 100%;
                    min-height: 44px;
                    padding: 10px 14px;
                }

                .cma-content {
                    padding: 22px;
                }

                .cma-wallet-box,
                .cma-bottom-grid {
                    grid-template-columns: 1fr;
                }
            }

            @media (max-width: 768px) {
                .cma-wrapper {
                    padding-left: 10px;
                    padding-right: 10px;
                    margin-top: 14px;
                }

                .cma-content {
                    padding: 18px 14px;
                    border-radius: 10px;
                }

                .cma-soft-box {
                    padding: 18px 14px;
                    border-radius: 10px;
                    margin-top: 16px;
                    margin-bottom: 16px;
                }

                .cma-wallet-panel,
                .cma-wallet-history,
                .cma-points-panel {
                    padding: 18px 14px;
                }

                .cma-wallet-amount {
                    font-size: 2em;
                }

                .cma-wallet-history-list li {
                    flex-direction: column;
                    gap: 4px;
                }

                .cma-tab-content h2 {
                    font-size: 1.25em;
                    line-height: 1.25;
                }

                .cma-passengers-title,
                .cma-box-title {
                    font-size: 1.2em;
                    margin-bottom: 18px;
                }

                .cma-order-grid {
                    grid-template-columns: 1fr;
                    gap: 16px;
                }

                .cma-order-card {
                    padding: 18px;
                }

                .cma-order-card::before {
                    font-size: 5.5em;
                    top: -6px;
                    right: -8px;
                }

                .cma-order-header {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 8px;
                }

                .cma-order-date {
                    white-space: normal;
                }

                .cma-order-body {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 12px;
                }

                .cma-order-price {
                    font-size: 1.35em;
                }

                .cma-order-footer,
                .cma-btn-view {
                    width: 100%;
                }

                .cma-btn-back {
                    width: 100%;
                    margin-bottom: 18px;
                }

                .cma-order-detail-actions,
                .cma-ticket-download {
                    width: 100%;
                }

                .cma-order-details-table,
                .cma-order-details-table thead,
                .cma-order-details-table tbody,
                .cma-order-details-table tr,
                .cma-order-details-table th,
                .cma-order-details-table td {
                    display: block;
                    width: 100%;
                }

                .cma-order-details-table thead {
                    display: none;
                }

                .cma-order-details-table tr {
                    padding: 0 0 14px 0;
                    border-bottom: 1px solid rgba(227, 0, 27, 0.14);
                    margin-bottom: 14px;
                }

                .cma-order-details-table tr:last-child {
                    border-bottom: none;
                    margin-bottom: 0;
                    padding-bottom: 0;
                }

                .cma-order-details-table td {
                    padding: 0;
                    border-bottom: none;
                    text-align: left !important;
                }

                .cma-order-details-table td + td {
                    margin-top: 14px;
                    padding-top: 12px;
                    border-top: 1px dashed rgba(227, 0, 27, 0.18);
                }

                .cma-passengers-table,
                .cma-passengers-table thead,
                .cma-passengers-table tbody,
                .cma-passengers-table tr,
                .cma-passengers-table th,
                .cma-passengers-table td {
                    display: block;
                    width: 100%;
                }

                .cma-passengers-table {
                    background: transparent;
                    box-shadow: none;
                    border-radius: 0;
                    overflow: visible;
                }

                .cma-passengers-table thead {
                    display: none;
                }

                .cma-passengers-table tr {
                    background: var(--gite-gray-bg);
                    border: 1px solid rgba(227, 0, 27, 0.14);
                    border-radius: 10px;
                    padding: 12px;
                    margin-bottom: 12px;
                    box-shadow: 0 2px 8px rgba(227, 0, 27, 0.04);
                }

                .cma-passengers-table tr:last-child {
                    margin-bottom: 0;
                }

                .cma-passengers-table td {
                    display: flex;
                    justify-content: space-between;
                    align-items: flex-start;
                    gap: 14px;
                    padding: 9px 0;
                    border-bottom: 1px solid rgba(227, 0, 27, 0.11);
                    text-align: right;
                    font-size: 0.95em;
                }

                .cma-passengers-table td:last-child {
                    border-bottom: none;
                }

                .cma-passengers-table td::before {
                    content: '';
                    color: #666;
                    font-size: 0.78em;
                    font-weight: 800;
                    text-transform: uppercase;
                    letter-spacing: 0.4px;
                    text-align: left;
                    flex: 0 0 96px;
                }

                .cma-passengers-table td:nth-child(1)::before {
                    content: 'N.';
                }

                .cma-passengers-table td:nth-child(2)::before {
                    content: 'Nome';
                }

                .cma-passengers-table td:nth-child(3)::before {
                    content: 'Cognome';
                }

                .cma-passengers-table td:nth-child(4)::before {
                    content: 'Telefono';
                }

                .cma-passengers-table td:nth-child(5)::before {
                    content: 'Email';
                }

                .cma-passengers-table td:nth-child(6)::before {
                    content: 'Luogo nascita';
                }

                .cma-passengers-table td:nth-child(7)::before {
                    content: 'Data nascita';
                }

                .cma-passengers-table td > * {
                    min-width: 0;
                }

                .cma-billing-address {
                    font-size: 0.96em;
                }

                .cma-summary-table th,
                .cma-summary-table td {
                    font-size: 0.95em;
                }
            }

            @media (max-width: 420px) {
                .cma-wrapper {
                    padding-left: 8px;
                    padding-right: 8px;
                }

                .cma-topbar {
                    padding: 14px;
                    border-radius: 10px;
                }

                .cma-topbar-user {
                    font-size: 1em;
                }

                .cma-content {
                    padding: 14px 10px;
                }

                .cma-soft-box {
                    padding: 16px 12px;
                }

                .cma-status {
                    width: 100%;
                    text-align: center;
                }

                .cma-passengers-table td {
                    flex-direction: column;
                    align-items: flex-start;
                    text-align: left;
                    gap: 4px;
                }

                .cma-passengers-table td::before {
                    flex-basis: auto;
                }

                .cma-summary-table th,
                .cma-summary-table td {
                    display: block;
                    width: 100%;
                    text-align: left;
                    border-bottom: none;
                    padding: 6px 0;
                }

                .cma-summary-table tr {
                    display: block;
                    padding: 8px 0;
                    border-bottom: 1px solid rgba(227, 0, 27, 0.14);
                }

                .cma-summary-table tr:last-child {
                    border-bottom: none;
                }
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(10px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .cma-gift-box {
                background: #fff;
                border: 1px solid var(--gite-red-soft);
                border-top: 3px solid var(--gite-red-top);
                padding: 25px;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(227,0,27,0.08);
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: flex-start;
                position: relative;
                overflow: hidden;
                transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            }
            .cma-gift-box:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 25px rgba(227,0,27,0.15);
                border-color: rgba(227,0,27,0.4);
            }
            .cma-gift-box::before {
                content: '\f06b';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                position: absolute;
                top: -10px;
                right: -10px;
                font-size: 7em;
                color: var(--gite-red);
                opacity: 0.05;
                transform: rotate(-15deg);
                z-index: 0;
                transition: all 0.4s ease;
            }
            .cma-gift-box:hover::before {
                transform: rotate(0deg) scale(1.1);
                opacity: 0.08;
            }
            .cma-gift-box-content {
                position: relative;
                z-index: 1;
            }
            .cma-gift-btn {
                display: inline-block;
                padding: 8px 22px;
                background: var(--gite-red);
                color: #fff;
                font-weight: 800;
                border-radius: 30px;
                text-decoration: none;
                text-transform: uppercase;
                font-size: 0.85em;
                transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
                position: relative;
                z-index: 1;
                box-shadow: 0 4px 10px rgba(227,0,27,0.2);
            }
            .cma-gift-btn:hover {
                background: var(--gite-red);
                color: #fff;
                transform: none;
                box-shadow: 0 4px 10px rgba(227,0,27,0.2);
            }
            .cma-gift-btn i {
                transition: transform 0.3s ease;
            }
            .cma-gift-box:hover .cma-gift-btn i {
                transform: none;
            }

            .cma-wallet-panel,
            .cma-wallet-history,
            .cma-points-panel,
            .cma-assist-box,
            .cma-gift-box {
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(227,0,27,0.24);
                border-top: 3px solid rgba(227,0,27,0.58);
                box-shadow: 0 8px 22px rgba(227,0,27,0.10);
                transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            }

            .cma-wallet-panel {
                border-left-width: 1px;
            }

            .cma-wallet-panel > *,
            .cma-wallet-history > *,
            .cma-points-panel > *,
            .cma-assist-box > *,
            .cma-gift-box > * {
                position: relative;
                z-index: 1;
            }

            .cma-wallet-panel::before,
            .cma-wallet-history::before,
            .cma-points-panel::before,
            .cma-assist-box::before,
            .cma-gift-box::before {
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                position: absolute;
                top: -14px;
                right: -12px;
                font-size: 7.4em;
                line-height: 1;
                color: var(--gite-red);
                transform: rotate(0deg) scale(1.1);
                opacity: 0.08;
                z-index: 0;
                pointer-events: none;
                transition: all 0.4s ease;
            }

            .cma-wallet-panel::before {
                content: '\f555';
            }

            .cma-wallet-history::before {
                content: '\f2ea';
            }

            .cma-points-panel::before {
                content: '\f005';
            }

            .cma-assist-box::before {
                content: '\f590';
            }

            .cma-wallet-panel:hover,
            .cma-wallet-history:hover,
            .cma-points-panel:hover,
            .cma-assist-box:hover,
            .cma-gift-box:hover {
                transform: none;
                box-shadow: 0 8px 22px rgba(227,0,27,0.10);
            }

            .cma-wallet-panel:hover::before,
            .cma-wallet-history:hover::before,
            .cma-points-panel:hover::before,
            .cma-assist-box:hover::before,
            .cma-gift-box:hover::before {
                transform: rotate(0deg) scale(1.1);
                opacity: 0.08;
            }