
/* Pro Account Portal — improved, Elementor-safe CSS
   - Scoped to .account-wrapper to avoid affecting the whole page
   - Loads Font Awesome via @import (remove if your theme already loads it)
*/
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* Base (scoped) */
.account-wrapper { font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color:#1f2937; }
.account-wrapper * { box-sizing: border-box; }
.account-wrapper a { text-decoration: none; }

/* Layout */
.account-wrapper{display:flex;gap:20px;flex-wrap:wrap;align-items:flex-start}
.account-sidebar{width:260px;background:#fff;border-radius:16px;box-shadow:0 4px 12px rgba(0,0,0,.05);padding:20px;flex-shrink:0;position:sticky;top:20px}
.account-sidebar .avatar{text-align:center;margin-bottom:20px}
.account-sidebar .avatar img{width:80px;height:80px;border-radius:50%;box-shadow:0 2px 6px rgba(0,0,0,.1)}
.account-sidebar nav a{display:flex;align-items:center;gap:10px;padding:10px 14px;border-radius:10px;margin-bottom:8px;color:#374151;font-weight:500;transition:all .2s;font-size:15px}
.account-sidebar nav a i{color:#6b7280;width:18px;text-align:center}
.account-sidebar nav a.active,.account-sidebar nav a:hover{background:#002cb9;color:#ffffff;font-weight:600;transform:translateX(4px)}
.account-sidebar nav a.active i,.account-sidebar nav a:hover i{color:#2563EB}
.account-sidebar .stats{margin-top:20px;font-size:14px;border-top:1px solid #eee;padding-top:15px;color:#6b7280}
.account-content{flex:1;min-width:0}

/* Sections */
.section{display:none;background:#fff;border-radius:16px;padding:25px;box-shadow:0 4px 12px rgba(0,0,0,.05);animation:fadeIn .3s ease}
.section.active{display:block}
.section h2{font-size:22px;margin-bottom:15px;font-weight:600}
@keyframes fadeIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}

/* Dashboard */
.dashboard-header{margin-bottom:20px;display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.dashboard-header h2{margin:0;font-size:24px;font-weight:700}
.dashboard-header span{font-size:14px;color:#374151;background:#002cb9;padding:4px 10px;border-radius:6px}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px;margin-bottom:20px}
.stats-card{padding:20px;border-radius:16px;text-align:center;box-shadow:inset 0 0 0 1px #e5e7eb;background:linear-gradient(135deg,#f9fafb,#fff);transition:.3s}
.stats-card:hover{transform:translateY(-3px);box-shadow:0 6px 14px rgba(0,0,0,.08)}
.stats-card i{font-size:22px;margin-bottom:8px;color:#2563EB;display:block}
.stats-card h3{font-size:22px;margin:0;color:#2563EB}
.stats-card p{margin:4px 0 0;color:#6b7280;font-size:14px}
.dashboard-main{display:grid;grid-template-columns:2fr 1fr;gap:20px}
.recent-orders ul{list-style:none;padding:0;margin:0}
.recent-orders li{display:flex;justify-content:space-between;align-items:center;background:#f9fafb;padding:12px 16px;border-radius:10px;margin-bottom:10px;gap:10px;font-size:15px}
.quick-actions a{display:flex;align-items:center;gap:10px;padding:14px;border-radius:12px;margin-bottom:12px;font-weight:500;font-size:15px;transition:.3s}
.quick-actions a:hover{transform:translateX(4px)}
.quick-actions a:nth-child(1){background:#002cb9;color:#2563EB}
.quick-actions a:nth-child(2){background:#fff1f2;color:#9b1c1c}
.quick-actions a:nth-child(3){background:#fef9c3;color:#854d0e}

/* Lists */
.list{list-style:none;padding:0;margin:0}
.list-item{background:#f9fafb;padding:16px;border-radius:12px;margin-bottom:12px;transition:.2s}
.list-item:hover{background:#f3f4f6}
.list-item .top{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px;gap:10px;flex-wrap:wrap}
.list-item .title{font-weight:600;color:#111827}
.list-item .meta{font-size:13px;color:#6b7280}
.list-item .price{font-weight:700}
.list-item .actions{display:flex;gap:8px;flex-wrap:wrap}
.list-item .actions button{padding:6px 12px;border:none;border-radius:8px;cursor:pointer;transition:.2s}
.list-item .actions button:hover{opacity:.9}
.list-item .actions .download{background:#2563EB;color:#fff}
.list-item .actions .preview{background:#e5e7eb}
.list-item .actions .review{background:#fde68a;color:#92400e}

/* Cart */
.cart-item{display:flex;align-items:center;justify-content:space-between;background:#f9fafb;padding:14px;border-radius:12px;margin-bottom:12px;gap:12px}
.cart-item img{width:50px;height:50px;border-radius:8px;object-fit:cover}
.cart-item .info{flex:1}
.cart-item h4{margin:0 0 4px;font-size:16px}
.cart-item .qty{display:flex;align-items:center;gap:6px}
.cart-item .qty button{width:28px;height:28px;border:none;border-radius:6px;background:#e5e7eb;cursor:pointer;font-weight:700}
.cart-item .qty span{font-weight:600}
.cart-total{margin-top:15px;font-size:16px;font-weight:600;text-align:right}
.checkout-btn{margin-top:10px;display:block;width:100%;padding:12px;background:#2563EB;color:#fff;text-align:center;border-radius:10px;font-weight:600;border:none;cursor:pointer}

/* Favorites */
.favorite-card{background:#fff;padding:15px;border-radius:16px;box-shadow:0 2px 6px rgba(0,0,0,.05);text-align:center;transition:.2s}
.favorite-card:hover{transform:translateY(-3px);box-shadow:0 6px 12px rgba(0,0,0,.08)}
.favorite-card img{width:100%;border-radius:10px;margin-bottom:10px}
.favorite-card h4{margin:5px 0;font-size:16px}
.favorite-card .price{font-weight:600;color:#2563EB}
.favorite-card button{margin:6px 4px;padding:8px 14px;border:none;border-radius:8px;cursor:pointer;font-size:14px}
.favorite-card .buy{background:#2563EB;color:#fff}
.favorite-card .remove{background:#f3f4f6}

/* Reviews */
.review-box{background:#f9fafb;padding:15px;border-radius:12px;margin-bottom:12px}
.review-box p{margin:6px 0;color:#374151}
.review-box .stars{color:#fbbf24;font-size:14px}
.pending-review{background:#fff8e1;padding:12px;border-radius:10px;margin-bottom:12px;font-weight:500}

/* Settings */
.settings-card{background:#fff;padding:20px;border-radius:16px;box-shadow:0 2px 6px rgba(0,0,0,.05);margin-bottom:20px}
.settings-card h3{margin-bottom:10px;font-size:18px;font-weight:600}
.settings-card label{display:block;margin-bottom:6px;color:#374151;font-size:14px}
.settings-card input{width:100%;padding:10px;border:1px solid #ddd;border-radius:8px;margin-bottom:10px}
.settings-card button{padding:10px 16px;border:none;border-radius:8px;cursor:pointer;background:#2563EB;color:#fff;transition:.3s}
.settings-card button:hover{background:#001245}

/* Badges */
.badge{padding:4px 10px;border-radius:6px;font-size:12px;font-weight:500}
.badge-success{background:#d1fae5;color:#065f46}
.badge-warning{background:#fef3c7;color:#92400e}
.badge-pending{background:#fef9c3;color:#854d0e}

/* Elementor/Theme Resets */
.account-wrapper .section h2,
.account-wrapper h3 { margin-top: 0; }
.account-wrapper .card { background:#fff;border-radius:16px;padding:20px;box-shadow:0 4px 12px rgba(0,0,0,.05); }
.account-wrapper .fa, .account-wrapper .fas, .account-wrapper .far, .account-wrapper .fal, .account-wrapper .fab { line-height: 1; }

/* Responsive */
@media(max-width:992px){
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .dashboard-main{grid-template-columns:1fr}
}
@media(max-width:768px){
  .account-wrapper{flex-direction:column}
  .account-sidebar{width:100%;display:flex;overflow-x:auto;top:10px}
  .account-sidebar nav{display:flex;gap:8px;flex-wrap:nowrap}
  .account-sidebar nav a{flex:1;text-align:center;padding:12px;font-size:14px;white-space:nowrap}
}


/* Logout link/button */
.account-sidebar .logout-link{display:flex;align-items:center;gap:10px;padding:10px 14px;border-radius:10px;margin-top:8px;color:#b91c1c;font-weight:600;background:#fef2f2}
.account-sidebar .logout-link i{color:#dc2626;width:18px;text-align:center}
.account-sidebar .logout-link:hover{background:#fee2e2;transform:translateX(4px)}


/* Auth (logged-out) state */
.account-auth{display:flex;justify-content:center;align-items:center;min-height:50vh;padding:40px}
.account-auth-card{background:#fff;border-radius:16px;box-shadow:0 4px 12px rgba(0,0,0,.05);padding:28px;max-width:560px;text-align:center}
.account-auth-card h2{margin:0 0 10px;font-size:26px;font-weight:700;color:#2563EB}
.account-auth-card p{color:#374151;margin:0 0 18px}
.auth-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;gap:8px;padding:10px 16px;border-radius:10px;font-weight:600;text-decoration:none;border:1px solid transparent}
.btn-primary{background:#2563EB;color:#fff}
.btn-primary:hover{background:#001245}
.btn-outline{background:#fff;border-color:#e5e7eb;color:#111827}
.btn-outline:hover{background:#f9fafb}

/* Make sure FA 6 icons align nicely */
.account-auth .fa,
.account-auth .fas,
.account-auth .far,
.account-auth .fal,
.account-auth .fab { line-height:1; }


/* ===== 1:1 Sign In / Sign Up ===== */
.auth-modal{display:flex;justify-content:center;align-items:center;min-height:80vh;padding:24px}
.auth-card{position:relative;background:#fff;border-radius:16px;box-shadow:0 12px 32px rgba(0,0,0,.12);width:100%;max-width:458px;text-align:center;padding:24px}
.auth-close{position:absolute;top:8px;right:10px;border:none;background:transparent;font-size:26px;line-height:1;color:#6b7280;cursor:pointer}
.auth-icon{width:56px;height:56px;border-radius:14px;background:#002cb9;display:flex;align-items:center;justify-content:center;margin:4px auto 12px}
.auth-icon .fa{font-size:24px;color:#2563eb}
.auth-title{margin:0;font-size:24px;font-weight:800;color:#111827}
.auth-subtitle{margin:6px 0 18px;font-size:14px;color:#6b7280}

.auth-form-wrap{ text-align:left }
.auth-form-wrap .u-columns{display:block}
.auth-card.mode-login .u-column2{display:none}
.auth-card.mode-register .u-column1{display:none}

/* Inputs */
.auth-form-wrap .woocommerce form{margin:0;padding:0;border:none;background:transparent}
.auth-form-wrap .woocommerce .form-row{margin-bottom:14px}
.auth-form-wrap .woocommerce .form-row label{display:block;margin-bottom:6px;font-size:14px;color:#374151}
.auth-form-wrap .woocommerce input.input-text,
.auth-form-wrap .woocommerce input[type="text"],
.auth-form-wrap .woocommerce input[type="email"],
.auth-form-wrap .woocommerce input[type="password"]{
  width:100%;height:52px;border:1px solid #d1d5db;border-radius:12px;padding:12px 48px;font-size:15px;color:#111827;background:#fff
}
.auth-form-wrap .woocommerce input::placeholder{color:#9ca3af}

/* Input icons */
.auth-form-wrap .woocommerce input[type="email"], .auth-form-wrap .woocommerce input#username{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%239ca3af' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='M22 6l-10 7L2 6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:16px center;background-size:20px auto;padding-left:48px
}
.auth-form-wrap .woocommerce input[type="password"], .auth-form-wrap .woocommerce input#password_2{
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%239ca3af' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%239ca3af' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect x='4' y='11' width='16' height='9' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 018 0v4'/%3E%3C/svg%3E");
  background-position: calc(100% - 16px) center, 16px center;
  background-repeat:no-repeat,no-repeat;background-size:20px auto,20px auto;
  padding-left:48px;padding-right:48px
}

/* Focus ring */
.auth-form-wrap .woocommerce input:focus{outline:none;border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,.15)}

.auth-form-wrap .woocommerce .woocommerce-privacy-policy-text{font-size:13px;color:#6b7280}
.auth-form-wrap .woocommerce .woocommerce-form__label-for-checkbox{display:flex;gap:10px;align-items:center;font-size:14px;color:#374151}
.auth-form-wrap .woocommerce .lost_password{font-size:13px;text-align:right;margin:6px 0}
.auth-form-wrap .woocommerce .lost_password a{color:#2563eb;text-decoration:none}
.auth-form-wrap .woocommerce .lost_password a:hover{text-decoration:underline}

/* Button */
.auth-form-wrap .woocommerce .button,
.auth-form-wrap .woocommerce button[type=submit]{
  width:100%;height:52px;border:none;border-radius:12px;background:#2563eb;color:#fff;font-weight:700;font-size:15px;cursor:pointer
}
.auth-form-wrap .woocommerce .button:hover{background:#1d4ed8}

/* Bottom text */
.auth-bottom{margin-top:14px;font-size:14px;color:#6b7280}
.auth-bottom a{color:#2563eb;text-decoration:none}
.auth-bottom a:hover{text-decoration:underline}

/* Hide default Woo headings */
.auth-form-wrap .woocommerce h2{display:none}

/* Hide default Woo 'password link' hint if any theme prints it */
.woocommerce form.register p:has(em), .woocommerce form.register p:has(.woocommerce-password-hint){ display:none; }

/* AUTH 1:1 layout */
.auth-card{position:relative;background:#fff;border-radius:16px;box-shadow:0 12px 32px rgba(0,0,0,.12);width:100%;max-width:458px;padding:24px;text-align:center}
.auth-close{position:absolute;top:8px;right:10px;border:none;background:transparent;font-size:26px;line-height:1;color:#6b7280}
.auth-icon{width:56px;height:56px;border-radius:12px;background:#2563EB;display:flex;align-items:center;justify-content:center;margin:4px auto 12px}
.auth-icon .fa{font-size:24px;color:#fff}
.auth-title{margin:0;font-size:24px;font-weight:800;color:#111827}
.auth-subtitle{margin:6px 0 18px;font-size:14px;color:#6b7280}
.auth-form-wrap .woocommerce .form-row{margin-bottom:14px}
.auth-form-wrap .woocommerce .form-row label{margin-bottom:6px;font-size:14px;color:#374151}
.auth-form-wrap .woocommerce input.input-text,
.auth-form-wrap .woocommerce input[type="text"],
.auth-form-wrap .woocommerce input[type="email"],
.auth-form-wrap .woocommerce input[type="password"]{width:100%;height:52px;border:1px solid #d1d5db;border-radius:12px;padding:12px 16px;font-size:15px;color:#111827;background:#fff}
.auth-form-wrap .woocommerce input::placeholder{color:#9ca3af}
/* left icons & eye */
.auth-form-wrap .woocommerce input[type="email"], .auth-form-wrap .woocommerce input#username,
.auth-form-wrap .woocommerce input[name="full_name"], .auth-form-wrap .woocommerce input#reg_full_name,
.auth-form-wrap .woocommerce input[name="password"], .auth-form-wrap .woocommerce input#reg_password,
.auth-form-wrap .woocommerce input[name="password_2"], .auth-form-wrap .woocommerce input#reg_password2{padding-left:48px}
/* email icon */
.auth-form-wrap .woocommerce input[type="email"], .auth-form-wrap .woocommerce input#username{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%239ca3af' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='M22 6l-10 7L2 6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:16px center;background-size:20px}
/* name icon */
.auth-form-wrap .woocommerce input[name="full_name"], .auth-form-wrap .woocommerce input#reg_full_name{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%239ca3af' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a5 5 0 100-10 5 5 0 000 10z'/%3E%3Cpath d='M2 22a10 10 0 0120 0'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:16px center;background-size:20px}
/* password icon + eye */
.auth-form-wrap .woocommerce input[name="password"], .auth-form-wrap .woocommerce input#reg_password{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%239ca3af' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"),url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%239ca3af' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect x='4' y='11' width='16' height='9' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 018 0v4'/%3E%3C/svg%3E");background-position:calc(100% - 16px) center,16px center;background-repeat:no-repeat,no-repeat;background-size:20px,20px;padding-right:48px}
/* confirm lock only */
.auth-form-wrap .woocommerce input[name="password_2"], .auth-form-wrap .woocommerce input#reg_password2{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%239ca3af' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect x='4' y='11' width='16' height='9' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 018 0v4'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:16px center;background-size:20px}
/* focus & button */
.auth-form-wrap .woocommerce input:focus{border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,.15)}
.auth-form-wrap .woocommerce .button, .auth-form-wrap .woocommerce button[type=submit]{width:100%;height:52px;border:none;border-radius:12px;background:#2563EB;color:#fff;font-weight:700;font-size:15px}
.auth-bottom{margin-top:14px;font-size:14px;color:#6b7280}
.auth-bottom a{color:#2563EB;text-decoration:none}
.woocommerce-privacy-policy-text{display:none!important}


/* ==== COLUMN WIDTH FIX — SCOPED TO AUTH CARD ONLY ==== */
.auth-card .u-columns{ display:block; margin:0; }
.auth-card .u-columns .u-column1,
.auth-card .u-columns .u-column2,
.auth-card .woocommerce .col-1,
.auth-card .woocommerce .col-2{
  float:none; width:100%; max-width:100%; padding:0; box-sizing:border-box;
}

.auth-card .woocommerce .form-row-first,
.auth-card .woocommerce .form-row-last{
  float:none; width:100%; margin-right:0; margin-left:0; padding:0; box-sizing:border-box;
}

.auth-card .woocommerce .form-row{ width:100%; }
.auth-card .woocommerce input.input-text,
.auth-card .woocommerce input[type="text"],
.auth-card .woocommerce input[type="email"],
.auth-card .woocommerce input[type="password"],
.auth-card .woocommerce .button,
.auth-card .woocommerce button[type=submit]{
  width:100%; max-width:100%; display:block; box-sizing:border-box;
}



/* ==== PASSWORD EYE FIX (single eye only, scoped to auth modal) ==== */
/* Remove custom background eye, keep Woo's native show/hide toggle */
.auth-card .woocommerce input[name="password"],
.auth-card .woocommerce #reg_password {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%239ca3af' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect x='4' y='11' width='16' height='9' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 018 0v4'/%3E%3C/svg%3E") !important; /* lock only */
  background-repeat: no-repeat !important;
  background-position: 16px center !important;
  background-size: 20px !important;
  padding-right:48px !important; /* space for Woo's eye */
}

/* Position Woo's native eye toggle */
.auth-card .woocommerce .password-input { position:relative; display:block; }
.auth-card .woocommerce .show-password-input {
  position:absolute; right:16px; top:50%; transform:translateY(-50%);
  width:24px; height:24px; opacity:.7;
}
.auth-card .woocommerce .show-password-input:hover { opacity:1; }



/* ===== Shopping Cart 1:1 UI (scoped) ===== */
#cart .cart-list{ display:flex; flex-direction:column; gap:14px; }
#cart .cart-card{
  display:flex; align-items:center; gap:14px;
  background:#fff; border-radius:14px; box-shadow:0 6px 16px rgba(0,0,0,.08);
  padding:16px 18px;
}
#cart .cart-thumb{ width:70px; height:70px; border-radius:10px; overflow:hidden; flex-shrink:0; }
#cart .cart-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
#cart .cart-info{ flex:1; min-width:0; }
#cart .cart-title{ margin:0; font-weight:700; color:#111827; font-size:16px; }
#cart .cart-sub{ color:#6b7280; font-size:13px; margin-top:2px; }
#cart .cart-added{ color:#6b7280; font-size:12px; margin-top:2px; }
#cart .cart-qty{ display:flex; align-items:center; gap:10px; }
#cart .qty-btn{ width:28px; height:28px; border-radius:7px; border:none; background:#e5e7eb; font-weight:700; cursor:pointer; }
#cart .cart-price{ min-width:180px; display:flex; flex-direction:row; align-items:center; justify-content:flex-end; gap:12px; font-weight:700; }

#cart .cart-actions{ display:flex; align-items:center; gap:10px; }
#cart .trash{ color:#dc2626; cursor:pointer; }

#cart .order-summary{
  margin-top:18px; background:#fff; border-radius:14px; box-shadow:0 6px 16px rgba(0,0,0,.08); padding:16px 18px;
}
#cart .sum-row{ display:flex; justify-content:space-between; align-items:center; padding:6px 0; font-size:14px; color:#374151; }
#cart .sum-row.total{ font-weight:800; color:#0b61ff; font-size:18px; border-top:1px solid #e5e7eb; margin-top:6px; padding-top:10px; }
#cart .checkout-primary{
  display:flex; justify-content:center; align-items:center; gap:10px; width:100%; padding:14px; border:none; border-radius:10px; background:#16a34a;
  color:#fff; font-weight:700; cursor:pointer; margin-top:14px; text-align:center;
}
#cart .clear-cart{
  width:100%; padding:12px; border:1px solid #e5e7eb; border-radius:10px; background:#f9fafb; color:#374151; margin-top:10px; cursor:pointer;
}
#cart .secure-note{
  margin-top:14px; background:#ecfdf5; border:1px solid #10b98166; color:#065f46; border-radius:12px; padding:14px;
  display:flex; gap:10px; align-items:flex-start; font-size:14px;
}
#cart .secure-note .badge{ background:#10b9811a; color:#047857; border-radius:6px; padding:6px; }

/* Responsive tweaks */
@media(max-width:600px){
  #cart .cart-card{ flex-wrap:wrap; }
  #cart .cart-price{ min-width:180px; display:flex; flex-direction:row; align-items:center; justify-content:flex-end; gap:12px; font-weight:700; }
}





#cart .cart-price .price{ order:1; }
#cart .cart-price .cart-actions{ order:2; }

/* Pending Payments */
#pending .pending-count-badge{ font-size:12px; background:#fde68a; color:#92400e; padding:4px 8px; border-radius:999px; margin-left:8px; vertical-align:middle; }
#pending .pending-list{ display:flex; flex-direction:column; gap:16px; }
#pending .pending-card{ background:#fff; border:1px solid #f3e8ff; border-left:4px solid #f59e0b; border-radius:14px; padding:16px; box-shadow:0 4px 14px rgba(0,0,0,.05); }
#pending .pending-card__head{ display:grid; grid-template-columns: 1fr auto auto; gap:10px; align-items:center; padding-bottom:10px; border-bottom:1px solid #f1f5f9; }
#pending .pending-card__title{ font-weight:700; color:#111827; }
#pending .pending-card__status{ justify-self:start; font-size:12px; background:#fef3c7; color:#b45309; padding:4px 8px; border-radius:999px; }
#pending .pending-card__total{ font-weight:800; color:#0b61ff; }
#pending .pending-card__meta{ display:flex; gap:8px; align-items:center; color:#6b7280; font-size:13px; padding:8px 0; }
#pending .pending-card__items{ display:flex; flex-direction:column; gap:8px; }
#pending .pending-line{ display:grid; grid-template-columns:1fr auto; gap:10px; align-items:start; }
#pending .pending-line .t{ font-weight:600; color:#111827; }
#pending .pending-line .s{ color:#6b7280; font-size:12px; }
#pending .pending-line .amount{ font-weight:700; color:#111827; }
#pending .pending-card__actions{ display:flex; gap:12px; margin-top:12px; }
#pending .btn{ display:inline-flex; align-items:center; gap:8px; padding:12px 14px; border-radius:10px; font-weight:700; text-decoration:none; }
#pending .btn-pay{ background:#16a34a; color:#fff; }
#pending .btn-cancel{ border:1px solid #fee2e2; background:#fff; color:#dc2626; }
@media (max-width:600px){
  #pending .pending-card__head{ grid-template-columns: 1fr auto; }
  #pending .pending-card__status{ grid-column:1 / -1; justify-self:start; }
}

#pending .pending-line .dl{ margin-top:4px; color:#374151; font-size:12px; }
#pending .pending-line .dl-name{ line-height:1.3; }


/* Recent Orders: View All Orders button color */

/* Recent Orders button colors (requested) */
.card.recent-orders .view-all-orders-btn{
  background-color:#0e4ed9;
  border:1px solid #0e4ed9;
  color:#ffffff;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
.card.recent-orders .view-all-orders-btn:hover{
  color:#ffffff;
}

/* smooth color transitions */
.account-wrapper a, .account-wrapper button { transition: color .2s ease, background-color .2s ease, border-color .2s ease; }

/* === Cart tweaks (requested) === */
#cart .cart-info > h4 { color:#111827; }

#cart .cart-qty { display:flex; align-items:center; gap:10px; }
#cart .cart-qty .qty-btn{
  width:32px; height:32px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:8px;
  background-color:#002cb9;
  border:1px solid #002cb9;
  color:#ffffff;
}
#cart .cart-qty .qty { min-width:16px; text-align:center; }


/* Force any inline #c36 text color inside the portal to #111827 */
.account-wrapper [style*="#c36"] { color:#111827 !important; }



/* Cart title color + downloads under title */
#cart .cart-title a{ color:#111827; }
#cart .cart-info .dl{ margin-top:4px; font-size:12px; color:#111827; }
#cart .cart-info .dl-name{ line-height:1.3; }

/* Remove button background/border color */
#cart .remove-item{
  background-color:#002cb9;
  border:1px solid #002cb9;
  color:#ffffff;
}

