 
  :root {
            --pink: #5d1c71;
            --pink2: #d6588c;
            --gray: #8b8b8b;
            --soft: #f7ebff;
            --card: #ffffff;
            --shadow: 0 10px 28px rgba(0, 0, 0, .10);
            --radius: 22px;

             --primary: #d85a91;
            --primary-dark: #7e1f62;
            --primary-soft: #f7e9f0;
            --page-bg: #f4f4f4;
            --card-bg: #f7f3f8;
            --border: #e6d8e2;
            --text: #222;
            --muted: #777;
            --white: #fff;
            --success: #77c300;
            --shadow: 0 8px 24px rgba(115, 55, 90, 0.10);
            --radius-xl: 28px;
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-pill: 999px;
        }
    
     
     /* Hero Section with Background */
        .detail-hero-section {
            position: relative;
            min-height: 300px;
            background: url(../image/bg-main.png) center/center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 3rem 1rem;
        }

        .detail-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgb(236 143 185 / 6%) 0%, rgba(255, 192, 203, 0.3) 100%);
        }

        .detail-hero-content {
            position: relative;
            z-index: 2;
        }

        .detail-hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #E91E8C;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
        }

        .detail-hero-subtitle {
            font-size: 1.2rem;
            color: #555;
            font-weight: 500;
        }

        /* Main Content Container */
        .detail-main-wrapper {
            background: linear-gradient(180deg, rgba(236, 143, 185, 0.15) 0%, rgba(255, 255, 255, 1) 50%);
            padding: 3rem 0 0rem 0;
            min-height: 600px;
        }

        /* Card Container */
        .detail-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin-top: -95px;
            margin-left: auto;
            margin-right: auto;
            max-width: 1400px;
            position: relative;
            z-index: 10;
        }

        .api-form .detail-card {
    margin-top: 0px;
}

        /* Back Button */
        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.5rem;
            background: #7C7C7C;
            color: white;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            /* margin-bottom: 1rem; */
            margin: 6px;
            font-size: 0.95rem;
        }

        .btn-back:hover {
            background: #5C5C5C;
            transform: translateX(-3px);
            color: white;
            text-decoration: none;
        }

        .btn-back i {
            font-size: 0.9rem;
        }

        /* Two Column Layout */
        .detail-content-wrapper {
            display: flex;
            gap: 2.5rem;
            margin-top: 1.5rem;
            align-items: flex-start;
        }

        .detail-left-column {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .detail-right-column {
            flex: 1;
            min-width: 0;
        }

        /* Image Container */
        .detail-image-box {
            width: 100%;
            max-width: 450px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .detail-image-box img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Content Area */
        .detail-content-area {
            color: #333;
        }

        .event-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .event-description {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #555;
        }

        .event-description p {
            margin-bottom: 1rem;
        }

        /* Track List */
        .event-tracks {
            margin-top: 1.5rem;
        }

        .event-tracks h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.8rem;
        }

        .track-list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .track-list li {
            padding: 0.3rem 0 0.3rem 1.2rem;
            position: relative;
            color: #555;
        }

        .track-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #E91E8C;
            font-weight: bold;
            font-size: 1.2rem;
            line-height: 1.4;
        }

        /* Bottom Action Button - Full Width Gray Gradient Block */
        .detail-action-bottom {
            margin: 2.5rem -2.5rem -2.5rem -2.5rem;
            padding: 2.5rem;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            border-radius: 20px 20px 20px 20px;
            text-align: center;
        }

        .detail-action-bottom-padding {
            padding: 1.5rem;
        }

        .btn-payment {
            padding: 0.9rem 3.5rem;
            background: linear-gradient(90deg, #df5c8e 0%, #53186e 100%);
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(233, 30, 140, 0.35);
        }

        .btn-payment:hover {
            background: linear-gradient(90deg, #df5c8e 0%, #53186e 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(233, 30, 140, 0.45);
            color: white;
        }

           /* ===== Background wrapper ===== */
        .wizard-hero {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 35px;
            background: url(../image/bg-main.png) center / cover no-repeat;
            padding: 28px 0 68px;
            height: 120%;
        }

        .summary-hero {
            margin-top: 14px;
        }

        .wizard-hero:before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(1200px 600px at 50% 20%, rgba(255, 255, 255, .70), rgba(236, 143, 185, .10));
        }

        .wizard-wrap {
            position: relative;
            z-index: 2;
            padding: 10px 0 40px;
        }

         /* Card Container */
        .wizard-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            font-size: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin-top: -106px;
            margin-left: auto;
            margin-right: auto;
            max-width: 1400px;
            position: relative;
            z-index: 10;
        }

        .wizard-card .bootstrap-select .dropdown-toggle:focus, 
