/* ===========================================================
   PEDIDO PREMIUM
   PARTE 1
===========================================================*/

.pedido-premium{
    max-width:1200px;
    margin:40px auto;
    padding:0 20px;
    font-family:inherit;
}

/* HEADER */

.pp-header{
    background:#ffffff;
    border-radius:18px;
    padding:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    margin-bottom:30px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.pp-header-left{
    display:flex;
    align-items:center;
    gap:22px;
}

.pp-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    background:#ffb400;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    flex-shrink:0;
}

.pp-header h1{
    margin:0;
    font-size:34px;
    line-height:1.2;
    color:#1f2937;
    font-weight:700;
}

.pp-header p{
    margin:8px 0 0;
    color:#6b7280;
    font-size:15px;
}

.pp-status{
    background:#dcfce7;
    color:#166534;
    border-radius:999px;
    padding:12px 22px;
    font-size:15px;
    font-weight:700;
    white-space:nowrap;
}

/* CARDS */

.pp-resumo{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-bottom:30px;
}

.pp-card{
    background:#ffffff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.25s;
}

.pp-card:hover{
    transform:translateY(-5px);
}

.pp-card small{
    display:block;
    color:#6b7280;
    font-size:14px;
    margin-bottom:10px;
}

.pp-card strong{
    display:block;
    color:#111827;
    font-size:30px;
    font-weight:700;
    line-height:1.2;
}

/* SEÇÕES */

