/* =========================================================
   Explogu Styles (Organized)
   - Keep this file in ONE place (child theme or custom plugin)
   - Use sections + tokens to avoid duplicates
========================================================= */

/* =========================
   0) Imports
========================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/* =========================
   1) Design Tokens (Variables)
========================= */
:root{
  --gph-green: #38AD6E;
  --gph-green-dark: #2e935b;
  --gph-bg: #ffffff;
  --gph-pale: #F9FFFC;
  --gph-pale-2: #F4FDF9;
  --gph-gray: #4C4C4C;
  --gph-gray-2: #5a6169;
  --gph-border: #e9eef2;

  --gph-font: "Noto Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --gph-script: "Oleo Script", cursive;

  --gph-radius: 10px;
  --gph-radius-lg: 18px;

  --gph-shadow: 1px 1px 5px #ccc;
  --gph-shadow-soft: 0 10px 24px rgba(15, 23, 42, .10);
  --gph-green-dark: #2e935b;
  --gph-border: #e5e7eb;
  --gph-shadow-soft: 0 10px 25px rgba(15, 23, 42, .06);
  --gph-radius-lg: 16px;
  --gph-gray: #4C4C4C;
  --gph-pale: #eef6f2;
    /* PROFILE PAGE TOKENS */
  --gp-primary: var(--gph-green);
  --gp-primary-2: #2e935b;
  --gp-primary-soft: rgba(56,173,110,.12);

  --gp-border: var(--gph-border);
  --gp-text: #111827;
  --gp-muted: #6b7280;

  --gp-card: #ffffff;
  --gp-shadow: 0 10px 25px rgba(15,23,42,.08);
  --gp-radius: 14px;

  --avatar: 140px;
  --avatar-mobile: 110px;
  --gap: 18px;

  --cover-h-desktop: 320px;
  --cover-h-mobile: 200px;
}

/* =========================
   2) Base / Typography
========================= */
body{
  min-height: 100vh;
  position: relative;
  font-family: var(--gph-font);
}

body.page h1.entry-title{ display:none; }

h4{
  color: var(--gph-gray) !important;
  font-family: var(--gph-font) !important;
  line-height: 1.5em;
}

.profile_heading{ font-size: 20px !important; }

/* common content blocks */
.content-title{
  color: var(--gph-gray) !important;
  font-family: var(--gph-font);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase !important;
  line-height: 1.2em;
  letter-spacing: 1px;
}
.content-text{
  color: var(--gph-gray);
  font-family: var(--gph-font);
  font-weight: 300;
  line-height: 1.5em;
}
.content-text strong{ font-weight: 700 !important; }

/* =========================
   3) Utilities / Helpers
========================= */
.hidden{ display:none !important; }

