/*
 Theme Name:   Pogo UI (ULTRA NATIVE V10)
 Theme URI:    https://pogomall.com/
 Description:  A World-Class, Native-App feel standalone theme for Pogomall. Built to match the highest industry standards.
 Author:       POGO TEAM
 Version:      10.1.0
 Text Domain:  pogo-ui
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;900&family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

:root {
    --pogo-mint: #25d366;
    --pogo-mint-light: #f0fff4;
    --pogo-mint-dark: #128c7e;
    --pogo-emerald: #25d366;
    --pogo-dark: #075e54;
    --pogo-text-main: #1e293b;
    --pogo-text-sub: #64748b;
    --pogo-slate: #64748b;
    --pogo-border: #f1f5f9;
    --pogo-bg: #f8fafc;
    --pogo-card-bg: #ffffff;
    --pogo-white: #ffffff;
    --pogo-grad: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    --pogo-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* 1. RESET & FUNDAMENTALS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: var(--pogo-bg);
    color: var(--pogo-dark);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    padding-bottom: 100px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 2. ULTIMATE WOW FLOATING HEADER V8 */
.app-header {
    background: #f8fafc;
    /* Page background color match */
    padding: 20px 15px 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #ffffff;
    border-radius: 24px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: visible;
}

.header-user-icon,
.header-noti-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 16px;
    color: #1e293b;
    font-size: 20px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.header-user-icon:active,
.header-noti-icon:active {
    transform: scale(0.9) rotate(-5deg);
    background: #e2e8f0;
}

.header-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo img {
    height: 42px !important;
    /* FIXED HEIGHT TO PREVENT STRETCH */
    width: auto !important;
    /* AUTO WIDTH TO MAINTAIN ASPECT RATIO */
    display: block;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.05));
    transition: 0.4s;
}

.header-logo img:hover {
    transform: translateY(-2px) scale(1.05);
}

.noti-pulse {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    border: 2.5px solid #fff;
    animation: pogo-ultra-pulse 2s infinite;
}

@keyframes pogo-ultra-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* 🧥 SEARCH BAR V8 - PREMIUM INTEGRATION */
.header-search-v2 {
    padding: 15px 5px 5px;
}

.header-search-v2 .dgwt-wcas-search-wrapp {
    width: 100% !important;
    border: none !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04) !important;
    transition: 0.3s;
}

.header-search-v2 .dgwt-wcas-search-wrapp:focus-within {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.12) !important;
    transform: translateY(-2px);
}

/* 3. NATIVE SEARCH BAR */
.app-search {
    padding: 0 20px 20px;
    background: #fff;
}

.search-box {
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: var(--pogo-slate);
}

/* 4. PROMO BANNER (THE PICTURE LOOK) */
.promo-banner {
    margin: 10px 20px;
    background: var(--pogo-grad);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-banner h2 {
    font-family: 'Outfit';
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.promo-banner .tag {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

/* 5. CATEGORY SCROLLER - FIXED V45 */
.category-scroller {
    display: flex !important;
    gap: 12px !important;
    padding: 15px 20px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    scrollbar-width: none !important;
    background: #fff !important;
    border-bottom: 1px solid #f1f5f9 !important;
    position: relative !important;
    z-index: 100 !important;
}

.category-scroller::-webkit-scrollbar {
    display: none !important;
}

.cat-pill {
    padding: 10px 18px !important;
    background: #f8fafc !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    color: var(--pogo-slate) !important;
    border: 1.5px solid #e2e8f0 !important;
    display: inline-block !important;
    transition: 0.3s !important;
    flex-shrink: 0 !important;
}

.cat-pill.active {
    background: var(--pogo-mint) !important;
    color: #fff !important;
    border-color: var(--pogo-mint) !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2) !important;
}

/* 6. NATIVE PRODUCT CARDS */
.pogo-native-container .native-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    padding: 0 20px 20px !important;
    width: 100% !important;
}

.pogo-native-container .native-card {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: 0.3s transform !important;
    display: block !important;
}

.native-card .img-box {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.native-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.native-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    height: 34px;
    overflow: hidden;
    color: var(--pogo-dark);
}

.native-card .price {
    font-size: 16px;
    font-weight: 800;
    color: var(--pogo-dark);
}

.native-card .meta {
    font-size: 12px;
    color: var(--pogo-slate);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

/* 7. NATIVE APP NAVIGATION */
.native-bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 440px;
    height: 60px;
    background: #fff;
    border-radius: 80px;
    padding: 0 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    border: 1.5px solid #10b981;
    overflow: visible;
}

.native-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    flex: 1;
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 800;
    height: 100%;
    gap: 2px;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: 0.2s all;
}

