/* =========================================================
   Admission Darpan — Programs Page
   Palette derived from the company logo:
   Primary (deep green), Secondary (brown/gold), Accent (orange CTA)
   ========================================================= */

:root{
  --adp-primary:#1B4D3E;
  --adp-secondary:#8B5A2B;
  --adp-accent:#F5A623;
  --adp-bg:#F5F7FA;
  --adp-text:#1F2937;
  --adp-muted:#6B7280;
  --adp-border:#E5E9EE;
  --adp-white:#FFFFFF;
  --adp-radius:14px;
  --adp-shadow:0 2px 10px rgba(17,24,39,0.06);
  --adp-shadow-hover:0 10px 28px rgba(17,24,39,0.12);
}

#adp-wrap, #adp-wrap *{ box-sizing:border-box; }

#adp-wrap{
  font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color:var(--adp-text);
  background:var(--adp-bg);
  padding:24px;
  border-radius:18px;
}

#adp-wrap h1, #adp-wrap h2, #adp-wrap h3, #adp-wrap h4{
  font-family:'Poppins', 'Inter', sans-serif;
  margin:0;
}

/* ---------- Container width ---------- */
/* True full-bleed: breaks out of any parent container's own max-width
   (Elementor sections, Astra content wrap, etc.) so "Full Width" truly
   reaches the edges of the browser window, not just removes our own
   internal max-width. */
.adp-container-full{
  max-width:none !important;
  width:100vw !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
}

/* ---------- Hero Banner ---------- */
.adp-banner-outer{ margin-bottom:26px; }
.adp-banner{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg, var(--adp-banner-start), var(--adp-banner-end));
  color:var(--adp-banner-text);
  border-radius:20px 20px 0 0;
  padding:68px 40px 62px;
  text-align:center;
}
.adp-banner::before, .adp-banner::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
}
.adp-banner::before{ width:260px; height:260px; top:-120px; left:-80px; }
.adp-banner::after{ width:180px; height:180px; bottom:-60px; right:-40px; }
.adp-banner-wave{
  position:absolute;
  left:0; right:0; bottom:-1px;
  width:100%; height:34px;
  display:block;
}
.adp-banner-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.25);
  color:inherit;
  font-size:13px;
  font-weight:700;
  letter-spacing:.05em;
  padding:7px 18px;
  border-radius:20px;
  margin-bottom:22px;
  position:relative;
}
.adp-dot{ width:6px; height:6px; border-radius:50%; background:var(--adp-accent); display:inline-block; }
.adp-banner-heading{
  font-size:clamp(30px, 4.8vw, 52px);
  font-weight:700;
  line-height:1.2;
  margin-bottom:14px;
  position:relative;
}
.adp-banner-highlight{ color:var(--adp-accent); }
.adp-banner-sub{
  max-width:660px;
  margin:0 auto;
  font-size:16px;
  line-height:1.6;
  opacity:.92;
  position:relative;
}
.adp-banner-stats-strip{
  background:var(--adp-white);
  border-radius:0 0 20px 20px;
  padding:18px 20px 22px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px 34px;
  box-shadow:var(--adp-shadow);
}
.adp-banner-stat{
  font-size:14px;
  font-weight:500;
  color:var(--adp-text);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.adp-banner-stat strong{ font-weight:700; color:var(--adp-primary); }
.adp-banner-stat-icon{ font-size:17px; }
@media (max-width:640px){
  .adp-banner{ padding:32px 18px 40px; border-radius:16px 16px 0 0; }
  .adp-banner-stats-strip{ gap:10px 18px; border-radius:0 0 16px 16px; }
}
@media (max-width:480px){
  #adp-wrap{ padding:14px; }
  .adp-banner-eyebrow{ font-size:10.5px; padding:5px 12px; }
  .adp-modal{ padding:22px 18px; border-radius:14px; }
  .adp-tabs{ width:100%; justify-content:center; }
  .adp-tab{ flex:1 1 auto; justify-content:center; padding:10px 10px; font-size:13px; }
}

/* ---------- Tabs ---------- */
.adp-tabs{
  display:inline-flex;
  flex-wrap:wrap;
  gap:6px;
  background:var(--adp-white);
  padding:6px;
  border-radius:12px;
  box-shadow:var(--adp-shadow);
  margin-bottom:22px;
}
.adp-tab{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:none;
  background:transparent;
  color:var(--adp-muted);
  font-weight:600;
  font-size:14px;
  padding:10px 18px;
  border-radius:8px;
  cursor:pointer;
  transition:all .2s ease;
}
.adp-tab.active{
  background:var(--adp-primary);
  color:#fff;
}
.adp-tab:hover:not(.active){ background:var(--adp-bg); }

/* ---------- Mobile filter toggle ---------- */
.adp-mobile-filter-toggle{
  display:none;
  width:100%;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--adp-white);
  border:1.5px solid var(--adp-border);
  color:var(--adp-primary);
  font-weight:700;
  font-size:14px;
  padding:12px 16px;
  border-radius:10px;
  margin-bottom:14px;
  cursor:pointer;
}
.adp-mobile-filter-toggle .dashicons-arrow-down-alt2{ transition:transform .2s ease; }
.adp-tab-panel.adp-filters-open .adp-mobile-filter-toggle .dashicons-arrow-down-alt2{ transform:rotate(180deg); }