.text-white{ color:#fff !important; }
.text-danger{ color:#c62828; }

.bg-custom{ background-color: var(--gph-pale-2); }
.bg-custom2{ background-color: var(--gph-green); }
.bg-palegreen{ background-color: #E9F8EF !important; }

.title-green{ color: var(--gph-green) !important; }
.title-black{ color: var(--gph-gray-2); }

.no-color{ color:#ccc !important; }

.rounded-button{ border-radius: 20px; }

/* =========================
   4) Buttons (single source of truth)
========================= */
.btn-green,
#navbar .btn-green{
  background: var(--gph-green) !important;
  border-color: var(--gph-green) !important;
  color:#fff !important;
  border-radius: 10px !important;
  margin: 0 !important;
}
.btn-green:hover{ background: var(--gph-green-dark) !important; border-color: var(--gph-green-dark) !important; }

.btn-white{ background:#fff; color:#000; }

/* Custom small button uses the same button system */
.custom-btn{
  /* Don't redefine colors here */
  border-radius: 999px;     /* pill */
  height: 30px;
  padding: 0 14px;
  font-size: 12px;
  line-height: 30px;
}

.custom-btn:hover{ background-color: #32a367; }

/* Buttons used in hosted cards */
.btn{
  display:inline-block;
  padding:.45rem .8rem;
  border-radius:10px;
  border:1px solid transparent;
  font-size:.92rem;
  cursor:pointer;
}
.btn:disabled{
  opacity:.55;
  cursor:not-allowed;
  background: var(--gph-green);
  color:#fff;
  border-color: var(--gph-green);
}
.btn-secondary{ background:#eceff1; color:#37474f; border-color:#cfd8dc; }
.btn-success, .btn-review-hosted-events{ background:#fbc634; color:#fff; border-color:#fbc634; }

/* profile button */
.btn-view-profile{
  border-radius:22px;
  border:1px solid #fff;
  padding:8px 12px;
  color:#fff;
  background:transparent;
}
.btn-view-profile:hover{
  color: var(--gph-green);
  background:#fff;
}


/* profile button */
.btn-view-profile-link{
  border-radius:22px;
  border:1px solid #fff;
  padding:8px 12px;
  color:#fff;
  background:transparent;
  font-size: 0.8rem;
}
.btn-view-profile-link:hover{
  color: var(--gph-green);
  background:#fff;
}

/* =========================
   5) Header / Navbar
========================= */
#header{
  max-height: 100px;
  background-color:#fff !important;
  box-shadow: var(--gph-shadow);
}
.page-template-dashboard #header{ box-shadow: var(--gph-shadow); }

.page-template-page-nosidebar{ background-color:#fff !important; }

#home-carousel{ background:#fff; }

.navbar-brand img{ height: 80px !important; }
#navbar{ height: 78px !important; }

#navbar .search-form{ min-width: 420px !important; }
#navbar .search-box{
  margin-right:10px;
  border-radius:5px !important;
}
.navbar-collapse{
  z-index: 1010;
}
/* =========================
   6) Footer
========================= */
#footer{
  position:relative;
  bottom:0;
  width:100%;
  max-height:400px;
  background: var(--gph-green);
  color:#fff;
}
#footer .footer-content{ padding:50px; }
#footer .footer-menu{ list-style:none; padding-left:0; }
#footer .footer-menu li{ margin-bottom:10px; }
#footer .footer-menu a{ color:#fff !important; text-decoration:none; }

@media (max-width: 992px){
  #footer{ max-height:none; height:100%; }
}

/* =========================
   7) Homepage: Signup Block
========================= */
#home-signup .expert-bg{ background: var(--gph-pale-2); }

#home-signup .col-md-6{
  min-height:400px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:50px;
}
#home-signup .col-md-6 p{
  text-align:center;
  color: var(--gph-gray);
  font-family: var(--gph-font);
  font-size:25px;
  font-weight:400;
  line-height:1.5em;
}
#home-signup .col-md-6 .btn{ padding-left:50px; padding-right:50px; }
#home-signup .col-md-6 .black{ color: var(--gph-gray); }
#home-signup .col-md-6 .white{ color:#fff !important; }

#home-signup .col-md-6 h2{
  font-family: var(--gph-font);
  font-size:40px;
  font-weight:700;
  text-transform:uppercase;
  line-height:1.2em;
  letter-spacing:3px;
}

.mysvg svg{ height:200px; }
.custom-row{ height:50%; padding:20px; }

/* =========================
   8) Homepage: Headings + Live Block
========================= */
.page-template-homepage h1{
  color: var(--gph-gray);
  font-family: var(--gph-font);
}
.page-template-homepage h1 span{
  color: var(--gph-green) !important;
  font-family: var(--gph-script);
  font-size:54px;
}
.page-template-homepage h2{
  text-align:left;
  color: var(--gph-gray);
  font-family: var(--gph-font);
  font-size:36px;
  font-weight:300;
  letter-spacing:-1px;
}
.page-template-homepage h3{
  text-align:left;
  color: var(--gph-gray);
  font-family: var(--gph-script);
  font-size:45px;
  font-weight:400;
  letter-spacing:-1px;
  -webkit-text-stroke-color:#000;
  stroke:#000;
}

.home-live-block{ padding:50px 0; }
.home-live-block h2{
  text-align:left;
  color: var(--gph-gray) !important;
  font-family: var(--gph-font);
  font-size:30px;
  font-weight:300;
  text-transform:uppercase !important;
  letter-spacing:-1px;
}
.home-live-block h3{
  text-align:left;
  color: var(--gph-gray);
  font-family: var(--gph-script);
  font-size:45px;
  font-weight:400;
  letter-spacing:-1px;
  -webkit-text-stroke-color:#000;
  stroke:#000;
}
.home-live-block .card{
  max-width:274px;
  border:none;
  background:transparent;
}
.home-live-block .card img{
  max-width:215px;
  margin:0 auto;
}
.home-live-block .card-body .card-title{
  color: var(--gph-gray);
  font-family: var(--gph-font);
  font-size:28px;
  font-weight:700;
  text-transform:uppercase;
}
.home-live-block .card-body .card-text{
  color: var(--gph-gray);
  font-family: var(--gph-font);
  font-weight:300;
  font-size:16px;
}

/* =========================
   9) Ultimate Member (UM) overrides
========================= */
.um-role-um_expert,
.um-98.um{ max-width:100% !important; }

.um-page-user{ background: #f9fffc; }
.um-page-user h2{ color: var(--gph-gray) !important; }

.um-header{
  padding:0 !important;
  border-bottom:0 !important;
}
.um-header .um-profile-meta{
  max-width:200px;
  border:1px solid red;
  padding-left:0 !important;
  margin-top:100px;
  display:none;
}
.um-header .um-profile-photo{ margin:0; }

.um input[type=submit].um-button{ background: var(--gph-green) !important; }

.um-profile-navbar .um-messaging-btn{ display:none !important; }
.um-profile-headericon{ display:none; }

/* =========================
   10) Sidebar / Layout
========================= */
#main{ margin:0 !important; padding:0; }

.sidebar-blk{
  border-radius:5px !important;
  background:#fff !important;
  box-shadow: var(--gph-shadow);
  color: var(--gph-gray) !important;
}
.sidebar-blk hr{ margin:5px 0 10px !important; }

.profile-sidebar{ max-width:300px; margin-right:30px; }

.left-column{
  max-width:250px;
  width:100%;
  padding:20px;
}
.left-column .nav-link{
  color:#A4A4A4;
  display:flex;
  align-items:center;
  line-height:2.0;
  border-radius:10px;
  white-space:nowrap;
  margin-bottom:5px;
}
.left-column .nav-link:hover,
.left-column .nav-link:active{
  color:#fff;
  background: var(--gph-green);
}
.left-column .nav-link:hover .profile-image,
.left-column .nav-link:active .profile-image{
  filter: brightness(100);
}
.left-column .nav-link:focus{
  color: var(--gph-green);
  background: rgba(56,173,110,.5);
}
.left-column .nav-link:focus .profile-image{
  filter: brightness(100);
}
.left-column .nav-link i{ margin-right:8px; }

.right-column,
.chat-block{
  background: var(--gph-pale-2);
  padding:30px 20px;
}

.right-col-block{
  border-radius:5px;
  background:#fff;
  box-shadow: var(--gph-shadow);
  padding: 20px;
}
.right-col-block .nav-link{
  font-size:16px;
  color: var(--gph-gray);
  font-weight:700 !important;
}
.right-col-block .nav-link:hover,
.right-col-block .nav-link.active{
  color: var(--gph-green);
  text-decoration: underline !important;
  text-underline-offset:5px !important;
}
.right-col-block #content-area{
  padding:10px 40px 20px;
  min-height:445px;
}

/* =========================
   11) Ratings / Services
========================= */
.ratings{ margin-right:10px; }
.ratings i{ color:#cecece; font-size:15px; }
.rating-color{ color:#fbc634 !important; }

.review-count{
  font-weight:400;
  margin-bottom:2px;
  font-size:14px !important;
}
.small-ratings i{ color:#cecece; }
.review-stat{
  font-weight:300;
  font-size:18px;
  margin-bottom:2px;
}
.services-list li{ margin-bottom:10px; }
.services-list li .bi-check-circle-fill{
  margin-right:10px;
  color: var(--gph-green);
}

/* =========================
   12) Members Grid (Profile cards)
========================= */
.members-grid-block{
  margin-top:40px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

.card-profile{
  width:350px;
  border:none;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
  margin:0 20px 20px;
}
.card-profile .card-body{
  background: var(--gph-pale);
  border-bottom-left-radius:20px;
  border-bottom-right-radius:20px;
}
.card-profile .card-header{
  background: var(--gph-green);
  color:#fff;
  padding:20px;
  text-align:left;
  border-bottom:none;
  border-radius:8px 8px 0 0;
}
.card-profile .card-header h4{
  color:#fff !important;
  font-family: var(--gph-font) !important;
  font-weight:700;
  font-size:20px;
  margin:0;
}
.card-profile .card-header p{
  font-family: var(--gph-font) !important;
  font-size:14px;
}
.card-profile .profile-action{
  display:flex;
  justify-content:space-between;
  align-items:end;
}
.card-profile .profile-action .btn-profile{
  max-height:40px;
  border-bottom:1px solid !important;
}
.card-profile .profile-action .btn-profile .fa-user{ margin-right:5px; }

.card-profile .rating{
  display:flex;
  justify-content:left;
  align-items:flex-end;
  flex-direction:column;
}
.card-profile .rating .stars{ color:#FFEF61; margin-left:5px; }
.card-profile .rating .score{
  color:#fff;
  font-size:14px;
  font-weight:400;
  font-family: var(--gph-font) !important;
}

.card-profile .card-info{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
  align-items:center;
  font-size:12px;
}
.card-profile .card-info div{ display:flex; align-items:center; }
.card-profile .card-info .fas{
  margin-right:5px;
  font-size:16px;
  color: var(--gph-gray);
}
.card-profile .btn-green{ border:none; }

.card-about{
  font-family: var(--gph-font) !important;
  font-size:12px;
  height:92px;
  overflow:hidden;
  margin-bottom:20px;
}
.card-about p{ font-weight:300; }

.card-profile .profile-image{
  border-radius:50%;
  width:68px;
  height:68px;
  position:absolute;
  top:10px;
  right:10px;
}
.card-profile .profile-image img{
  width:68px;
  height:68px;
  border:5px solid #fff;
  background:#fff;
  border-radius:999px !important;
  overflow:hidden;
  display:inline !important;
}

/* Favorite icon */
.favorite-icon{
  position:absolute;
  bottom:25px;
  right:20px;
  cursor:pointer;
  color:#cfcfcf;
  font-size:20px;
}
.favorite-icon.active{ color: var(--gph-green); }

.gph-expert-heart-btn.is-active .gph-expert-heart-icon{
  color: var(--gph-green) !important;
}

/* =========================
   13) Sessions (Cards)
========================= */
.session-card{
  background:#fff;
  color: var(--gph-gray);
  box-sizing:border-box;
  padding:10px 25px;
  min-height:100px;
  width:100%;
  border:none;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  margin-bottom:20px;
  border-radius:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;

  font-family: var(--gph-font);
  font-weight:300;
}

.session-card .client-image{ width:200px; flex-shrink:0; }
.session-card .client-avatar{ min-width:200px; }

.session-card .client-avatar img{
  width:68px;
  height:68px;
  border:5px solid #fff;
  background:#fff;
  border-radius:999px;
  overflow:hidden;
  display:inline-block;
}

.session-card .client-name{ width:200px; }
.session-card .client-name h3{ font-size:18px; margin:0; padding:0; }
.session-card .client-name span{ font-weight:300; font-size:16px; }

.session-card .session-date,
.session-card .session-time,
.session-card .tz-block{ font-size:14px; }

.session-card .session-date{ width:212px; }

.session-card .session-duration{ display:flex; justify-content:flex-end; }

.session-card .profile-link a{
  color: var(--gph-green);
  font-weight:400 !important;
}

/* countdown */
.session-card .countdown{
  display:flex;
  justify-content:center;
  align-items:center;
  font-family: Arial, sans-serif;
}
.session-card .countdown .dhm{
  color: var(--gph-gray);
  margin:0 2px;
  text-align:center;
  border-radius:5px;
  font-size:10px;
}
.session-card .countdown .dhm div{
  background: var(--gph-green);
  width:30px;
  color:#fff;
  display:block;
  font-size:16px;
}

.session-card .btn-green{ border-radius:50px; }
.session-card .btn-cancel{
  background:#fff;
  color:#4CAF50;
  border-color:#4CAF50;
  margin-right:10px;
}
.session-card .session-btm{
  width:210px;
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

/* disabled buttons */
.session-card button:disabled,
.session-card button[disabled]{
  border:1px solid #ccc !important;
  background:#a4a4a4 !important;
  color:#fff !important;
}

/* Sessions – Responsive */
@media (max-width: 992px){
  .session-card{
    flex-wrap:wrap;
    align-items:flex-start;
    padding:15px 20px;
  }
  .session-card .client-image{ width:auto; margin-bottom:10px; }
  .session-card .client-name,
  .session-card .session-date,
  .session-card .session-btm{ width:100%; }
  .session-card .session-btm{ justify-content:flex-start; margin-top:5px; }
}
@media (max-width: 576px){
  .session-card{
    flex-direction:column;
    align-items:stretch;
    text-align:left;
  }
  .session-card .client-image{
    display:flex;
    align-items:center;
    margin-bottom:10px;
  }
  .session-card .client-name h3{ font-size:16px; }
  .session-card .session-btm{
    width:100%;
    justify-content:flex-start;
    gap:8px;
    flex-wrap:wrap;
  }
}

/* =========================
   14) Carousel / Chat helpers
========================= */
.slick-slide{
  display:flex !important;
  justify-content:center;
  align-items:center;
}
.bpbmuc{
  background: var(--gph-green);
  position:absolute !important;
  margin-left:-5px !important;
  margin-top:-10px !important;
}

/* =========================
   15) Schedule Popup / Time Slots
========================= */
#schedPopup .time-slot,
.duration-slot{
  display:inline-block;
  margin:5px;
  padding:5px;
  border:1px solid var(--gph-green);
  border-radius:4px;
  cursor:pointer;
  background: var(--gph-pale);
  font-size:13px;
}

.time-slot{
  padding:5px 10px;
  border:1px solid #ccc;
  border-radius:4px;
}

#schedPopup .time-slot.selected,
.duration-slot.selected,
.time-slot.selected{
  background: var(--gph-green);
  color:#fff;
  border-color: var(--gph-green);
}

#schedPopup .flatpickr-calendar.inline{ display:block; background: var(--gph-pale); }

#schedPopup .select-all-container{ display:flex; }
#schedPopup h4{ font-size:16px; font-weight:700; }
#schedPopup h5{ font-size:14px !important; }

#schedPopup .price-box{
  width:45px;
  height:30px;
  padding:0 10px;
  font-size:12px;
}
#schedPopup .price-blk{
  width:120px;
  margin-bottom:10px;
  font-size:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
#schedPopup .time-slots{ margin-bottom:20px; }

#schedPopup .slot-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
#schedPopup .slot-title div{ font-size:12px; }

#schedPopup .flatpickr-day.selected{
  border:none;
  background: var(--gph-green);
  color:#fff;
}
#schedPopup .has-schedule{
  color: var(--gph-green);
  font-weight:700;
}
#schedPopup .flatpickr-disabled{
  color: rgba(57,57,57,.1) !important;
}

#schedPopup .slot-select-all{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
#schedPopup .slot-select-all div{ font-size:12px; }

.un-sched{ display:none !important; }
.client-date-board .select-all-container{ display:none !important; }

#deleteSchedule{
  border-radius:20px;
  height:30px;
  line-height:1.5;
  font-size:12px;
}
#timezone-select{
  max-width:308px;
  margin-bottom:10px;
}

/* =========================
   16) Dashboard / Toolkit + Stats
========================= */
#dashboard{ background:#fff; padding:0; }
#dashboard .nav-link.active{
  background: var(--gph-green);
  color:#fff;
}

.green-block{ background: var(--gph-pale); }
.green-block .um-form .um-row{ margin:0 !important; }
.green-block .um-form .um-row a{ color: var(--gph-green); }

/* members grid button */
.bm-lc-button{
  border-radius:5px;
  border:none;
  padding:7px 10px;
  background: var(--gph-green);
  color:#fff;
}
.bm-lc-button::before{
  font-family:"Font Awesome 6 Free";
  content:"\f4ad";
  margin-right:2px;
  font-size:16px;
}

.greet-text{
  font-family: var(--gph-script);
  font-weight:400;
  font-size:28px;
  line-height:39px;
  text-align:left;
  color: var(--gph-green);
}
.greet-text span{
  font-family: var(--gph-font);
  font-size:26px;
  font-weight:500;
}
.welcome-text{
  font-family: var(--gph-font);
  font-size:24px;
  font-weight:400;
  line-height:32.69px;
  text-align:left;
  color: var(--gph-gray);
}

#toolkit-blk{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:30px;
  width:894px;
  min-height:416px;
  background: linear-gradient(180deg, var(--gph-green) 0%, #FFFFFF 100%);
  box-shadow: 0 0 12px rgba(0,0,0,.15);
  border-radius:8px;
}
#toolkit-blk .close-btn .fa{
  color:#fff;
  font-size:24px !important;
  padding-bottom:20px;
}
#toolkit-blk .content-blk h2{
  display:flex;
  justify-content:space-between;
  width:100%;
  font-family: var(--gph-font);
  font-weight:400;
  font-size:40px;
  line-height:54px;
  color: var(--gph-pale);
}
#toolkit-blk .content-blk .sub-text{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:8px;
  width:615px;
  font-family: var(--gph-font);
  font-size:24px;
  font-weight:400;
  line-height:32.69px;
  text-align:left;
  color: var(--gph-gray);
}
#toolkit-blk .content-blk .sub-small-text{
  margin-top:30px;
  font-family: var(--gph-font);
  font-size:16px;
  font-weight:400;
  line-height:21.79px;
  text-align:left;
  color: var(--gph-gray);
}
#toolkit-blk .action-btn-blk{
  display:flex;
  margin-top:10px;
  width:100%;
  justify-content:space-between;
  align-items:end;
}
#toolkit-blk .btn{ border-radius:20px; }
#toolkit-blk .btn-outline-green{
  border:2px solid var(--gph-green);
  color: var(--gph-green);
}
#toolkit-blk .btn-outline-green:hover{
  color: var(--gph-gray);
  border-color: var(--gph-gray);
}

