.peak99-cart-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.peak99-cart-nav:hover {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.peak99-cart-nav.bump {
    animation: peak99-cart-bump 0.35s ease;
}

.peak99-cart-badge {
    position: absolute;
    top: -3px;
    right: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #00c8ff;
    color: #071521;
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

.peak99-cart-badge.is-empty {
    display: none;
}

.peak99-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.peak99-cart-drawer.is-open {
    pointer-events: auto;
}

.peak99-cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 21, 33, 0.56);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.peak99-cart-drawer.is-open .peak99-cart-drawer-backdrop {
    opacity: 1;
}

.peak99-cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(390px, 100vw);
    height: 100%;
    background: #f6fbff;
    box-shadow: -24px 0 64px rgba(8, 20, 32, 0.22);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.peak99-cart-drawer.is-open .peak99-cart-drawer-panel {
    transform: translateX(0);
}

.peak99-cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(13, 26, 38, 0.08);
    background: linear-gradient(135deg, #132b42, #1a3d60);
    color: #fff;
}

.peak99-cart-drawer-header h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1;
    color: #fff;
}

.peak99-cart-close {
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 999px;
}

.peak99-cart-drawer-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px 18px 18px;
}

.peak99-cart-empty {
    padding: 36px 24px;
    background: #fff;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 18px 44px rgba(15, 42, 61, 0.08);
}

.peak99-cart-empty i {
    font-size: 34px;
    color: #00c8ff;
    margin-bottom: 14px;
}

.peak99-cart-empty p {
    margin: 0;
    color: #536579;
}

.peak99-cart-list {
    display: grid;
    gap: 12px;
}

.peak99-cart-item {
    background: #fff;
    border-radius: 20px;
    padding: 14px 14px 13px;
    box-shadow: 0 14px 34px rgba(15, 42, 61, 0.07);
}

.peak99-cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.peak99-cart-item-title {
    margin: 0 0 4px;
    font-size: 17px;
    line-height: 1.25;
    color: #13283d;
}

.peak99-cart-item-meta {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: #68798b;
}

.peak99-cart-remove {
    border: 0;
    background: rgba(244, 116, 116, 0.12);
    color: #d44d4d;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    flex: 0 0 auto;
}

.peak99-cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.peak99-cart-qty {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #eff7fc;
    padding: 3px;
}

.peak99-cart-qty button {
    border: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: transparent;
    color: #183a58;
}

.peak99-cart-qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: #13283d;
}

.peak99-cart-line-total {
    font-size: 18px;
    font-weight: 700;
    color: #13283d;
}

.peak99-cart-summary {
    margin-top: 14px;
    background: #13283d;
    border-radius: 22px;
    padding: 18px;
    color: #fff;
}

.peak99-cart-summary h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 18px;
}

.peak99-cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.peak99-cart-summary-row.total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.peak99-cart-promo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin-top: 14px;
    align-items: center;
}

.peak99-cart-promo input {
    border: 0;
    border-radius: 16px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    min-width: 0;
    min-height: 44px;
}

.peak99-cart-promo input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.peak99-cart-promo button,
.peak99-cart-link-btn,
.peak99-cart-primary-btn,
.peak99-cart-secondary-btn {
    border: 0;
    border-radius: 999px;
    font-weight: 700;
}