.native-bottom-nav a.active {
    color: #10b981;
}

.native-bottom-nav i {
    font-size: 22px;
}

/* 🛒 Badge V4 (The Green Circle) */
.cart-badge-v4 {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    border: 3px solid #1e293b;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.cart-icon-bg {
    color: #cbd5e1;
    opacity: 0.4;
    font-size: 20px !important;
}

.active.native-bottom-nav a i {
    color: #10b981;
}

/* 8. PREMIUM NATIVE CART - AGGRESSIVE OVERRIDES */
.pogo-premium-cart,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    padding: 10px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* 8. PREMIUM NATIVE CART - ULTRA AGGRESSIVE & BLOCKS SUPPORT */
.pogo-premium-cart,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.wc-block-cart,
.wc-block-checkout {
    padding: 10px 0 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    background: transparent !important;
}

/* --- WOOCAMMERCE BLOCKS NATIVE CARDS --- */
.wc-block-cart__main,
.wc-block-cart-items {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* 8. NATIVE APP CART - MATCHING IMAGE EXACTLY */
.pogo-premium-cart,
.woocommerce-cart .woocommerce,
.wc-block-cart {
    padding: 0 !important;
    background: #fff !important;
}

/* Header like the image */
.cart-page-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}

.cart-page-header i {
    font-size: 18px;
    color: #10b981;
}

.cart-page-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
    margin: 0;
}

/* Item Cards in List Style (Image Match) */
.wc-block-cart-items__row,
.wc-block-cart-item,
.cart_item {
    display: flex !important;
    padding: 15px 20px !important;
    border-bottom: 1.5px dashed #cbd5e1 !important;
    background: #fff !important;
    position: relative !important;
    gap: 15px !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: background 0.3s ease;
}

.cart_item:hover {
    background: #fdfdfd !important;
}

.wc-block-cart-item__image,
.product-thumbnail {
    width: 75px !important;
    height: 75px !important;
    border-radius: 10px !important;
    background: #f8fafc !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
}

.product-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.wc-block-cart-item__info,
.product-name {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.wc-block-cart-item__title,
.product-name a {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 4px !important;
}

.wc-block-cart-item__price,
.product-price {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
}

/* Trash Icon (Top Right) */
.wc-block-cart-item__remove-link,
.product-remove-icon {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    color: #10b981 !important;
    /* Image shows green trash/remove or icon */
    font-size: 18px !important;
    opacity: 0.6;
}

/* Quantity Selector (Bottom Right Style) */
.wc-block-cart-item__quantity,
.product-quantity {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Coupons Bar */
.pogo-coupon-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin: 15px 0;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
}

/* Summary Card (Light Green Match) */
.wc-block-cart__sidebar,
.cart-collaterals {
    background: #eef9f5 !important;
    /* Pale Emerald BG like image */
    margin: 20px !important;
    padding: 25px !important;
    border-radius: 20px !important;
    border: none !important;
}

.wc-block-cart-totals__row,
.cart-subtotal,
.order-total {
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: 12px !important;
    font-size: 14px !important;
    color: #475569 !important;
    border: none !important;
}

.order-total {
    font-weight: 900 !important;
    color: #0f172a !important;
    font-size: 18px !important;
    margin-top: 20px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding-top: 15px !important;
}

/* Emerald Shipping Button */
.wc-block-cart__submit-button,
.checkout-button {
    background: #10b981 !important;
    color: #fff !important;
    height: 60px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2) !important;
    margin: 0 20px 40px !important;
    width: calc(100% - 40px) !important;
}

/* Bottom Nav Refinement Icon Colors */
.native-bottom-nav {
    background: #fff !important;
    border-top: 1px solid #f1f5f9 !important;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.03) !important;
}

.native-bottom-nav a {
    color: #cbd5e1 !important;
}

.native-bottom-nav a.active {
    color: #10b981 !important;
}

/* Quantity Control - Image Style */
.pogo-qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 4px 12px;
}

.pogo-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 12px;
}

/* Force Single Content Area for PJAX */
.pogo-native-container {
    background: #fff !important;
    min-height: 100vh;
}