#stats-block{
  display:flex;
  max-width:800px;
  justify-content:space-between;
}
.stat-card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:16px;
  gap:12px;
  width:240px;
  min-height:230px;
  background:#fff;
  box-shadow: 0 0 12px rgba(0,0,0,.15);
  border-radius:8px;
}
.stat-card .title{
  font-family: var(--gph-font);
  font-size:18px;
  font-weight:600;
  line-height:24.52px;
  text-align:center;
  color: var(--gph-gray);
}
.stat-card .amount{
  font-family: var(--gph-font);
  font-size:28px;
  font-weight:600;
  line-height:38.14px;
  text-align:center;
  color: var(--gph-green);
}
.stat-card .trend{
  display:flex;
  align-items:center;
  font-family: var(--gph-font);
  font-size:16px;
  font-weight:400;
  line-height:21.79px;
  text-align:center;
}
.stat-card .trend span{ color: var(--gph-green); }

.bg-grad{ background: linear-gradient(180deg, var(--gph-green) 0%, #FFFFFF 100%); }

/* =========================
   17) Pagination
========================= */
.pagination-nav{
  display:flex;
  justify-content:center;
}
.pagination-nav .page-item.active .page-link{
  background: var(--gph-green);
  border-color: var(--gph-green);
  color:#fff !important;
}
.pagination-nav .page-item .page-link{ color: var(--gph-green); }

/* =========================
   18) Event Page
========================= */
#event-page .hero{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  text-align:center;
  box-sizing:border-box;
  overflow:hidden;
  max-height:443px;
  padding:0;
  height:80vh;
}
#event-page .hero img{
  width:100% !important;
  display:block;
  border-radius:0;
  margin:0 !important;
}
#event-page .profile-image img{
  border-radius:999px !important;
  margin-top:-60px;
  border:1px solid #fff;
}
#event-page .bg-green{ background: var(--gph-green); }
#event-page .profile-dp{
  margin-top:-50px;
  border:1px solid #fff;
}
#event-page .register-btn,
#event-page .register-btn-preview{
  background:#ffa460;
  font-weight:600;
  border:0;
}
#event-page .border-divider{
  position:absolute;
  top:30%;
  bottom:30%;
  left:66.67%;
  width:1px;
  background:#ccc;
}
#event-page .bg-palegreen{ background: var(--gph-pale); }

#event-page .custom-list{ list-style-type:disc; }

#event-page .hr-01{
  border:none;
  height:5px;
  background:#fff;
  opacity:1;
}
#event-page h2{ font-size:26px; }
#event-page h5{ font-size:22px; }

#event-page p,
#event-page ul{
  font-weight:500; 
}
#event-page .ratings i.bi-star-fill{ color:#ffde59; }
#event-page .ratings i.bi-star-fill.no-color{ color: var(--gph-gray-2); }

#event-page .h2{
  color:#545454;
  font-size:20px !important;
}
#event-page .read-more-btn:hover{ text-decoration:underline; }

/* =========================
   19) Event Form
========================= */
#event-form{
  max-width:900px;
  margin:auto;
}
#event-form .flatpickr-day.selected{
  border:none;
  background: var(--gph-green);
  color:#fff;
}
#event-form h1{
  text-align:center;
  color: var(--gph-green);
  margin-bottom:20px;
}
#event-form label{
  font-weight:700;
  margin-top:10px;
  display:block;
}
#event-form input::placeholder,
#event-form textarea::placeholder{ color:#999; }

