        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        
        body {
            background-color: #FFF;
            font-family: Tahoma,Verdana;
            color: #1F2937;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px;
        }
        
        
        .container {
            width: 100%;
            max-width: 480px;
            background-color: white;
            border-radius: 6px;
            overflow: hidden;
        }
        
        
        .header {
            position: relative;
            padding: 24px;
            border-bottom: 1px solid #F3F4F6;
        }
        
        .header h2 {
            font-size: 18px;
            font-weight: 600;
            text-align: center;
        }
        
        .close-btn {
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            color: #9CA3AF;
            cursor: pointer;
            transition: color 0.2s;
        }
        
        .close-btn:hover {
            color: #4B5563;
        }
        
        
        .amount-section {
            padding: 10px;
            
        }
        
        .grid-cols-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        
        
        .amount-card {
            background-color: #FFF;
            border-radius: 6px;
            padding: 8px 12px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid #eaeaea;
            transition: all 0.3s;
            text-align: center;
        }
        
        .amount-card:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

        }
        
        .amount-card.selected {
            border: 1px solid rgb(60, 116, 254);
            background-color: rgb(235, 247, 255);
        }
        
        
        .tag {
            position: absolute;
            top: 0px;
            right: 0px;
            font-size: 12px;
            padding: 1px 3px;
            border-radius: 3px;
            font-weight: 500;
        }
        
        
        .tag-1 { 
            color: #165DFF;
            background-color: #E8F3FF;
        }
        
        .tag-2 { 
            color: #FF7D00;
            background-color: #FFF4E8;
        }
        
        .tag-3 { 
            color: #00C48C;
            background-color: #E6FFFA;
        }
        
        .tag-4 { 
            color: #722ED1;
            background-color: #F9F0FF;
        }
        
        .tag-5 { 
            color: #FF4D4F;
            background-color: #FFF2F0;
        }
        
        .tag-6 { 
            color: #E64398;
            background-color: #FFE8F4;
        }
        
        
        .amount {
            font-size: 18px;
            font-weight: 600;
            color: #3c74fe;
            margin-bottom: 2px;
        }
        
        .amount-discount {
            font-size: 12px;
            color: #999;
            margin-bottom: 4px;
        }
        
        .amount-section strong {
            font-weight: 600;
            color: red;
        }
        .amount-desc {
            font-size: 12px;
            color: #9CA3AF;
            line-height: 1.2;
        }
        
        
        .payment-section {
            padding: 0 24px 12px;
        }
        
        .payment-title {
            font-size: 14px;
            font-weight: 500;
            color: #4B5563;
            margin: 12px 0 8px;
        }
        
        
        .payment-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px;
            border-radius: 6px;
            border: 1px solid #E5E7EB;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
			overflow:hidden;
        }
        
        .payment-card:hover {
            border-color: rgba(22, 93, 255, 0.3);
        }
        
        .payment-card.selected {
            border-width: 1px;
        }
        
        .payment-card.wechat-selected {
            border-color: #07C160;
            background-color: #E6F7EF;
        }
        
        .payment-card.alipay-selected {
            border-color: #165DFF;
            background-color: #E8F3FF;
        }
        
        .payment-icon-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .payment-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
        
        .alipay-icon {
            background-color: rgba(22, 119, 255, 0.1);
            color: #1677FF;
        }
        
        .wechat-icon {
            background-color: rgba(7, 193, 96, 0.1);
            color: #07C160;
        }
        
        .payment-name {
            font-weight: 500;
        }
        
        
        .checkmark-corner {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 25px;
            height: 20px;
            opacity: 0;
            transition: all 0.3s;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            background-color: #165DFF;
        }
        
        .wechat-selected .checkmark-corner.show {
            background-color: #07C160;
        }
        
        .checkmark-corner::after {
             font-family: 'FontAwesome' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00c"; 
 
            position: absolute;
            bottom: 2px;
            right: 3px;
            color: white;
            font-size: 10px;
            font-weight: bold;
        }
        
        .checkmark-corner.show {
            opacity: 1;
            transform: scale(1);
        }
        
        
        .btn-container {
            padding: 24px;
            border-top: 1px solid #F3F4F6;
        }
        
        
        .confirm-btn {
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            font-weight: 500;
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: opacity 0.2s, transform 0.1s;
            font-size: 20px;
            
        }
        
        .confirm-btn:hover {
            opacity: 0.95;
        }
        
        .confirm-btn:active {
            transform: scale(0.98);
        }
        
        .wechat-btn {
            background: linear-gradient(to right, #07C160, #10B981);
            box-shadow: 0 10px 15px -3px rgba(7, 193, 96, 0.2);
        }
        
        .alipay-btn {
            background: linear-gradient(to right, #165DFF, #2563EB);
            box-shadow: 0 10px 15px -3px rgba(22, 93, 255, 0.2);
        }
		
		@font-face {
  font-family: 'icomoon1';
  src:  url('../fonts/icomoon.eot?4sikyv');
  src:  url('../fonts/icomoon.eot?4sikyv#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?4sikyv') format('truetype'),
    url('../fonts/icomoon.woff?4sikyv') format('woff'),
    url('../fonts/icomoon.svg?4sikyv#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
		
		
        span.icon.icon-alipay {
            height: 25px;
        }
        
        .icon {
            font-family: "Arial Unicode MS", sans-serif;
        }
        
        .icon-close::before {
            content: "กม";
            font-size: 18px;
        }
        
.icon-alipay::before {
font-family: 'icomoon1' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";  
         font-size: 25px;
        }

		
        .icon-wechat::before {
            font-family: 'FontAwesome' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f1d7"; 
  font-size: 25px;
        }