/* power by xkao */
.shops {
    padding: 20px;
    border-radius: 1vh;
}

.shops-body {
    position: relative;
    color: #fff;
    font-weight: 600;
    height: 100%;
}

.img-anim {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 1vh;
}

.img-anim img {
    width: 100%;
    height: auto;
    margin-left: auto;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

.img-anim > div.bg {
    position: absolute;
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 1, 1, 0.3);
    transition: all 0.3s ease;
}

.img-anim > div.text {
    position: absolute;
    z-index: 3;
    top: 120%;
    left: 50%;
    opacity: 0;
    color: #fff;
    font-size: 20px;
    border-bottom: 1.5px solid transparent;
    border-image: linear-gradient(to right, var(--main), var(--main));
    border-image-slice: 1;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.content {
    height: auto;
    border: 1px solid rgba(0, 0, 0, .3);
    transition: all .5s ease;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.shops-body > .shops-img {
    width: 100%;
    height: 100%;
    border-radius: 1vh;
    transition: all .5s ease;
}

.shops-body > .shops-img:hover {
    transform: scale(1.035);
}

.shops-body > .shops-text-center {
    position: absolute;
    top: 80%;
    left: 20%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .5s ease;
}

.shops-body:hover > .shops-text-center {
    left: 50%;
    opacity: 1;
    font-size: 20px;
    padding: 0 20px;
    border-radius: 2vh;
}

.img-anim:hover > img {
    transform: scale(1.1);
}

.img-anim:hover > div {
    opacity: 1;
}

.img-anim:hover > div.text {
    top: 80%;
    opacity: 1;
}

.btn-main {
    color: var(--main);
    background: var(--main-30);
    border: 1px solid var(--main);
    transition: all .5s ease;
}

.btn-main.active {
    color: white;
    background-color: var(--main);
    border: 1px solid var(--main);
}

.btn-main.active i {
    color: white !important;
}

.btn-main:hover {
    color: white;
    background-color: var(--main);
    border: 1px solid var(--main);
}

@media only screen and (max-width: 500px) {
    .pd-sm-font {
        font-size: 13px !important;
    }
    .pd-h-font {
        font-size: 16px;
    }
}

@media screen and (min-width: 48em) {
    .css-numc {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .css-card {
        padding: 1rem;
        min-height: 7rem;
    }

    .css-iconc {
        right: 0.5rem;
    }
}

.css-textc {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--font);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.css-numc {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    color: var(--main);
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.css-5rec9s {
    font-size: 0.85rem;
    opacity: 0.6;
    font-weight: 500;
}

.css-card {
    padding: 0.75rem;
    border-radius: 1rem;
    min-height: 6.5rem;
    color: var(--font);
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: linear-gradient(135deg, #ffffff 0%, rgba(var(--main-rgb), 0.02) 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), inset 0 0 15px rgba(0,0,0,0.01);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Dark mode support for css-card background */
.bg-black .css-card, .bg-darks .css-card {
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(var(--main-rgb), 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(255,255,255,0.02);
}

.css-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--main), var(--sub));
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Decorative background pattern */
.css-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--main);
    border-radius: 50%;
    opacity: 0.03;
    filter: blur(40px);
    transition: all 0.5s ease;
}

.css-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), inset 0 0 25px rgba(var(--main-rgb), 0.05);
    border-color: rgba(var(--main-rgb), 0.1);
}

.css-card:hover::before {
    width: 8px;
    opacity: 1;
}

.css-card:hover::after {
    opacity: 0.1;
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
}

.css-iconc {
    position: absolute;
    bottom: 1.5rem;
    right: 1rem;
    opacity: 0.1;
    color: var(--main);
    top: 24px;
    left: 65%;
    transition: all 0.4s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css-card:hover .css-iconc {
    opacity: 0.25;
    transform: scale(1.1) rotate(-5deg);
}

div .banner-show {
    border-radius: 0.75rem;
    position: relative;
    width: 100%;
    height: 100%;
}

.font-medium{font-weight:500}
.hover-main{color:#6b7280!important;border-radius:1vh;background-color:transparent;border:none}
.hover-main{transition:0.5s!important}
.hover-main.fa-regular{color:inherit!important}
.hover-main.active{background-color:transparent;color:var(--main)!important}
.hover-main.active .fa-regular{color:var(--main)!important}
.hover-main:hover{background-color:transparent;color:var(--main)!important;border-radius:1vh}
.icon-white{transition:0.5s!important}
.hover-main .icon-white{color:inherit!important}
.memu-main{color:#6b7280!important;border-radius:1vh;border:1px solid transparent;background-color:transparent}
.memu-main{transition:0.5s!important}
.memu-main.fa-regular{color:inherit!important}
.memu-main.active{background-color:transparent;color:var(--main)!important}
.memu-main.active .fa-regular{color:var(--main)!important}
.memu-main:hover{background-color:transparent;color:var(--main)!important;border-radius:1vh}
.memu-main .icon-white{color:inherit!important}

.input{display:flex;flex-direction:column;width:200px;justify-content:center;border-radius:10px;transition:1s;padding:10px;overflow:hidden}
.value{font-size:15px;background-color:transparent;border:none;padding:10px;color:var(--main);display:flex;position:relative;gap:5px;cursor:pointer;border-radius:10px;transition:1s;box-sizing:border-box}
.value:not(:active):hover,.value:focus{display:flex;box-sizing:border-box;border:0;border-color:transparent;color:var(--main);background-color:transparent}
.value:focus,.value:active{background-color:var(--main);color:#fff;outline:none;margin-left:17px;border:0}
.value::before{content:"";position:absolute;top:5px;left:-15px;width:5px;height:80%;background-color:#2f81f7;border-radius:5px;opacity:0;transition:1s}
.value:focus::before,.value:active::before{opacity:1}
.value svg{width:20px}
.input:hover>:not(.value:hover){transition:300ms;filter:blur(1.5px);transform:scale(0.95,0.95)}

/* Remove default border of dropdown menus to avoid white frame */
.dropdown-menu{border:none!important}

.offcanvas-section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.85rem;
  color:#9ca3af;
}
.offcanvas-section-title::before,
.offcanvas-section-title::after{
  content:"";
  flex:1 1 auto;
  height:1px;
  background-color:#e5e7eb;
}
.offcanvas-section-title::before{margin-right:0.5rem;}
.offcanvas-section-title::after{margin-left:0.5rem;}

@media (max-width: 991.98px) {
  #navbarDropdownMobile + .dropdown-menu {
    left: auto !important;
    right: 0.5rem !important;
    transform: none !important;
    max-width: calc(100vw - 1rem);
  }

  /* Make mobile offcanvas menu narrower (not full screen) */
  #offcanvasRight {
    width: 65% !important;
    max-width: 65% !important;
  }
}

.product-item-sm {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-v1 {
    border-radius: 1.25rem;
    border: 1px solid var(--main);
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    position: relative;
    transition: all .25s ease;
}

.product-item-sm:hover .product-v1 {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.card-anim-main a,
.card-anim-main a:hover,
.card-anim-main h5,
.card-anim-main h5:hover {
    text-decoration: none;
}

.product-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Contact Page Styles */
.contact-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.bg-black .contact-card, .bg-darks .contact-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.05);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--main-rgb), 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--main);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    background: #f8fafc;
}

.bg-black .contact-icon-wrapper, .bg-darks .contact-icon-wrapper {
    background: #242424;
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    color: var(--font);
}

.contact-subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-btn {
    padding: 0.6rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    background: var(--main);
    color: #fff;
    width: 100%;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(var(--main-rgb), 0.2);
    color: #fff;
}

.contact-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.badge-fb { background: #e7f3ff; color: #1877f2; }
.badge-dc { background: #f0f1ff; color: #5865f2; }

.bg-black .badge-fb, .bg-darks .badge-fb { background: rgba(24, 119, 242, 0.1); }
.bg-black .badge-dc, .bg-darks .badge-dc { background: rgba(88, 101, 242, 0.1); }
    width: 185px;
    height: 185px;
    object-fit: contain;
    display: block;
    margin: 8px auto 0 auto;
    border-radius: 12px;
    background-color: #f3f4f6;
}

.product-v1::before,
.product-v1::after {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
}

.product-v1::before {
    content: none;
}

.product-v1::after {
    content: "ดูรายละเอียด" !important;
    position: absolute !important;
    top: 40% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 8px 24px !important;
    border-radius: 999px !important;
    background-color: var(--main) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 100 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.product-item-sm:hover .product-v1::after {
    opacity: 1 !important;
    visibility: visible !important;
    top: 50% !important;
}

.product-item-sm:hover .product-img {
    filter: blur(3px) brightness(0.8);
}

@media (max-width: 768px) {
    .product-v1::after {
        display: none !important;
    }
    .product-item-sm:hover .product-img {
        filter: none !important;
    }
}

.product-item-sm:hover .product-v1.out-of-stock .product-img {
    filter: grayscale(1) blur(3px);
}

.product-body {
    padding-top: 10px;
    padding-bottom: 10px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.product-price {
font-size: 14px;
font-weight: 700;
}

.product-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
font-weight: 600;
padding: 9px 14px;
border-radius: 12px;
border: none;
background-color: var(--main);
color: var(--font, #ffffff) !important;
box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
transition: all 0.2s ease;
}

.product-btn i {
color: inherit;
}

.product-btn:hover {
filter: brightness(1.05);
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.16);
transform: translateY(-1px);
}

.product-stock {
font-size: 12px;
background-color: #f3f4f6;
border-top: 1px solid rgba(15, 23, 42, 0.06);
padding: 4px 0 6px 0;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
color: #6b7280;
}

.product-stock i {
    color: #6b7280 !important;
}

.product-img.filters-out-stock {
filter: grayscale(1);
opacity: 0.85;
}

.product-v1.out-of-stock {
position: relative;
overflow: hidden;
background-color: #ffffff;
}

.product-v1.out-of-stock .product-body,
.product-v1.out-of-stock .product-stock {
position: relative;
z-index: 1;
}

.product-btn.out-of-stock-btn {
background-color: #ffe4ec;
background-color: color-mix(in srgb, var(--sec-color, #f97373) 18%, #ffffff 82%);
border: none;
color: var(--sec-color, #f97373) !important;
}

.product-btn.out-of-stock-btn span,
.product-btn.out-of-stock-btn i {
color: var(--sec-color, #f97373) !important;
}

.product-btn.out-of-stock-btn.disabled {
opacity: 1;
}

/* Unified Topup Menu Styles */
.topup-menu-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.bg-black .topup-menu-card, .bg-darks .topup-menu-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.05);
}

.topup-menu-card:hover {
    transform: translateX(8px);
    border-color: var(--main);
    box-shadow: 0 10px 25px rgba(var(--main-rgb), 0.1);
}

.topup-menu-card.active {
    background: linear-gradient(135deg, rgba(var(--main-rgb), 0.05) 0%, transparent 100%);
    border-color: var(--main);
    border-width: 2px;
}

.topup-menu-img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.topup-menu-card:hover .topup-menu-img {
    transform: scale(1.15) rotate(-5deg);
}

.topup-menu-info {
    text-align: right;
    z-index: 1;
}

.topup-menu-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    color: var(--font);
}

.topup-menu-subtitle {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Slip Page Modern Styles */
.bank-info-box {
    background: rgba(var(--main-rgb), 0.03);
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(var(--main-rgb), 0.1);
    margin-bottom: 1.5rem;
}

.bank-qr-preview {
    max-width: 250px;
    border-radius: 1.25rem;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 1.5rem auto;
    transition: transform 0.3s ease;
}

.bank-qr-preview:hover {
    transform: scale(1.03);
}

.slip-upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 1.25rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.01);
    position: relative;
}

.bg-black .slip-upload-zone, .bg-darks .slip-upload-zone {
    border-color: #334155;
    background: rgba(255, 255, 255, 0.01);
}

.slip-upload-zone:hover {
    border-color: var(--main);
    background: rgba(var(--main-rgb), 0.02);
}

.slip-upload-icon {
    font-size: 2.5rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.slip-upload-zone:hover .slip-upload-icon {
    color: var(--main);
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Redeem Page Styles */
.redeem-gift-wrapper {
    position: relative;
    padding: 2rem 0;
}

.redeem-gift-img {
    max-height: 220px;
    filter: drop-shadow(0 20px 40px rgba(var(--main-rgb), 0.25));
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.redeem-input-modern {
    background: rgba(var(--main-rgb), 0.05);
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.redeem-input-modern:focus {
    background: #fff;
    border-color: var(--main);
    box-shadow: 0 0 0 4px rgba(var(--main-rgb), 0.1);
    outline: none;
}

.bg-black .redeem-input-modern:focus, .bg-darks .redeem-input-modern:focus {
    background: #1a1a1a;
}

/* Angpao Page Styles - Enhanced V2 */
.angpao-cyber-container {
    background: linear-gradient(135deg, rgba(var(--main-rgb), 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--main-rgb), 0.1);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.bg-black .angpao-cyber-container {
    background: linear-gradient(135deg, rgba(var(--main-rgb), 0.1) 0%, rgba(30, 30, 30, 0.9) 100%);
    border-color: rgba(var(--main-rgb), 0.2);
}

.angpao-cyber-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--main-rgb), 0.05) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
    z-index: -1;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.angpao-floating-img {
    filter: drop-shadow(0 0 20px rgba(var(--main-rgb), 0.3));
    animation: floating-y 3s ease-in-out infinite;
    max-height: 280px;
}

.fee-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fee-badge.fee-on {
    background: #fff5f5;
    color: #e53e3e;
    border: 1px solid #feb2b2;
}

.fee-badge.fee-off {
    background: #f0fff4;
    color: #38a169;
    border: 1px solid #9ae6b4;
}

.bg-black .fee-badge.fee-on { background: #442727; color: #fc8181; border-color: #822727; }
.bg-black .fee-badge.fee-off { background: #1c3024; color: #68d391; border-color: #22543d; }

.angpao-input-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.angpao-input-modern {
    height: 70px;
    border-radius: 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    font-size: 1.25rem;
    padding: 0 2rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.bg-black .angpao-input-modern {
    background: #252525;
    border-color: #333;
    color: #fff;
}

.angpao-input-modern:focus {
    border-color: var(--main);
    box-shadow: 0 0 0 5px rgba(var(--main-rgb), 0.15), 0 10px 30px rgba(var(--main-rgb), 0.1);
    transform: translateY(-2px);
}

.angpao-btn-ultra {
    background: var(--main-gra);
    color: white;
    border: none;
    height: 70px;
    border-radius: 1.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(var(--main-rgb), 0.3);
}

.angpao-btn-ultra:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(var(--main-rgb), 0.4);
    color: white;
}

.angpao-btn-ultra::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
}

.angpao-btn-ultra:hover::after {
    left: 100%;
}

.angpao-step-box {
    background: rgba(var(--main-rgb), 0.03);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px dashed rgba(var(--main-rgb), 0.2);
}

.bg-black .angpao-step-box { background: rgba(255, 255, 255, 0.02); }

.angpao-step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.angpao-step-num {
    width: 24px;
    height: 24px;
    background: var(--main-gra);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}