.peak99-cart-promo button {
    min-width: 96px;
    min-height: 44px;
    padding: 0 16px;
    background: #00c8ff;
    color: #071521;
    white-space: nowrap;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.peak99-cart-actions {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.peak99-cart-link-btn,
.peak99-cart-primary-btn,
.peak99-cart-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    font-size: 14px;
    text-decoration: none;
}

.peak99-cart-primary-btn {
    background: #00c8ff;
    color: #071521;
}

.peak99-cart-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.peak99-cart-link-btn {
    background: #fff;
    color: #13283d;
}

.peak99-cart-page {
    position: relative;
    z-index: 2;
    margin-top: -72px;
    padding: 20px 0 120px;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.88) 0, rgba(255, 255, 255, 0.16) 11%, transparent 12%),
        radial-gradient(circle at 78% 8%, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.22) 14%, transparent 15%),
        radial-gradient(circle at 50% 0, rgba(0, 200, 255, 0.07), transparent 28%),
        linear-gradient(180deg, #e9f6ff 0%, #f8fcff 18%, #ffffff 52%, #eef8ff 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.peak99-cart-view .peak99-cart-page,
.peak99-checkout-view .peak99-cart-page {
    margin-top: 0;
    padding-top: 100px;
}

.peak99-order-container {
    max-width: 1320px;
}

.peak99-order-hero .peak99-order-container {
    max-width: 1320px;
}

.peak99-cart-page .container {
    max-width: 1320px;
    width: 100%;
}

.peak99-cart-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
    align-items: start;
}

.peak99-cart-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(9, 31, 49, 0.08);
    padding: 32px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(118, 144, 217, 0.12);
}

.peak99-cart-page h1,
.peak99-cart-page h2,
.peak99-cart-page h3 {
    color: #13283d;
}

.peak99-cart-page p,
.peak99-cart-page label,
.peak99-cart-page span,
.peak99-cart-page small,
.peak99-cart-page li,
.peak99-cart-page strong {
    color: inherit;
}

.peak99-cart-page-header {
    margin-bottom: 24px;
}

.peak99-cart-page-header p {
    margin: 10px 0 0;
    color: #66788a;
    font-size: 17px;
    line-height: 1.65;
}

.peak99-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 200, 255, 0.12);
    color: #00a7d6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.peak99-order-hero .sub-banner-inner-con {
    max-width: 920px;
    padding: 0 110px;
}

.peak99-order-hero .sub-banner-inner-con h1 {
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 46px;
}

.peak99-order-hero .sub-banner-inner-con p {
    display: none;
}

@media (min-width: 992px) {
    .peak99-order-hero .sub-banner-inner-con p {
        display: none;
    }
}

.peak99-order-hero .secondary-btn a {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.peak99-order-hero .secondary-btn a:hover {
    background: #00c8ff;
    border-color: #00c8ff;
    color: #071521;
}

.peak99-cart-page-list {
    display: grid;
    gap: 22px;
}

.peak99-cart-page-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: start;
    border-radius: 28px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(19, 40, 61, 0.08);
    box-shadow: 0 24px 50px rgba(16, 40, 66, 0.05);
}

.peak99-cart-page-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.peak99-cart-page-item h3 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.peak99-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.peak99-item-cycle {
    min-width: 250px;
}

.peak99-item-cycle label {
    display: block;
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6a7d90;
}

.peak99-item-cycle select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(19, 40, 61, 0.12);
    border-radius: 16px;
    background: #f8fcff;
    color: #13283d;
    padding: 0 14px;
}

.peak99-line-meta {
    display: grid;
    gap: 6px;
}

.peak99-cart-page-item .text-muted {
    color: #617487 !important;
}

.peak99-domain-card {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 22px;
    padding: 22px;
    border-radius: 22px;
    background: #f3fbff;
    border: 1px solid rgba(0, 200, 255, 0.14);
}

.peak99-domain-card h4 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #14304a;
}

.peak99-domain-mode-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.peak99-domain-mode-row label {
    margin: 0;
    font-size: 14px;
    color: #27465e;
}

.peak99-domain-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px auto;
    gap: 10px;
    align-items: center;
}

.peak99-domain-grid-4 {
    grid-template-columns: minmax(160px, 1fr) 110px 110px auto;
}

.peak99-domain-fields.single {
    grid-template-columns: minmax(0, 1fr) auto;
}