#event-form .banner-preview{
  margin-top:20px;
  text-align:center;
}
#event-form .banner-preview img{
  max-width:100%;
  height:auto;
  display:none;
  border:1px solid #ddd;
  border-radius:5px;
}
#event-form .error{ color:red; font-size:.9em; display:none; }

#event-form .ck-voice-label{ display:none; }
#event-form .ck-editor__editable{ min-height:200px; }

.mytime{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  background-clip:padding-box;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow-inset);
  color: var(--bs-body-color);
  display:block;
  font-size:1rem;
  font-weight:400;
  line-height:1.5;
  padding:.375rem .75rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  width:100%;
}

/* Events table */
#events-list thead{ border-color:#fff; }
#events-list thead tr th{
  background: var(--gph-green);
  color:#fff;
  border-color:#fff;
}
#events-list tbody{ border-color:#cfcfcf; }
#events-list tbody td{ color:#545454; }

/* action buttons */
.action-btn{ display:flex; justify-content:center; }
.action-btn a{ margin:0 5px 20px; }
.action-btn .fa{ margin-right:10px; }

/* update modal text */
#updateSuccessModal h3{ color: var(--gph-green); margin-bottom:20px; }
#updateSuccessModal p{ color:#333; font-size:18px; margin-bottom:40px; }

.ck.ck-balloon-panel.ck-powered-by-balloon .ck.ck-powered-by{ display:none; }

/* =========================
   20) Event Cards (Listing)
   - legacy event cards
========================= */
#event-cards .hero-card{
  width:320px;
  height:140px;
  background-size:cover;
  border-top-left-radius:5px;
  border-top-right-radius:5px;
}
#event-cards .card{ max-width:320px; }
#event-cards .card .h2{ font-size:16px; }
#event-cards .ratings{ margin-right:0; }
#event-cards .ratings i.bi-star-fill{
  color:#ffde59;
  font-size:14px !important;
}
#event-cards .ratings i.bi-star-fill.no-color{
  color: var(--gph-gray-2);
  font-size:14px !important;
}
#event-cards .duration{ font-size:16px; }
#event-cards .price{ font-size:16px; font-weight:700; }
#event-cards ul{ font-size:12px; }
#event-cards p,
#event-cards ul li{ font-weight:400; }
#event-cards .txt p{ font-size:12px; color: var(--gph-gray-2); }

#event-cards .read-more-btn-x{
  font-size:12px;
  text-decoration:underline;
  font-weight:600;
  color: var(--gph-green);
}
#event-cards .read-more-btn-x:hover{ text-decoration:underline; }

.events-card-block{ display:flex; }

/* =========================
   21) Event Card (NEW Minimal Card)
   - this is the card you asked to recreate
========================= */
.gph-card-wrap{
  width:100%;
  max-width:360px;
  display: flex;
}
.gph-card{
  background:#fff;
  border:1px solid var(--gph-border);
  border-radius: var(--gph-radius-lg);
  box-shadow: var(--gph-shadow-soft);
  overflow:hidden;
  font-family: var(--gph-font);
  color:#0f172a;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.gph-card__media{
  position:relative;
  height:200px;
  background:#f1f5f9;
}
.gph-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.gph-card__body{ padding:16px 16px 14px; }

.gph-card__titleRow{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:6px;
   
}
.gph-card__title{
  font-weight:600;
  font-size:18px;
  line-height:1.05;
  letter-spacing:-0.02em;
  color: var(--gph-green);
  margin:0;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  height: 40px;
}
.gph-card__like{
  display:inline-flex;
  align-items:center;
  gap:0px;
  margin-top:2px;
  flex:0 0 auto;
  user-select:none;
}
.gph-card__likeIcon{ width:26px; height:26px; }
.gph-card__likeCount{
  font-size:16px;
  color:#111827;
  font-weight:600;
  line-height:1;
  transform: translateY(1px);
}
.gph-card__desc{
  margin:0 0 10px 0;
  font-size:14px;
  line-height:1.35;
  color:#111827;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
      height: 40px;
}
.gph-card__link{
  display:inline-block;
  font-size:14px;
  font-weight:400;
  color: var(--gph-green);
  text-decoration:none;
  margin-bottom:12px;
}
.gph-card__link:hover{ text-decoration:underline; }

