        :root {
            --pm: #047857;
            /* Emerald 700 */
            --pm-dark: #065f46;
            /* Emerald 700 */
            --pm-light: #f0fdf4;
            --text: #1a1a2e;
            --sub: #6b7280;
            --bg: #f8fafc;
            --card: #ffffff;
            --border: #e5e7eb;
            --red: #ef4444;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Hide ALL default WooCommerce / Theme UI */
        .woocommerce-breadcrumb,
        .woocommerce-notices-wrapper .woocommerce-info,
        .site-header,
        .site-footer,
        .app-header,
        #wpadminbar {
            display: none !important;
        }

        /* ANTI-FLASH: Hide WC default cart/checkout wrapper before JS renders our custom one */
        .woocommerce-cart-form,
        .woocommerce-checkout #payment,
        .wc-block-cart,
        .wc-block-checkout,
        .woocommerce-cart .cart-empty,
        table.cart,
        .cart_totals,
        .cross-sells {
            display: none !important;
        }

        body {
            background: var(--bg) !important;
            padding: 0 !important;
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
        }

        /* ===== SHARED PAGE WRAPPER ===== */
        .pm-page {
            max-width: 480px;
            margin: 0 auto;
            background: var(--bg);
            min-height: 100vh;
            padding-bottom: 200px;
            /* SPACE FOR FIXED BUTTON + BOTTOM NAV */
            position: relative;
        }

        /* ===== PAGE HEADER ===== */
        .pm-header {
            background: linear-gradient(160deg, #e8faf3 0%, #fff 60%);
            padding: 30px 20px 25px;
            text-align: center;
            border-bottom-left-radius: 32px;
            border-bottom-right-radius: 32px;
            margin-bottom: 20px;
        }

        .pm-header img {
            height: 40px;
            width: auto;
            margin-bottom: 10px;
        }

        .pm-header h1 {
            font-size: 22px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.3px;
        }

        /* ===== STEP INDICATOR ===== */
        .pm-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 0 20px 20px;
            font-size: 12px;
            font-weight: 700;
            color: var(--sub);
        }

        .pm-steps .step {
            color: var(--sub);
        }

        .pm-steps .step.active {
            color: var(--pm);
            font-weight: 800;
        }

        .pm-steps .arrow {
            color: #d1d5db;
            font-size: 10px;
        }

        /* ===== CARD ===== */
        .pm-card {
            background: #fff;
            border-radius: 24px;
            margin: 0 16px 20px;
            padding: 22px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.02);
            border: 1.5px solid rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
        }

        .pm-card::before {
            display: none;
        }

        .pm-card-title {
            font-size: 13px;
            font-weight: 800;
            color: var(--sub);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pm-card-title .edit-link {
            font-size: 12px;
            color: var(--pm);
            font-weight: 700;
            text-transform: none;
            letter-spacing: 0;
            cursor: pointer;
        }

        /* ===== CART ITEM REDESIGN (2 ROWS) ===== */
        :root {
            --pm: #128c7e;
            --pm-dark: #075e54;
            --pm-light: #25d366;
            --text: #1e293b;
            --sub: #64748b;
            --border: #f1f5f9;
        }

        .pm-page {
            max-width: 480px;
            margin: 0 auto;
            background: #fff;
            min-height: 100vh;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .pm-card {
            background: #fff;
            margin: 0 16px;
            border-radius: 20px;
            padding: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border);
        }

        .pm-cart-item {
            display: flex;
            flex-direction: column;
            padding: 16px 0;
            border-bottom: 1.5px dashed var(--border);
        }

        .pm-cart-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .pm-item-row-1 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            width: 100%;
            position: relative;
        }

        .pm-cart-img {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            overflow: hidden;
            background: #f1f5f9;
            flex-shrink: 0;
        }

        .pm-cart-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pm-item-price-qty {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .pm-cart-item .price {
            font-size: 15px;
            font-weight: 900;
            color: var(--pm);
            white-space: nowrap;
        }

        .pm-qty {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #f1f5f9;
            border-radius: 50px;
            padding: 5px 12px;
        }

        .pm-qty-btn {
            font-size: 14px;
            color: #128c7e !important;
            cursor: pointer;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            border-radius: 50%;
        }

        .pm-qty-btn:active {
            background: rgba(18, 140, 126, 0.1);
            transform: scale(0.9);
        }

        .pm-qty-val {
            font-size: 15px;
            font-weight: 950;
            color: #1e293b;
            min-width: 25px;
            text-align: center;
            font-family: 'Outfit';
        }

        .pm-remove {
            color: #ef4444 !important;
            font-size: 18px;
            width: 32px;
            height: 32px;
            background: #fef2f2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: 0.2s;
        }

        .pm-remove:active {
            transform: scale(0.9);
            background: #fee2e2;
        }

        .pm-item-row-2 {
            margin-top: 10px;
            width: 100%;
        }

        .pm-item-row-2 .pm-item-name {
            font-size: 13px;
            font-weight: 800;
            color: var(--text);
            line-height: 1.4;
            margin: 0;
        }

        /* ===== TOTALS ===== */
        .pm-totals {
            margin: 0 16px 16px;
        }

        .pm-total-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            font-size: 14px;
            font-weight: 600;
            color: var(--sub);
            border-bottom: 1px solid var(--border);
        }

        .pm-total-row:last-child {
            border-bottom: none;
        }

        .pm-total-row.main {
            font-size: 17px;
            font-weight: 900;
            color: var(--text);
            padding-top: 14px;
        }

        .pm-total-row .free {
            color: var(--pm);
            font-weight: 700;
        }

        /* ===== INPUTS ===== */
        .pm-field {
            margin-bottom: 15px;
        }

        .pm-field input,
        .pm-field textarea,
        .pm-field select {
            width: 100%;
            height: 52px;
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 14px;
            padding: 0 16px;
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
            outline: none;
            transition: all 0.3s ease;
            font-family: inherit;
            box-sizing: border-box;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.015);
        }

        .pm-field input:focus,
        .pm-field textarea:focus,
        .pm-field select:focus {
            border-color: var(--pm);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
        }

        .pm-field-row {
            display: flex;
            gap: 10px;
        }

        .pm-field-row .pm-field {
            flex: 1;
        }

        /* ===== TOGGLE EDIT ===== */
        .pm-address-view {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text);
            font-weight: 600;
        }

        .pm-edit-fields {
            display: none;
        }

        .pm-edit-fields.open {
            display: block;
        }

        /* ===== PAYMENT PILL ===== */
        .pm-pay-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--pm-light);
            border-radius: 14px;
            padding: 14px 16px;
            border: 1.5px solid rgba(16, 185, 129, 0.15);
        }

        .pm-pay-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 800;
            color: #065f46;
        }

        .pm-pay-label i {
            font-size: 18px;
            color: var(--pm);
        }

        .pm-pay-check {
            color: var(--pm);
            font-size: 20px;
        }

        /* ===== CHECKBOX ===== */
        .pm-check-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 14px;
            cursor: pointer;
        }

        .pm-check-row input {
            width: 18px;
            height: 18px;
            accent-color: var(--pm);
        }

        .pm-check-row span {
            font-size: 13px;
            font-weight: 700;
            color: var(--pm);
        }

        /* ===== FIXED BOTTOM BUTTON ===== */
        .pm-bottom {
            position: fixed;
            bottom: 85px;
            /* CLEAR THE NATIVE BOTTOM NAV (approx 60px height + 20px gap) */
            left: 0;
            right: 0;
            padding: 16px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            z-index: 9999;
            max-width: 480px;
            margin: 0 auto;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
        }

        .pm-btn {
            width: 100%;
            height: 56px;
            background: linear-gradient(135deg, var(--pm) 0%, var(--pm-dark) 100%);
            color: #fff;
            border: none;
            border-radius: 16px;
            font-size: 15px;
            font-weight: 900;
            letter-spacing: 0.5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
            transition: transform 0.15s;
        }

        .pm-btn:active {
            transform: scale(0.97);
        }

        .pm-btn:visited,
        .pm-btn:link {
            color: #fff !important;
        }

        /* ===== BOTTOM FIXED BUTTON ===== */
        .pm-bottom {
            position: fixed;
            bottom: 85px;
            /* Safely above the new 60px bottom nav */
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 480px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            z-index: 20000;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
            border-top: 1px solid rgba(229, 231, 235, 0.5);
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }

        /* ===== FLOAT WHATSAPP ===== */
        .pm-wa-float {
            position: fixed;
            bottom: 100px;
            right: 16px;
            width: 52px;
            height: 52px;
            background: #25d366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
            z-index: 10000;
            text-decoration: none;
        }

        /* ===== THANK YOU ===== */
        .pm-ty {
            text-align: center;
            padding: 50px 20px 20px;
        }

        .pm-ty-icon {
            width: 80px;
            height: 80px;
            background: #dcfce7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 38px;
            color: var(--pm);
            animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

        @keyframes popIn {
            from {
                transform: scale(0);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .pm-ty h1 {
            font-size: 26px;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 6px;
        }

        .pm-ty .order-id {
            font-size: 14px;
            color: var(--sub);
            font-weight: 700;
            margin-bottom: 30px;
        }

        /* WhatsApp notice box */
        .pm-wa-box {
            background: #fffbeb;
            border: 1.5px solid #fde68a;
            border-radius: 20px;
            padding: 18px;
            margin: 0 16px 16px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            text-align: left;
        }

        .pm-wa-box .wa-icon {
            width: 44px;
            height: 44px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #fff;
            flex-shrink: 0;
        }

        .pm-wa-box h4 {
            font-size: 14px;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 4px;
        }

        .pm-wa-box p {
            font-size: 12px;
            color: var(--sub);
            line-height: 1.5;
            font-weight: 600;
        }

        .pm-wa-box .urgent {
            color: #b45309;
            font-weight: 800;
        }

        /* ===== EMPTY CART ===== */
        .pm-empty {
            text-align: center;
            padding: 60px 20px;
        }

        .pm-empty i {
            font-size: 48px;
            color: #d1d5db;
            margin-bottom: 16px;
            display: block;
        }

        .pm-empty p {
            font-size: 16px;
            font-weight: 700;
            color: var(--sub);
            margin-bottom: 24px;
        }

            .pm-step-block {
                margin: 0 16px 20px;
            }

            .pm-step-panel {
                background: #dcfce7;
                border-radius: 20px;
                padding: 20px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
                border: 1px solid #bbf7d0;
            }

            .pm-panel-subtitle {
                font-size: 12px;
                font-weight: 800;
                color: #047857;
                text-transform: uppercase;
                margin-bottom: 15px;
                letter-spacing: 0.5px;
            }

            .pm-float-field {
                position: relative;
                margin-bottom: 12px;
            }

            .pm-float-field input,
            .pm-float-field select {
                width: 100%;
                padding: 24px 14px 8px;
                background: #ecfdf5;
                border: 1.5px solid #a7f3d0;
                border-radius: 12px;
                font-size: 15px;
                font-weight: 700;
                color: #064e3b;
                outline: none;
                transition: 0.3s;
            }

            .pm-float-field input:focus,
            .pm-float-field select:focus {
                border-color: #25d366;
                background: #fff;
                box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1);
            }

            .pm-float-label {
                position: absolute;
                left: 15px;
                top: 16px;
                font-size: 14px;
                font-weight: 600;
                color: #047857;
                transition: 0.2s;
                pointer-events: none;
            }

            .pm-float-field input:focus~.pm-float-label,
            .pm-float-field input:not(:placeholder-shown)~.pm-float-label,
            .pm-float-field select:focus~.pm-float-label,
            .pm-float-field select:not([value=""])~.pm-float-label,
            .pm-float-field select:valid~.pm-float-label {
                top: 6px;
                font-size: 11px;
                color: #047857;
                font-weight: 800;
            }

            .pm-pay-opt {
                display: flex;
                align-items: center;
                justify-content: space-between;
                background: #fff;
                padding: 16px;
                border-radius: 14px;
                border: 2px solid #a7f3d0;
                margin-bottom: 10px;
                cursor: pointer;
                transition: 0.2s;
            }

            .pm-pay-opt.active {
                border-color: #047857;
                box-shadow: 0 4px 15px rgba(4, 120, 87, 0.1);
            }

            .pm-pay-opt-left {
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .pm-pay-radio {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                border: 6px solid #fff;
                box-shadow: 0 0 0 2px #cbd5e1;
                transition: 0.2s;
                background: #fff;
            }

            .pm-pay-opt.active .pm-pay-radio {
                box-shadow: 0 0 0 2px #25d366;
                background: #25d366;
            }

            .pm-pay-title {
                font-size: 14px;
                font-weight: 800;
                color: #1e293b;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .pm-s3-item {
                display: flex;
                align-items: center;
                background: #fff;
                padding: 12px;
                border-radius: 14px;
                margin-bottom: 10px;
                border: 1px solid #e2e8f0;
            }

            .pm-s3-item img {
                width: 50px;
                height: 50px;
                border-radius: 8px;
                object-fit: cover;
                margin-right: 12px;
                border: 1px solid #f1f5f9;
            }

            .pm-s3-remove {
                width: 28px;
                height: 28px;
                border-radius: 8px;
                border: none;
                background: #fef2f2;
                color: #ef4444;
                font-size: 18px;
                font-weight: 400;
                line-height: 1;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                transition: 0.2s;
                padding: 0;
            }

            .pm-s3-remove:active {
                transform: scale(0.9);
                background: #fee2e2;
            }

            .pm-s3-qty-row {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 0;
                margin-top: 6px;
            }

            .pm-qty-btn {
                width: 30px;
                height: 30px;
                border-radius: 10px;
                border: 1.5px solid #e2e8f0;
                background: #fff;
                color: #1e293b;
                font-size: 18px;
                font-weight: 400;
                line-height: 1;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.2s;
                padding: 0;
            }

            .pm-qty-btn:active {
                transform: scale(0.9);
                background: #f1f5f9;
            }

            .pm-qty-btn:disabled {
                opacity: 0.4;
                cursor: not-allowed;
            }

            .pm-qty-num {
                width: 36px;
                text-align: center;
                font-size: 14px;
                font-weight: 800;
                color: #1e293b;
            }

            .pm-s3-info {
                flex: 1;
            }

            .pm-s3-name {
                font-size: 13px;
                font-weight: 800;
                color: #0f172a;
                margin: 0 0 4px;
                line-height: 1.3;
            }

            .pm-s3-meta {
                display: flex;
                justify-content: space-between;
                font-size: 12px;
                color: #64748b;
                font-weight: 600;
            }

            .pm-s3-price {
                font-size: 14px;
                font-weight: 900;
                color: #047857;
            }

            .pm-totals-box {
                background: transparent;
                padding: 15px 5px;
            }

            .pm-t-row {
                display: flex;
                justify-content: space-between;
                font-size: 14px;
                font-weight: 700;
                color: #334155;
                margin-bottom: 8px;
            }

            .pm-t-row.main {
                font-size: 18px;
                font-weight: 900;
                color: #0f172a;
                margin-top: 12px;
                padding-top: 12px;
                border-top: 1.5px dashed #94a3b8;
            }

            .pm-btn-huge {
                width: 100%;
                height: 60px;
                background: #25d366 !important;
                color: #ffffff !important;
                font-size: 18px;
                font-weight: 900;
                border: none;
                border-radius: 16px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
                text-transform: uppercase;
                letter-spacing: 1px;
                transition: 0.2s;
                margin-top: 20px;
            }

            .pm-btn-huge:active {
                transform: scale(0.97);
            }

            .awesomplete {
                display: block !important;
                width: 100% !important;
            }

            .awesomplete>ul {
                z-index: 9999 !important;
                border-radius: 12px;
                border: 1px solid #25d366;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            }

            .awesomplete>ul>li {
                padding: 12px 15px;
                font-weight: 600;
                color: #128c7e;
            }

            .awesomplete>ul>li:hover {
                background: #f0fff4;
                color: #075e54;
            }

            /* ===== CHECKOUT GRID LAYOUT ===== */
            .pm-checkout-grid {
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            .pm-checkout-left {
                display: flex;
                flex-direction: column;
            }

            .pm-checkout-right {
                display: flex;
                flex-direction: column;
            }

            /* ===== DESKTOP: TWO-COLUMN LAYOUT ===== */
            @media (min-width: 769px) {
                .pm-page {
                    max-width: 960px !important;
                    margin: 0 auto;
                    padding: 0 20px 40px !important;
                    background: #f0fdf4;
                }

                .pm-checkout-grid {
                    flex-direction: row;
                    gap: 24px;
                    align-items: flex-start;
                }

                .pm-checkout-left {
                    flex: 1;
                    min-width: 0;
                }

                .pm-checkout-right {
                    width: 360px;
                    flex-shrink: 0;
                    position: sticky;
                    top: 20px;
                }

                .pm-step-block {
                    margin: 0 0 20px;
                }

                .pm-step-panel {
                    padding: 28px;
                    border-radius: 20px;
                }

                .pm-panel-subtitle {
                    font-size: 13px;
                    margin-bottom: 18px;
                }

                .pm-float-field input,
                .pm-float-field select {
                    padding: 26px 16px 10px;
                    font-size: 16px;
                    border-radius: 14px;
                }

                .pm-float-label {
                    font-size: 15px;
                    top: 18px;
                    left: 18px;
                }

                .pm-float-field input:focus~.pm-float-label,
                .pm-float-field input:not(:placeholder-shown)~.pm-float-label,
                .pm-float-field select:focus~.pm-float-label,
                .pm-float-field select:not([value=""])~.pm-float-label,
                .pm-float-field select:valid~.pm-float-label {
                    top: 8px;
                    font-size: 12px;
                }

                .pm-pay-opt {
                    padding: 18px 20px;
                    border-radius: 16px;
                }

                .pm-pay-title {
                    font-size: 15px;
                }

                .pm-s3-item {
                    padding: 14px;
                    border-radius: 16px;
                }

                .pm-s3-item img {
                    width: 56px;
                    height: 56px;
                }

                .pm-s3-name {
                    font-size: 14px;
                }

                .pm-t-row {
                    font-size: 15px;
                }

                .pm-t-row.main {
                    font-size: 20px;
                }

                .pm-btn-huge {
                    height: 64px;
                    font-size: 19px;
                    border-radius: 18px;
                }

                /* Sticky summary panel on desktop */
                .pm-step-panel--summary {
                    background: #fff;
                    border: 1px solid #e2e8f0;
                    position: sticky;
                    top: 20px;
                }
            }

            /* ===== TABLET: SLIGHTLY COMPACT ===== */
            @media (min-width: 769px) and (max-width: 1024px) {
                .pm-page {
                    max-width: 740px !important;
                }

                .pm-checkout-right {
                    width: 300px;
                }
            }

            /* ===== MOBILE: SINGLE-COLUMN COMPACT ===== */
            @media (max-width: 768px) {
                .pm-page {
                    max-width: 100% !important;
                    padding: 0 !important;
                }

                .pm-step-block {
                    margin: 0 12px 16px;
                }

                .pm-step-panel {
                    padding: 16px;
                    border-radius: 16px;
                }

                .pm-float-field input,
                .pm-float-field select {
                    padding: 22px 12px 8px;
                    font-size: 15px;
                }

                .pm-pay-opt {
                    padding: 14px;
                    border-radius: 12px;
                }

                .pm-s3-item img {
                    width: 46px;
                    height: 46px;
                }

                .pm-qty-btn {
                    width: 28px;
                    height: 28px;
                    border-radius: 8px;
                    font-size: 16px;
                }

                .pm-qty-num {
                    width: 32px;
                    font-size: 13px;
                }

                .pm-btn-huge {
                    height: 56px;
                    font-size: 16px;
                    border-radius: 14px;
                }
            }

            /* ===== SMALL PHONES ===== */
            @media (max-width: 400px) {
                .pm-step-block {

                .pm-step-block {
                    margin: 0 10px 12px;
                }

                .pm-step-panel {
                    padding: 14px;
                    border-radius: 14px;
                }

                .pm-float-field input,
                .pm-float-field select {
                    padding: 20px 10px 7px;
                    font-size: 14px;
                    border-radius: 10px;
                }

                .pm-float-label {
                    font-size: 13px;
                    left: 12px;
                    top: 14px;
                }

                .pm-pay-opt {
                    padding: 12px;
                }

                .pm-pay-title {
                    font-size: 13px;
                }

                .pm-s3-item img {
                    width: 42px;
                    height: 42px;
                }

                .pm-s3-remove {
                    width: 24px;
                    height: 24px;
                    font-size: 16px;
                    border-radius: 6px;
                }

                .pm-qty-btn {
                    width: 26px;
                    height: 26px;
                    border-radius: 7px;
                    font-size: 14px;
                }

                .pm-qty-num {
                    width: 28px;
                    font-size: 12px;
                }

                .pm-s3-name {
                    font-size: 12px;
                }

                .pm-btn-huge {
                    height: 52px;
                    font-size: 15px;
                    border-radius: 12px;
                }
            }