/* NUCLEAR HIDER FOR PRODUCT PAGE */
.single-product .product_title,
.single-product .woocommerce-product-gallery,
.single-product .summary.entry-summary,
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .upsells.products,
.single-product .woocommerce-breadcrumb {
    display: none !important;
}

/* Cart Totals / Collaterals */
.cart-collaterals,
.cart_totals {
    margin-top: 30px !important;
    background: #fff !important;
    border-radius: 25px !important;
    padding: 25px !important;
    box-shadow: var(--pogo-shadow) !important;
}

.cart_totals h2 {
    font-family: 'Outfit' !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
}

/* Bottom Nav Active State Fix */
.native-bottom-nav a.active {
    color: var(--pogo-mint) !important;
    transform: translateY(-5px);
}

/* PJAX Transition States */
body.pjax-loading #pogo-nav-loader {
    display: block !important;
}

.pogo-native-container {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

body.pjax-loading .pogo-native-container {
    opacity: 0;
    transform: translateY(10px);
}

/* V3 DESIGN HANDLED IN TEMPLATE */

/* Force Single Column for Blocks */
@media (max-width: 768px) {
    .wc-block-cart {
        display: flex !important;
        flex-direction: column !important;
    }

    .wc-block-cart__main {
        order: 1 !important;
    }

    .wc-block-cart__sidebar {
        order: 2 !important;
    }
}

/* PC FIXES */
@media (min-width: 1024px) {
    .pogo-native-container .native-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
    }

    .promo-banner {
        min-height: 300px !important;
        padding: 60px !important;
        margin: 20px 5% !important;
    }

    .promo-banner h2 {
        font-size: 60px !important;
    }
}

/* 🚀 V3 PREMIUM NATIVE DESIGN SYSTEM (ULTRA WOW V4) */
:root {
    --pogo-mint: #10b981;
    --pogo-mint-dark: #059669;
    --pogo-mint-light: #f0fdf4;
    --pogo-bg: #f8fafc;
    --pogo-card-bg: #ffffff;
    --pogo-text-main: #0f172a;
    --pogo-text-soft: #64748b;
    --pogo-border: #f1f5f9;
    --pogo-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

@keyframes pogoFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pogo-v3-pg {
    background: var(--pogo-bg);
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--pogo-text-main);
    padding-bottom: 150px;
    animation: pogoFadeIn 0.5s ease backwards;
    position: relative;
    z-index: 10000;
}

/* 💀 THE DEFAULT KILLER */
body.woocommerce-cart .site-header,
body.woocommerce-cart .site-footer,
body.woocommerce-checkout .site-header,
body.woocommerce-checkout .site-footer,
body.woocommerce-cart .woocommerce-breadcrumb,
body.woocommerce-checkout .woocommerce-breadcrumb,
body.woocommerce-cart .widget-area,
body.woocommerce-checkout .widget-area {
    display: none !important;
}

body.woocommerce-cart,
body.woocommerce-checkout {
    padding: 0 !important;
    margin: 0 !important;
    background: var(--pogo-bg) !important;
}

/* 🏔️ Premium Header Overlay */
.v3-pg-header {
    background: linear-gradient(180deg, var(--pogo-mint-light) 0%, #fff 100%);
    padding: 30px 20px 40px;
    text-align: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: -20px;
    position: relative;
    z-index: 10;
}

.v3-pg-header .v3-logo {
    max-width: 140px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.v3-pg-header h1 {
    font-family: 'Outfit';
    font-size: 24px;
    font-weight: 900;
    color: var(--pogo-text-main);
    margin: 0;
    letter-spacing: -0.5px;
}

/* 🧶 Visual Step Indicator */
.v3-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 10px 20px 30px;
    position: relative;
    z-index: 11;
}

.v3-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.v3-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
}

.v3-step-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.v3-step-item.active .v3-step-dot {
    background: var(--pogo-mint);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    transform: scale(1.4);
}

.v3-step-item.active .v3-step-label {
    color: var(--pogo-mint);
}

/* 🃏 Glass-style Cards */
.v3-ck-section {
    padding: 0 20px;
    margin-bottom: 25px;
}

.v3-ck-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 4px;
}

.v3-ck-title h2 {
    font-size: 17px;
    font-weight: 800;
    color: var(--pogo-text-main);
    font-family: 'Outfit';
    margin: 0;
}

.v3-ck-card {
    background: var(--pogo-card-bg);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--pogo-shadow);
    border: 1.5px solid #fff;
}