.pp-section{
    background:#ffffff;
    border-radius:18px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.pp-section h2{
    margin:0 0 25px;
    font-size:26px;
    color:#111827;
    font-weight:700;
}

/* PRODUTOS */

.pp-products{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.pp-product{
    display:flex;
    align-items:center;
    gap:20px;
    border:1px solid #ececec;
    border-radius:16px;
    padding:18px;
    transition:.25s;
}

.pp-product:hover{
    border-color:#ffb400;
    transform:translateY(-3px);
}

.pp-image{
    width:90px;
    min-width:90px;
}

.pp-image img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:12px;
}

.pp-content{
    flex:1;
}

.pp-content h3{
    margin:0 0 8px;
    font-size:20px;
    color:#111827;
}

.pp-meta{
    color:#6b7280;
    font-size:15px;
}

.pp-price{
    font-size:22px;
    font-weight:700;
    color:#111827;
    white-space:nowrap;
}
/* ===========================================================
   PEDIDO PREMIUM
   PARTE 2
===========================================================*/

/* LICENÇAS */

.pp-licenses{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* Compatibilidade Download Monitor */

.pp-licenses table{
    width:100%;
    border-collapse:collapse;
    border:1px solid #ececec;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
}

.pp-licenses thead{
    background:#f8f8f8;
}

.pp-licenses th{
    padding:18px;
    text-align:left;
    font-size:15px;
    font-weight:700;
    color:#111827;
}

.pp-licenses td{
    padding:18px;
    border-top:1px solid #ececec;
    vertical-align:middle;
}

.pp-licenses tr:hover{
    background:#fafafa;
}

.pp-licenses code{
    display:inline-block;
    padding:8px 12px;
    background:#f5f5f5;
    border-radius:8px;
    font-size:14px;
    word-break:break-all;
}

/* GRID CLIENTE */

.pp-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.pp-info{
    border:1px solid #ececec;
    border-radius:14px;
    padding:20px;
}

.pp-info span{
    display:block;
    margin-bottom:8px;
    color:#6b7280;
    font-size:14px;
}

.pp-info strong{
    display:block;
    color:#111827;
    font-size:17px;
    font-weight:600;
    word-break:break-word;
}

/* TABELA DE TOTAIS */

.pp-totals{
    width:100%;
    border-collapse:collapse;
}

.pp-totals tr{
    border-bottom:1px solid #ececec;
}

.pp-totals tr:last-child{
    border-bottom:none;
}

.pp-totals th{
    padding:18px 0;
    text-align:left;
    font-weight:600;
    color:#4b5563;
    font-size:16px;
}

.pp-totals td{
    padding:18px 0;
    text-align:right;
    font-weight:700;
    color:#111827;
    font-size:18px;
}

/* ===========================
   BOTÕES
=========================== */

.pp-actions{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:35px;
}

.pp-btn{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;

    min-width:260px;
    height:56px;

    border-radius:12px !important;

    font-size:16px !important;

    font-weight:700 !important;

    text-decoration:none !important;

    transition:.25s;
}

.pp-btn-primary{

    background:#ffb400 !important;

    color:#111 !important;

    border:none !important;

}

.pp-btn-primary:hover{

    background:#f5aa00 !important;

}

.pp-btn:not(.pp-btn-primary){

    background:#f2f2f2 !important;

    color:#111 !important;

    border:none !important;

}

.pp-btn-primary:hover{
    transform:translateY(-3px);
}

.pp-btn:not(.pp-btn-primary){
    background:#f5f5f5 !important;
    color:#111 !important;
}

.pp-btn:not(.pp-btn-primary):hover{
    background:#ececec !important;
}

/* REMOVE ESTILOS PADRÃO */

.pedido-premium table{
    margin-bottom:0;
}

.pedido-premium h1,
.pedido-premium h2,
.pedido-premium h3,
.pedido-premium p{
    line-height:1.4;
}

/* RESPONSIVO */

@media (max-width:991px){

    .pp-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .pp-resumo{
        grid-template-columns:1fr;
    }

    .pp-grid{
        grid-template-columns:1fr;
    }

    .pp-product{
        flex-wrap:wrap;
    }

    .pp-price{
        width:100%;
        text-align:left;
        margin-top:10px;
    }

}

@media (max-width:767px){

    .pedido-premium{
        padding:0 12px;
    }

    .pp-header{
        padding:24px;
    }

    .pp-header h1{
        font-size:26px;
    }

    .pp-section{
        padding:22px;
    }

    .pp-card{
        padding:22px;
    }

    .pp-image,
    .pp-image img{
        width:70px;
        height:70px;
    }

    .pp-actions{
        flex-direction:column;
    }

    .pp-btn{
        width:100%;
    }

}
/* ===========================================================
   PEDIDO PREMIUM
   PARTE 3 (FINAL)
===========================================================*/


/* ---------- DOWNLOAD MONITOR ---------- */

.pp-licenses a{
    color:#111827;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}

.pp-licenses a:hover{
    color:#ffb400;
}

.pp-licenses .button,
.pp-licenses .btn,
.pp-licenses input[type=submit],
.pp-licenses button{
    background:#ffb400 !important;
    color:#111 !important;
    border:none !important;
    border-radius:10px !important;
    padding:12px 18px !important;
    font-size:14px !important;
    font-weight:700 !important;
    cursor:pointer;
    transition:.25s;
}

.pp-licenses .button:hover,
.pp-licenses .btn:hover,
.pp-licenses input[type=submit]:hover,
.pp-licenses button:hover{
    transform:translateY(-2px);
}

.pp-licenses input[type=text]{
    width:100%;
    border:1px solid #ddd;
    border-radius:8px;
    padding:10px 12px;
}


/* ---------- TABELAS ---------- */

.pedido-premium table{
    width:100%;
}

.pedido-premium table th{
    background:#fafafa;
}

.pedido-premium table td,
.pedido-premium table th{
    vertical-align:middle;
}


/* ---------- SCROLL ---------- */

.pp-products::-webkit-scrollbar,
.pp-licenses::-webkit-scrollbar{
    height:8px;
    width:8px;
}

.pp-products::-webkit-scrollbar-thumb,
.pp-licenses::-webkit-scrollbar-thumb{
    background:#d6d6d6;
    border-radius:999px;
}


/* ---------- ANIMAÇÕES ---------- */

@keyframes ppFade{

    from{

        opacity:0;
        transform:translateY(18px);

    }

    to{

        opacity:1;
        transform:none;

    }

}

.pp-header,
.pp-card,
.pp-section{

    animation:ppFade .45s ease;

}


/* ---------- HOVER ---------- */

.pp-section{

    transition:.25s;

}

.pp-section:hover{

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.pp-info{

    transition:.25s;

}

.pp-info:hover{

    border-color:#ffb400;

}

.pp-product{

    transition:.25s;

}

.pp-product:hover{

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}


/* ---------- LINKS ---------- */

.pedido-premium a{

    transition:.25s;

}


/* ---------- IMAGENS ---------- */

.pp-image{

    overflow:hidden;
    border-radius:12px;

}

.pp-image img{

    display:block;
    transition:.35s;

}

.pp-product:hover .pp-image img{

    transform:scale(1.06);

}


/* ---------- BADGES ---------- */

.pp-status{

    text-transform:uppercase;
    letter-spacing:.5px;

}


/* ---------- ÚLTIMOS AJUSTES ---------- */

.pedido-premium *{

    box-sizing:border-box;

}

.pedido-premium img{

    max-width:100%;
    height:auto;

}

.pedido-premium::after{

    content:"";
    display:block;
    clear:both;

}
.pp-license-copy{

display:flex;
align-items:center;
gap:15px;

}

.pp-license-input{

flex:1;
border:none;
background:#f7f7f7;
padding:14px;
border-radius:10px;
font-size:15px;

}

.pp-copy-license{

    display:flex !important;

    justify-content:center;

    align-items:center;

    gap:8px;

    background:#ffb400 !important;

    color:#111 !important;

    border:none !important;

    border-radius:10px;

    padding:12px 20px;

    cursor:pointer;

    font-size:14px;

    font-weight:700;

    transition:.25s;

}

.pp-copy-license:hover{

    transform:translateY(-2px);

    background:#f2a900 !important;

}

.pp-copy-license img{

    width:18px;

    height:18px;

}
.pedido-premium a.button.pp-btn.pp-btn-primary{

    display:flex !important;
    justify-content:center !important;
    align-items:center !important;

    width:280px !important;
    height:56px !important;

    background:#ffb400 !important;
    color:#111 !important;

    border:none !important;
    border-radius:12px !important;

    text-decoration:none !important;

    font-weight:700 !important;

    padding:0 !important;

    line-height:56px !important;
}
.pedido-premium .pp-copy-license{

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    width:140px !important;

    height:46px !important;

    background:#ffb400 !important;

    border:none !important;

    border-radius:10px !important;

    color:#111 !important;

    font-weight:700 !important;

    cursor:pointer;

}
/* ===========================================================
   MINHAS RECARGAS - PARTE 1
===========================================================*/

.pp-orders{

    max-width:1200px;
    margin:40px auto;
    padding:0 20px;

}

.pp-orders-header{

    background:#fff;
    border-radius:20px;
    padding:35px;
    margin-bottom:35px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.pp-orders-title{

    display:flex;
    align-items:center;
    gap:22px;

}

.pp-orders-icon{

    width:72px;
    height:72px;
    border-radius:18px;
    background:#ffb400;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    flex-shrink:0;

}

.pp-orders-title h1{

    margin:0;
    font-size:34px;
    color:#111827;
    font-weight:700;

}

.pp-orders-title p{

    margin:8px 0 0;
    color:#6b7280;
    font-size:15px;

}

/* ===========================================================
   LISTA
===========================================================*/

.pp-orders-list{

    display:flex;
    flex-direction:column;
    gap:28px;

}

/* ===========================================================
   CARD
===========================================================*/

.pp-order-card{

    background:#fff;
    border-radius:20px;
    padding:32px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.30s;

}

.pp-order-card:hover{

    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

/* ===========================================================
   TOPO
===========================================================*/

.pp-order-top{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
    gap:20px;

}

.pp-order-top h2{

    margin:0;
    font-size:28px;
    color:#111827;

}

.pp-order-top span{

    display:block;
    margin-top:8px;
    color:#6b7280;
    font-size:15px;

}

/* ===========================================================
   STATUS
===========================================================*/

.pp-status{

    padding:12px 22px;
    border-radius:999px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    white-space:nowrap;

}

.pp-status.success{

    background:#dcfce7;
    color:#166534;

}

.pp-status.warning{

    background:#fff7d6;
    color:#9a6700;

}

.pp-status.danger{

    background:#fee2e2;
    color:#991b1b;

}

.pp-status.default{

    background:#ececec;
    color:#555;

}

/* ===========================================================
   INFORMAÇÕES
===========================================================*/

.pp-order-info{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-bottom:30px;

}

.pp-order-info div{

    background:#fafafa;
    border:1px solid #ececec;
    border-radius:14px;
    padding:22px;

}

.pp-order-info small{

    display:block;
    color:#6b7280;
    margin-bottom:10px;
    font-size:14px;

}

.pp-order-info strong{

    display:block;
    font-size:22px;
    color:#111827;

}

/* ===========================================================
   PRODUTOS
===========================================================*/

.pp-order-products{

    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:30px;

}

.pp-product-row{

    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px solid #ececec;
    border-radius:14px;
    padding:18px 20px;
    transition:.25s;

}

.pp-product-row:hover{

    border-color:#ffb400;
    background:#fffdf5;

}

.pp-product-name{

    font-weight:600;
    color:#111827;

}

.pp-product-qty{

    font-weight:700;
    color:#6b7280;

}

/* ===========================================================
   BOTÃO
===========================================================*/

.pp-order-actions{

    display:flex;
    justify-content:flex-end;

}

.pp-order-actions .pp-btn{

    width:220px;
    height:54px;
    display:flex !important;
    justify-content:center;
    align-items:center;
    transition:.30s !important;
    width:100%;

}
/* ===========================================================
   MINHAS RECARGAS - PARTE 2
===========================================================*/


/* ===========================
   ÍCONES DAS INFORMAÇÕES
=========================== */

.pp-order-info div{

    position:relative;
    overflow:hidden;

}

.pp-order-info div::before{

    position:absolute;
    top:50%;
    right:22px;
    transform:translateY(-50%);
    font-size:34px;
    opacity:.50;
    line-height:1;

}

.pp-order-info div:nth-child(1)::before{

    content:"💰";

}

.pp-order-info div:nth-child(2)::before{

    content:"💳";

}

.pp-order-info div:nth-child(3)::before{

    content:"📦";

}


/* ===========================
   PRODUTOS
=========================== */

.pp-product-row{

    background:#fff;

}

.pp-product-name{

    display:flex;
    align-items:center;
    gap:14px;

}

.pp-product-name::before{

    content:"📦";
    width:34px;
    height:34px;
    border-radius:10px;
    background:#fff7dd;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;

}


/* ===========================
   LINHA SUPERIOR
=========================== */

.pp-order-top{

    padding-bottom:22px;
    border-bottom:1px solid #ececec;

}


/* ===========================
   DIVISÃO
=========================== */

.pp-order-products{

    border-top:1px solid #ececec;
    padding-top:24px;

}


/* ===========================
   BOTÃO
=========================== */

.pp-order-actions{

    margin-top:10px;

}

.pp-order-actions .pp-btn:hover{

    transform:translateY(-3px);

}


/* ===========================
   ESTADO VAZIO
=========================== */

.pp-empty-orders{

    background:#fff;
    border-radius:20px;
    padding:70px 30px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.pp-empty-icon{

    width:90px;
    height:90px;
    border-radius:22px;
    background:#fff7dd;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:42px;
    margin:0 auto 25px;

}

.pp-empty-orders h2{

    margin:0 0 30px;
    font-size:28px;
    color:#111827;

}


/* =====================================================
   PAGINAÇÃO PREMIUM
===================================================== */

.pp-pagination{

    display:flex;
    justify-content:center;
    align-items:center;
    margin:50px 0 20px;

}

.pp-pagination .page-numbers{

    display:flex;
    align-items:center;
    gap:12px;
    list-style:none;
    padding:0;
    margin:0;
    flex-wrap:wrap;

}

.pp-pagination .page-numbers li{

    list-style:none;

}

.pp-pagination .page-numbers a,
.pp-pagination .page-numbers span{

    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:#fff;

    color:#374151;

    font-size:16px;
    font-weight:600;

    text-decoration:none;

    border:1px solid #ececec;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

    transition:.25s;

}

.pp-pagination .page-numbers a:hover{

    background:#ffb400;
    color:#111827;
    border-color:#ffb400;

    transform:translateY(-3px);

}

.pp-pagination .page-numbers .current{

    background:#ffb400;
    color:#111827;
    border-color:#ffb400;

    font-weight:700;

    box-shadow:0 10px 24px rgba(255,180,0,.35);

}

.pp-pagination .prev,
.pp-pagination .next{

    width:auto !important;

    padding:0 18px;

}


/* ===========================
   RESPONSIVO
=========================== */

@media(max-width:991px){

    .pp-order-info{

        grid-template-columns:1fr;

    }

    .pp-order-top{

        flex-direction:column;
        align-items:flex-start;

    }

    .pp-order-actions{

        justify-content:stretch;

    }

}


@media(max-width:767px){

    .pp-orders{

        padding:0 12px;

    }

    .pp-orders-header{

        padding:24px;

    }

    .pp-orders-title{

        flex-direction:column;
        align-items:flex-start;

    }

    .pp-orders-icon{

        width:60px;
        height:60px;
        font-size:28px;

    }

    .pp-orders-title h1{

        font-size:28px;

    }

    .pp-order-card{

        padding:22px;

    }

    .pp-order-top h2{

        font-size:22px;

    }

    .pp-product-row{

        flex-direction:column;
        align-items:flex-start;
        gap:10px;

    }

}
/* ==========================================
   ESTATÍSTICAS
========================================== */

.pp-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:35px;

}

.pp-stat{

    background:#fff7dd;

    border-radius:16px;

    padding:24px;

}

.pp-stat span{

    display:block;

    font-size:14px;

    color:#666;

    margin-bottom:10px;

}

.pp-stat strong{

    display:block;
    font-size:32px;
    font-weight:700;
    color:#111827;
    line-height:1.2;
    white-space:nowrap;

}


/* ==========================================
   TOOLBAR
========================================== */

.pp-toolbar{

    display:flex;

    gap:20px;

    margin-top:30px;

    flex-wrap:wrap;

}

.pp-toolbar input{

    flex:1;

    height:54px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 18px;

    font-size:15px;

}

.pp-toolbar select{

    width:220px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 18px;

    font-size:15px;

}


/* ==========================================
   RESPONSIVO
========================================== */

@media(max-width:991px){

    .pp-stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:767px){

    .pp-stats{

        grid-template-columns:1fr;

    }

    .pp-toolbar{

        flex-direction:column;

    }

    .pp-toolbar select{

        width:100%;

    }

}
/* =====================================================
   MINIATURAS DOS PRODUTOS
===================================================== */

.pp-product-name{

    display:flex;
    align-items:center;
    gap:16px;

}

.pp-product-name::before{

    display:none;

}

.pp-product-thumb{

    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:14px;
    background:#fafafa;
    border:1px solid #ececec;
    flex-shrink:0;

}

.pp-product-info{

    display:flex;
    flex-direction:column;

}

.pp-product-info strong{

    color:#111827;
    font-size:16px;

}

.pp-product-info small{

    margin-top:4px;
    color:#777;
    font-size:13px;

}

/* =====================================================
   BADGES
===================================================== */

.pp-status{

    position:relative;
    overflow:hidden;

}

.pp-status::after{

    content:'';

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transform:translateX(-100%);

    transition:.6s;

}

.pp-order-card:hover .pp-status::after{

    transform:translateX(100%);

}

/* =====================================================
   CARD
===================================================== */

.pp-order-card{

    border:1px solid #ececec;

}

.pp-order-card:hover{

    border-color:#ffb400;

}

/* =====================================================
   BOTÃO
===================================================== */

.pp-btn-primary{

    position:relative;

    overflow:hidden;

}

.pp-btn-primary::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.30),

        transparent

    );

    transform:translateX(-100%);

    transition:.6s;

}

.pp-btn-primary:hover::after{

    transform:translateX(100%);

}

/* =====================================================
   SCROLL
===================================================== */

.pp-orders{

    animation:ppFade .5s ease;

}

@keyframes ppFade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:none;

    }

}
.pp-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

}