@media (max-width:900px){
  .adp-mobile-filter-toggle{ display:flex; }
  .adp-layout .adp-filters{ display:none; margin-bottom:16px; }
  .adp-tab-panel.adp-filters-open .adp-layout .adp-filters{ display:block; }
}

/* ---------- Layout ---------- */
.adp-layout{
  display:grid;
  grid-template-columns:290px 1fr;
  gap:24px;
  align-items:start;
}
@media (max-width:900px){
  .adp-layout{ grid-template-columns:1fr; }
}

/* ---------- Filters sidebar ---------- */
.adp-filters{
  background:var(--adp-white);
  border-radius:var(--adp-radius);
  box-shadow:var(--adp-shadow);
  padding:20px;
  position:sticky;
  top:20px;
}
.adp-filters-title{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:17px;
  font-weight:700;
  color:var(--adp-primary);
  padding-bottom:14px;
  border-bottom:1px solid var(--adp-border);
  margin-bottom:16px;
}
.adp-filter-group{ margin-bottom:20px; }
.adp-filter-group h4{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--adp-muted);
  font-weight:700;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}
.adp-chevron{ font-size:16px; transition:transform .2s ease; color:var(--adp-muted); }
.adp-filter-group.collapsed .adp-chevron{ transform:rotate(180deg); }
.adp-filter-group.collapsed .adp-checkbox-list{ display:none; }

.adp-search-label{ display:none; }
.adp-search-box{
  display:flex;
  align-items:center;
  gap:8px;
  border:1.5px solid var(--adp-border);
  border-radius:10px;
  padding:9px 12px;
  background:var(--adp-bg);
}
.adp-search-box .dashicons{ color:var(--adp-muted); font-size:18px; width:18px; height:18px; }
.adp-search-box input{
  border:none;
  background:transparent;
  outline:none;
  width:100%;
  font-size:14px;
  color:var(--adp-text);
}

.adp-pill-row{ display:flex; flex-wrap:wrap; gap:8px; }
.adp-pill{
  border:1.5px solid var(--adp-border);
  background:var(--adp-white);
  color:var(--adp-text);
  font-size:13px;
  font-weight:600;
  padding:7px 14px;
  border-radius:20px;
  cursor:pointer;
  transition:all .18s ease;
}
.adp-pill:hover{ border-color:var(--adp-primary); }
.adp-pill.active{
  background:var(--adp-primary);
  border-color:var(--adp-primary);
  color:#fff;
}

.adp-checkbox-list{ display:flex; flex-direction:column; gap:9px; }
.adp-checkbox-list label{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:14px;
  color:var(--adp-text);
  cursor:pointer;
}
.adp-checkbox-list input[type=checkbox]{
  width:16px; height:16px;
  accent-color:var(--adp-primary);
  cursor:pointer;
}

.adp-cta-box{
  background:linear-gradient(145deg, var(--adp-primary), #123528);
  border-radius:12px;
  padding:20px;
  text-align:center;
  color:#fff;
  margin-top:6px;
}
.adp-cta-icon{ font-size:26px; margin-bottom:6px; }
.adp-cta-box p{ font-size:14px; font-weight:600; margin:0 0 14px; opacity:.95; }

/* ---------- Buttons ---------- */
.adp-btn-accent{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  background:var(--adp-accent);
  color:#fff;
  border:none;
  font-weight:700;
  font-size:14px;
  padding:11px 18px;
  border-radius:9px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow:0 4px 12px rgba(245,166,35,0.35);
}
.adp-btn-accent:hover{
  background:#E4941A;
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(245,166,35,0.45);
}
.adp-btn-block{ width:100%; }

/* ---------- Results header ---------- */
.adp-results-header{ margin-bottom:16px; font-size:15px; color:var(--adp-text); }
.adp-results-count strong{ color:var(--adp-primary); font-size:17px; }

.adp-group{ margin-bottom:30px; }
.adp-group-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:19px;
  font-weight:700;
  color:var(--adp-primary);
  margin-bottom:16px;
}
.adp-group-title .dashicons{ color:var(--adp-secondary); }
.adp-group-count{
  background:#EAF3EE;
  color:var(--adp-primary);
  font-size:12px;
  font-weight:700;
  padding:3px 10px;
  border-radius:20px;
}