.gph-card__metaRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.gph-card__duration{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#111827;
  font-size:16px;
  font-weight:500;
}
.gph-card__clock{ width:22px; height:22px; flex:0 0 auto; }
.gph-card__price{ font-size:18px; font-weight:700; color:#111827; }

.gph-card__bottomRow{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.gph-card__date{
  font-size:16px;
  font-weight:800;
  margin:0;
  color:#111827;
}
.gph-card__rating{
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  color:#111827;
}
.gph-card__ratingCount{ font-size:14px; color:#111827; }
.gph-card__stars{ display:inline-flex; gap:4px; transform: translateY(1px); }
.gph-card__star{ width:16px; height:16px; }

.gph-card__time{
  margin:6px 0 0 0;
  font-size:14px;
  color:#111827;
}

@media (max-width: 420px){
  .gph-card__media{ height:190px; }
  .gph-card__title{ font-size:24px; }
}
.gph-card__media{
  position: relative;
}

.gph-card__tag{
  position:absolute;
  top:12px;
  left:12px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  z-index:2;
}

.gph-card__tag--past{
  background: rgba(17,24,39,.85);
  color:#fff;
}

.gph-card__tzNotice{
  margin-top:8px;
  font-size:12px;
  line-height:1.35;
  color:#6b7280;
}
/* =========================
   22) Hosted List Cards
========================= */
.hosted-card{
  display:grid;
  grid-template-columns: 1.6fr .9fr 1fr;
  gap:16px;
  padding:16px;
  margin-bottom:14px;
  border:1px solid #eee;
  border-radius:14px;
  background:#fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.02);
}
.title-wrap{ display:flex; flex-direction:column; gap:8px; }
.hosted-title{ font-weight:600; font-size:1.05rem; }
.hosted-title span{ opacity:.5; }

.bubble-strip{ display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
.bubble{
  width:32px; height:32px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.bubble img{ width:100%; height:100%; object-fit:cover; display:block; }
.bubble.more{
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem;
  background:#f5f5f5;
}
.bubble a.btn-view-profile{
      display: contents !important;
}
.date-block p{ margin:0; line-height:1.35; }
.cd-line{ font-size:.95rem; margin-bottom:.35rem; }
.cd-badge{
  display:inline-block;
  padding:.15rem .5rem;
  border-radius:.5rem;
  font-size:.8rem;
  background:#f5f5f5;
}
@media (max-width: 992px){
  .hosted-card{ grid-template-columns: 1fr; }
}

/* =========================
   23) Modals (Share + Ratings)
========================= */
.modal-event{
  display:none;
  position:fixed;
  z-index:9999;
  padding-top:100px;
  left:0; top:0;
  width:100%; height:100%;
  background: rgba(0,0,0,.5);
}
#shareModal .modal-content{
  color: var(--gph-gray-2);
  background:#fff;
  margin:auto;
  padding:20px;
  border:1px solid #888;
  width:100%;
  max-width:400px;
  text-align:center;
}
#shareModal .close{
  color:#aaa;
  float:right;
  font-size:28px;
  font-weight:700;
}
#shareModal .close:hover,
#shareModal .close:focus{
  color:#000;
  cursor:pointer;
}
#shareModal .link-section{ margin-bottom:20px; }
#shareModal #copyLinkBtn{ margin:20px auto 5px; }
#shareModal #shareLink{ width:100%; padding:5px; }
#shareModal .social-icons a{ color: var(--gph-gray-2); }
#shareModal .social-icons a i{
  font-size:20px;
  padding:5px 10px;
  margin-top:15px;
  margin-bottom:10px;
}

/* Rating modal (your custom one) */
.gph-modal{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  z-index:10000;
  display:flex;
  align-items:center;
  justify-content:center;
}
.gph-overlay{
  position:absolute;
  width:100%; height:100%;
  background: rgba(0,0,0,.6);
}
.gph-dialog{
  position:relative;
  background:#fff;
  padding:20px;
  border-radius:12px;
  max-width:720px;
  width:92%;
  z-index:2;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.gph-close{
  position:absolute;
  top:10px; right:15px;
  background:none;
  border:none;
  font-size:24px;
  cursor:pointer;
  line-height:1;
}
.gph-rating-form .gph-stars-input{
  direction: rtl;
  display:inline-flex;
  gap:4px;
  font-size:26px;
  cursor:pointer;
  user-select:none;
  margin-bottom:12px;
}
.gph-rating-form .gph-stars-input input{ display:none; }
.gph-rating-form .gph-stars-input label{ color:#bbb; }
.gph-rating-form .gph-stars-input input:checked ~ label,
.gph-rating-form .gph-stars-input label:hover,
.gph-rating-form .gph-stars-input label:hover ~ label{ color:#f5a623; }
.gph-rating-form .gph-field{ margin-bottom:12px; }
.gph-rating-form textarea{
  width:100%;
  border:1px solid #e2e8f0;
  border-radius:8px;
  padding:10px;
}
.gph-ratings-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-height:60vh;
  overflow:auto;
}
.gph-rating-item{
  border:1px solid #eee;
  border-radius:10px;
  padding:12px;
  background:#fff;
}
.gph-rating-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:6px;
}
.gph-stars{ color:#f5a623; letter-spacing:1px; }
.gph-rating-meta{ font-size:.85rem; color:#6b7280; margin-top:6px; }

/* =========================
   24) Reviews Grid
========================= */
.gph-event-reviews-grid{
  display:grid;
  gap:20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.gph-review-card{
  background:#fff;
  border-radius:14px;
  padding:18px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.gph-review-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.gph-review-avatar{
  width:48px;
  height:48px;
  border-radius:50%;
  overflow:hidden;
  background:#e5e5e5;
  flex:0 0 48px;
}
.gph-review-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.gph-review-name{
  font-weight:600;
  font-size:15px;
  color:#333;
}
.gph-review-location{
  display:flex; 
  align-items:center;
  gap:4px;
  font-size:13px;
  color:#777;
}
.gph-location-dot{ font-size:10px; }
.gph-review-stars-row{ margin:8px 0 10px; }
.gph-star{ font-size:18px; margin-right:2px; }
.gph-star.filled{ color:#ffd83b; }
.gph-star.empty{ color:#f4f4f4; }
.gph-review-body{
  font-size:14px;
  line-height:1.5;
  color:#555;
  margin-bottom:10px;
}
.gph-review-footer .gph-review-readmore{
  font-size:14px;
  color:#555;
  text-decoration:underline;
}

/* Center if only one review card (note: :has() not supported in all browsers) */
.gph-event-reviews-grid:has(.gph-review-card:nth-child(1):last-child){
  display:flex;
  justify-content:center;
}
.gph-event-reviews-grid:has(.gph-review-card:nth-child(1):last-child) .gph-review-card{
  width:360px;
  max-width:100%;
}
.gp-container{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 18px 28px;
  }

  /* =========================
     COVER / HEADER
  ========================== */
  .gp-cover{
    position: relative;
    width: 100%;
    height: var(--cover-h-desktop);
    overflow: hidden;
    border-bottom: 1px solid var(--gp-border);
    background: #111;
  }
  .gp-cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
  }

  .gp-cover-actions{
    position:absolute;
    right: 18px;
    bottom: 18px;
    display:flex;
    gap: 10px;
    z-index: 2;
  }

  .gp-icon-btn{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.85);
    display:grid;
    place-items:center;
    cursor:pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,.18);
    transition: transform .15s ease, background .15s ease;
  }
  .gp-icon-btn:hover{ transform: translateY(-1px); background: #fff; }

  .gp-icon{
    width: 20px; height: 20px; display:block;
    fill: #111827;
  }

  /* =========================
     PROFILE STRIP (desktop)
     - avatar left, name next, actions on right
  ========================== */
  .gp-profile-strip{
    position: relative; 
    padding-top: 0;
    max-width: 1440px;
  }

  .gp-strip-inner{
    display:flex;
    align-items:flex-end;
    justify-content: space-between;
    gap: var(--gap);
    padding: 0 0 14px;
  }

  .gp-identity{
    display:flex;
    align-items:flex-end;
    gap: 16px;
    margin-top: calc(var(--avatar) * -0.45);
  }

  .gp-avatar-wrap{
    position: relative;
    width: var(--avatar);
    height: var(--avatar);
    border-radius: 999px;
    border: 5px solid #fff;
    overflow:hidden;
    background:#fff;
    box-shadow: var(--gp-shadow);
    flex: 0 0 auto;
  }
  .gp-avatar-wrap img{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
  }
  .gp-avatar-edit{
    position:absolute;
    right: 8px;
    bottom: 8px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(0,0,0,.08);
    display:grid;
    place-items:center;
    cursor:pointer;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
  }
  .gp-avatar-edit .gp-icon{ width: 18px; height: 18px; }

  .gp-name-block{
    padding-bottom: 10px;
  }
  .gp-name{
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .gp-title{
    margin: 6px 0 0;
    color: var(--gp-muted);
    font-size: 14px;
  }

  .gp-actions{
    display:flex;
    align-items:center;
    gap: 10px;
    padding-bottom: 12px;
  }

  .gp-btn{
    border: 1px solid transparent;
    background: var(--gp-primary);
    color:#fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 13px;
    cursor:pointer;
    display:inline-flex;
    gap: 8px;
    align-items:center;
    box-shadow: 0 14px 30px rgba(53,182,106,.22);
    transition: background .15s ease, transform .15s ease;
    white-space: nowrap;
  }
  .gp-btn:hover{ background: var(--gp-primary-2); transform: translateY(-1px); }

  .gp-btn--ghost{
    background: #fff;
    color: var(--gp-primary);
    border-color: rgba(53,182,106,.35);
    box-shadow: none;
  }
  .gp-btn--ghost:hover{ background: var(--gp-primary-soft); transform: translateY(-1px); }

  .gp-right-mini{
    display:flex;
    align-items:center;
    gap: 10px;
    padding-bottom: 12px;
  }

  .gp-like{
    display:inline-flex;
    align-items:center;
    gap: 6px;
    color: var(--gp-muted);
    font-size: 13px;
  }

  .gp-social{
    display:flex;
    align-items:center;
    gap: 8px;
  }
  .gp-social a{
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--gp-border);
    display:grid;
    place-items:center;
    color: var(--gp-muted);
    text-decoration:none;
    transition: transform .15s ease, background .15s ease;
  }
  .gp-social a:hover{ transform: translateY(-1px); background: var(--gp-primary-soft); color: var(--gp-primary); }

  /* =========================
     MAIN GRID
  ========================== */
  .gp-main{
    margin-top: 12px;
    display:grid;
    grid-template-columns: 330px 1fr;
    gap: var(--gap);
  }

  .gp-card{
    background: var(--gp-card);
    border: 1px solid var(--gp-border);
    border-radius: var(--gp-radius);
    box-shadow: var(--gp-shadow);
  }

  .gp-card-pad{ padding: 16px; }

  .gp-card-title{
    font-size: 16px;
    margin: 0 0 12px;
  }

  .gp-list{
    display:flex;
    flex-direction:column;
    gap: 10px;
  }
  .gp-item{
    display:flex;
    align-items:flex-start;
    gap: 10px;
    color: var(--gp-text);
    font-size: 13px;
  }
  .gp-item .label{ color: var(--gp-muted); }
  .gp-item a{ color: var(--gp-primary); text-decoration:none; }
  .gp-item a:hover{ text-decoration:underline; }

  .gp-divider{
    height:1px;
    background: var(--gp-border);
    margin: 14px 0;
  }

  .gp-stars{
    display:flex; gap: 2px; align-items:center;
    font-size: 14px;
  }
  .gp-stars svg{ width: 16px; height: 16px; fill: #f59e0b; }

  .gp-checklist{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap: 8px;
  }
  .gp-checklist li{
    display:flex;
    gap: 10px;
    align-items:center;
    font-size: 13px; 
    color: var(--gp-text);
  }
  .gp-check{
    width: 18px; height: 18px;
    border-radius: 999px;
    background: var(--gp-primary);
    display:grid;
    place-items:center;
    flex: 0 0 auto;
  }
  .gp-check svg{ width: 12px; height: 12px; fill:#fff; }

  /* =========================
     TABS
  ========================== */
.gp-tabs{
  display: block;
  flex-wrap: wrap;              /* ✅ allows buttons to go to next line */
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--gp-border);
  max-width: 100%;              /* ✅ stay inside card */
}
.gp-tabs::-webkit-scrollbar{
	display: none;              /* Chrome/Safari */
}

.gp-tab{
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--gp-muted);
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;          /* keep label in one line */
  flex: 0 0 auto;               /* default pill size */
}

.gp-tab[aria-selected="true"]{
  color: var(--gp-primary);
  background: var(--gp-primary-soft);
}

.gp-panel{
    padding: 18px;
    min-height: 320px;
  }
  .gp-panel h3{
    margin: 0 0 12px;
    font-size: 14px;
    letter-spacing: .02em;
    color: var(--gp-muted);
  }
  .gp-panel p{
    margin: 0 0 10px;
    color: #334155;
    line-height: 1.55;
    font-size: 14px;
  }

  .gp-readmore{
    display:inline-flex;
    margin-top: 4px;
    font-weight: 600;
    font-size: 13px;
    color: var(--gp-primary);
    text-decoration:none;
  }
@media (max-width: 1200px){
  .gp-strip-inner{
    flex-wrap:wrap;
    align-items:flex-start;
  }

  .gp-name-block{
    margin-top:20px;
  }

  .gp-actions{
    order:3;
    width:100%;
    margin-top:10px;
    justify-content:flex-start;
    flex-wrap:wrap;
  }

  .gp-right-mini{
    order:2;
    margin-left:auto;
  }
}
  /* =========================
     MOBILE: Facebook-style reflow
     - cover stays
     - avatar centered and overlaps
     - name centered
     - buttons centered under name
     - grid becomes 1 column
  ========================== */
  @media (max-width: 860px){
    .gp-main{ grid-template-columns: 1fr; }
  }

  @media (max-width: 640px){
    .gp-cover{ height: var(--cover-h-mobile); }

    /* hide cover action on very small if you want, or keep */
    .gp-cover-actions{ right: 12px; bottom: 12px; }

    .gp-strip-inner{
      flex-direction: column;
      align-items: center;
      text-align:center;
      padding-bottom: 10px;
    }

    .gp-identity{
      flex-direction: column;
      align-items: center;
      gap: 10px; 
      margin-top: calc(var(--avatar-mobile) * -0.55);
    }

    .gp-avatar-wrap{
      width: var(--avatar-mobile);
      height: var(--avatar-mobile);
    }

    .gp-name{
      font-size: 26px;
    }

    .gp-actions{
      width: 100%;
      justify-content:center;
      flex-wrap: wrap;
      padding-bottom: 6px;
    }
    .gp-btn{ padding: 10px 16px; }

    .gp-right-mini{
      width: 100%;
      justify-content:center;
      flex-wrap: wrap;
      padding-bottom: 0;
    }

    .gp-container{ padding: 0 12px 22px; }
  }
  /* Tablets */
@media (max-width: 768px){
  .gp-tabs{
    padding: 8px 8px;
    gap: 8px;
  }

  .gp-tab{
    font-size: 12px;
    padding: 7px 12px;
  }
}

/* Phones */
@media (max-width: 480px){
  .gp-tab{
    flex: 1 1 calc(50% - 10px); /* ✅ tries to make 2 columns */
    text-align: center;
    padding: 10px 12px;
  }

  .gp-tab{
    font-size: 11.5px;
    padding: 6px 10px;
  }
}

.gp-accordion {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.gp-acc-item + .gp-acc-item {
  border-top: 1px solid #e5e7eb;
}

.gp-acc-btn {
  width: 100%;
  text-align: left;
  background: #f4fdf9;
  border: 0;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}

.gp-acc-btn[aria-expanded="true"] {
  background: #38AD6E;
  color: #fff;
}

.gp-acc-panel {
  padding: 14px 16px;
  background: #ffffff;
  color: #374151;
}

.gp-muted {
  color: #9ca3af;
}
	/* clamped (default) */
.gp-clamp{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6; /* change lines as you want */
  overflow: hidden;
}

/* expanded */
.gp-clamp.is-expanded{
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
/* =========================
   Event Hearts (NEW)
   - Uses design token: --gph-green
========================= */
.gph-heart-wrap{
  display:inline-flex;
  align-items:center;
}

.gph-heart-btn{
  display:inline-flex;
  align-items:center;
  gap:4px;                  /* heart + count close */
  border:0;
  background:transparent;
  padding:0;                /* no extra spacing */
  cursor:pointer;
  user-select:none;
}

.gph-heart-icon{
  font-size:20px;
  line-height:1;
  color: var(--gph-green);  /* ✅ site green */
  transition: transform .12s ease, color .12s ease;
}

/* count should also be green (as you requested) */
.gph-heart-count{
  color: #000;  /* ✅ site green */
  font-weight:700;
  font-size:13px;
  line-height:1;
}

/* active (hearted) – keep it green, just slightly stronger */
.gph-heart-btn.is-active .gph-heart-icon{
  color: var(--gph-green);
} 

/* press animation */
.gph-heart-btn:active .gph-heart-icon{
  transform: scale(1.15);
}

/* busy state (ajax) */
.gph-heart-btn.is-busy{
  opacity:.6;
  pointer-events:none;
}

/* disabled (not allowed to click) */
.gph-heart-btn.is-disabled{
  cursor:default;
  pointer-events:none;
  opacity:.85;
}
#event-page .gph-heart-btn.is-active .gph-heart-icon{
	color:white;
}
#event-page .gph-heart-count{
  color:white;
      margin-left: 10px;
}

#event-page  .gph-heart-icon{
color:white;
}
/** tabs style*/
.gph-tablist{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 0 0 16px;
}

.gph-tab{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  background:#fff;
  cursor:pointer;
  font-weight:600;
  font-size:.92rem;
}

.gph-tab .gph-count{
  background:#f1f5f9;
  border:1px solid #e2e8f0;
  padding:2px 8px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
}

.gph-tab.is-active{
  border-color:var(--gph-green); 
}

.gph-tab.is-active .gph-count{
  background:#f4fdf9;
  border-color:#cfeedd;
  color:var(--gph-green);
} 

.gph-panel{ display:none; }
.gph-panel.is-active{ display:block; }
/** eof tabs style */

.wp-editor-wrap{
  border: none !important;
  max-width: 680px;
  margin-top: -20px;
}

/* Facebook */
.gph-btn--fb{
  border-color:#1877F2;
  color:#1877F2;
}
.gph-btn--fb:hover{
  background:rgba(24,119,242,.10);
}

/* X (Twitter) */
.gph-btn--x{
  border-color:#111;
  color:#111;
}
.gph-btn--x:hover{
  background:rgba(0,0,0,.08);
}

/* LinkedIn */
.gph-btn--li{
  border-color:#0A66C2;
  color:#0A66C2;
}
.gph-btn--li:hover{
  background:rgba(10,102,194,.10);
}

/* Instagram */
.gph-btn--ig{
  border-color:#E1306C;
  color:#E1306C;
}
.gph-btn--ig:hover{
  background:rgba(225,48,108,.10);
}

/* Optional: make them full-width on very small screens */
@media (max-width:420px){
  .gph-btn{ width:100%; }
}

/* Modal container */
.gph-profile-card-modal{
  border:0;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 18px 60px rgba(0,0,0,.35);
  background:#fff;
  position:relative;
}

/* Custom close button (always visible over card) */
.gph-modal-close{
  position:absolute;
  right:-16px;
  top:-16px;
  z-index:10;
  width:42px;
  height:42px;
  border:0;
  border-radius:12px;
  background:rgba(255,255,255,.92);
  font-size:28px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}
.gph-modal-close:hover{ background:#fff; }

/* Backdrop opacity (Bootstrap) */
.modal-backdrop.show{ opacity:.5; }

/* Fallback backdrop (if Bootstrap JS isn't loaded) */
.gph-fallback-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  z-index:1040;
}

/* Allow the close button to sit outside without being clipped */
.modal,
.modal-dialog,
.modal-content,
.modal-body {
  overflow: visible !important;
}
/* If fallback is used, ensure modal sits above backdrop */
#profilePopup.show{ z-index:9999; position:fixed; inset:0; overflow:auto; }
#profilePopup.show .modal-dialog{ margin:1.75rem auto; }

/* Make popup width follow the expert-card width */
.gph-card-modal {
  width: auto !important;
  max-width: none !important;
  display: flex;
  justify-content: center;
}

#profilePopup .modal-content {
  width: auto;
}

/* Ensure the card itself controls the size */
#profilePopup .expert-card {
  margin: 0 auto;
}


/* Mobile */
.expert-card{
  width: 340px;
  margin: 0 auto;
}

/* Tablet */
@media (min-width: 768px){
  .expert-card{
    width: 520px;
  }
}

/* Desktop – card style */
@media (min-width: 1024px){
  .expert-card{
    width: 300px;
  }
}

/* Large screens – still card-like, just a tiny bit wider if you want */
@media (min-width: 1280px){
  .expert-card{
    width: 360px;
  }
}

/***********************/
/* -------------------------
   Tabs
------------------------- */
.gph-tablist{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 16px;
}

.gph-tab{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;              /* more minimalist pill */
  border:1px solid var(--gph-border);
  background:var(--gph-bg);
  cursor:pointer;
  font-weight:600;
  font-size:.9rem;
  color:#111827;
}

.gph-tab .gph-count{
  padding:2px 8px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  background:var(--gph-soft);
  border:1px solid #eef2f7;
  color:#111827;
}

.gph-tab.is-active{
  border-color:rgba(56,173,110,.45);
  background:rgba(56,173,110,.08);
  color:var(--gph-green);
}

.gph-tab.is-active .gph-count{
  background:rgba(56,173,110,.12);
  border-color:rgba(56,173,110,.22);
  color:var(--gph-green);
}

.gph-panel{ display:none; }
.gph-panel.is-active{ display:block; }

/* -------------------------
   Hosted list cards
------------------------- */
.hosted-card{
  display:grid;
  grid-template-columns: 1.6fr .9fr 1fr;
  gap:16px;
  padding:16px;
  margin-bottom:14px;
  border:1px solid var(--gph-border);
  border-radius:var(--gph-radius);
  background:var(--gph-bg);
  box-shadow: 0 1px 1px rgba(15,23,42,.04); /* lighter */
}

.title-wrap{ display:flex; flex-direction:column; gap:6px; min-width:0; }

.hosted-title{
  font-weight:650;
  font-size:1rem;
  margin:0;
  color:#0f172a;
  line-height:1.25;
}
.hosted-title span{ opacity:.55; font-weight:600; }

.bubble-strip{ display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
.bubble{
  width:32px; height:32px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid #fff;
  box-shadow:0 0 0 1px rgba(15,23,42,.10);
}
.bubble img{ width:100%; height:100%; object-fit:cover; display:block; }
.bubble.more{
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem;
  background:var(--gph-soft);
  color:var(--gph-muted);
}

/* Date / countdown bits */
.date-block p{ margin:0; line-height:1.35; color:#111827; }
.cd-line{ font-size:.95rem; margin:0 0 6px; color:#111827; }
.cd-badge{
  display:inline-block;
  padding:.2rem .55rem;
  border-radius:999px;
  font-size:.78rem;
  background:var(--gph-soft);
  border:1px solid #eef2f7;
  color:var(--gph-muted);
}

/* Scoped buttons (do NOT override Bootstrap globally) */
.hosted-card .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:.45rem .8rem;
  border-radius:999px;
  border:1px solid var(--gph-border);
  background:#fff;
  font-size:.9rem;
  font-weight:600;
  cursor:pointer;
  line-height:1;
}

.hosted-card .btn-green,
.hosted-card .btn-primary{
  background:var(--gph-green);
  border-color:var(--gph-green);
  color:#fff;
}

.hosted-card .btn-secondary{
  background:var(--gph-soft);
  border-color:#eef2f7;
  color:#111827;
}

.hosted-card .btn-success,
.hosted-card .btn-review-hosted-events{
  background:#fbc634;
  border-color:#fbc634;
  color:#111827; /* more minimalist than white */
}

.hosted-card .btn:disabled{
  opacity:.55;
  cursor:not-allowed;
}

/* Keep text-danger local if you still need it */
.hosted-card .text-danger{ color:#c62828; }

/* Responsive */
@media (max-width: 992px){
  .hosted-card{ grid-template-columns: 1fr; }
}

/* -------------------------
   Rating modal (minimal)
------------------------- */
.gph-modal{
  position:fixed; inset:0;
  z-index:10000;
  display:flex;
  align-items:center;
  justify-content:center;
}
.gph-overlay{
  position:absolute; inset:0;
  background:rgba(0,0,0,.55);
}
.gph-dialog{
  position:relative;
  width:min(720px, 92vw);
  background:#fff;
  border:1px solid var(--gph-border);
  border-radius:16px;
  padding:18px;
  box-shadow:0 18px 60px rgba(0,0,0,.22);
  z-index:2;
}
.gph-close{
  position:absolute;
  top:10px; right:12px;
  width:40px; height:40px;
  border:1px solid var(--gph-border);
  background:#fff;
  border-radius:12px;
  font-size:22px;
  cursor:pointer;
  line-height:1;
}

/* Stars */
.gph-rating-form .gph-stars-input{
  direction:rtl;
  display:inline-flex;
  gap:4px;
  font-size:26px;
  cursor:pointer;
  user-select:none;
  margin:0 0 12px;
}
.gph-rating-form .gph-stars-input input{ display:none; }
.gph-rating-form .gph-stars-input label{ color:#cbd5e1; }
.gph-rating-form .gph-stars-input input:checked ~ label,
.gph-rating-form .gph-stars-input label:hover,
.gph-rating-form .gph-stars-input label:hover ~ label{ color:#f59e0b; }

.gph-rating-form textarea{
  width:100%;
  border:1px solid var(--gph-border);
  border-radius:12px;
  padding:10px 12px;
  background:#fff;
}

/* Ratings list */
.gph-ratings-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-height:60vh;
  overflow:auto;
}
.gph-rating-item{
  border:1px solid var(--gph-border);
  border-radius:14px;
  padding:12px;
  background:#fff;
}
.gph-rating-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
}
.gph-stars{ color:#f59e0b; letter-spacing:1px; }
.gph-rating-meta{ font-size:.85rem; color:var(--gph-muted); margin-top:6px; }

/* -------------------------
   Countdown chip (minimal)
------------------------- */
.cd-wrapper{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  margin:0;
}
.cd-status-label{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--gph-muted);
}
.cd-values{ display:flex; gap:8px; flex-wrap:wrap; }
.cd-item{
  background:rgba(56,173,110,.08);
  border:1px solid rgba(56,173,110,.18);
  border-radius:12px;
  padding:6px 10px;
  text-align:center;
  min-width:56px;
}
.cd-num{
  display:block;
  font-weight:700;
  font-size:1rem;
  color:var(--gph-green);
  line-height:1.1;
}
.cd-unit{
  font-size:.72rem;
  color:var(--gph-muted);
}

@media (max-width: 767px){
  .session-card .countdown{
    display: block !important;
  }
}

/* -------------------------
   Profile card
------------------------- */
.gph-profile-header{
      background: #38ad6e;
}
.gph-expert-filters .form-label { font-weight: 600; }
  .gph-expert-filters, .gph-expert-card-grid  {    
    max-width: 1200px;
  margin: 50px auto;}

.expert-card {
  border-radius: 18px;
  overflow: hidden;
}

.expert-card .card-header {
  border-top-left-radius: 18px !important;
  border-top-right-radius: 18px !important;
}

.expert-avatar-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.expert-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-stars i {
  font-size: 16px;
}

.gph-expert-card-grid .card {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  background: #F9FFFC;
  padding: 0;
}

@media (max-width: 767px) {
  .expert-card .card-body{
    display: none;
  }
  .expert-card .card-footer{
    display: none !important;
  }
}

/* =========================================================
   Manage Subscription (Woo Subscriptions) – GuidePer skin
   Scope: ONLY inside #manage-subscription-block
========================================================= */

#manage-subscription-block{
  font-family: var(--gph-font);
  color: var(--gph-gray);
}

/* Make Woo tables match your system */
#manage-subscription-block table.shop_table{
  width: 100%;
  border: 1px solid var(--gph-border);
  border-radius: 8px;
  overflow: hidden;               /* keeps rounded corners */
  background: #fff;
  box-shadow: var(--gph-shadow);
  border-collapse: separate;      /* helps radius work */
  border-spacing: 0;
  margin: 14px 0 22px;
}

/* Header rows like your Events table header (green) */
#manage-subscription-block table.shop_table thead th{
  background: var(--gph-green);
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 12px 14px;
  font-weight: 700;
}

/* Body cells */
#manage-subscription-block table.shop_table td,
#manage-subscription-block table.shop_table th{
  padding: 12px 14px;
  vertical-align: top;
}

#manage-subscription-block table.shop_table tbody tr + tr td,
#manage-subscription-block table.shop_table tbody tr + tr th{
  border-top: 1px solid var(--gph-border);
}

/* Links: keep GuidePer green */
#manage-subscription-block a{
  color: var(--gph-green);
}
#manage-subscription-block a:hover{
  color: var(--gph-green-dark);
  text-decoration: underline;
}