.wizard-card .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    /* outline: none; */
    outline: none !important;
    outline-offset: -2px;
}


        .wizard-title {
            text-align: center;
            font-size: 34px;
            font-weight: 900;
            margin: 16px 0 18px;
        }

        /* ===== Stepper ===== */
        .stepper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            background: rgba(255, 255, 255, .55);
            padding: 10px;
            border-radius: 18px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
            overflow: auto;
            white-space: nowrap;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 14px;
            background: #b7b7b7;
            color: #fff;
            font-weight: 800;
            font-size: 23px;
            cursor: pointer;
            user-select: none;
            transition: .2s;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
        }

        .step-item:hover {
            filter: brightness(.98);
        }

        .step-item .no {
            width: 41px;
            height: 41px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .75);
            color: #555;
            display: grid;
            place-items: center;
            font-weight: 900;
            font-size: 30px;
        }

        .no.active {
            background: rgba(177, 63, 63, 0.75);
        }

        .step-item.active {
           background: rgb(249 237 242);
    color: #a3013e;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
    outline: 1px solid rgba(233, 30, 140, .45);
    font-size: 23px;
        }

        .step-caption {
           margin: 21px 6px 21px;
    font-size: 25px;
            color: #333;
        }

        .step-caption b {
            font-weight: 900;
            font-family: 'CHULALONGKORN';
        }

        /* ===== Form UI ===== */
        .pill {
            border-radius: 999px !important;
        }

        .form-control,
        .form-select {
            border-radius: 999px;
            padding: 12px 16px;
        }

        .form-label {
            font-weight: 800;
            color: #333;
            margin-bottom: 6px;
        }

        .hint {
         font-size: 21px;
    color: #F44336;
        }

        .card-alert-small{
            border: 1px solid;
    border-radius: 10px;
    padding: 10px;
        }

        .panel {
            background: #FFFFFF;
            background: linear-gradient(90deg, rgba(255, 255, 255, 1) 14%, rgb(255 246 250) 91%);
            border: 1px solid rgba(0, 0, 0, .06);
            border-radius: 18px;
            padding: 16px;
        }

        .project-box {
            display: grid;
            grid-template-columns: 762px 1fr;
            gap: 18px;
            align-items: center;
        }

        .project-logo {
            width: 120px;
            height: 120px;
            border-radius: 20px;
            background: rgba(236, 143, 185, .10);
            display: grid;
            place-items: center;
            margin-left: 10px;
        }

        .project-logo img {
            width: 80px;
            height: auto;
            opacity: .95;
        }

        .project-text {
            color: #444;
            font-weight: 700;
            line-height: 1.6;
        }

        .money-row {
            display: grid;
            grid-template-columns: 1fr 220px;
            gap: 12px;
        }

        .amount-readonly {
            background: #d9d9d9;
            border: 0;
            color: #222;
            font-weight: 900;
            text-align: right;
            padding-right: 16px;
        }

        .total-pill {
            margin-top: 12px;
            background: rgba(255, 255, 255, .95);
            border: 1px solid rgba(233, 30, 140, .55);
            border-radius: 999px;
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 900;
            color: var(--pink);
        }

        /* ===== Step 2 cards ===== */
         .two-cards {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 18px;
        }

        .card-head {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--pink);
            font-weight: 900;
            margin-bottom: 10px;
        }

        .card-head:before {
            content: "";
            width: 6px;
            height: 18px;
            border-radius: 99px;
            background: #4b0c63;
        }

        .divider-dots {
            border-top: 1px dashed rgba(233, 30, 140, .45);
            margin: 10px 0 14px;
        }

        .index-pill {
            width: 34px;
            height: 34px;
            position: relative;
    top: 19px;
            border-radius: 999px;
            background: rgba(236, 143, 185, .22);
            color: var(--pink);
            display: grid;
            place-items: center;
            font-weight: 900;
            border: 1px solid rgba(233, 30, 140, .25);
        }

      /* ===== Step 3 payment methods ===== */
        .pay-box {
            background: rgba(255, 255, 255, .86);
            border: 1px solid rgba(233, 30, 140, .18);
            border-radius: 14px;
            padding: 14px 16px;
        }

        .radio-row {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .radio-row input {
            margin-top: 4px;
        }

        .radio-title {
            font-weight: 900;
            color: #333;
        }

        .radio-sub {
            font-size: 12px;
            color: #777;
            margin-top: 2px;
        }

        /* ===== Bottom bar inside card ===== */
        .bottom-bar {
            margin-top: 18px;
            background: linear-gradient(90deg, #f3f3f3, #e8e8e8);
            border-radius: 18px;
            padding: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .step-mini {
            font-size: 12px;
            color: #666;
        }

        .btn-soft {
            border: 0;
            padding: 10px 22px;
            border-radius: 999px;
            font-weight: 900;
            background: #9b9b9b;
            color: #fff;
        }

        .btn-soft:hover {
            filter: brightness(.98);
        }

        .btn-next {
            border: 0;
            padding: 10px 26px;
            border-radius: 999px;
            font-weight: 900;
            background: linear-gradient(90deg, var(--pink2), var(--pink));
            color: #fff;
            box-shadow: 0 10px 22px rgba(233, 30, 140, .25);
        }

       .actions a:hover {
    color: #ffffff !important;
}

        .btn-next:hover {
            filter: brightness(.98);
        }
        /* ===== Summary card (เหมือนภาพสุดท้าย) ===== */
        .summary-center {
            display: flex;
            justify-content: center;
        }

        .summary-card {
            width: 500px;
            background: rgba(255, 255, 255, .92);
            border-radius: 18px;
            border: 1px solid rgba(0, 0, 0, .06);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .summary-card .head {
            padding: 16px 16px 10px;
            text-align: center;
            font-weight: bold;
            color: var(--pink);
            letter-spacing: .5px;
            border-bottom: 1px dashed;
            font-family: 'CHULALONGKORN';
        }

        .summary-card .body {
            padding: 10px 18px 16px;
            font-size: 13px;
            color: #444;
        }

        .summary-lines {
            margin-top: 10px;
            border-top: 1px solid rgba(233, 30, 140, .35);
            padding-top: 10px;
        }

        .sum-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(233, 30, 140, .12);
            font-weight: 800;
            font-size: 20px;
        }

        .sum-row:last-child {
            border-bottom: 0;
            background: #fff2fb;
            margin-top: 11px;
            padding: 15px 11px;
            border-radius: 20px;
        }

        .sum-note {
            margin-top: 10px;
            font-size: 15px;
            color: var(--pink);
            text-align: center;
            line-height: 1.5;
        }

        .summary-card .foot {
            background: linear-gradient(90deg, #f3f3f3, #e8e8e8);
            padding: 18px;
            display: flex;
            justify-content: center;
        }

        .btn-pay {
            border: 0;
            padding: 12px 32px;
            border-radius: 999px;
            font-weight: 900;
            background: linear-gradient(90deg, var(--pink2), var(--pink));
            color: #fff;
            box-shadow: 0 10px 22px rgba(233, 30, 140, .28);
        }

        .btn-pay:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 16px rgba(163, 0, 62, 0.4);
    color: #fff;
}

        /* ===== Pane visibility ===== */
        .step-pane {
            display: none;
        }

        .step-pane.active {
            display: block;
        }

         /* ทำให้คลิกได้ทั้งการ์ด + มีไฮไลท์ตอนเลือก */
        .pay-box.js-paycard {
            cursor: pointer;
            transition: .15s ease;
            border: 1px solid rgba(93, 28, 113, .18);
        }

        .pay-box.js-paycard:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 18px rgba(0, 0, 0, .08);
        }

        /* ตอนถูกเลือก */
        .pay-box.is-active {
            border-color: rgba(93, 28, 113, .55);
            box-shadow: 0 12px 22px rgba(93, 28, 113, .12);
            background: rgba(247, 235, 255, .55);
        }

          /* ทำให้คลิกได้ทั้งการ์ด + มีไฮไลท์ตอนเลือก */
        .pay-box.js-paycard {
            cursor: pointer;
            transition: .15s ease;
            border: 1px solid rgba(93, 28, 113, .18);
        }

        .pay-box.js-paycard:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 18px rgba(0, 0, 0, .08);
        }

        /* ตอนถูกเลือก */
        .pay-box.is-active {
            border-color: rgba(93, 28, 113, .55);
            box-shadow: 0 12px 22px rgba(93, 28, 113, .12);
            background: rgba(247, 235, 255, .55);
        }

        
 /* API Form */
        .breadcrumb-mini {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            padding: 14px 4px 10px;
        }


        .inline-row {
            display: flex;
            gap: 10px;
        }

        .inline-row .grow {
            flex: 1;
        }

        .btn-mini-add {
            min-width: 92px;
            height: 40px;
            border: 0;
            border-radius: 999px;
            background: linear-gradient(180deg, #92307a 0%, #73185e 100%);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
        }

        .ip-list {
            margin-top: 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            /* padding: 11px;
                                                                                                                                                        border: 1px solid #D2789F;
                                                                                                                                                        border-radius: 10px;
                                                                                                                                                        background: #ffffff; */
        }

        .ip-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 12px;
            border-radius: 999px;
            background: #f8edf3;
            border: 1px solid #eac9d8;
            font-size: 18px;
        }

        .ip-tag button {
            border: 1px solid;
            border-radius: 12px;
            background: #ff0000;
            color: #ffffff;
            font-weight: 700;
            line-height: 1;
            cursor: pointer;
        }

        .upload-box {
            border: 1px dashed #efc6d7;
            border-radius: 16px;
            background: linear-gradient(180deg, #fff8fb 0%, #fff 100%);
            padding: 28px 18px;
            text-align: center;
        }

        .upload-icon {
            font-size: 48px;
            line-height: 1;
            color: #d85a91;
            margin-bottom: 8px;
        }

        .upload-text {
            color: #7f6a75;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .btn-upload {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #ebb4ca;
            border-radius: 999px;
            background: #fff;
            color: #c73d7c;
            font-size: 18px;
            font-weight: 700;
            padding: 9px 16px;
            cursor: pointer;
            transition: .2s ease;
        }

        .btn-upload:hover {
            background: #fff3f8;
            border-color: #de8fb1;
        }

        .uploaded-file {
            margin-top: 14px;
           font-size: 18px;
            color: #6a5d65;
            font-weight: 600;
        }

        .uploaded-file-list {
            margin-top: 14px;
            display: grid;
            gap: 10px;
            text-align: left;
        }

        .uploaded-file-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 14px;
            border-radius: 14px;
            border: 1px solid #edd7e2;
            background: #fff;
            box-shadow: 0 4px 10px rgba(116, 52, 89, 0.05);
        }

        .uploaded-file-left {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
            flex: 1;
        }

        .uploaded-file-fileicon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: #f9edf3;
            color: #c73d7c;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 16px;
        }

        .uploaded-file-meta {
            min-width: 0;
            flex: 1;
        }

        .uploaded-file-name {
            font-size: 18px;
            font-weight: 700;
            color: #362a31;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .uploaded-file-size {
            font-size: 14px;
            color: #8a7c84;
            margin-top: 2px;
        }

        .uploaded-file-remove {
            border: 0;
            background: #fff1f6;
            color: #c73d7c;
            width: 34px;
            height: 34px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: .2s ease;
            cursor: pointer;
        }

        .uploaded-file-remove:hover {
            background: #ffdce9;
        }

        .upload-empty-note {
           font-size: 16px;
            color: #9a8d95;
            margin-top: 6px;
        }
        .bottom-action-wrap {
            background: #e7e7e7;
            border-radius: 16px;
            padding: 12px;
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }






        /* modal preview */
        .preview-overlay {
            position: fixed;
            inset: 0;
            background: rgba(35, 20, 31, 0.45);
            backdrop-filter: blur(4px);
            z-index: 9998;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .preview-overlay.show {
            display: flex;
        }

        .preview-modal {
            width: 100%;
            max-width: 560px;
            background: #f8f7f8;
            border: 1px solid #cfc2cb;
            border-radius: 18px;
            box-shadow: 0 14px 34px rgba(75, 28, 59, 0.25);
            overflow: hidden;
        }

        .preview-header {
            position: relative;
            padding: 14px 48px 10px;
            text-align: center;
            color: #b10f54;
            font-size: 20px;
            font-weight: 800;
        }

        .preview-close {
            position: absolute;
            right: 14px;
            top: 10px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid #d9c9d2;
            background: #fff;
            color: #777;
            cursor: pointer;
            font-size: 16px;
            line-height: 1;
        }

        .preview-body {
            padding: 0 16px 18px;
        }

        .preview-section {
            background: #fff;
            border: 1px solid #d8ced5;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .preview-section-title {
            background: #7f1e67;
            color: #fff;
            padding: 8px 10px;
            font-size: 18px;
            font-weight: 700;
        }

        .preview-section-content {
            padding: 10px;
            font-size: 18px;
            color: #333;
            line-height: 1.7;
        }

        .preview-grid {
            display: grid;
            /* grid-template-columns: 110px 1fr; */
            grid-template-columns: 152px 1fr;
            gap: 4px 10px;
        }

        .preview-label {
            font-weight: 700;
            font-size: 18px;
            color: #5b5258;
        }

        .preview-actions {
            background: #ececec;
            border-radius: 999px;
            padding: 10px;
            text-align: center;
            margin-top: 8px;
        }



        .success-toast {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 16px;
            background: rgba(40, 25, 35, 0.35);
            backdrop-filter: blur(3px);
        }

        .success-toast.show {
            display: flex;
        }

        .success-card {
            width: 100%;
            max-width: 420px;
            background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
            border: 1px solid #ddd6dd;
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(80, 40, 65, 0.20);
            padding: 24px 22px 20px;
            text-align: center;
        }

        .success-icon {
            width: 88px;
            height: 88px;
            margin: 0 auto 14px;
            border-radius: 50%;
            /* background: var(--success); */
            color: var(--success);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 93px;
            font-weight: 800;
        }

        .success-title {
            color: #d52b68;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .success-subtitle {
            color: #666;
            font-size: 18px;
            margin-bottom: 18px;
        }

        .success-info {
            text-align: left;
            border-top: 1px solid #ece3e9;
            border-bottom: 1px solid #ece3e9;
            padding: 10px 0;
            margin-bottom: 18px;
        }

        .success-row {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            padding: 7px 0;
        }

        .success-row .label {
            color: #ba2c67;
            font-weight: 700;
            font-size: 20px;
        }

        .success-row .value {
            color: #333;
            font-size: 20px;
        }



        /* Responsive Design */
  @media (max-width: 992px) {
            .wizard-title {
                font-size: 26px;
            }

            .project-box {
                grid-template-columns: 1fr;
            }

            .money-row {
                grid-template-columns: 1fr;
            }

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

            .summary-card {
                width: 100%;
                max-width: 520px;
            }
        }


        @media (max-width: 991px) {
            .detail-content-wrapper {
                flex-direction: column;
            }

            .detail-left-column {
                flex: 1;
                max-width: 500px;
                margin: 0 auto;
            }

            .detail-right-column {
                flex: 1;
            }

            .detail-hero-title {
                font-size: 2rem;
            }

            .detail-card {
                padding: 2rem;
            }

            .detail-action-bottom {
                margin: 2rem -2rem -2rem -2rem;
                padding: 2rem;
            }

        }


        @media (max-width: 767.98px) {
            .inline-row {
                flex-direction: column;
                align-items: stretch;
            }

            .uploaded-file-item {
                align-items: flex-start;
            }

            .uploaded-file-name {
                white-space: normal;
                overflow: visible;
            }

            .preview-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .detail-hero-section {
                min-height: 250px;
                padding: 2rem 1rem;
            }

            .detail-hero-title {
                font-size: 1.75rem;
            }

            .detail-hero-subtitle {
                font-size: 1rem;
            }

            .detail-card {
                padding: 1.5rem;
                /* margin-top: -50px; */
            }

            .detail-content-wrapper {
                gap: 1.5rem;
            }

            .event-title {
                font-size: 1.2rem;
            }

            .btn-payment {
                padding: 0.8rem 2.5rem;
                font-size: 1rem;
            }

            .detail-action-bottom {
                margin: 2rem -1.5rem -1.5rem -1.5rem;
                padding: 1.5rem;
            }

             .step-item {
                margin: 5px 0px;
                padding: 12px 12px;
                font-size: 13px;
            }

            .wizard-card {
                padding: 14px;
            }

            .bottom-bar {
                flex-direction: column;
                align-items: stretch;
            }

            .bottom-bar .actions {
                display: flex;
                gap: 10px;
                justify-content: flex-end;
            }

            .project-logo {
    width: auto;
    margin-left: 0px;
}

.stepper {
    display: contents;
}
        }
    