        .section-main {

            padding-top: 30px;
            background: var(--bg01);
        }

        .cart-wrapper {
            max-width: 1200px;
            margin: 40px auto;
        }

        .cart-header {
            margin-bottom: 25px;
        }

        .cart-title {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .cart-count {
            font-size: 15px;
            color: #888;
        }

        .cart-main-grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 25px;
        }

        .cart-items-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cart-item {
            background: #0d0d0d;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            padding: 20px;
            display: grid;
            grid-template-columns: 120px 1fr auto;
            gap: 20px;
            align-items: center;
        }

        .cart-item-image {
            width: 120px;
            height: 160px;
            border-radius: 6px;
            object-fit: cover;
            border: 1px solid #333;
        }

        .item-details {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cart-item-title {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .item-platform {
            font-size: 13px;
            color: #888;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .item-condition {
            display: inline-block;
            background: #1a3a1a;
            color: #4CAF50;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid #2a4a2a;
            width: fit-content;
        }

        .item-price-section {
            margin-top: 10px;
        }

        .item-current-price {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .item-old-price {
            font-size: 14px;
            color: #666;
            text-decoration: line-through;
            margin-right: 8px;
        }

        .item-discount {
            font-size: 13px;
            color: #4CAF50;
            font-weight: 600;
        }

        .item-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 15px;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 6px;
            padding: 8px 12px;
        }

        .qty-btn {
            background: transparent;
            border: none;
            color: #888;
            font-size: 18px;
            cursor: pointer;
            padding: 0 8px;
            transition: color 0.3s;
        }

        .qty-btn:hover {
            color: #4CAF50;
        }

        .qty-value {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            min-width: 30px;
            text-align: center;
        }

        .remove-btn {
            background: transparent;
            border: 1px solid #d32f2f;
            color: #d32f2f;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .remove-btn:hover {
            background: #d32f2f;
            color: white;
        }

        .cart-summary {
            background: #0d0d0d;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 20px;
        }

        .cart-summary-title {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #2a2a2a;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            font-size: 15px;
        }

        .summary-label {
            color: #888;
        }

        .summary-value {
            color: #ffffff;
            font-weight: 600;
        }

        .summary-divider {
            border-top: 1px solid #2a2a2a;
            margin: 15px 0;
        }

        .summary-total {
            padding: 15px 0;
        }

        .summary-total .summary-label {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .summary-total .summary-value {
            font-size: 24px;
            font-weight: 700;
            color: #4CAF50;
        }

        .savings-highlight {
            background: #1a3a1a;
            border: 1px solid #2a4a2a;
            border-radius: 6px;
            padding: 12px;
            margin: 15px 0;
            text-align: center;
        }

        .savings-text {
            font-size: 14px;
            color: #4CAF50;
            font-weight: 600;
        }

        .checkout-btn {
            width: 100%;
            background: #4CAF50;
            border: none;
            color: white;
            padding: 15px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 15px;
        }

        .checkout-btn:hover {
            background: #45a049;
            transform: translateY(-2px);
        }

        .continue-shopping {
            width: 100%;
            background: transparent;
            border: 1px solid #4CAF50;
            color: #4CAF50;
            padding: 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 12px;
        }

        .continue-shopping:hover {
            background: #4CAF50;
            color: white;
        }

        .promo-section {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #2a2a2a;
        }

        .promo-label {
            font-size: 14px;
            color: #888;
            margin-bottom: 10px;
        }

        .promo-input-group {
            display: flex;
            gap: 8px;
        }

        .promo-input {
            flex: 1;
            background: #1a1a1a;
            border: 1px solid #333;
            color: white;
            padding: 10px 12px;
            border-radius: 6px;
            font-size: 14px;
        }

        .apply-promo-btn {
            background: #2196F3;
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .apply-promo-btn:hover {
            background: #0b7dda;
        }

        .empty-cart {
            text-align: center;
            padding: 60px 20px;
            background: #0d0d0d;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
        }

        .empty-cart-icon {
            font-size: 64px;
            color: #444;
            margin-bottom: 20px;
        }

        .empty-cart-title {
            font-size: 24px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .empty-cart-text {
            font-size: 15px;
            color: #888;
            margin-bottom: 25px;
        }

        @media (max-width: 1024px) {
            .cart-main-grid {
                grid-template-columns: 1fr;
            }

            .cart-summary {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 768px) {
            .cart-item {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .cart-item-image {
                width: 100%;
                height: auto;
                max-width: 200px;
                margin: 0 auto;
            }

            .item-actions {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        @media (max-width: 480px) {


            .cart-title {
                font-size: 24px;
            }

            .cart-item-title {
                font-size: 16px;
            }

            .item-current-price {
                font-size: 20px;
            }
        }

        /* =========================== */

        /* :root {
            --bg: #0b0f14;
            --card: #111827;
            --border: #1f2937;
            --text: #e5e7eb;
            --muted: #9ca3af;
            --accent: #22c55e;
        } */

        :root {
            --bg: #0b0f14;
            --dark: #1a1a1a;
            --card: #1a1f2e;
            --card-hover: #232938;
            --border: #2d3548;
            --border-bright: #3d4558;
            --text: #ffffff;
            --text-secondary: #d1d5db;
            --muted: #a0a8b8;
            --accent: #22c55e;
            --accent-dark: #16a34a;
            --accent-light: #4ade80;
            --bg01: linear-gradient(135deg, #1a1a1a 0%, #010102 100%);
        }




        /* .profile-wrap {
            width: 100%;
            max-width: 780px;
        }

        .profile-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border: 1px solid var(--border);
            background: var(--card);
            border-radius: 12px;
        }

        .profile-left {
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .avatar {
            width: 54px;
            height: 54px;
            border-radius: 8px;
            background: #020617;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .name01 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }

        .uid {
            font-size: 12px;
            color: var(--muted);
        }

        .edit-btn {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text);
            padding: 8px 14px;
            border-radius: 8px;
            cursor: pointer;
        }

        .edit-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

     
        .profile-info {
            margin-top: 16px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .info-box {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 16px;
        }

        .label01 {
            font-size: 12px;
            color: var(--muted);
            margin-bottom: 6px;
        }

        .value01 {
            font-size: 14px;
            color: #fff;
        }

        .full {
            grid-column: 1 / -1;
        }

     
        @media(max-width:640px) {
            .profile-info {
                grid-template-columns: 1fr;
            }
        }

        .profile-section {
            display: flex;
            justify-content: center;
        } */

        /* ============================ */


        /* Checkout Page Specific Wrapper - All styles scoped to this class */
        .check-out-page {
            max-width: 1200px;
            margin: 0 auto;
        }

        .check-out-page .page-title {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .check-out-page .main-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 30px;
            margin-top: 25px;
        }

        .check-out-page .left-section,
        .check-out-page .right-section {
            background: #0d0d0d;
            border: 1px solid #2a2a2a;
            border-radius: 10px;
            padding: 25px;
        }

        .check-out-page h2.section-title {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid #2a2a2a;
        }

        .check-out-page .form-group {
            margin-bottom: 20px;
        }

        .check-out-page .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: #bbb;
            font-weight: 500;
        }

        .check-out-page .form-control,
        .check-out-page .form-select {
            width: 100%;
            padding: 12px 14px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 6px;
            color: white;
            font-size: 15px;
        }

        .check-out-page .form-control:focus,
        .check-out-page .form-select:focus {
            outline: none;
            border-color: #4CAF50;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
        }

        .check-out-page .row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .check-out-page .payment-methods {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 15px;
        }

        .check-out-page .payment-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .check-out-page .payment-option:hover,
        .check-out-page .payment-option.active {
            border-color: #4CAF50;
            background: #1a3a1a;
            color: #fff;
        }

        .check-out-page .payment-option input[type="radio"] {
            accent-color: #4CAF50;
            width: 18px;
            height: 18px;
        }

        .payment-option span {
            color: #acacac;
        }

        .check-out-page .order-summary {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .check-out-page .order-items {
            margin: 20px 0;
        }

        .check-out-page .order-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #222;
            font-size: 14px;
            color: #ccc;
        }

        .check-out-page .order-item:last-child {
            border-bottom: none;
        }

        .check-out-page .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            font-size: 15px;
        }

        .check-out-page .summary-row .summary-label {
            color: #888;
        }

        .check-out-page .summary-row .summary-value {
            color: #ffffff;
            font-weight: 600;
        }

        .check-out-page .summary-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            font-size: 20px;
            font-weight: bold;
            color: #ffffff;
            border-top: 1px solid #2a2a2a;
            margin-top: 15px;
        }

        .check-out-page .summary-total .amount {
            color: #4CAF50;
            font-size: 24px;
        }

        .check-out-page .place-order-btn {
            width: 100%;
            background: #4CAF50;
            border: none;
            color: white;
            padding: 16px;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s;
        }

        .check-out-page .place-order-btn:hover {
            background: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.25);
        }

        .check-out-page .back-to-cart {
            display: inline-block;
            margin-top: 15px;
            color: #4CAF50;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .check-out-page .back-to-cart:hover {
            text-decoration: underline;
        }

        /* Responsive - Matches your cart breakpoints */
        @media (max-width: 1024px) {
            .check-out-page .main-grid {
                grid-template-columns: 1fr;
            }

            .check-out-page .order-summary {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 768px) {
            .check-out-page .row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {


            .check-out-page .page-title {
                font-size: 24px;
            }
        }

        /* Checkout — savings highlight */
        .check-out-page .savings-highlight {
            background: rgba(76,175,80,0.1);
            border: 1px solid rgba(76,175,80,0.3);
            border-radius: 6px;
            padding: 8px 12px;
            text-align: center;
            margin-top: 6px;
        }
        .check-out-page .savings-highlight .savings-text {
            font-size: 13px;
            font-weight: 600;
            color: #4ade80;
        }

        /* Address selection cards */
        .co-addr-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
        .co-addr-card {
            background: #1a1a1a; border: 2px solid #2a2a2a; border-radius: 10px;
            padding: 14px; cursor: pointer; position: relative; transition: all 0.2s;
        }
        .co-addr-card:hover { border-color: #3a3a3a; }
        .co-addr-card.selected { border-color: #4CAF50; background: #0d1f0d; }
        .co-addr-card-meta { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
        .co-addr-type-tag {
            background: #2a2a2a; color: #888; font-size: 11px; font-weight: 700;
            padding: 2px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.3px;
        }
        .co-addr-default-tag {
            background: rgba(76,175,80,0.12); color: #4CAF50; font-size: 11px; font-weight: 700;
            padding: 2px 8px; border-radius: 20px;
        }
        .co-addr-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
        .co-addr-phone { font-size: 12px; color: #888; margin-bottom: 6px; }
        .co-addr-text { font-size: 12px; color: #aaa; line-height: 1.5; }
        .co-addr-check-icon {
            position: absolute; top: 10px; right: 10px; color: #4CAF50; font-size: 16px; display: none;
        }
        .co-addr-card.selected .co-addr-check-icon { display: block; }

        /* Add / save address buttons */
        .co-add-addr-btn {
            display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
            background: transparent; border: 1px dashed #4CAF50; color: #4CAF50;
            border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer;
            transition: all 0.2s; margin-top: 4px;
        }
        .co-add-addr-btn:hover { background: rgba(76,175,80,0.1); }
        .co-add-addr-btn.co-save-addr { border-style: solid; background: rgba(76,175,80,0.08); }

        /* Gift wrap row */
        .co-gift-wrap-row {
            display: flex; align-items: flex-start; gap: 12px;
            padding: 14px 0; border-top: 1px solid #222; border-bottom: 1px solid #222; margin: 8px 0;
        }

        /* Offers row */
        .co-offers-row {
            display: flex; align-items: center; gap: 12px; padding: 12px 0;
            border-bottom: 1px solid #222; margin-bottom: 4px;
        }
        .co-view-offers-btn {
            background: transparent; border: 1px solid #4CAF50; color: #4CAF50;
            padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 700;
            cursor: pointer; white-space: nowrap; transition: all 0.2s; flex-shrink: 0;
        }
        .co-view-offers-btn:hover { background: #4CAF50; color: #000; }

        /* Applied coupon badge */
        .co-applied-badge {
            display: flex; align-items: center; gap: 10px; padding: 10px 14px;
            background: rgba(76,175,80,0.07); border: 1px solid rgba(76,175,80,0.28);
            border-radius: 8px; margin: 4px 0 8px;
        }
        .co-remove-coupon-btn {
            background: transparent; border: 1px solid #3a3a3a; color: #777;
            width: 26px; height: 26px; border-radius: 50%; font-size: 16px; cursor: pointer;
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
            transition: all 0.2s; line-height: 1;
        }
        .co-remove-coupon-btn:hover { background: rgba(239,68,68,0.14); color: #f87171; border-color: rgba(239,68,68,0.35); }

        /* Coupon modal overlay */
        .co-coupon-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.82);
            backdrop-filter: blur(6px); z-index: 99999;
            display: flex; align-items: flex-start; justify-content: center;
            padding: 40px 16px; overflow-y: auto;
        }
        .co-coupon-modal {
            background: #141414; border: 1px solid #2a2a2a; border-radius: 16px;
            width: 100%; max-width: 560px; margin: auto 0;
            box-shadow: 0 30px 70px rgba(0,0,0,0.7);
        }
        .co-coupon-modal-header {
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 24px; border-bottom: 1px solid #222;
        }
        .co-coupon-modal-header h3 { font-size: 17px; font-weight: 700; color: #fff; margin: 0; }
        .co-coupon-close {
            width: 34px; height: 34px; border-radius: 50%; background: #1a1a1a;
            border: 1px solid #333; color: #888; font-size: 20px; cursor: pointer;
            display: flex; align-items: center; justify-content: center; transition: all 0.2s; line-height: 1;
        }
        .co-coupon-close:hover { background: rgba(239,68,68,0.14); color: #f87171; border-color: rgba(239,68,68,0.35); }
        .co-coupon-list {
            padding: 16px; max-height: 430px; overflow-y: auto;
            display: flex; flex-direction: column; gap: 12px;
        }

        /* Individual coupon card */
        .co-coupon-card {
            background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px;
            padding: 16px; transition: border-color 0.2s;
        }
        .co-coupon-card.applied { border-color: #4CAF50; background: #0d1f0d; }
        .co-coupon-card-body { display: flex; align-items: flex-start; gap: 16px; }
        .co-coupon-card-left { flex: 1; min-width: 0; }
        .co-coupon-card-right {
            display: flex; flex-direction: column; align-items: flex-end;
            gap: 10px; flex-shrink: 0;
        }
        .co-coupon-chip {
            background: #0a2a0a; color: #4CAF50; border: 1px solid rgba(76,175,80,0.35);
            padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 700;
            letter-spacing: 0.5px; display: inline-block; margin-bottom: 6px;
        }
        .co-coupon-card-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
        .co-coupon-card-desc { font-size: 12px; color: #777; margin-bottom: 4px; }
        .co-coupon-min { font-size: 11px; color: #555; }
        .co-coupon-disc-badge {
            background: rgba(76,175,80,0.14); color: #4CAF50;
            padding: 4px 10px; border-radius: 20px; font-size: 12px;
            font-weight: 700; white-space: nowrap;
        }
        .co-apply-btn {
            background: #4CAF50; color: #000; border: none;
            padding: 8px 18px; border-radius: 6px; font-size: 13px;
            font-weight: 700; cursor: pointer; transition: all 0.2s; white-space: nowrap;
        }
        .co-apply-btn:hover:not(.applied) { background: #45a049; }
        .co-apply-btn.applied {
            background: rgba(76,175,80,0.14); color: #4CAF50;
            border: 1px solid rgba(76,175,80,0.35); cursor: default;
        }
        .co-coupon-empty { text-align: center; padding: 40px 20px; color: #555; }
        .co-coupon-empty p { margin-top: 12px; font-size: 14px; }

        /* Sell-checkout accent overrides (yellow theme) */
        .sc-accent-btn { border-color: #fbbf24 !important; color: #fbbf24 !important; }
        .sc-accent-btn:hover { background: rgba(251,191,36,0.1) !important; }
        .sc-accent-btn.co-save-addr { background: rgba(251,191,36,0.08) !important; }

        @media (max-width: 600px) {
            .co-addr-cards { grid-template-columns: 1fr; }
            .co-coupon-overlay { padding: 20px 12px; }
        }

        /* Existing cart styles will work perfectly alongside */

        .order-details-section {
            /* background: radial-gradient(circle at top, #11112a, #07070f 70%); */
            padding: 110px 20px 130px;
            color: #e6e8ff;
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            min-height: 100vh;
        }

        .order-details-container {
            max-width: 1050px;
            margin: auto;
        }

        .order-details-title {
            font-size: 3.2rem;
            font-weight: 900;
            text-align: center;
            background: linear-gradient(90deg, #7b2cbf, #00d4ff, #ff3366);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 60px;
        }

        .details-card {
            background: rgba(25, 25, 50, 0.75);
            backdrop-filter: blur(14px);
            border-radius: 22px;
            border: 1px solid rgba(123, 44, 191, 0.25);
            padding: 40px;
            margin-bottom: 30px;
        }

        .details-card h3 {
            font-size: 1.9rem;
            color: #c084fc;
            margin-bottom: 25px;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px 40px;
        }

        .detail-item span {
            display: block;
            font-size: 0.9rem;
            color: #9aa0ff;
            margin-bottom: 6px;
        }

        .detail-item strong {
            font-size: 1.05rem;
            color: #ffffff;
        }

        .status-badge {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-top: 10px;
        }

        .status-success {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.45);
        }

        .status-pending {
            background: rgba(234, 179, 8, 0.2);
            color: #facc15;
            border: 1px solid rgba(234, 179, 8, 0.45);
        }

        .details-product {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .product-icon {
            width: 64px;
            height: 64px;
            border-radius: 14px;
            background: linear-gradient(135deg, #7b2cbf, #00d4ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.4rem;
            color: #06060f;
        }

        .price-summary {
            border-top: 1px dashed rgba(0, 212, 255, 0.35);
            padding-top: 25px;
            margin-top: 25px;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 14px;
            font-size: 1.05rem;
        }

        .price-row.total {
            font-size: 1.25rem;
            font-weight: 900;
            color: #00d4ff;
        }

        .order-actions {
            display: flex;
            gap: 16px;
            margin-top: 35px;
            flex-wrap: wrap;
        }

        .order-actions a {
            padding: 14px 20px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            color: #06060f;
            background: linear-gradient(90deg, #00fe66, #00d4ff);
            transition: transform 0.25s, box-shadow 0.25s;
        }

        .order-actions a.secondary {
            background: transparent;
            color: #00d4ff;
            border: 1px solid rgba(0, 212, 255, 0.45);
        }

        .order-actions a:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 212, 255, 0.35);
        }

        @media (max-width: 768px) {
            .order-details-title {
                font-size: 2.5rem;
            }

            .details-grid {
                grid-template-columns: 1fr;
            }
        }

        /* =========================== */

        .orders-section {
            /* background: radial-gradient(circle at top, #11112a, #07070f 70%); */
            padding: 40px 20px 130px;
            color: #e6e8ff;
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            min-height: 100vh;
        }

        .orders-container {
            max-width: 1150px;
            margin: auto;
        }

        .orders-title {
            font-size: 3.6rem;
            font-weight: 900;
            text-align: center;
            background: linear-gradient(90deg, #7b2cbf, #00d4ff, #ff3366);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 14px;
        }

        .orders-subtitle {
            text-align: center;
            font-size: 1.15rem;
            color: #9aa0ff;
            margin-bottom: 40px;
        }

        .orders-list {
            display: flex;
            flex-direction: column;
            gap: 26px;
        }

        .order-card {
            background: rgb(7 7 13 / 75%);
            backdrop-filter: blur(14px);
            border-radius: 20px;
            border: 1px solid rgba(123, 44, 191, 0.25);
            padding: 30px 15px;
            transition: all 0.3s ease;
        }

        .order-card:hover {
            transform: translateY(-6px);
            border-color: rgba(0, 212, 255, 0.45);
            box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
        }

        .order-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .order-id {
            font-size: 1.1rem;
            font-weight: 700;
            color: #c084fc;
        }

        .order-date {
            font-size: 0.95rem;
            color: #9aa0ff;
        }

        .order-body {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 20px;
            align-items: center;
        }

        .order-item h4 {
            margin: 0 0 6px;
            font-size: 1.1rem;
            color: #ffffff;
        }

        .order-item span {
            font-size: 0.95rem;
            color: #b8bcff;
        }

        .order-status {
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 700;
            display: inline-block;
            text-align: center;
            width: fit-content;
        }

        .status-success {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.45);
        }

        .status-pending {
            background: rgba(234, 179, 8, 0.2);
            color: #facc15;
            border: 1px solid rgba(234, 179, 8, 0.45);
        }

        .status-failed {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.45);
        }


        .empty-orders {
            text-align: center;
            padding: 80px 20px;
            background: rgba(20, 20, 45, 0.6);
            border-radius: 22px;
            border: 1px solid rgba(0, 212, 255, 0.25);
            color: #b8bcff;
        }

        @media (max-width: 900px) {
            .orders-title {
                font-size: 2.9rem;
            }

            .order-body {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .order-actions {
                grid-column: span 2;
            }
        }

        /* ============= */
        .breadcrumb-ecom {
            padding: 15px 20px;
            border-bottom: 1px solid #eeeeee28;
        }

        .breadcrumb-ecom .breadcrumb-wrap {
            max-width: 1200px;
            margin: 0 auto;
        }

        .breadcrumb-ecom .breadcrumb-nav {
            font-size: 14px;
            color: #ffffff;
        }

        .breadcrumb-ecom .breadcrumb-nav a {
            text-decoration: none;
            color: #ffffff;
            transition: 0.3s;
        }

        .breadcrumb-ecom .breadcrumb-nav a:hover {
            color: #000;
        }

        .breadcrumb-ecom .breadcrumb-nav span {
            margin: 0 6px;
        }

        .breadcrumb-ecom .breadcrumb-nav .active {
            color: #000;
            font-weight: 500;
        }

        /* ==================== */
        @media screen and (max-width:767px) {
            .check-out-page .page-title {
                padding-left: 15px;
            }

            .check-out-page .left-section,
            .check-out-page .right-section {
                margin: 0 10px;
            }

            .section-main {
                padding-bottom: 50px;
            }

            .contact-section {
                padding: 50px 0px 130px;
            }

            .contact-info {
                padding: 25px 15px;
            }

            .contact-form {
                padding: 45px 15px;
            }
        }

        /* ====================== */

     
        .sell-page {
            /* background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%); */
            padding: 60px 20px;
            min-height: 100vh;
        }

        .sell-page .sell-page-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .sell-page .sell-page-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .sell-page .sell-page-row:last-child {
            margin-bottom: 0;
        }

        /* Sell Card */
        .sell-page .sell-card {
            /* background: rgba(26, 26, 46, 0.6); */
            backdrop-filter: blur(10px);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 10px;
            /* overflow: hidden; */
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #14141499 0%, #16161677 100%);
        }

        .sell-page .sell-card:hover {
            transform: translateY(-8px);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
        }

        .sell-page .sell-card-inner {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 5px 15px;
        }

        /* Card Image */
        .sell-page .sell-card-image {
            flex-shrink: 0;
            /* width: 180px;
    height: 180px; */
            display: flex;
            align-items: center;
            justify-content: center;
            /* background: rgba(15, 15, 30, 0.5); */
            border-radius: 16px;
            /* padding: 15px; */
            /* border: 1px solid rgba(139, 92, 246, 0.15); */
        }

        .sell-page .sell-card-image img {
            width: 120px;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
            border-radius: 10px;
            margin-top: -20px;
        }

        .sell-page .sell-card:hover .sell-card-image img {
            transform: scale(1.08);
        }

        /* Card Content */
        .sell-page .sell-card-content {
            flex: 1;
            padding-left: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sell-page .sell-card-title {
            font-size: 1.1rem;
            /* font-weight: 600; */
            color: #ffffff;
            line-height: 1.4;
            margin: 0;
        }

        /* Sell Button */
        .sell-page .sell-btn {
            /* background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%); */
            background: transparent;
            color: #ffffff;
            border: none;
            padding: 10px 32px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 1px 6px rgba(15, 15, 17, 0.4);
            border: 1px solid #212121;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: fit-content;
        }

        .sell-page .sell-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(79, 70, 229, 0.6);
            background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
        }

        .sell-page .sell-btn:active {
            transform: translateY(0);
        }

        /* Outline Button Variant */
        .sell-page .sell-btn-outline {
            background: transparent;
            border: 2px solid #4f46e5;
            color: #4f46e5;
            box-shadow: none;
        }

        .sell-page .sell-btn-outline:hover {
            background: #4f46e5;
            color: #ffffff;
            box-shadow: 0 6px 25px rgba(79, 70, 229, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .sell-page .sell-page-row {
                gap: 25px;
                margin-bottom: 25px;
            }




            .sell-page .sell-card-content {
                padding-left: 25px;
            }

            .sell-page .sell-card-title {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .sell-page {
                padding: 40px 0px;
            }

            .sell-page .sell-page-row {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 20px;
            }

            .sell-page .sell-card-inner {

                text-align: center;

                gap: 20px;
            }



            .sell-page .sell-card-content {
                padding-left: 0;
                align-items: center;
                gap: 15px;
            }

            .sell-page .sell-card-title {
                font-size: 1.15rem;
            }

            .sell-page .sell-btn {
                width: 100%;
                padding: 15px 32px;
            }
        }

        @media (max-width: 480px) {

            .sell-page .sell-card-title {
                font-size: 1.05rem;
            }

            .sell-page .sell-btn {
                font-size: 0.95rem;
                padding: 13px 28px;
            }
        }

        /* =============================== */
      
  
.repair-section {
    /* background: var( --dark); */
    padding: 40px 20px;
    min-height: 100vh;
position: relative;
    background-image: url(../img/banner/banner_bg4.png);
    padding: 40px 0;
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.repair-section .repair-container {
    max-width: 1200px;
    margin: 0 auto;

}

/* Section Header */
.repair-section .repair-header {
    text-align: center;
    margin-bottom: 35px;
}

.repair-section .repair-main-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.repair-section .repair-subtitle {
    font-size: 1.15rem;
    color: #a0a0b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Repair Grid */
.repair-section .repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Repair Category Card */
.repair-section .repair-category {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(19px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.repair-section .repair-category:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
}

/* Category Header */
.repair-section .repair-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.repair-section .repair-category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #8b5cf6;
}

.repair-section .repair-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Services List */
.repair-section .repair-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.repair-section .repair-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #d0d0e0;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.repair-section .repair-service-item:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.repair-section .repair-service-item i {
    color: #22c55e;
    font-size: 16px;
    flex-shrink: 0;
}

/* Repair Button */
.repair-section .repair-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.repair-section .repair-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

.repair-section .repair-btn:active {
    transform: translateY(0);
}

/* Repair Process Section */
.repair-section .repair-process {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 40px;
}

.repair-section .repair-process-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

.repair-section .repair-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.repair-section .repair-step {
    text-align: center;
    padding: 25px;
    background: rgba(15, 15, 30, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    transition: all 0.3s ease;
}

.repair-section .repair-step:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
}

.repair-section .repair-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.repair-section .repair-step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.repair-section .repair-step-desc {
    font-size: 0.95rem;
    color: #a0a0b8;
    line-height: 1.5;
    margin: 0;
}

/* Warranty Section */
.repair-section .repair-warranty {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.repair-section .repair-warranty-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.repair-section .repair-warranty-content i {
    font-size: 3rem;
    color: #ffffff;
}

.repair-section .repair-warranty-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.repair-section .repair-warranty-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.repair-section .repair-contact-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.repair-section .repair-contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .repair-section .repair-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .repair-section .repair-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .repair-section {
        padding: 60px 15px;
    }

    .repair-section .repair-header {
        margin-bottom: 40px;
    }

    .repair-section .repair-main-title {
        font-size: 2rem;
    }

    .repair-section .repair-subtitle {
        font-size: 1rem;
    }

    .repair-section .repair-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .repair-section .repair-category {
        padding: 28px;
    }

    .repair-section .repair-category-title {
        font-size: 1.3rem;
    }

    .repair-section .repair-process {
        padding: 35px 25px;
    }

    .repair-section .repair-process-title {
        font-size: 1.8rem;
    }

    .repair-section .repair-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .repair-section .repair-warranty {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .repair-section .repair-warranty-content {
        flex-direction: column;
        text-align: center;
    }

    .repair-section .repair-contact-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .repair-section .repair-main-title {
        font-size: 1.75rem;
    }

    .repair-section .repair-category {
        padding: 22px;
    }

    .repair-section .repair-category-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .repair-section .repair-category-title {
        font-size: 1.15rem;
    }

    .repair-section .repair-service-item {
        font-size: 0.9rem;
    }

    .repair-section .repair-process-title {
        font-size: 1.5rem;
    }

    .repair-section .repair-warranty-content h3 {
        font-size: 1.3rem;
    }
}
/* ========================================== */    
        .faq01-section {
            background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .faq01-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00ff88, transparent);
        }

        .faq01-section::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
            top: -250px;
            right: -250px;
            pointer-events: none;
        }

        .faq01-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .faq01-subtitle {
            color: #00ff88;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: inline-block;
            padding: 8px 20px;
            background: rgba(0, 255, 136, 0.1);
            border-radius: 30px;
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        .faq01-title {
            font-size: 48px;
            font-weight: 900;
            background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .faq01-description {
            color: #b8b8b8;
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }

        .faq01-accordion {
            position: relative;
            z-index: 2;
        }

        .faq01-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .faq01-card:hover {
            border-color: rgba(0, 255, 136, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
        }

        .faq01-card-header {
            background: transparent;
            border: none;
            padding: 0;
        }

        .faq01-btn {
            width: 100%;
            text-align: left;
            padding: 25px 30px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq01-btn:focus {
            outline: none;
            box-shadow: none;
        }

        .faq01-btn:hover {
            color: #00ff88;
        }

        .faq01-btn::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #00ff88, #00ccff);
            transition: height 0.3s ease;
            border-radius: 0 4px 4px 0;
        }

        .faq01-btn[aria-expanded="true"]::before {
            height: 60%;
        }

        .faq01-btn-text {
            flex: 1;
            padding-right: 20px;
        }

        .faq01-icon {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid rgba(0, 255, 136, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #00ff88;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq01-btn[aria-expanded="true"] .faq01-icon {
            background: #00ff88;
            color: #000;
            transform: rotate(45deg);
        }

        .faq01-collapse {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .faq01-card-body {
            padding: 25px 30px 30px 30px;
            color: #b8b8b8;
            font-size: 16px;
            line-height: 1.8;
        }

        .faq01-card-body p {
            margin: 0;
        }

        .faq01-card-body strong {
            color: #00ff88;
        }

        .faq01-cta {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 20px;
            position: relative;
            z-index: 2;
        }

        .faq01-cta-title {
            color: #fff;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .faq01-cta-text {
            color: #b8b8b8;
            font-size: 16px;
            margin-bottom: 25px;
        }

        .faq01-cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #00ff88, #00ccff);
            color: #000;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .faq01-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
            color: #000;
            text-decoration: none;
        }

        .faq01-number {
            position: absolute;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(0, 255, 136, 0.1);
            border: 2px solid rgba(0, 255, 136, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00ff88;
            font-size: 12px;
            font-weight: 700;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .faq01-card:hover .faq01-number {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .faq01-section {
                padding: 50px 0;
            }

            .faq01-title {
                font-size: 32px;
            }

            .faq01-description {
                font-size: 16px;
            }

            .faq01-btn {
                padding: 20px 20px;
                font-size: 16px;
            }

            .faq01-card-body {
                padding: 20px;
                font-size: 15px;
            }

            .faq01-cta {
                padding: 30px 20px;
            }

            .faq01-cta-title {
                font-size: 22px;
            }

            .faq01-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }

        @media (max-width: 576px) {
            .faq01-title {
                font-size: 28px;
            }

            .faq01-btn {
                padding: 18px 15px;
                font-size: 15px;
            }
        }
  