/* Buttons: map Woo buttons to your .btn-green styling */
#manage-subscription-block a.woocommerce-button.button,
#manage-subscription-block button.button,
#manage-subscription-block a.button{
  background: var(--gph-green) !important;
  border-color: var(--gph-green) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: .45rem .8rem !important;
  display: inline-block;
  text-decoration: none !important;
}

/* Hover = your green-dark */
#manage-subscription-block a.woocommerce-button.button:hover,
#manage-subscription-block button.button:hover,
#manage-subscription-block a.button:hover{
  background: var(--gph-green-dark) !important;
  border-color: var(--gph-green-dark) !important;
}

/* Secondary-style buttons (optional):
   - Change payment
   - Upgrade/Downgrade link button
   - View order buttons
*/
#manage-subscription-block a.change_payment_method,
#manage-subscription-block a.wcs-switch-link.button,
#manage-subscription-block a.view{
  background: #eceff1 !important;
  color: #37474f !important;
  border-color: #cfd8dc !important;
}

/* Make the action buttons sit nicely and wrap on mobile */
#manage-subscription-block td .woocommerce-button{
  margin: 6px 8px 0 0;
}
#manage-subscription-block td{
  word-break: break-word;
}

/* Mobile tweaks */
@media (max-width: 576px){
  #manage-subscription-block table.shop_table thead{
    display:none; /* Woo responsive tables often label via data-title */
  }
  #manage-subscription-block td .woocommerce-button{
    width: 100%;
    text-align: center;
    margin: 8px 0 0 0;
  }
}