.peak99-domain-fields input,
.peak99-domain-fields select {
    width: 100%;
    border: 1.5px solid rgba(19, 40, 61, 0.18);
    background: #fff;
    border-radius: 16px;
    min-height: 50px;
    padding: 0 16px;
    color: #0d1f30;
    font-size: 15px;
    font-weight: 500;
}

.peak99-domain-fields input::placeholder {
    color: #8fa3b3;
    font-weight: 400;
}

.peak99-domain-fields input:focus,
.peak99-domain-fields select:focus {
    outline: none;
    border-color: #00c8ff;
    box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.15);
}

.peak99-domain-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.peak99-domain-card .peak99-cart-primary-btn,
.peak99-domain-card .peak99-cart-link-btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
    white-space: nowrap;
}

.peak99-domain-status {
    margin-top: 10px;
    font-size: 13px;
    color: #3d5f7d;
}

.peak99-domain-price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(19, 40, 61, 0.08);
    color: #17344d;
}

.peak99-domain-price-line strong {
    font-size: 16px;
}

.peak99-domain-status.success {
    color: #1a8b52;
}

.peak99-domain-status.error {
    color: #c64747;
}

.peak99-domain-current {
    margin-top: 10px;
    font-size: 13px;
    color: #183a58;
    font-weight: 600;
}

.peak99-selection-card {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 22px;
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(19, 40, 61, 0.08);
}

.peak99-selection-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.peak99-selection-card-head h4,
.peak99-selection-group h5,
.peak99-selection-row h5 {
    margin: 0;
    color: #14304a;
}

.peak99-selection-card-head p,
.peak99-selection-row p {
    margin: 6px 0 0;
    color: #5f768b;
    font-size: 13px;
}

.peak99-selection-group + .peak99-selection-group {
    margin-top: 18px;
}

.peak99-selection-group > h5 {
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #00a7d6;
}

.peak99-selection-row {
    padding: 16px;
    border-radius: 18px;
    background: #f8fcff;
    border: 1px solid rgba(0, 200, 255, 0.12);
}

.peak99-selection-row + .peak99-selection-row {
    margin-top: 12px;
}

.peak99-selection-row-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.peak99-selection-row-head strong {
    color: #14304a;
    font-size: 14px;
}

.peak99-selection-choice-list {
    display: grid;
    gap: 10px;
}

.peak99-selection-choice,
.peak99-selection-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(19, 40, 61, 0.1);
    margin: 0;
}

.peak99-selection-choice span,
.peak99-selection-toggle span {
    flex: 1 1 auto;
    color: #183a58;
}

.peak99-selection-row select,
.peak99-selection-row input[type="number"] {
    width: 100%;
    border: 1px solid rgba(19, 40, 61, 0.12);
    background: #fff;
    border-radius: 16px;
    min-height: 48px;
    padding: 0 14px;
    color: #13283d;
}

.peak99-selection-qty-row {
    display: grid;
    grid-template-columns: minmax(0, 160px) 1fr;
    gap: 12px;
    align-items: center;
}

.peak99-selection-qty-row span {
    color: #5f768b;
    font-size: 13px;
}

.peak99-selection-caption {
    margin-top: 10px;
    font-size: 13px;
    color: #3d5f7d;
}

.peak99-cart-page-summary {
    position: sticky;
    top: 110px;
}

.peak99-summary-panel {
    background: linear-gradient(180deg, rgba(18, 38, 58, 0.98) 0%, rgba(25, 51, 77, 0.98) 100%);
    border: 0;
    color: #fff;
    padding: 28px 28px 32px;
}

.peak99-summary-header {
    margin-bottom: 26px;
}

.peak99-summary-panel .peak99-eyebrow {
    background: rgba(0, 200, 255, 0.16);
    color: #7adfff;
    margin-bottom: 14px;
}

.peak99-summary-panel h2,
.peak99-summary-panel strong,
.peak99-summary-panel span {
    color: #fff;
}

