/* Madang Account Style - Updated */
.madang-account-wrap {
    max-width: 420px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #222;
    padding-left: 12px;
    padding-bottom: 12px;
    padding-right: 12px;
}

/* Header card */
.madang-account-card.header {
    background: #fff;
    border-radius: 12px;
    padding: 11px 14px 14px 46px;
    display: flex;
    align-items: center;
    box-shadow: inset -2px -2px 3px 4px rgb(47 42 87 / 6%);
    position: relative;
    margin-bottom: 16px;
}
.back-link{
    position:absolute;
    left:8px;
    top:10px;
    color:#333;
    text-decoration:none;
    font-size:14px;
    padding:6px;
    background:transparent;
    border-radius:6px;
    display: none;
}
.profile{
    display:flex;
    gap:12px;
    margin-left:0;
    align-items:center;
}
.avatar img{ border-radius:50%; width:64px; height:64px; object-fit:cover;}
.profile-info .name{
    font-weight:600;
    font-size:16px;
}
.profile-info .member-since{
    font-size:12px;
    color:#777;
    margin-top:4px;
}

/* Sections */
.madang-section h3{
    margin: 6px 6px 8px;
    font-size:14px;
    color:#333;
}
.madang-cards{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-bottom:14px;
}
.madang-card{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:12px;
    border-radius:12px;
    box-shadow: inset -2px -2px 3px 4px rgb(47 42 87 / 6%);
    text-decoration:none;
    color:inherit;
}
.madang-card .icon{ font-size:20px; width:34px; text-align:center;}
.madang-card .title{ flex:1; font-weight:500; text-transform:uppercase; font-size:13px;}
.madang-card .arrow{ color:#999; }

/* Actions */
.madang-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:16px;
}
.logout-btn{
    display:block;
    border-radius:24px;
    padding:12px;
    text-align:center;
    text-decoration:none;
    color:#fff;
    background:#d24f42;
    font-weight:600;
    box-shadow:0 6px 14px rgba(210,79,66,0.18);
}

.gift-card .icon {
    display: inline-block;
    animation: gift-shake 0.5s infinite;
}

@keyframes gift-shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}




/* Quick hide default WC navigation just in case */
.woocommerce-MyAccount-navigation { display: none !important; }

/* Responsive */
@media (min-width:700px){
    .madang-account-wrap{ max-width:700px; }
    .madang-cards{ grid-template-columns: 1fr 1fr; }
}