/* Hide related orders table */
#manage-subscription-block #woocommerce-subscriptions-related-orders-table{
  display: none;
}
/* Hide "Related orders" header on Manage Subscription page only */
#manage-subscription-block header h2 {
  display: none;
}


/* =========================
   GuidePer Checkout (matches override.css tokens)
   Classic shortcode: [woocommerce_checkout]
   ========================= */

/* overall page width */
.woocommerce-checkout .woocommerce{
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 14px 34px;
  font-family: var(--gph-font);
  color: var(--gph-gray);
}

/* Notices */
.woocommerce-checkout .woocommerce-notices-wrapper{
  margin: 0 0 14px;
}
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message{
  border-radius: 14px;
  padding: 12px 14px;
}

/* ====== Two column layout (left: details, right: order) ====== */
.woocommerce-checkout form.checkout{
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px){
  .woocommerce-checkout form.checkout{
    grid-template-columns: 1fr;
  }
}

/* Coupon row spans full width */
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.checkout_coupon{
  grid-column: 1 / -1;
}

/* Put customer details on LEFT */
.woocommerce-checkout #customer_details{
  grid-column: 1;
}

/* Put order heading + review on RIGHT */
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review{
  grid-column: 2;
}

@media (max-width: 980px){
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review{
    grid-column: 1;
  }
}