.peak99-cart-summary-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(0, 200, 255, 0.1);
    color: #27465e;
    font-size: 14px;
    line-height: 1.6;
}

.peak99-summary-back {
    margin-top: 18px;
}

.peak99-checkout-shell {
    grid-template-columns: minmax(0, 1.62fr) minmax(340px, 400px);
}

.peak99-checkout-main {
    display: grid;
    gap: 22px;
}

.peak99-checkout-intro {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 255, 0.94));
}

.peak99-checkout-intro p {
    margin-top: 12px;
    color: #64788d;
    max-width: 700px;
}

.peak99-checkout-form-card {
    display: grid;
    gap: 24px;
}

.peak99-checkout-form-block {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(118, 144, 217, 0.16);
}

.peak99-form-block-header {
    margin-bottom: 18px;
}

.peak99-form-block-header h3 {
    margin: 12px 0 8px;
    font-size: 30px;
    line-height: 1.15;
}

.peak99-form-block-header p {
    margin: 0;
    color: #66788a;
}

.peak99-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.peak99-choice-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(118, 144, 217, 0.18);
    color: #17344d;
    font-weight: 600;
    margin: 0;
}

.peak99-session-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 26px;
    border-radius: 26px;
    background: linear-gradient(135deg, #17314a 0%, #214462 100%);
    color: #fff;
}

.peak99-session-card h3,
.peak99-session-card p,
.peak99-session-card .peak99-eyebrow {
    color: #fff;
}

.peak99-session-card p {
    margin: 10px 0 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
}

.peak99-session-card .peak99-eyebrow {
    background: rgba(0, 200, 255, 0.18);
}

.peak99-static-field {
    display: flex;
    align-items: center;
    color: #17344d !important;
}

.peak99-checkout-actions {
    margin-top: 0;
}

.peak99-cart-card .form-group label,
.peak99-cart-card .font-weight-bold,
.peak99-cart-card .col-form-label {
    color: #17344d;
    font-weight: 700;
}

.peak99-cart-card .form-control,
.peak99-cart-card select.form-control,
.peak99-cart-card input.form-control,
.peak99-cart-card textarea.form-control {
    min-height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(118, 144, 217, 0.18);
    background: #fff;
    color: #13283d;
    box-shadow: none;
}

.peak99-cart-card .form-control::placeholder {
    color: #8ea0b2;
}

.peak99-cart-card .form-control:focus {
    border-color: rgba(0, 200, 255, 0.48);
    box-shadow: 0 0 0 4px rgba(0, 200, 255, 0.12);
}

.peak99-cart-card input[type="radio"],
.peak99-cart-card input[type="checkbox"] {
    accent-color: #00c8ff;
}