.pp-btn svg{

    transition:.30s;

}

.pp-btn:hover svg{

    transform:translateX(5px);

}
/* =======================================
   CONTADOR
======================================= */

.pp-results{

    margin:25px 0;
    color:#666;
    font-size:15px;
    font-weight:500;

}

#pp-results-count{

    color:#111;
    font-size:18px;
    font-weight:700;

}


/* =======================================
   SEM RESULTADO
======================================= */

.pp-no-results{

    display:none;

    padding:60px;

    background:#fff;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.pp-no-results h3{

    margin:0;

    font-size:24px;

}

.pp-no-results p{

    margin-top:10px;

    color:#666;

}
.pp-stat strong .woocommerce-Price-amount,
.pp-stat strong .woocommerce-Price-amount bdi{
    display:block;
    font-size:32px;
    font-weight:700;
    color:#111827;
    line-height:1.2;
    white-space:nowrap;
}

.pp-stat strong .woocommerce-Price-currencySymbol{
    display:block;
    font-size:32px;
    font-weight:700;
    color:#111827;
    line-height:1.2;
    white-space:nowrap;
}
/* ==========================================================
   MEU PERFIL
========================================================== */

.woocommerce-EditAccountForm{
    margin-top:30px;
}

.pp-account-header{
    background:#fff;
    border-radius:24px;
    padding:36px;
    margin-bottom:30px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.pp-account-title{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.pp-account-icon{
    width:74px;
    height:74px;
    border-radius:20px;
    background:#ffb100;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.pp-account-title h1{
    margin:0;
    font-size:42px;
    font-weight:800;
    color:#132238;
}

.pp-account-title p{
    margin:8px 0 0;
    color:#5d6d7e;
    font-size:17px;
}

.pp-account-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.pp-account-card{
    background:#fff8e5;
    border-radius:18px;
    padding:18px 22px;
    min-height:120px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.pp-account-card span{
    display:block;
    font-size:14px;
    color:#666;
    margin-bottom:14px;
    font-weight:500;
}

.pp-account-card strong{
    display:block;
    font-size:18px;
    line-height:1.3;
    font-weight:700;
    color:#111827;
}

.pp-account-section{
    background:#fff;
    border-radius:24px;
    padding:35px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.pp-section-title{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:12px;
}
.pp-account-section .woocommerce-form-row:first-of-type{
    margin-top:0 !important;
}

.pp-section-icon{

    width:56px;

    height:56px;

    border-radius:16px;

    background:#fff8e5;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.pp-section-icon i{

    color:#ffb100;

    font-size:22px;

}

.pp-section-title h2{

    margin:0;

    font-size:30px;

    font-weight:700;

    color:#132238;

}

.pp-section-title p{

    margin:6px 0 0;

    color:#6b7280;

    font-size:15px;

    line-height:1.5;

}

.pp-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.woocommerce-EditAccountForm label{
    font-weight:600;
    color:#27374d;
    margin-bottom:10px;
}

.woocommerce-EditAccountForm input{
    height:58px;
    border-radius:14px;
    border:1px solid #d8dde5;
    padding:0 18px;
    transition:.25s;
}

.woocommerce-EditAccountForm input:focus{
    border-color:#ffb100;
    box-shadow:0 0 0 4px rgba(255,177,0,.18);
}

.pp-password-fieldset{
    border:none;
    padding:0;
    margin:0;
}

.pp-password-fieldset legend{
    display:none;
}

.woocommerce-Button{
    background:#ffb100!important;
    color:#111!important;
    border:none!important;
    border-radius:14px!important;
    padding:16px 34px!important;
    font-weight:700!important;
    transition:.25s;
}

.woocommerce-Button:hover{
    transform:translateY(-2px);
}

@media(max-width:768px){

    .pp-account-title{
        flex-direction:column;
        text-align:center;
    }

    .pp-account-stats{
        grid-template-columns:1fr;
    }

    .pp-grid{
        grid-template-columns:1fr;
    }

}
/* =====================================================
   RESUMO DO PERFIL
===================================================== */

.pp-account-summary{

    margin-top:20px;

    background:#fff;

    border:1px solid #edf1f5;

    border-radius:18px;

    padding:18px 26px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

}

.pp-account-summary-item{

    display:flex;

    align-items:center;

    gap:15px;

    flex:1;

}

.pp-account-summary-item>span{
    width:46px;
    height:46px;

    border-radius:14px;

    background:#fff8e5;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.pp-account-summary-item strong{

    display:block;

    font-size:18px;

    color:#111827;

    margin-bottom:4px;

}

.pp-account-summary-item small{

    color:#6b7280;

    font-size:13px;

}

@media(max-width:768px){

    .pp-account-summary{

        flex-direction:column;

        align-items:flex-start;

    }

}
.pp-section-heading{

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:4px;

}

.pp-account-section .pp-section-heading h2{

    margin:0 !important;

    padding:0 !important;

    line-height:1.15 !important;

    font-size:30px;

    font-weight:700;

    color:#132238;

}

.pp-account-section .pp-section-heading p{

    margin:2px 0 0 !important;

    padding:0 !important;

    line-height:1.4;

    color:#6b7280;

    font-size:15px;

}
.woocommerce-EditAccountForm .woocommerce-Button{
    margin-bottom:50px;
}
.woocommerce-EditAccountForm{
    padding-bottom:60px !important;
    box-sizing:border-box;
}
/* ==========================================================
   ALERTAS WOOCOMMERCE - PREMIUM
========================================================== */

.woocommerce-notices-wrapper{
    margin-bottom:30px;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info{

    position:relative;

    padding:18px 22px 18px 65px !important;

    border:none !important;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.woocommerce-notices-wrapper .woocommerce-message{

    background:#ecfdf5 !important;

    color:#166534 !important;

}

.woocommerce-notices-wrapper .woocommerce-message::before{

    content:"✓";

    position:absolute;

    left:22px;

    top:50%;

    transform:translateY(-50%);

    width:28px;

    height:28px;

    border-radius:50%;

    background:#22c55e;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:16px;

    font-weight:700;

}

.woocommerce-notices-wrapper .woocommerce-error{

    background:#fef2f2 !important;

    color:#991b1b !important;

}

.woocommerce-notices-wrapper .woocommerce-info{

    background:#eff6ff !important;

    color:#1d4ed8 !important;

}

.woocommerce-notices-wrapper ul{
    margin:0;
    padding:0;
    list-style:none;
}
/*==================================================
  CABEÇALHO DO CARRINHO
==================================================*/

.pp-cart-header{

    background:#fff;

    border-radius:18px;

    padding:35px;

    margin-bottom:35px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.pp-cart-title{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:30px;

}

.pp-cart-icon{

    width:64px;

    height:64px;

    border-radius:18px;

    background:linear-gradient(135deg,#5BBAD5,#45a6c4);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

}

.pp-cart-title h1{

    margin:0;

    font-size:34px;

    font-weight:700;

    line-height:1.1;

}

.pp-cart-title p{

    margin-top:6px;

    color:#7b8794;

}

.pp-cart-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.pp-cart-card{

    background:#f8fafc;

    border-radius:16px;

    padding:22px;

    text-align:center;

    transition:.25s;

}

.pp-cart-card:hover{

    transform:translateY(-4px);

}

.pp-cart-card span{

    display:block;

    color:#7b8794;

    font-size:14px;

}

.pp-cart-card strong{

    display:block;

    margin-top:8px;

    font-size:26px;

    color:#1f2937;

}

@media(max-width:768px){

.pp-cart-stats{

grid-template-columns:1fr;

}

.pp-cart-title{

flex-direction:column;

align-items:flex-start;

}

}
/*==================================================
            CARRINHO PREMIUM
==================================================*/

.shop_table.cart{

    border:none !important;

    background:transparent;

}

.shop_table.cart thead{

    display:none;

}

.shop_table.cart tbody{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.shop_table.cart tr.cart_item{

    display:grid;

    grid-template-columns:90px 1fr;

    gap:25px;

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    position:relative;

}

.shop_table.cart td{

    border:none !important;

    padding:0 !important;

}

.shop_table.cart td.product-remove{

    position:absolute;

    top:25px;

    right:25px;

}

.shop_table.cart td.product-remove a{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#fff5f5;

    color:#ef4444 !important;

    font-size:18px;

    transition:.25s;

}

.shop_table.cart td.product-remove a:hover{

    background:#ef4444;

    color:#fff !important;

}

.shop_table.cart td.product-thumbnail{

    width:90px;

}

.shop_table.cart td.product-thumbnail img{

    width:90px;

    border-radius:14px;

}

.shop_table.cart td.product-name{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.shop_table.cart td.product-name a{

    font-size:22px;

    font-weight:700;

    color:#1f2937;

    text-decoration:none;

}

.shop_table.cart td.product-price,
.shop_table.cart td.product-quantity,
.shop_table.cart td.product-subtotal{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:12px !important;

    border-top:1px solid #eef2f7 !important;

    margin-top:10px;

}

.shop_table.cart td.product-price::before{

    content:"Valor";

    color:#94a3b8;

    font-weight:600;

}

.shop_table.cart td.product-quantity::before{

    content:"Quantidade";

    color:#94a3b8;

    font-weight:600;

}

.shop_table.cart td.product-subtotal::before{

    content:"Subtotal";

    color:#94a3b8;

    font-weight:600;

}
@media(max-width:768px){

.shop_table.cart tr.cart_item{

grid-template-columns:1fr;

padding:20px;

}

.shop_table.cart td.product-thumbnail{

width:100%;

text-align:center;

}

.shop_table.cart td.product-thumbnail img{

width:120px;

}

.shop_table.cart td.product-remove{

top:15px;

right:15px;

}

.shop_table.cart td.product-name a{

font-size:19px;

}

}
/*==================================================
            RESUMO DO CARRINHO
==================================================*/

.cart-collaterals{

    margin-top:40px;

}

.cart_totals{

    background:#fff;

    border:none !important;

    border-radius:20px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.cart_totals h2{

    font-size:28px;

    margin-bottom:25px;

    font-weight:700;

}
.cart_totals table{

    border:none !important;

}

.cart_totals th,
.cart_totals td{

    border:none !important;

    padding:18px 0 !important;

}

.cart_totals tr{

    border-bottom:1px solid #edf2f7;

}

.cart_totals tr:last-child{

    border-bottom:none;

}

.cart_totals th{

    color:#64748b;

    font-weight:600;

}

.cart_totals td{

    text-align:right;

    font-size:18px;

    font-weight:700;

}
.wc-proceed-to-checkout{

    padding-top:25px !important;

}

.wc-proceed-to-checkout a{

    display:flex !important;

    justify-content:center;

    align-items:center;

    height:60px;

    border-radius:16px !important;

    background:linear-gradient(135deg,#5BBAD5,#45a6c4) !important;

    color:#fff !important;

    font-size:18px;

    font-weight:700;

    transition:.25s;

    text-decoration:none;

}

.wc-proceed-to-checkout a:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(91,186,213,.35);

}
@media(min-width:992px){

.cart_totals{

    position:sticky;

    top:30px;

}

}
.pp-cart-benefits{

    margin-top:25px;

    margin-bottom:25px;

    display:flex;

    flex-direction:column;

    gap:14px;

}

.pp-benefit{

    display:flex;

    align-items:center;

    gap:12px;

    background:#f8fafc;

    border-radius:14px;

    padding:14px 18px;

    color:#334155;

    font-weight:600;

}

.pp-benefit i{

    color:#5BBAD5;

    font-size:18px;

    width:22px;

}
/*==================================================
            CUPÃO PREMIUM
==================================================*/

.coupon{

    display:flex;

    gap:15px;

    align-items:center;

    margin-top:20px;

    flex-wrap:wrap;

}

.coupon label{

    display:none;

}

.coupon input{

    flex:1;

    min-width:220px;

    height:52px;

    border:1px solid #dbe4ec;

    border-radius:14px;

    padding:0 18px;

    font-size:15px;

    background:#fff;

    transition:.25s;

}

.coupon input:focus{

    border-color:#5BBAD5;

    box-shadow:0 0 0 4px rgba(91,186,213,.15);

    outline:none;

}
.coupon button,
button[name="update_cart"]{

    height:52px;

    padding:0 28px;

    border:none;

    border-radius:14px;

    background:#f1f5f9 !important;

    color:#334155 !important;

    font-weight:700;

    transition:.25s;

}

.coupon button:hover,
button[name="update_cart"]:hover{

    background:#5BBAD5 !important;

    color:#fff !important;

}
/*==================================================
            AVISOS PREMIUM
==================================================*/

.woocommerce-notices-wrapper{

    margin-bottom:30px;

}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info{

    border:none !important;

    border-radius:18px;

    padding:18px 22px 18px 60px !important;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    position:relative;

}

.woocommerce-message{

    background:#ecfdf5 !important;

    color:#166534 !important;

}

.woocommerce-error{

    background:#fef2f2 !important;

    color:#991b1b !important;

}

.woocommerce-info{

    background:#eff6ff !important;

    color:#1d4ed8 !important;

}
.woocommerce-message::before{

    content:"✓";

    width:30px;

    height:30px;

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    border-radius:50%;

    background:#22c55e;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

.woocommerce-error::before{

    color:#dc2626 !important;

}

.woocommerce-info::before{

    color:#2563eb !important;

}
button[name="update_cart"]{

    margin-left:15px;

}
/*==================================================
        HEADER PREMIUM - CARRINHO
==================================================*/

.pp-cart-header{

    background:#fff;

    border-radius:22px;

    padding:35px;

    margin-bottom:35px;

    box-shadow:0 10px 35px rgba(15,23,42,.05);

}

.pp-cart-title{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

    margin-bottom:30px;

}

.pp-cart-title-text h1{

    margin:0;

    font-size:34px;

    font-weight:700;

    color:#0f172a;

}

.pp-cart-title-text p{

    margin-top:8px;

    color:#64748b;

}

.pp-cart-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:linear-gradient(135deg,#5BBAD5,#46A8C7);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    flex-shrink:0;

}

.pp-cart-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

}

.pp-cart-stat{

    background:#f8fafc;

    border:1px solid #edf2f7;

    border-radius:18px;

    padding:22px;

    text-align:center;

    transition:.25s;

}

.pp-cart-stat:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.pp-cart-stat small{

    display:block;

    color:#64748b;

    font-size:14px;

    margin-bottom:8px;

}

.pp-cart-stat strong{

    font-size:28px;

    color:#0f172a;

}

@media(max-width:900px){

.pp-cart-title{

flex-direction:column;

align-items:flex-start;

}

.pp-cart-stats{

grid-template-columns:1fr;

}

}