/* ⌨️ Ultra Native Inputs */
.pogo-v3-input-group {
    position: relative;
    margin-bottom: 15px;
}

.pogo-v3-input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pogo-mint);
    font-size: 15px;
    opacity: 0.7;
}

.pogo-v3-input-group input {
    width: 100%;
    height: 52px;
    background: #f8fafc;
    border: 1.5px solid #f1f5f9;
    border-radius: 14px;
    padding: 0 20px 0 45px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pogo-text-main);
    transition: 0.25s;
}

.pogo-v3-input-group input:focus {
    border-color: var(--pogo-mint);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.05);
}

/* 🔘 Checkbox Custom styling */
.pogo-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 5px;
}

.pogo-checkbox-box {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    padding: 2px;
    transition: 0.2s;
    background: #fff;
}

input[type="checkbox"]:checked+.pogo-checkbox-box {
    background: var(--pogo-mint);
    border-color: var(--pogo-mint);
}

.pogo-checkbox-box i {
    color: #fff;
    font-size: 11px;
    display: none;
}

input[type="checkbox"]:checked+.pogo-checkbox-box i {
    display: block;
}

.pogo-checkbox-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--pogo-mint);
}

/* 💳 Payment Method Pill */
.v3-payment-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0fdf4;
    border: 1.5px solid rgba(16, 185, 129, 0.08);
    padding: 14px 16px;
    border-radius: 16px;
}

.v3-payment-pill span {
    font-weight: 800;
    font-size: 14px;
    color: #166534;
}

.v3-payment-pill i {
    color: var(--pogo-mint);
    font-size: 18px;
}

/* 📊 Summary Design */
.v3-summary-box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 30px;
    border-top: 1.5px dashed #f1f5f9;
    margin-top: 10px;
}

.v3-sm-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
}

.v3-sm-row.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1.5px solid #f8fafc;
    font-size: 20px;
    font-weight: 950;
    color: var(--pogo-text-main);
    font-family: 'Outfit';
}

/* 🛒 Bottom Fix Navigation */
.v3-btn-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 20px 35px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1005;
    border-top: 1px solid rgba(241, 245, 249, 0.5);
}

.v3-emerald-btn {
    width: 100%;
    height: 58px;
    background: linear-gradient(135deg, var(--pogo-mint) 0%, var(--pogo-mint-dark) 100%);
    color: #fff !important;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
    border: none;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.2);
    transition: 0.2s transform;
}

.v3-emerald-btn:active {
    transform: scale(0.97);
}

/* 📱 Floating WhatsApp Native */
.v3-floating-wa {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
}

/* 🎁 Thank You Styling */
.v3-ty-check {
    width: 70px;
    height: 70px;
    background: #dcfce7;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.v3-ty-title {
    font-family: 'Outfit';
    font-size: 26px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 5px;
}

.v3-ty-id {
    font-size: 14px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 30px;
}

.v3-wa-box {
    margin: 20px;
    background: #fff9db;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 15px;
    border: 1px solid #ffec99;
}

.v3-wa-icon {
    width: 44px;
    height: 44px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.v3-wa-content h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #000;
}

.v3-wa-content p {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

/* 🛒 V3 PREMIUM CART CARD RE-LAYOUT */
.v3-cart-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1.5px solid #f8fafc;
    animation: pogoFadeIn 0.4s ease backwards;
}

.v3-card-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    padding-bottom: 12px;
}

.v3-card-row-top .thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #f8fafc;
    overflow: hidden;
    flex-shrink: 0;
}

.v3-card-row-top .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v3-qty-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 2px 6px;
    border-radius: 50px;
}

.v3-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #1e293b;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-qty-val {
    font-size: 13px;
    font-weight: 900;
    color: #10b981;
    min-width: 15px;
    text-align: center;
}

.v3-card-row-top .price {
    font-size: 15px;
    font-weight: 950;
    color: #10b981;
    margin-right: 15px;
}

.v3-card-row-top .price del {
    font-size: 10px;
    color: #94a3b8;
    margin-right: 4px;
    font-weight: 600;
    text-decoration: line-through;
}

.v3-card-row-top .price ins {
    text-decoration: none;
}

.v3-cart-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #fee2e2;
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    z-index: 5;
}

.v3-card-row-bottom {
    margin-top: 5px;
    padding-top: 10px;
    border-top: 1.5px dashed #f1f5f9;
}

.v3-card-row-bottom .name {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}