/* ====== Cards (match dashboard blocks) ====== */
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review{
  background: #fff;
  border: 1px solid var(--gph-border);
  border-radius: 16px;
  box-shadow: var(--gph-shadow);
}

/* Stack col-1 / col-2 inside the LEFT card */
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2{
  float: none !important;
  width: 100% !important;
  padding: 16px;
}

.woocommerce-checkout #order_review{
  padding: 16px;
}

/* Headings (use your gray + font) */
.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading{
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--gph-gray);
}

/* ====== Form fields (match your inputs/buttons vibe) ====== */
.woocommerce-checkout .form-row{
  margin: 0 0 12px;
}

.woocommerce-checkout label{
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  color: rgba(0,0,0,.60);
}

.woocommerce-checkout .woocommerce-input-wrapper input.input-text,
.woocommerce-checkout .woocommerce-input-wrapper textarea,
.woocommerce-checkout .woocommerce-input-wrapper select,
.woocommerce-checkout .select2-container .select2-selection--single{
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--gph-border);
  background: #fff;
  padding: 10px 12px;
  min-height: 42px;
  font-size: 14px;
  color: var(--gph-gray);
  outline: none;
  box-shadow: none;
}

.woocommerce-checkout .woocommerce-input-wrapper textarea{
  min-height: 110px;
  resize: vertical;
}

/* Focus state uses your green */
.woocommerce-checkout .woocommerce-input-wrapper input.input-text:focus,
.woocommerce-checkout .woocommerce-input-wrapper textarea:focus,
.woocommerce-checkout .woocommerce-input-wrapper select:focus,
.woocommerce-checkout .select2-container--focus .select2-selection--single{
  border-color: rgba(56, 173, 110, .70); /* fallback for --gph-green */
  box-shadow: 0 0 0 4px rgba(56, 173, 110, .14);
}

/* Select2 alignment */
.woocommerce-checkout .select2-container .select2-selection--single{
  display:flex;
  align-items:center;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered{
  padding-left: 0;
  line-height: 1.2;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow{
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/* ====== Order table ====== */
.woocommerce-checkout table.shop_table{
  border: 0;
  border-collapse: collapse;
  width: 100%;
  margin: 8px 0 14px;
}
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td{
  padding: 10px 0;
  border-bottom: 1px solid var(--gph-border);
  font-size: 13px;
  color: var(--gph-gray);
}
.woocommerce-checkout table.shop_table tfoot th,
.woocommerce-checkout table.shop_table tfoot td{
  border-bottom: 0;
}

/* ====== Payment box ====== */
.woocommerce-checkout #payment{
  background: #fff; 
}

.woocommerce-checkout #payment ul.payment_methods{
  padding: 0;
  margin: 0 0 12px;
  border: 0;
}

.woocommerce-checkout #payment ul.payment_methods li{
  padding: 10px 10px;
  border: 1px solid var(--gph-border);
  border-radius: 14px;
  margin: 0 0 10px;
}

.woocommerce-checkout #payment div.payment_box{
  background: rgba(0,0,0,.04);
  border-radius: 12px;
  padding: 12px;
  margin: 10px 0 0;
}

/* Button: match your green button system */
.woocommerce-checkout #place_order{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  min-height: 46px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--gph-green);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.woocommerce-checkout #place_order:hover{
  background: var(--gph-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
}
.woocommerce-checkout #place_order:disabled{
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

/* small polish */
.woocommerce-checkout .required{ color: #ef4444; }
#order_review_heading,
.woocommerce-info::before{
  display:none;
}

/* Checklist */
.gph-checklist{
  margin: 0;
  padding-left: 18px;
}
.gph-checklist li{
  margin: 8px 0;
}

/* Plan boxes */
.gph-planbox{
  display:block;
  border: 1px solid var(--gph-border);
  box-shadow: var(--gph-shadow);
  border-radius: 12px;
  padding: 14px;
  text-decoration: none !important;
  color: var(--gph-gray);
  margin-bottom: 12px;
  background: #fff;
}

.gph-planbox:hover{
  border-color: var(--gph-green);
}

.gph-planbox__title{
  font-weight: 800;
  margin-bottom: 6px;
}

.gph-planbox__price{
  font-size: 20px;
  font-weight: 800;
  color: var(--gph-green);
  margin-bottom: 6px;
}

.gph-planbox__meta{
  color: #667085;
  font-size: 13px;
}

/* Disabled state */
.gph-planbox.is-disabled{
  opacity: .55;
  cursor: not-allowed;
  border-style: dashed;
}

a.woocommerce-button.button.subscription_renewal_early {
    display: none !important;
}

/* ===== GPH Meet Modal: make body a real viewport-height layout ===== */
#gphMeetModal .modal-dialog {
  width: 100vw !important;
  max-width: 1100px !important;
  margin: 1rem auto !important;
}

#gphMeetModal .modal-content {
  height: 90vh !important;
  max-height: 900px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 16px !important;
}

#gphMeetModal .modal-body {
  flex: 1 1 auto !important;
  min-height: 0 !important;       /* critical */
  padding: 12px !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Container must have real height */
#gph-meeting-container {
  flex: 1 1 auto !important;
  min-height: 0 !important;       /* critical */
  width: 100% !important;
  height: 100% !important;
}

/* Force ANY iframe to fill */
#gph-meeting-container iframe,
#gphMeetModal iframe,
iframe#jitsiConferenceFrame0,
[id^="jitsiConferenceFrame"] {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border: 0 !important;
  display: block !important;
}

/* If Jitsi wraps iframe in a parent DIV, force that too */
#gph-meeting-container > div,
#gph-meeting-container .jitsi-meet-iframe-container,
#gph-meeting-container [class*="jitsi"] {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
}

/* ===== Mobile: full screen ===== */
@media (max-width: 767px) {
  #gphMeetModal .modal-dialog {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
  }

  #gphMeetModal .modal-content {
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
  }

  #gphMeetModal .modal-body {
    padding: 8px !important;
  }
}


@media (min-width: 1200px) {
  .custom-row-cols {
    --bs-columns: 2 !important;
  }
}

#loginPopup .modal-dialog {
    max-width: 420px !important;
    width: 95% !important;
}

#loginPopup .modal-content {
    border-radius: 20px !important;
}

#loginPopup .modal-body {
    padding: 30px 25px !important;
    border-radius: 20px !important;
}