.peak99-cart-card .alert {
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.peak99-cart-primary-btn,
.peak99-cart-link-btn,
.peak99-cart-secondary-btn,
.peak99-cart-promo button,
.peak99-cart-remove,
.peak99-cart-qty button {
    transition: 0.22s ease-in-out;
}

.peak99-cart-primary-btn {
    background: #00c8ff;
    color: #071521;
    box-shadow: 0 14px 30px rgba(0, 200, 255, 0.24);
}

.peak99-cart-primary-btn:hover {
    background: #0dd3ff;
    color: #071521;
    transform: translateY(-1px);
}

.peak99-cart-link-btn:hover {
    background: #13283d;
    color: #fff;
}

.peak99-cart-secondary-btn:hover {
    background: #17314a;
    color: #fff;
}

.peak99-cart-remove:hover {
    background: rgba(244, 116, 116, 0.2);
}

.peak99-cart-qty button:hover {
    background: #dcecf8;
}

.peak99-cart-footer-actions {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.peak99-cart-page .container,
.peak99-order-hero .container {
    width: 100%;
}

@keyframes peak99-cart-bump {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

@media (max-width: 991px) {
    .peak99-cart-shell {
        grid-template-columns: 1fr;
    }

    .peak99-cart-page {
        margin-top: -36px;
        padding-top: 12px;
    }

    .peak99-cart-page-summary {
        position: static;
    }

    .peak99-order-hero .sub-banner-inner-con {
        padding: 0 40px;
    }

    .peak99-checkout-shell {
        grid-template-columns: 1fr;
    }

    .peak99-session-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .peak99-cart-drawer-panel {
        width: 100vw;
    }
}

@media (max-width: 767px) {
    .peak99-cart-page {
        margin-top: -24px;
        padding: 8px 0 80px;
    }

    .peak99-cart-card {
        border-radius: 24px;
        padding: 22px;
    }

    .peak99-cart-page-header p {
        font-size: 16px;
    }

    .peak99-cart-page-item h3 {
        font-size: 24px;
    }

    .peak99-cart-page-item {
        grid-template-columns: 1fr;
    }

    .peak99-item-head {
        flex-direction: column;
    }

    .peak99-cart-item-bottom,
    .peak99-cart-page-item-actions {
        flex-wrap: wrap;
    }

    .peak99-domain-grid-4 {
        grid-template-columns: 1fr 100px;
        grid-template-rows: auto auto;
    }

    .peak99-domain-grid-4 input[data-domain-sld] {
        grid-column: 1;
        grid-row: 1;
    }

    .peak99-domain-grid-4 select[data-domain-tld] {
        grid-column: 2;
        grid-row: 1;
    }

    .peak99-domain-grid-4 select[data-domain-period] {
        grid-column: 1;
        grid-row: 2;
    }

    .peak99-domain-grid-4 [data-check-domain] {
        grid-column: 2;
        grid-row: 2;
    }

    .peak99-cart-page-item-actions {
        align-items: flex-start;
    }

    .peak99-domain-fields,
    .peak99-domain-fields.single,
    .peak99-domain-grid-4,
    .peak99-selection-qty-row,
    .peak99-cart-promo {
        grid-template-columns: 1fr;
    }

    .peak99-order-hero .sub-banner-inner-con {
        padding: 0 15px;
    }

    .peak99-choice-grid {
        grid-template-columns: 1fr;
    }

    .peak99-selection-card-head,
    .peak99-selection-row-head {
        flex-direction: column;
    }
}

/* -- Domain Search Results -- */

.peak99-search-results-wrap {
    margin-top: 8px;
}

.peak99-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.peak99-results-header h2 {
    font-size: 24px;
    margin: 0;
    color: #13283d;
}

.peak99-results-header p {
    margin: 4px 0 0;
    color: #617487;
    font-size: 14px;
}

.peak99-results-list {
    display: grid;
    gap: 12px;
}

.peak99-domain-result-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(19, 40, 61, 0.08);
    box-shadow: 0 8px 28px rgba(16, 40, 66, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.peak99-domain-result-card.peak99-domain-available {
    border-color: rgba(0, 200, 100, 0.2);
}

.peak99-domain-result-card.peak99-domain-available:hover {
    border-color: rgba(0, 200, 100, 0.4);
    box-shadow: 0 12px 36px rgba(0, 200, 100, 0.08);
}

.peak99-domain-result-card.peak99-domain-unavailable {
    opacity: 0.65;
}

.peak99-domain-result-card.peak99-domain-incart {
    border-color: rgba(0, 200, 255, 0.3);
    background: rgba(0, 200, 255, 0.03);
}

.peak99-domain-result-name {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.peak99-domain-result-name h4 {
    margin: 0;
    font-size: 20px;
    color: #13283d;
    font-weight: 700;
}

.peak99-tld-highlight {
    color: #00a7d6;
}

.peak99-avail-badge,
.peak99-unavail-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.peak99-avail-badge {
    background: rgba(26, 139, 82, 0.1);
    color: #1a8b52;
}

.peak99-unavail-badge {
    background: rgba(198, 71, 71, 0.08);
    color: #c64747;
}

.peak99-domain-result-pricing {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.peak99-price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.peak99-price-label {
    font-size: 12px;
    color: #6a7d90;
    margin-right: 4px;
}

.peak99-price-tag strong {
    font-size: 16px;
    color: #13283d;
}

.peak99-price-tag small {
    font-size: 12px;
    color: #8ea0b2;
}

.peak99-domain-result-action {
    display: flex;
    align-items: center;
}

.peak99-domain-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 14px;
    background: #00c8ff;
    color: #071521;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 200, 255, 0.2);
}

.peak99-domain-add-btn:hover {
    background: #0dd3ff;
    transform: translateY(-1px);
}

.peak99-domain-add-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.peak99-domain-in-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 200, 255, 0.12);
    color: #00a7d6;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.peak99-domain-taken-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(198, 71, 71, 0.06);
    color: #a04545;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

/* Skeleton loading */

.peak99-skeleton-card {
    border: 1px solid rgba(19, 40, 61, 0.05) !important;
    box-shadow: none !important;
}

.peak99-skeleton-line {
    border-radius: 8px;
    background: linear-gradient(90deg, #e8f0f8 25%, #f0f6fc 50%, #e8f0f8 75%);
    background-size: 200% 100%;
    animation: peak99-skeleton-shimmer 1.4s infinite ease-in-out;
}

@keyframes peak99-skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Search error state */

.peak99-search-error {
    text-align: center;
    padding: 48px 24px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(198, 71, 71, 0.12);
}

.peak99-search-error i {
    font-size: 36px;
    color: #d44d4d;
    margin-bottom: 14px;
}

.peak99-search-error p {
    color: #536579;
    margin: 0 0 18px;
}

/* TLD quick-search chips */

.peak99-tld-quick-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.peak99-tld-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(0, 200, 255, 0.1);
    color: #00a7d6;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid rgba(0, 200, 255, 0.15);
}

.peak99-tld-chip:hover {
    background: #00c8ff;
    color: #071521;
    border-color: #00c8ff;
}

/* Trust row */

.peak99-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 32px 0 0;
    padding: 20px 0;
    border-top: 1px solid rgba(19, 40, 61, 0.08);
    border-bottom: 1px solid rgba(19, 40, 61, 0.08);
}

.peak99-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2d4a62;
}

.peak99-trust-item i {
    color: #00a7d6;
    font-size: 16px;
}

/* Domain cart item type badge */

.peak99-domain-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(0, 200, 255, 0.1);
    color: #00a7d6;
    font-size: 12px;
    font-weight: 700;
}

.peak99-cart-domain-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(0, 200, 255, 0.1);
    color: #00a7d6;
    font-size: 12px;
    font-weight: 700;
}