/* ---------- Cards ---------- */
.adp-cards-grid{
  display:grid;
  grid-template-columns:repeat(var(--adp-cols-desktop, 3), 1fr);
  gap:18px;
}
@media (max-width:1150px){ .adp-cards-grid{ grid-template-columns:repeat(var(--adp-cols-tablet, 2), 1fr); } }
@media (max-width:640px){ .adp-cards-grid{ grid-template-columns:1fr !important; } }

.adp-card{
  background:var(--adp-white);
  border:1px solid var(--adp-border);
  border-radius:var(--adp-radius);
  padding:20px;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.adp-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--adp-shadow-hover);
  border-color:transparent;
}
.adp-card-top{ display:flex; align-items:flex-start; gap:12px; margin-bottom:10px; }
.adp-card-icon{
  width:44px; height:44px;
  border-radius:10px;
  background:#EAF3EE;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  font-size:20px;
}
.adp-card-icon-img{ width:26px; height:26px; object-fit:contain; border-radius:4px; }
.adp-card-title{
  font-size:17px;
  font-weight:700;
  color:var(--adp-text);
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.adp-badge{
  background:var(--adp-secondary);
  color:#fff;
  font-size:10px;
  font-weight:700;
  padding:2px 8px;
  border-radius:6px;
  letter-spacing:.03em;
}
.adp-card-desc{
  font-size:13.5px;
  color:var(--adp-muted);
  line-height:1.55;
  margin-bottom:14px;
  flex-grow:1;
}
.adp-card-meta{ display:flex; gap:10px; margin-bottom:12px; flex-wrap:wrap; }
.adp-meta-chip{
  display:inline-flex;
  align-items:center;
  gap:5px;
  background:var(--adp-bg);
  border:1px solid var(--adp-border);
  color:var(--adp-text);
  font-size:12px;
  font-weight:600;
  padding:6px 10px;
  border-radius:8px;
}
.adp-meta-chip .dashicons{ font-size:14px; width:14px; height:14px; color:var(--adp-secondary); }
.adp-tag-row{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px; }
.adp-tag{
  background:#F1F5F3;
  color:var(--adp-primary);
  font-size:11px;
  font-weight:600;
  padding:4px 10px;
  border-radius:14px;
}
.adp-card .adp-btn-accent{ margin-top:auto; width:100%; }

.adp-no-results{
  text-align:center;
  color:var(--adp-muted);
  padding:60px 20px;
  font-size:15px;
  background:var(--adp-white);
  border-radius:var(--adp-radius);
}

/* ---------- University / College directory cards ---------- */
.adp-results-count .adp-directory-tagline{ color:var(--adp-muted); font-weight:400; font-size:13.5px; }
.adp-directory-card{
  border:none;
  position:relative;
  overflow:hidden;
  padding:0;
  display:flex;
  flex-direction:column;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
  background:var(--adp-white);
}
.adp-directory-card.adp-featured{ box-shadow:0 8px 24px rgba(0,0,0,0.2); }
.adp-featured-ribbon{
  position:absolute;
  top:14px;
  right:-32px;
  background:var(--adp-accent);
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:4px 38px;
  transform:rotate(45deg);
  box-shadow:0 2px 8px rgba(0,0,0,0.25);
  z-index:2;
}

.adp-directory-card-header{
  background:linear-gradient(135deg, var(--adp-card-start), var(--adp-card-end));
  padding:20px 20px 22px;
  position:relative;
  overflow:hidden;
}
.adp-directory-card-header::after{
  content:"";
  position:absolute;
  width:130px; height:130px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  top:-50px; right:-50px;
}
.adp-directory-card-top{ display:flex; align-items:center; gap:12px; position:relative; z-index:1; }
.adp-directory-logo{
  width:52px; height:52px;
  border-radius:12px;
  background:rgba(255,255,255,0.95);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  overflow:hidden;
  box-shadow:0 3px 8px rgba(0,0,0,0.15);
}
.adp-directory-logo img{ width:100%; height:100%; object-fit:contain; }
.adp-directory-logo span{ font-size:20px; font-weight:700; color:var(--adp-card-start); }
.adp-directory-title{ font-size:17px; font-weight:700; color:#fff; margin-bottom:3px; }
.adp-directory-location{
  display:inline-flex;
  align-items:center;
  gap:3px;
  font-size:12.5px;
  color:rgba(255,255,255,0.88);
}
.adp-directory-location .dashicons{ font-size:14px; width:14px; height:14px; }

.adp-directory-card-body{
  background:var(--adp-white);
  padding:18px 20px;
  flex-grow:1;
}
.adp-directory-meta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.adp-directory-type-pill{
  background:rgba(0,0,0,0.05);
  color:var(--adp-card-start);
  font-size:11.5px;
  font-weight:700;
  padding:4px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.08);
}
.adp-directory-tagline-text{ font-size:12.5px; font-weight:600; color:var(--adp-muted); }
.adp-directory-stat{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:500;
  color:var(--adp-text);
  background:var(--adp-bg);
  padding:8px 12px;
  border-radius:8px;
}
.adp-directory-stat .dashicons{ font-size:15px; width:15px; height:15px; color:var(--adp-card-start); }

.adp-directory-card-footer{ padding:0 20px 20px; }
.adp-directory-btn{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  background:linear-gradient(135deg, var(--adp-card-start), var(--adp-card-end));
  border:none;
  color:#fff;
  font-weight:700;
  font-size:14px;
  padding:12px 16px;
  border-radius:9px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
  box-shadow:0 4px 12px rgba(0,0,0,0.18);
}
.adp-directory-btn:hover{ transform:translateY(-1px); box-shadow:0 6px 16px rgba(0,0,0,0.26); }


.adp-empty-state{
  text-align:center;
  background:var(--adp-white);
  border-radius:var(--adp-radius);
  padding:60px 24px;
  box-shadow:var(--adp-shadow);
}
.adp-empty-icon{ font-size:40px; margin-bottom:10px; }
.adp-empty-state h3{ color:var(--adp-primary); margin-bottom:8px; }
.adp-empty-state p{ color:var(--adp-muted); margin-bottom:18px; }

/* ---------- Modal ---------- */
.adp-modal-overlay{
  position:fixed; inset:0;
  background:rgba(15,23,32,0.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:20px;
  backdrop-filter:blur(2px);
}
.adp-modal-overlay.open{ display:flex; }
.adp-modal{
  background:#fff;
  width:100%;
  max-width:560px;
  max-height:92vh;
  overflow-y:auto;
  border-radius:16px;
  padding:30px;
  position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  font-family:'Inter', sans-serif;
  animation:adpModalIn .25s ease;
}
@keyframes adpModalIn{
  from{ opacity:0; transform:translateY(14px) scale(.98); }
  to{ opacity:1; transform:translateY(0) scale(1); }
}
.adp-modal-close{
  position:absolute; top:16px; right:16px;
  width:34px; height:34px;
  border-radius:50%;
  border:1.5px solid var(--adp-border);
  background:var(--adp-white);
  color:var(--adp-text);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all .15s ease;
  padding:0;
}
.adp-modal-close svg{ display:block; }
.adp-modal-close:hover{
  background:#DC2626;
  border-color:#DC2626;
  color:#fff;
  transform:rotate(90deg);
}
.adp-modal-header{ margin-bottom:20px; }
.adp-modal-header h2{ color:var(--adp-primary); font-size:22px; margin-bottom:4px; }
.adp-modal-header p{ color:var(--adp-muted); font-size:13.5px; margin:0; }

.adp-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:480px){ .adp-form-row{ grid-template-columns:1fr; } }
.adp-form-field{ margin-bottom:14px; }
.adp-form-field label{
  display:block;
  font-size:12.5px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.03em;
  color:var(--adp-text);
  margin-bottom:6px;
}
.adp-req{ color:#DC2626; }
.adp-form-field input,
.adp-form-field select,
.adp-form-field textarea{
  width:100%;
  border:1.5px solid var(--adp-border);
  border-radius:9px;
  padding:11px 12px;
  font-size:14px;
  font-family:inherit;
  color:var(--adp-text);
  background:var(--adp-bg);
  outline:none;
  transition:border-color .15s ease;
}
.adp-form-field input:focus,
.adp-form-field select:focus,
.adp-form-field textarea:focus{ border-color:var(--adp-primary); background:#fff; }
.adp-form-field input[readonly]{
  background:#EEF1F3;
  color:var(--adp-text);
  cursor:not-allowed;
  font-weight:600;
}
.adp-form-field input[readonly]:focus{ border-color:var(--adp-border); background:#EEF1F3; }
.adp-form-field input.adp-invalid,
.adp-form-field select.adp-invalid{ border-color:#DC2626; }
.adp-form-field textarea{ resize:vertical; }

.adp-form-msg{
  font-size:13.5px;
  padding:0;
  margin-bottom:0;
  border-radius:8px;
  transition:all .2s ease;
}
.adp-form-msg.success{ background:#EAF6EE; color:#1B7A3D; padding:10px 12px; margin-bottom:14px; }
.adp-form-msg.error{ background:#FDECEC; color:#C0392B; padding:10px 12px; margin-bottom:14px; }

#adp-submit-btn:disabled{ opacity:.65; cursor:not-allowed; }

/* ---------- Prospectus step (counsellor card + download) ---------- */
.adp-counsellor-card{
  display:flex;
  align-items:center;
  gap:14px;
  background:var(--adp-bg);
  border:1px solid var(--adp-border);
  border-radius:12px;
  padding:16px;
  margin-bottom:18px;
}
.adp-counsellor-avatar{
  width:52px; height:52px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--adp-primary), var(--adp-secondary));
  display:flex; align-items:center; justify-content:center;
  font-size:24px;
  flex-shrink:0;
}
.adp-counsellor-info{ display:flex; flex-direction:column; gap:2px; }
.adp-counsellor-info strong{ font-size:15px; color:var(--adp-text); }
.adp-counsellor-info span{ font-size:13px; color:var(--adp-muted); }
.adp-counsellor-info a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  font-size:13.5px;
  font-weight:600;
  color:var(--adp-primary);
  text-decoration:none;
  margin-top:2px;
}
.adp-counsellor-info a .dashicons{ font-size:15px; width:15px; height:15px; }
.adp-counsellor-info a:hover{ text-decoration:underline; }

#adp-prospectus-unavailable-msg{
  text-align:center;
  color:var(--adp-muted);
  font-size:13.5px;
  background:var(--adp-bg);
  padding:12px;
  border-radius:8px;
  margin:0 0 12px;
}

.adp-btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--adp-white);
  color:var(--adp-text);
  border:1.5px solid var(--adp-border);
  font-weight:700;
  font-size:14px;
  padding:11px 18px;
  border-radius:9px;
  cursor:pointer;
  margin-top:10px;
  transition:background .15s ease;
}
.adp-btn-secondary:hover{ background:var(--adp-bg); }

/* ---------- Honeypot (invisible spam trap) ---------- */
.adp-hp-field{
  position:absolute !important;
  left:-9999px !important;
  top:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

/* ---------- Consent checkbox ---------- */
.adp-consent-field{ margin-bottom:16px; }
.adp-checkbox-label{
  display:flex;
  align-items:flex-start;
  gap:9px;
  font-size:13px;
  line-height:1.5;
  color:var(--adp-muted);
  cursor:pointer;
  font-weight:400 !important;
  text-transform:none !important;
  letter-spacing:normal !important;
}
.adp-checkbox-label input[type=checkbox]{
  width:16px; height:16px;
  margin-top:2px;
  accent-color:var(--adp-primary);
  flex-shrink:0;
  cursor:pointer;
}
.adp-checkbox-label.adp-invalid,
#adp_f_consent.adp-invalid + span{ color:#DC2626; }
#adp_f_consent.adp-invalid{ outline:2px solid #DC2626; outline-offset:2px; }

/* ---------- WhatsApp ---------- */
.adp-whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  z-index:99998;
  transition:transform .15s ease;
}
.adp-whatsapp-float:hover{ transform:scale(1.08); }
.adp-whatsapp-inline-link{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin-top:12px;
  color:#128C7E;
  font-weight:600;
  font-size:13.5px;
  text-decoration:none;
}
.adp-whatsapp-inline-link:hover{ text-decoration:underline; }
@media (max-width:480px){
  .adp-whatsapp-float{ width:50px; height:50px; right:14px; bottom:14px; }
}

/* Dashicons fallback (in case admin dashicons style isn't loaded on frontend) */
.dashicons{ font-family:dashicons !important; }