.peak99-cart-section-divider {
    padding: 14px 0 6px;
}

/* Pricing table enhancements */

.peak99-pricing-table {
    width: 100%;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0 14px;
    margin: 0;
}

.peak99-pricing-table th .domain-price-table-header {
    padding: 10px 16px 8px;
    white-space: nowrap;
    font-size: 14px;
}

.peak99-pricing-table th:not(:first-child) .domain-price-table-header {
    margin: 0 6px;
}

.peak99-pricing-table thead th {
    border: 0;
    text-align: center;
    color: #13283d;
    font-size: 15px;
    font-weight: 700;
}

.peak99-pricing-table tbody tr {
    background: transparent;
}

.peak99-pricing-table tbody td {
    padding: 18px 20px;
    border: 0;
    background: #ffffff;
    color: #17324a;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 12px 28px rgba(15, 35, 58, 0.08);
}

.peak99-pricing-table tbody td strong {
    color: #0f2740;
    font-weight: 800;
}

.peak99-pricing-table tbody td:first-child {
    border-radius: 20px 0 0 20px;
    text-align: left;
    min-width: 130px;
}

.peak99-pricing-table tbody td:last-child {
    border-radius: 0 20px 20px 0;
}

.peak99-pricing-table td[data-label="Register"],
.peak99-pricing-table td[data-label="Transfer"] {
    color: #102d45;
    font-weight: 800;
}

.peak99-pricing-table td[data-label="Terms"] {
    color: #597087;
    font-weight: 700;
}

.search-domain-con .wow,
.search-domain-con .wow * {
    visibility: visible !important;
}

.peak99-table-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    background: #00c8ff;
    color: #071521;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}

.peak99-table-search-btn:hover {
    background: #0dd3ff;
    transform: translateY(-1px);
}

/* -- Success Page -- */

.peak99-success-hero .sub-banner-inner-con {
    max-width: 800px;
}

.peak99-success-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.peak99-success-card {
    text-align: center;
    padding: 48px 36px;
}

.peak99-success-icon {
    margin-bottom: 20px;
}

.peak99-success-icon i {
    font-size: 64px;
    color: #1a8b52;
}

.peak99-success-card h2 {
    font-size: 32px;
    margin: 14px 0 0;
    color: #13283d;
}

.peak99-success-subtitle {
    margin: 14px 0 0;
    color: #617487;
    font-size: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.peak99-success-details {
    margin: 30px auto 0;
    max-width: 360px;
    background: #f3fbff;
    border-radius: 20px;
    padding: 20px 24px;
    border: 1px solid rgba(0, 200, 255, 0.12);
}

.peak99-success-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #27465e;
}

.peak99-success-detail-row + .peak99-success-detail-row {
    border-top: 1px solid rgba(19, 40, 61, 0.08);
}

.peak99-success-detail-row strong {
    color: #13283d;
    font-size: 18px;
}

.peak99-success-actions {
    display: grid;
    gap: 12px;
    max-width: 320px;
    margin: 30px auto 0;
}

.peak99-success-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(19, 40, 61, 0.08);
}

/* -- Mobile overrides for domain search -- */

@media (max-width: 767px) {
    .peak99-pricing-table {
        display: block;
        border-spacing: 0;
    }

    .peak99-pricing-table thead {
        display: none;
    }

    .peak99-pricing-table tbody,
    .peak99-pricing-table tr,
    .peak99-pricing-table td {
        display: block;
        width: 100%;
    }

    .peak99-pricing-table tbody tr {
        margin-bottom: 14px;
    }

    .peak99-pricing-table tbody td {
        padding: 10px 14px 10px 122px;
        position: relative;
        text-align: left;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid rgba(15, 35, 58, 0.08);
    }

    .peak99-pricing-table tbody td:first-child {
        border-radius: 18px 18px 0 0;
        padding-top: 14px;
    }

    .peak99-pricing-table tbody td:last-child {
        border-radius: 0 0 18px 18px;
        border-bottom: 0;
        padding-bottom: 14px;
    }

    .peak99-pricing-table tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 14px;
        top: 10px;
        width: 92px;
        color: #6f8396;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .peak99-domain-result-card {
        grid-template-columns: 1fr;
        padding: 16px 18px;
    }

    .peak99-domain-result-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .peak99-domain-result-pricing {
        gap: 10px;
    }

    .peak99-domain-result-action {
        width: 100%;
    }

    .peak99-domain-add-btn,
    .peak99-domain-in-cart,
    .peak99-domain-taken-badge {
        width: 100%;
        justify-content: center;
    }

    .peak99-results-header h2 {
        font-size: 20px;
    }

    .peak99-tld-quick-row {
        gap: 8px;
    }

    .peak99-trust-row {
        gap: 14px;
        flex-direction: column;
        align-items: center;
    }

    .peak99-table-search-btn {
        width: 100%;
        min-height: 42px;
    }

    .peak99-success-card {
        padding: 32px 20px;
    }

    .peak99-success-card h2 {
        font-size: 26px;
    }

    .peak99-success-trust {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}
