@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;700;800&family=Tajawal:wght@400;500;600;700;800;900&display=swap');

#phr-header, #phr-header * { box-sizing: border-box; font-family: 'Tajawal', Arial, sans-serif !important; }
#phr-header {
  position: fixed; top: var(--phr-adminbar); left: 0; width: 100%; z-index: 9998;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
#phr-header.phr-is-solid { background: var(--phr-bg); }
#phr-header.phr-is-transparent { background: rgba(255,255,255,.16); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
#phr-header.phr-inner-transparent-header.phr-is-transparent { background: rgba(255,255,255,.08); backdrop-filter: blur(var(--phr-inner-header-blur)); -webkit-backdrop-filter: blur(var(--phr-inner-header-blur)); border-bottom: 1px solid rgba(255,255,255,.14); }
#phr-header.is-sticky-shadow { box-shadow: 0 12px 36px rgba(14, 31, 56, .10); }
#phr-header .phr-shell {
  max-width: var(--phr-container); height: var(--phr-height); margin: 0 auto; padding: 0 22px;
  display: grid; grid-template-columns: max-content 1fr max-content; align-items: center;
  direction: ltr; position: relative;
}
#phr-header .phr-col { min-width: 0; display: flex; align-items: center; }
#phr-header .phr-left { justify-content: flex-start; order: 1; justify-self: start; gap: 12px; }
#phr-header .phr-center {
  justify-content: center; order: 2; justify-self: stretch; min-width: 0;
  margin-left: var(--phr-cta-gap); margin-right: var(--phr-logo-gap);
  transform: translateX(var(--phr-menu-offset)); transition: transform .28s ease;
}
#phr-header .phr-right { justify-content: flex-end; order: 3; justify-self: end; }
#phr-header .phr-logo-wrap { display: inline-flex; align-items: center; text-decoration: none; justify-content: flex-end; }
#phr-header .phr-logo { width: var(--phr-logo); max-height: calc(var(--phr-height) - 20px); object-fit: contain; display: block; }
#phr-header .phr-logo-text { color: var(--phr-text); font-size: 28px; font-weight: 800; }
#phr-header .phr-nav { width: 100%; display: flex; justify-content: center; }
#phr-header .phr-nav .phr-menu,
#phr-header .phr-nav .menu {
  list-style: none; display: flex; align-items: center; justify-content: center; gap: var(--phr-menu-gap);
  margin: 0; padding: 8px; flex-wrap: nowrap; direction: rtl; position: relative;
}
#phr-header .phr-nav .phr-menu li,
#phr-header .phr-nav .menu li { margin: 0; position: relative; z-index: 1; }
#phr-header .phr-nav .phr-menu-marker {
  position: absolute; top: 50%; right: 0; transform: translateY(-50%);
  height: 46px; border-radius: var(--phr-menu-item-radius); background: var(--phr-active-item-bg);
  box-shadow: 0 12px 28px rgba(16,37,64,.10); opacity: 0; transition: all .28s cubic-bezier(.22,1,.36,1);
  pointer-events: none; z-index: 0;
}
#phr-header.is-sticky-shadow .phr-nav .phr-menu-marker { background: var(--phr-sticky-active-item-bg); }
#phr-header .phr-nav a {
  color: var(--phr-text) !important; text-decoration: none; font-size: 16px; font-weight: 700; white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px;
  border-radius: var(--phr-menu-item-radius);
  transition: color .22s ease, transform .22s ease, filter .22s ease;
  position: relative; z-index: 1;
}

#phr-header:not(.is-sticky-shadow) .phr-nav > .phr-menu > li > a,
#phr-header:not(.is-sticky-shadow) .phr-nav > .menu > li > a { color: var(--phr-text) !important; }
#phr-header.is-sticky-shadow .phr-nav > .phr-menu > li > a,
#phr-header.is-sticky-shadow .phr-nav > .menu > li > a { color: var(--phr-sticky-text) !important; }

#phr-header.is-sticky-shadow .phr-nav a,
#phr-header.is-sticky-shadow .phr-logo-text,
#phr-header.is-sticky-shadow .phr-mobile-toggle span { color: var(--phr-sticky-text) !important; }
#phr-header.is-sticky-shadow .phr-mobile-toggle span { background: var(--phr-mobile-toggle-icon-color); }
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-language-toggle,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-mobile-toggle,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-cta{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 12px 30px rgba(8,18,34,.10);
}
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-logo-text,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-nav a,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-language-toggle{
  color: #ffffff !important;
}
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-mobile-toggle svg,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-mobile-toggle svg path{
  stroke: #ffffff !important;
}
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-mobile-toggle span{ background:#ffffff !important; }

#phr-header .phr-nav li:hover > a,
#phr-header .phr-nav li:focus-within > a,
#phr-header .phr-nav a:hover,
#phr-header .phr-nav a:focus {
  color: var(--phr-menu-item-text) !important; transform: translateY(-1px);
}
#phr-header .phr-nav li:hover > a span,
#phr-header .phr-nav a:hover span { color: var(--phr-menu-item-text) !important; }
#phr-header .phr-nav .current-menu-item > a,
#phr-header .phr-nav .current_page_item > a,
#phr-header .phr-nav .current-menu-ancestor > a {
  color: #ffffff !important; transform: translateY(-1px);
}
#phr-header .phr-nav .current-menu-item > a span,
#phr-header .phr-nav .current_page_item > a span,
#phr-header .phr-nav .current-menu-ancestor > a span { color: #ffffff !important; }
#phr-header.is-sticky-shadow .phr-nav .current-menu-item > a,
#phr-header.is-sticky-shadow .phr-nav .current_page_item > a,
#phr-header.is-sticky-shadow .phr-nav .current-menu-ancestor > a { color: #ffffff !important; }
#phr-header.is-sticky-shadow .phr-nav .current-menu-item > a span,
#phr-header.is-sticky-shadow .phr-nav .current_page_item > a span,
#phr-header.is-sticky-shadow .phr-nav .current-menu-ancestor > a span { color: #ffffff !important; }


#phr-header .phr-nav li.current-menu-item > a,
#phr-header .phr-nav li.current_page_item > a,
#phr-header .phr-nav li.current-menu-ancestor > a,
#phr-header .phr-nav li.current_page_ancestor > a,
#phr-header .phr-nav li.current_page_parent > a,
#phr-header .phr-nav li.current-menu-parent > a,
#phr-header .phr-nav li.current-menu-item > a span,
#phr-header .phr-nav li.current_page_item > a span,
#phr-header .phr-nav li.current-menu-ancestor > a span,
#phr-header .phr-nav li.current_page_ancestor > a span,
#phr-header .phr-nav li.current_page_parent > a span,
#phr-header .phr-nav li.current-menu-parent > a span {
  color: #ffffff !important;
}
#phr-header.is-sticky-shadow .phr-nav li.current-menu-item > a,
#phr-header.is-sticky-shadow .phr-nav li.current_page_item > a,
#phr-header.is-sticky-shadow .phr-nav li.current-menu-ancestor > a,
#phr-header.is-sticky-shadow .phr-nav li.current_page_ancestor > a,
#phr-header.is-sticky-shadow .phr-nav li.current_page_parent > a,
#phr-header.is-sticky-shadow .phr-nav li.current-menu-parent > a,
#phr-header.is-sticky-shadow .phr-nav li.current-menu-item > a span,
#phr-header.is-sticky-shadow .phr-nav li.current_page_item > a span,
#phr-header.is-sticky-shadow .phr-nav li.current-menu-ancestor > a span,
#phr-header.is-sticky-shadow .phr-nav li.current_page_ancestor > a span,
#phr-header.is-sticky-shadow .phr-nav li.current_page_parent > a span,
#phr-header.is-sticky-shadow .phr-nav li.current-menu-parent > a span {
  color: #ffffff !important;
}

#phr-header .phr-language-toggle {
  width: 48px; height: 48px; padding: 0; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); background: rgba(16,37,64,.82);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none;
  box-shadow: 0 14px 34px rgba(13,61,103,.12); color: #ffffff; position: relative;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
#phr-header .phr-language-toggle:hover { transform: translateY(-1px); color: #ffffff; }
#phr-header .phr-language-toggle svg { width: 23px; height: 23px; display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
#phr-header.is-sticky-shadow .phr-language-toggle { background: #ffffff; color: var(--phr-sticky-text); border-color: rgba(13,47,87,.10); box-shadow: 0 10px 26px rgba(13,61,103,.10); }
#phr-header .phr-language-toggle.is-placeholder { cursor: default; }

#phr-header .phr-cta {
  min-height: 56px; min-width: 56px; padding: 0 12px; border-radius: 999px; background: rgba(255,255,255,.96); color: var(--phr-text);
  text-decoration: none; font-size: 16px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; gap: 0;
  box-shadow: 0 14px 34px rgba(13, 61, 103, .14); direction: rtl; border: 1px solid rgba(13,47,87,.08); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
#phr-header .phr-cta:hover { transform: translateY(-1px); }
#phr-header .phr-wa-icon {
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--phr-wa-bg); color: #fff; font-size: 20px; line-height: 1; box-shadow: 0 10px 22px rgba(37,211,102,.28);
}
#phr-header .phr-cta-text { display: none; }
#phr-header .phr-mobile-toggle {
  display: none; border: 0; background: #fff; padding: 0; width: 46px; height: 46px; border-radius: 14px; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  box-shadow: 0 10px 24px rgba(16,37,64,.08);
}
#phr-header .phr-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--phr-text); }
.phr-mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 88vw); background: #fff; z-index: 10000; padding: calc(var(--phr-height) + var(--phr-adminbar) + 20px) 22px 24px;
  box-shadow: -16px 0 40px rgba(14,31,56,.14); transform: translateX(110%); transition: transform .25s ease; display: block; border-radius: 24px 0 0 24px;
}
.phr-mobile-panel.is-open { transform: translateX(0); }
.phr-mobile-overlay {
  position: fixed; inset: 0; background: rgba(9,20,39,.35); z-index: 9999; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.phr-mobile-overlay.is-open { opacity: 1; visibility: visible; }
.phr-mobile-menu, .phr-mobile-panel .menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.phr-mobile-menu a, .phr-mobile-panel .menu a {
  text-decoration: none; color: var(--phr-text); font-size: 17px; font-weight: 700; min-height: 50px; border-radius: 16px; padding: 0 16px;
  display: flex; align-items: center; background: #fafafa;
}
.phr-mobile-menu .current-menu-item > a, .phr-mobile-panel .menu .current-menu-item > a,
.phr-mobile-menu a:hover, .phr-mobile-panel .menu a:hover { background: var(--phr-active-item-bg); color: var(--phr-menu-item-text); }
.phr-mobile-close {
  position: absolute; top: calc(var(--phr-adminbar) + 18px); left: 18px; width: 42px; height: 42px; border: 0; border-radius: 14px; background: #f3f7fc; color: var(--phr-text); font-size: 24px;
}

html body.phr-dark-mode,
body.phr-dark-mode { background: #0f1319 !important; color: #f1f5f9 !important; }
body.phr-dark-mode #phr-header.phr-is-solid { background: rgba(16,22,30,.96); }
body.phr-dark-mode #phr-header.phr-is-transparent { background: rgba(16,22,30,.45); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
body.phr-dark-mode #phr-header.phr-inner-transparent-header.phr-is-transparent { background: rgba(9,16,28,.28); backdrop-filter: blur(var(--phr-inner-header-blur)); -webkit-backdrop-filter: blur(var(--phr-inner-header-blur)); border-bottom: 1px solid rgba(255,255,255,.10); }
body.phr-dark-mode,
body.phr-dark-mode .site,
body.phr-dark-mode .site-content,
body.phr-dark-mode main,
body.phr-dark-mode article,
body.phr-dark-mode section,
body.phr-dark-mode aside,
body.phr-dark-mode footer,
body.phr-dark-mode header:not(#phr-header),
body.phr-dark-mode .content-area,
body.phr-dark-mode .widget,
body.phr-dark-mode .entry-content,
body.phr-dark-mode .post,
body.phr-dark-mode .page,
body.phr-dark-mode [class*="container"],
body.phr-dark-mode [class*="wrapper"] { background-color: transparent; color: #f1f5f9 !important; }
body.phr-dark-mode h1,
body.phr-dark-mode h2,
body.phr-dark-mode h3,
body.phr-dark-mode h4,
body.phr-dark-mode h5,
body.phr-dark-mode h6,
body.phr-dark-mode p,
body.phr-dark-mode li,
body.phr-dark-mode span,
body.phr-dark-mode div,
body.phr-dark-mode label,
body.phr-dark-mode strong,
body.phr-dark-mode small,
body.phr-dark-mode blockquote,
body.phr-dark-mode td,
body.phr-dark-mode th { color: #f1f5f9; }
body.phr-dark-mode a { color: #c5dcff; }
body.phr-dark-mode input,
body.phr-dark-mode textarea,
body.phr-dark-mode select,
body.phr-dark-mode button,
body.phr-dark-mode .card,
body.phr-dark-mode .box,
body.phr-dark-mode .elementor-widget-container,
body.phr-dark-mode .wp-block-group,
body.phr-dark-mode .wp-block-columns,
body.phr-dark-mode .wp-block-cover,
body.phr-dark-mode table,
body.phr-dark-mode pre,
body.phr-dark-mode code {
  background: #171e28 !important; color: #f1f5f9 !important; border-color: rgba(255,255,255,.08) !important;
}
body.phr-dark-mode img,
body.phr-dark-mode video,
body.phr-dark-mode iframe { opacity: .96; }
body.phr-dark-mode .phr-mobile-panel { background: #141b25; }
body.phr-dark-mode .phr-mobile-menu a,
body.phr-dark-mode .phr-mobile-panel .menu a,
body.phr-dark-mode .phr-mobile-close,
body.phr-dark-mode #phr-header .phr-mobile-toggle,
body.phr-dark-mode #phr-header .phr-cta { background: #171e28; color: #fff !important; border-color: rgba(255,255,255,.08); }

body.admin-bar #phr-header { top: 32px; }
@media (max-width:782px) { body.admin-bar #phr-header { top: 46px; } }
@media (max-width: 1080px) {
  #phr-header .phr-shell { grid-template-columns: auto auto 1fr; }
  #phr-header .phr-center { display: none; margin-left: 0; margin-right: 0; transform: none; }
  #phr-header .phr-mobile-toggle { display: inline-flex; }
  #phr-header .phr-left { gap: 10px; }
  #phr-header .phr-cta { padding: 0; width: 56px; }
}
@media (max-width: 782px) {
  :root { --phr-adminbar: 46px; }
  #phr-header .phr-shell { padding: 0 14px; grid-template-columns: auto auto 1fr; }
  #phr-header .phr-right { padding-left: 0; }
  #phr-header .phr-logo { max-width: 120px; }
}


/* Force active item text in sticky header */
#phr-header.is-sticky-shadow .phr-nav li.current-menu-item > a,
#phr-header.is-sticky-shadow .phr-nav li.current_page_item > a,
#phr-header.is-sticky-shadow .phr-nav li.current-menu-ancestor > a,
#phr-header.is-sticky-shadow .phr-nav li.current_page_ancestor > a,
#phr-header.is-sticky-shadow .phr-nav li.current_page_parent > a,
#phr-header.is-sticky-shadow .phr-nav li.current-menu-parent > a,
#phr-header.is-sticky-shadow .phr-nav li.current-menu-item > a *,
#phr-header.is-sticky-shadow .phr-nav li.current_page_item > a *,
#phr-header.is-sticky-shadow .phr-nav li.current-menu-ancestor > a *,
#phr-header.is-sticky-shadow .phr-nav li.current_page_ancestor > a *,
#phr-header.is-sticky-shadow .phr-nav li.current_page_parent > a *,
#phr-header.is-sticky-shadow .phr-nav li.current-menu-parent > a * {
  color: #ffffff !important;
}


/* Services widget styles */
body.phr-dark-mode .phr-services-section { background: linear-gradient(180deg, #111923, #0b1118); }
body.phr-dark-mode .phr-service-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
body.phr-dark-mode .phr-service-body h3 { color: #fff; }
body.phr-dark-mode .phr-service-body p,
body.phr-dark-mode .phr-services-desc { color: #c2cedd; }

.phr-services-section, .phr-services-section * { box-sizing: border-box; font-family: 'Tajawal', Arial, sans-serif !important; }
.phr-services-section {
  position: relative; padding: 90px 0; background: var(--phr-services-bg); overflow: hidden;
}
.phr-services-shell { position: relative; max-width: 1320px; margin: 0 auto; padding: 0 20px; }
.phr-services-backdrop {
  position: absolute; inset: 12px 20px auto auto; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at center, var(--phr-services-overlay-1) 0%, rgba(255,255,255,0) 72%); filter: blur(0px); pointer-events: none;
}
.phr-services-section::before,
.phr-services-section::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.phr-services-section::before {
  width: 480px; height: 480px; left: -120px; top: -110px; background: radial-gradient(circle, var(--phr-services-overlay-1) 0%, transparent 72%);
}
.phr-services-section::after {
  width: 360px; height: 360px; right: -70px; bottom: -70px; background: radial-gradient(circle, var(--phr-services-overlay-2) 0%, transparent 72%);
}
.phr-services-head { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto 38px; }
.phr-services-title { margin: 0 0 16px; color: var(--phr-services-title); font-size: clamp(28px, 4vw, var(--phr-services-title-size)); font-weight: 800; line-height: 1.2; }
.phr-services-highlight {
  display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; border-radius: 18px; background: var(--phr-services-highlight-bg);
  color: var(--phr-services-highlight-text); position: relative; overflow: hidden; box-shadow: 0 18px 40px rgba(13,61,103,.18);
}
.phr-services-highlight::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.35) 50%, transparent 80%);
  transform: translateX(-130%); animation: phrShine 4.6s linear infinite;
}
.phr-services-desc { margin: 0; color: var(--phr-services-desc); font-size: var(--phr-services-desc-size); line-height: 1.9; }
.phr-services-grid { position: relative; z-index: 1; display: grid; gap: 22px; }
.phr-services-cols-4 .phr-services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.phr-services-cols-5 .phr-services-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.phr-service-card {
  background: var(--phr-services-card-bg); border: 1px solid rgba(17,51,92,.08); border-radius: var(--phr-services-radius);
  box-shadow: 0 18px 45px rgba(17,51,92,.08); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
}
.phr-service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 55px rgba(17,51,92,.14); }
.phr-service-media { position: relative; height: var(--phr-services-image-height); overflow: hidden; background: linear-gradient(135deg, #e9f1ff, #f8fbff); display:flex; align-items:stretch; line-height:0; }
.phr-service-media img, .phr-service-media picture, .phr-service-media a { width: 100% !important; height: 100% !important; min-height: 100% !important; display: block !important; }
.phr-service-media img { object-fit: cover !important; vertical-align: middle; margin: 0 !important; }
.phr-services-has-glow .phr-service-media::after {
  content: ''; position: absolute; inset: auto -20% -38% auto; width: 70%; height: 70%; border-radius: 50%;
  background: radial-gradient(circle, rgba(111,175,255,.38) 0%, rgba(111,175,255,0) 72%); filter: blur(10px);
}
.phr-service-shine {
  position: absolute; inset: 0; background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.32) 48%, transparent 82%);
  transform: translateX(-130%); transition: transform .55s ease;
}
.phr-service-card:hover .phr-service-shine { transform: translateX(130%); }
.phr-service-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; margin-top: 0; }
.phr-service-body h3 { margin: 0; color: var(--phr-services-title); font-size: 22px; font-weight: 800; }
.phr-service-body p { margin: 0; color: var(--phr-services-desc); line-height: 1.9; font-size: 15px; min-height: 86px; }
.phr-service-btn {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; min-height: 52px;
  border-radius: 999px; text-decoration: none; background: var(--phr-services-btn-bg); color: var(--phr-services-btn-text);
  font-weight: 800; box-shadow: 0 14px 35px rgba(13,61,103,.18); position: relative; overflow: hidden;
}
.phr-service-btn::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.24) 50%, transparent 80%);
  transform: translateX(-140%); transition: transform .45s ease;
}
.phr-service-card:hover .phr-service-btn::before { transform: translateX(110%); }
.phr-service-btn-icon {
  width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.16); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

@keyframes phrLogoShine { 0% { transform: translateX(-180%); } 100% { transform: translateX(180%); } }
@keyframes phrShine { 0% { transform: translateX(-130%); } 100% { transform: translateX(130%); } }

@media (max-width: 1200px) {
  .phr-services-cols-5 .phr-services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .phr-services-cols-4 .phr-services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  #phr-header .phr-shell { grid-template-columns: 1fr max-content; }
  #phr-header .phr-center, #phr-header .phr-left .phr-cta-text { display: none; }
  #phr-header .phr-mobile-toggle { display: inline-block; }
  .phr-services-cols-5 .phr-services-grid,
  .phr-services-cols-4 .phr-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .phr-services-cols-5 .phr-services-grid,
  .phr-services-cols-4 .phr-services-grid { grid-template-columns: 1fr; }
  .phr-services-section { padding: 70px 0; }
}


/* v3.5.2 fix: hide mobile drawer elements until opened */
body.phr-mobile-open { overflow: hidden; }
#phr-mobile-panel:not(.is-open) { visibility: hidden; pointer-events: none; }
#phr-mobile-panel.is-open { visibility: visible; pointer-events: auto; }
#phr-mobile-overlay:not(.is-open) { pointer-events: none; }
@media (min-width: 1081px) {
  #phr-mobile-panel, #phr-mobile-overlay { display: none !important; }
}

.phr-services-pretitle{display:inline-flex;align-items:center;justify-content:center;margin:0 auto 14px;padding:10px 18px;border-radius:999px;background:rgba(13,61,103,.08);color:var(--phr-services-title);font-weight:800;font-size:14px;letter-spacing:.3px}


.phr-features-section,.phr-features-section *{box-sizing:border-box;font-family:'Tajawal',Arial,sans-serif !important}
.phr-features-section{position:relative;background:linear-gradient(180deg,var(--phr-features-bg) 0%,color-mix(in srgb,var(--phr-features-bg) 84%, #ffffff 16%) 100%);padding:88px 0;overflow:hidden}
.phr-features-shell{max-width:1280px;margin:0 auto;padding:0 22px;position:relative;z-index:1}
.phr-features-backdrop{position:absolute;inset:0;background:radial-gradient(circle at 82% 14%,var(--phr-features-overlay-1),transparent 28%),radial-gradient(circle at 12% 88%,var(--phr-features-overlay-2),transparent 26%);opacity:.95;pointer-events:none}
.phr-features-section::before,.phr-features-section::after{content:'';position:absolute;border-radius:50%;pointer-events:none;filter:blur(10px);opacity:.95}
.phr-features-section::before{width:430px;height:430px;right:-110px;top:-120px;background:radial-gradient(circle,var(--phr-features-overlay-1) 0%,transparent 72%)}
.phr-features-section::after{width:380px;height:380px;left:-100px;bottom:-80px;background:radial-gradient(circle,var(--phr-features-overlay-2) 0%,transparent 72%)}
.phr-features-head{position:relative;text-align:center;margin:0 auto 38px;max-width:900px}
.phr-features-pretitle{display:inline-flex;align-items:center;justify-content:center;padding:10px 18px;border-radius:999px;background:rgba(255,255,255,.48);backdrop-filter:blur(10px);font-size:16px;font-weight:800;color:var(--phr-features-title);margin-bottom:14px;box-shadow:0 10px 24px rgba(15,52,93,.07)}
.phr-features-title{margin:0 0 14px;color:var(--phr-features-title);font-size:clamp(28px,4vw,var(--phr-features-title-size));font-weight:800;line-height:1.2}
.phr-features-title .phr-services-highlight{background:var(--phr-features-highlight-bg);color:var(--phr-features-highlight-text);box-shadow:0 18px 40px rgba(13,61,103,.16)}
.phr-features-desc{margin:0;color:var(--phr-features-desc);font-size:var(--phr-features-desc-size);line-height:1.9}
.phr-features-grid{position:relative;display:grid;gap:26px}
.phr-features-cols-4 .phr-features-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.phr-features-cols-3 .phr-features-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.phr-feature-card{background:var(--phr-features-card-bg);border-radius:var(--phr-features-radius);padding:30px 26px;box-shadow:0 20px 52px rgba(15,52,93,.10);border:1px solid rgba(219,229,242,.85);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;position:relative;overflow:hidden}
.phr-feature-card::before{content:'';position:absolute;inset:0 0 auto 0;height:5px;background:linear-gradient(90deg,var(--phr-features-overlay-1),var(--phr-features-highlight-bg),var(--phr-features-overlay-2));opacity:.95}
.phr-feature-card:hover{transform:translateY(-8px);box-shadow:0 28px 62px rgba(15,52,93,.16);border-color:rgba(13,61,103,.16)}
.phr-feature-icon-wrap{margin-bottom:20px}
.phr-feature-icon-box{width:var(--phr-features-icon-size);height:var(--phr-features-icon-size);border-radius:24px;background:linear-gradient(180deg,#ffffff,#f4f8ff);box-shadow:0 16px 36px rgba(13,61,103,.12),inset 0 1px 0 rgba(255,255,255,.92);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.phr-feature-icon-box::before{content:'';position:absolute;inset:-40% auto auto -30%;width:60%;height:180%;background:linear-gradient(115deg,transparent,rgba(255,255,255,.92),transparent);transform:rotate(24deg);opacity:.65}
.phr-feature-icon-box img{max-width:68%;max-height:68%;object-fit:contain;display:block;position:relative;z-index:1}
.phr-feature-fallback{font-size:calc(var(--phr-features-icon-size) * .36);color:var(--phr-features-title);position:relative;z-index:1}
.phr-feature-shine{position:absolute;inset:-120% auto auto -120%;width:70%;height:260%;background:linear-gradient(110deg,transparent,rgba(255,255,255,.92),transparent);transform:rotate(25deg);transition:left .7s ease;pointer-events:none}
.phr-features-has-glow .phr-feature-card:hover .phr-feature-shine{left:160%}
.phr-feature-body h3{margin:0 0 10px;color:var(--phr-features-title);font-size:var(--phr-features-item-title-size);font-weight:800;line-height:1.4}
.phr-feature-body p{margin:0;color:var(--phr-features-desc);font-size:var(--phr-features-item-desc-size);line-height:1.9}
.phr-features-section.phr-align-right .phr-features-head{text-align:right}
.phr-features-section.phr-align-left .phr-features-head{text-align:left}
.phr-features-section.phr-align-right .phr-feature-card{text-align:right}
.phr-features-section.phr-align-left .phr-feature-card{text-align:left}
.phr-features-section.phr-align-center .phr-feature-card{text-align:center}
.phr-features-section.phr-align-center .phr-feature-icon-box{margin-inline:auto}
.phr-features-section.phr-align-right .phr-feature-icon-box{margin-right:0;margin-left:auto}
.phr-features-section.phr-align-left .phr-feature-icon-box{margin-left:0;margin-right:auto}
@media (max-width:1080px){.phr-features-cols-4 .phr-features-grid,.phr-features-cols-3 .phr-features-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:767px){.phr-features-section{padding:60px 0}.phr-features-cols-4 .phr-features-grid,.phr-features-cols-3 .phr-features-grid{grid-template-columns:1fr}.phr-features-title{font-size:34px}.phr-feature-card{padding:24px 20px}}


.phr-how-section,.phr-how-section *{box-sizing:border-box;font-family:'Tajawal',Arial,sans-serif !important}
.phr-how-section{position:relative;padding:96px 0;background-color:var(--phr-how-bg-color);background-image:var(--phr-how-bg-image);background-size:cover;background-position:center;overflow:hidden;isolation:isolate}
.phr-how-overlay{position:absolute;inset:0;background:linear-gradient(135deg,var(--phr-how-overlay-start),var(--phr-how-overlay-end));z-index:0}
.phr-how-shell{position:relative;z-index:1;max-width:1440px;margin:0 auto;padding:0 18px}
.phr-how-head{max-width:900px;margin:0 auto 38px;text-align:center}
.phr-how-pretitle{display:inline-flex;align-items:center;justify-content:center;padding:10px 18px;border-radius:999px;background:rgba(255,255,255,.12);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.18);color:var(--phr-how-title);font-size:15px;font-weight:800;margin-bottom:14px}
.phr-how-title{margin:0 0 14px;color:var(--phr-how-title);font-size:clamp(30px,4vw,var(--phr-how-title-size));font-weight:800;line-height:1.2}
.phr-how-title .phr-services-highlight{background:rgba(255,255,255,.12);color:#fff;border:1px solid rgba(255,255,255,.2);box-shadow:0 18px 40px rgba(0,0,0,.12)}
.phr-how-desc{margin:0;color:var(--phr-how-desc);font-size:var(--phr-how-desc-size);line-height:1.9}
.phr-how-grid{display:grid;gap:16px}
.phr-how-cols-5 .phr-how-grid{grid-template-columns:repeat(5,minmax(0,1fr))}
.phr-how-cols-4 .phr-how-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.phr-how-cols-3 .phr-how-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.phr-how-card{position:relative;padding:22px 16px;border-radius:var(--phr-how-radius);background-color:var(--phr-how-card-glass);border:1px solid var(--phr-how-card-border);backdrop-filter:blur(var(--phr-how-card-blur));-webkit-backdrop-filter:blur(var(--phr-how-card-blur));box-shadow:0 14px 34px rgba(7,20,38,.12);overflow:hidden;transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;min-width:0}
.phr-how-card::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));pointer-events:none}
.phr-how-card:hover{transform:translateY(-8px);box-shadow:0 28px 65px rgba(7,20,38,.24);border-color:rgba(255,255,255,.34)}
.phr-how-icon-box{position:relative;width:var(--phr-how-icon-size);height:var(--phr-how-icon-size);margin:0 auto 18px;border-radius:22px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.24);display:flex;align-items:center;justify-content:center;box-shadow:inset 0 1px 0 rgba(255,255,255,.16)}
.phr-how-icon-box img{max-width:64%;max-height:64%;object-fit:contain;display:block}
.phr-how-fallback{font-size:calc(var(--phr-how-icon-size) * .38);color:#fff}
.phr-how-card-body h3{margin:0;color:var(--phr-how-title);font-size:clamp(16px,1.15vw,var(--phr-how-item-title-size));font-weight:800;line-height:1.45;word-break:break-word}
.phr-how-card-body p{margin:0;color:var(--phr-how-desc);font-size:var(--phr-how-item-desc-size);line-height:1.9}
.phr-how-align-center .phr-how-card,.phr-how-align-center .phr-how-head{text-align:center}
.phr-how-align-right .phr-how-card,.phr-how-align-right .phr-how-head{text-align:right}
.phr-how-align-left .phr-how-card,.phr-how-align-left .phr-how-head{text-align:left}
.phr-how-align-right .phr-how-icon-box{margin-right:0;margin-left:auto}
.phr-how-align-left .phr-how-icon-box{margin-left:0;margin-right:auto}
@media (max-width:1080px){.phr-how-cols-5 .phr-how-grid,.phr-how-cols-4 .phr-how-grid,.phr-how-cols-3 .phr-how-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:767px){.phr-how-section{padding:68px 0}.phr-how-cols-5 .phr-how-grid,.phr-how-cols-4 .phr-how-grid,.phr-how-cols-3 .phr-how-grid{grid-template-columns:1fr}}

body.phr-service-single-page { background: linear-gradient(180deg, #f4f8ff 0%, #fff1f3 100%) !important; }
body.phr-modal-open { overflow: hidden; }
body.phr-service-single-page,
body.phr-service-single-page * { font-family: 'Almarai', Arial, sans-serif !important; }
.phr-service-single-wrap { padding: var(--phr-adminbar) 0 72px; }
.phr-service-single-shell { width: min(var(--phr-container), calc(100% - 32px)); margin: 0 auto; }
.phr-service-hero { position: relative; }
.phr-service-hero-banner { position: relative; min-height: 320px; margin-top: calc(-1 * (var(--phr-height) + var(--phr-adminbar))); padding: calc(var(--phr-height) + var(--phr-adminbar) + 34px) 0 110px; background-color: #d5001c; overflow: hidden; isolation: isolate; }
.phr-service-hero-banner::before { content: ''; position: absolute; inset: 0; background-image: var(--phr-service-hero-image, none); background-size: cover; background-position: center; background-repeat: no-repeat; opacity: .28; pointer-events: none; z-index: 0; }
.phr-service-hero-banner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 18%, rgba(255,255,255,.18), transparent 26%), radial-gradient(circle at 14% 82%, rgba(255,255,255,.10), transparent 22%); pointer-events: none; z-index: 1; }
.phr-service-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,17,32,.42), rgba(5,17,32,.58)); z-index: 2; }
.phr-service-banner-inner { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 210px; }
.phr-service-banner-copy { max-width: 760px; }
.phr-service-back-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: #fff; font-weight: 800; margin-bottom: 22px; padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px); }
.phr-service-kicker { display: inline-flex; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.18); font-weight: 800; font-size: 13px; margin-bottom: 18px; }
.phr-service-banner-title { margin: 0; font-size: clamp(30px, 4vw, 56px); color: #fff; line-height: 1.15; text-shadow: 0 10px 30px rgba(0,0,0,.18); }
.phr-service-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center; margin-top: -76px; position: relative; z-index: 3; }
.phr-service-hero-content,
.phr-service-hero-media,
.phr-service-article-box,
.phr-service-modal-dialog { background: rgba(255,255,255,.90); border: 1px solid rgba(13,61,103,.08); box-shadow: 0 24px 60px rgba(13,61,103,.12); backdrop-filter: blur(18px); }
.phr-service-hero-content { border-radius: 32px; padding: 34px; }
.phr-service-hero-content h2 { margin: 0 0 14px; font-size: clamp(28px, 3vw, 42px); color: var(--phr-services-title); line-height: 1.2; }
.phr-service-hero-desc { margin: 0; font-size: 18px; line-height: 1.95; color: var(--phr-services-desc); }
.phr-service-hero-media { border-radius: 32px; overflow: hidden; min-height: 340px; }
.phr-service-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phr-service-boxes { margin-top: 28px; }
.phr-service-article-box { border-radius: 28px; padding: 28px; }
.phr-service-box-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 22px; }
.phr-service-box-head h2 { margin: 0 0 8px; color: var(--phr-services-title); font-size: 28px; }
.phr-service-box-head p { margin: 0; color: var(--phr-services-desc); }
.phr-service-box-badge { width: 56px; height: 56px; border-radius: 18px; background: linear-gradient(135deg, var(--phr-services-overlay-1), var(--phr-services-overlay-2)); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; color: var(--phr-services-title); }
.phr-service-article-preview { color: #23364e; font-size: 17px; line-height: 2; }
.phr-service-article-preview p:last-child { margin-bottom: 0; }
.phr-service-more-btn { min-width: 170px; min-height: 52px; border: 0; border-radius: 999px; background: var(--phr-services-btn-bg); color: var(--phr-services-btn-text); font-weight: 800; font-size: 15px; cursor: pointer; box-shadow: 0 16px 30px rgba(13,61,103,.18); }
.phr-service-empty { padding: 18px 20px; border-radius: 22px; background: #f8fbff; color: var(--phr-services-desc); font-size: 16px; line-height: 1.9; }
.phr-service-modal { position: fixed; inset: 0; z-index: 10050; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; pointer-events: none; transition: .22s ease; }
.phr-service-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.phr-service-modal-backdrop { position: absolute; inset: 0; background: rgba(10,22,40,.58); }
.phr-service-modal-dialog { position: relative; width: min(920px, 100%); max-height: min(82vh, 900px); overflow: auto; border-radius: 30px; padding: 30px; }
.phr-service-modal-close { position: sticky; top: 0; margin-inline-start: auto; width: 44px; height: 44px; border: 0; border-radius: 14px; background: #fff1f3; color: #102540; font-size: 28px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.phr-service-modal-dialog h2 { margin: 8px 0 18px; color: var(--phr-services-title); font-size: clamp(26px, 3vw, 40px); }
.phr-service-modal-content { color: #23364e; font-size: 17px; line-height: 2; }
.phr-service-modal-content p:first-child { margin-top: 0; }
@media (max-width: 900px) {
  .phr-service-hero-banner { min-height: 280px; padding-bottom: 96px; }
  .phr-service-banner-inner { min-height: 190px; }
  .phr-service-hero-grid { grid-template-columns: 1fr; margin-top: -58px; }
  .phr-service-hero-media { min-height: 260px; }
}
@media (max-width: 640px) {
  .phr-service-single-wrap { padding-top: var(--phr-adminbar); }
  .phr-service-hero-banner { min-height: 240px; padding: calc(var(--phr-height) + var(--phr-adminbar) + 22px) 0 84px; }
  .phr-service-back-link { margin-bottom: 16px; }
  .phr-service-banner-title { font-size: clamp(26px, 8vw, 38px); }
  .phr-service-hero-grid { margin-top: -44px; }
  .phr-service-hero-content,
  .phr-service-hero-media,
  .phr-service-article-box,
  .phr-service-modal-dialog { border-radius: 24px; }
  .phr-service-hero-content,
  .phr-service-article-box,
  .phr-service-modal-dialog { padding: 20px; }
  .phr-service-box-head { gap: 12px; }
  .phr-service-box-badge { width: 48px; height: 48px; border-radius: 16px; }
}




/* Service page header overlap fix */
body.phr-service-single-page,
html body.phr-service-single-page {
  margin: 0 !important;
  padding: 0 !important;
  background: linear-gradient(180deg, rgba(13,61,103,.98) 0px, rgba(20,87,151,.90) 420px, #f4f8ff 421px, #fff1f3 100%) !important;
}
body.phr-service-single-page #phr-header {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}
body.phr-service-single-page #phr-header.is-sticky-shadow {
  background: rgba(8,31,58,.22) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 12px 36px rgba(4,16,31,.16) !important;
}
body.phr-service-single-page .phr-service-single-wrap {
  padding: 0 0 72px !important;
  margin: 0 !important;
}
body.phr-service-single-page .phr-service-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.phr-service-single-page .phr-service-hero-banner {
  margin-top: calc(-1 * var(--phr-adminbar)) !important;
  padding: calc(var(--phr-height) + var(--phr-adminbar) + 26px) 0 110px !important;
  min-height: 430px !important;
  background: linear-gradient(135deg, rgba(13,61,103,.96), rgba(20,87,151,.88)) !important;
}
body.phr-service-single-page .phr-service-hero-banner::before {
  opacity: .95;
}
@media (max-width: 767px) {
  body.phr-service-single-page,
  html body.phr-service-single-page {
    background: linear-gradient(180deg, rgba(13,61,103,.98) 0px, rgba(20,87,151,.90) 320px, #f4f8ff 321px, #fff1f3 100%) !important;
  }
  body.phr-service-single-page .phr-service-hero-banner {
    margin-top: calc(-1 * var(--phr-adminbar)) !important;
    padding: calc(var(--phr-height) + var(--phr-adminbar) + 18px) 0 84px !important;
    min-height: 320px !important;
  }
}

.phr-about-section,.phr-about-section *{box-sizing:border-box;font-family:'Tajawal',Arial,sans-serif !important}
.phr-about-section{position:relative;padding:92px 0;background:linear-gradient(180deg,var(--phr-about-bg) 0%,color-mix(in srgb,var(--phr-about-bg) 84%, #ffffff 16%) 100%);overflow:hidden;isolation:isolate}
.phr-about-section::before,.phr-about-section::after{content:'';position:absolute;border-radius:50%;pointer-events:none;filter:blur(12px);opacity:.95}
.phr-about-section::before{width:460px;height:460px;right:-140px;top:-120px;background:radial-gradient(circle,var(--phr-about-overlay-1) 0%,transparent 72%)}
.phr-about-section::after{width:380px;height:380px;left:-100px;bottom:-80px;background:radial-gradient(circle,var(--phr-about-overlay-2) 0%,transparent 72%)}
.phr-about-shell{width:min(var(--phr-container),calc(100% - 28px));margin:0 auto;position:relative;z-index:1}
.phr-about-head{max-width:760px;margin:0 auto 34px;text-align:center}
.phr-about-pretitle{display:inline-flex;align-items:center;justify-content:center;padding:10px 16px;border-radius:999px;background:rgba(255,255,255,.72);color:var(--phr-about-content-title);font-size:14px;font-weight:800;margin-bottom:16px;border:1px solid rgba(13,61,103,.08)}
.phr-about-title{margin:0 0 16px;color:var(--phr-about-title);font-size:clamp(30px,3vw,var(--phr-about-title-size));line-height:1.18;font-weight:800}
.phr-about-desc{margin:0;color:var(--phr-about-desc);font-size:var(--phr-about-desc-size);line-height:1.9}
.phr-about-grid{display:grid;grid-template-columns:1.03fr .97fr;gap:26px;align-items:stretch}
.phr-about-media-card,.phr-about-content-card{position:relative;background:linear-gradient(180deg,var(--phr-about-card-bg),color-mix(in srgb,var(--phr-about-card-bg) 94%, #f5f9ff 6%));border:1px solid rgba(14,48,89,.08);border-radius:var(--phr-about-radius);padding:22px;box-shadow:0 18px 40px rgba(13,47,87,.08)}
.phr-about-video-shell{position:relative;min-height:var(--phr-about-video-height);height:var(--phr-about-video-height);border-radius:calc(var(--phr-about-radius) - 8px);overflow:hidden;background:linear-gradient(135deg,#082441,#d5001c);display:flex;align-items:center;justify-content:center}
.phr-about-video,.phr-about-poster-only,.phr-about-video-preview{width:100%;height:100%;display:block;object-fit:cover}
.phr-about-video-trigger{position:relative;width:100%;height:100%;padding:0;border:0;background:transparent;cursor:pointer;display:block}
.phr-about-video-trigger::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(6,21,38,.12) 0%,rgba(6,21,38,.38) 100%);transition:opacity .25s ease}
.phr-about-video-trigger:hover::after,.phr-about-video-trigger:focus-visible::after{opacity:.82}
.phr-about-play{position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);display:flex;flex-direction:column;align-items:center;gap:12px;z-index:2}
.phr-about-play-icon{width:82px;height:82px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.18);backdrop-filter:blur(14px);border:1px solid rgba(255,255,255,.28);color:#fff;font-size:28px;box-shadow:0 16px 32px rgba(3,18,36,.24);transition:transform .25s ease,background .25s ease}
.phr-about-play-text{padding:10px 16px;border-radius:999px;background:rgba(7,24,42,.55);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.14);color:#fff;font-size:14px;font-weight:800;white-space:nowrap}
.phr-about-video-trigger:hover .phr-about-play-icon,.phr-about-video-trigger:focus-visible .phr-about-play-icon{transform:scale(1.08);background:rgba(255,255,255,.24)}
.phr-about-video-badge{position:absolute;top:16px;right:16px;padding:10px 14px;border-radius:999px;background:rgba(8,26,46,.72);backdrop-filter:blur(8px);color:#fff;font-size:13px;font-weight:800;border:1px solid rgba(255,255,255,.18);z-index:2}
.phr-about-modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;padding:24px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .25s ease,visibility .25s ease;z-index:99999}
.phr-about-modal.is-open{opacity:1;visibility:visible;pointer-events:auto}
.phr-about-modal-backdrop{position:absolute;inset:0;background:rgba(4,15,28,.72);backdrop-filter:blur(8px)}
.phr-about-modal-dialog{position:relative;z-index:1;width:min(var(--phr-about-popup-width),100%);border-radius:28px;background:#081b31;padding:18px;box-shadow:0 24px 80px rgba(0,0,0,.32);border:1px solid rgba(255,255,255,.08)}
.phr-about-modal-video-wrap{border-radius:22px;overflow:hidden;background:#000}
.phr-about-modal-video{width:100%;max-height:min(var(--phr-about-popup-height),720px);display:block;background:#000}
.phr-about-modal-close{position:absolute;top:-14px;left:-14px;width:48px;height:48px;border-radius:50%;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.12);backdrop-filter:blur(10px);color:#fff;font-size:28px;line-height:1;cursor:pointer;box-shadow:0 12px 30px rgba(0,0,0,.24)}
body.phr-modal-open{overflow:hidden}
.phr-about-empty-state{max-width:280px;text-align:center;color:#fff;padding:24px}
.phr-about-empty-icon{width:78px;height:78px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,.14);font-size:30px;margin-bottom:16px;border:1px solid rgba(255,255,255,.18)}
.phr-about-empty-state strong{display:block;font-size:24px;margin-bottom:8px}
.phr-about-empty-state p{margin:0;opacity:.9;line-height:1.8}
.phr-about-content-card{display:flex;flex-direction:column;justify-content:center;padding:34px}
.phr-about-content-card::before{content:'';position:absolute;inset:18px auto 18px 18px;width:6px;border-radius:999px;background:linear-gradient(180deg,var(--phr-about-accent-bg),color-mix(in srgb,var(--phr-about-accent-bg) 70%, #ffffff 30%));opacity:.88}
.phr-about-content-badge{display:inline-flex;align-items:center;justify-content:center;width:max-content;max-width:100%;padding:10px 18px;border-radius:999px;background:var(--phr-about-accent-bg);color:var(--phr-about-accent-text);font-size:14px;font-weight:800;box-shadow:0 14px 24px rgba(13,61,103,.14);margin-bottom:18px}
.phr-about-content-card h3{margin:0 0 14px;color:var(--phr-about-content-title);font-size:var(--phr-about-content-title-size);line-height:1.25;font-weight:800}
.phr-about-content-card p{margin:0;color:var(--phr-about-content-text);font-size:var(--phr-about-content-text-size);line-height:2}
@media (max-width:991px){.phr-about-grid{grid-template-columns:1fr}.phr-about-video-shell{min-height:min(var(--phr-about-video-height),340px);height:min(var(--phr-about-video-height),340px)}.phr-about-content-card{padding:28px}}
@media (max-width:767px){.phr-about-section{padding:64px 0}.phr-about-title{font-size:34px}.phr-about-desc{font-size:16px}.phr-about-media-card,.phr-about-content-card{padding:18px}.phr-about-content-card h3{font-size:28px}.phr-about-video-shell{min-height:min(var(--phr-about-video-height),260px);height:min(var(--phr-about-video-height),260px)}.phr-about-play-icon{width:68px;height:68px;font-size:22px}.phr-about-play-text{font-size:13px;padding:9px 14px}.phr-about-modal{padding:14px}.phr-about-modal-dialog{padding:12px;border-radius:22px}.phr-about-modal-close{top:10px;left:10px;width:42px;height:42px;font-size:24px;background:rgba(8,27,49,.74)}}

/* Portfolio section */

.phr-portfolio-section,.phr-portfolio-section *{font-family:'Tajawal',Arial,sans-serif !important}
.phr-portfolio-card-overlay,.phr-portfolio-card-caption{display:none !important}
.phr-portfolio-section{position:relative;padding:88px 0;background:var(--phr-portfolio-bg-color);overflow:hidden}
.phr-portfolio-section::before{content:'';position:absolute;inset:0;background-image:var(--phr-portfolio-bg-image);background-size:cover;background-position:center;opacity:var(--phr-portfolio-bg-image-opacity, .35)}
.phr-portfolio-overlay{position:absolute;inset:0;background:linear-gradient(135deg,var(--phr-portfolio-overlay-start),var(--phr-portfolio-overlay-end));z-index:1}
.phr-portfolio-shell{position:relative;z-index:2;width:min(calc(100% - 32px),var(--phr-portfolio-inner-width,1200px));margin:0 auto}
.phr-portfolio-head{text-align:center;max-width:820px;margin:0 auto 34px}
.phr-portfolio-pretitle{display:inline-flex;padding:10px 18px;border-radius:999px;background:rgba(255,255,255,.72);backdrop-filter:blur(10px);font-weight:800;color:#111111;margin-bottom:16px}
.phr-portfolio-title{margin:0 0 14px;font-size:clamp(30px,4vw,46px);line-height:1.18;color:var(--phr-portfolio-title)}
.phr-portfolio-desc{margin:0 auto;color:var(--phr-portfolio-desc);font-size:18px;line-height:1.9;max-width:760px}
.phr-portfolio-filters{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin:0 auto 34px}
.phr-portfolio-filter{border:0;cursor:pointer;padding:13px 22px;border-radius:999px;background:var(--phr-portfolio-filter-bg);color:var(--phr-portfolio-filter-text);font-weight:800;box-shadow:0 12px 30px rgba(13,47,87,.08);transition:.25s transform,.25s background,.25s color}
.phr-portfolio-filter:hover{transform:translateY(-2px)}
.phr-portfolio-filter.is-active{background:var(--phr-portfolio-filter-active-bg);color:var(--phr-portfolio-filter-active-text);box-shadow:0 16px 34px rgba(13,61,103,.24)}
.phr-portfolio-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}
.phr-portfolio-card{min-width:0}
.phr-portfolio-trigger{position:relative;display:block;width:100%;padding:0;border:0;border-radius:calc(var(--phr-portfolio-card-radius) + 4px);background:transparent;cursor:pointer;text-align:inherit;overflow:hidden}
.phr-portfolio-frame{position:absolute;inset:0;border-radius:calc(var(--phr-portfolio-card-radius) + 4px);padding:1px;background:linear-gradient(145deg,rgba(255,255,255,.85),rgba(255,255,255,.15));-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none;z-index:3}
.phr-portfolio-media{display:block;position:relative;height:var(--phr-portfolio-item-height);min-height:var(--phr-portfolio-item-height);border-radius:var(--phr-portfolio-card-radius);overflow:hidden;background:transparent !important;backdrop-filter:none;line-height:0}
.phr-portfolio-media > img,.phr-portfolio-media .phr-portfolio-thumb-video{position:absolute !important;top:0 !important;right:0 !important;bottom:0 !important;left:0 !important;width:100% !important;height:100% !important;min-width:100% !important;min-height:100% !important;display:block !important;object-fit:cover !important;object-position:center center !important;background-size:cover !important;background-position:center center !important;transition:transform .35s ease;border-radius:inherit}
.phr-portfolio-trigger:hover .phr-portfolio-media img,.phr-portfolio-trigger:hover .phr-portfolio-thumb-video{transform:scale(1.06)}
.phr-portfolio-thumb-video{background-color:#0a1d33}
.phr-portfolio-play{position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);width:72px;height:72px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.2);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.28);color:#fff;font-size:24px;box-shadow:0 16px 40px rgba(0,0,0,.25)}
.phr-portfolio-card-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(3,15,28,0) 35%,rgba(3,15,28,.84) 100%);z-index:1}
.phr-portfolio-card-caption{position:absolute;right:18px;left:18px;bottom:18px;z-index:2;color:#fff;display:flex;flex-direction:column;gap:4px}
.phr-portfolio-card-caption strong{font-size:18px;line-height:1.4}
.phr-portfolio-card-caption small{font-size:13px;opacity:.88}
.phr-portfolio-empty{grid-column:1/-1;padding:34px;border-radius:28px;background:rgba(255,255,255,.82);text-align:center;color:#111111;font-weight:700;backdrop-filter:blur(10px)}
.phr-portfolio-modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;padding:24px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .25s ease,visibility .25s ease;z-index:99999}
.phr-portfolio-modal.is-open{opacity:1;visibility:visible;pointer-events:auto}
.phr-portfolio-modal-backdrop{position:absolute;inset:0;background:rgba(4,15,28,.78);backdrop-filter:blur(10px)}
.phr-portfolio-modal-dialog{position:relative;z-index:1;width:min(1000px,100%);max-height:90vh;border-radius:30px;background:#081b31;padding:18px;border:1px solid rgba(255,255,255,.08);box-shadow:0 24px 90px rgba(0,0,0,.32)}
.phr-portfolio-modal-close{position:absolute;top:-14px;left:-14px;width:48px;height:48px;border-radius:50%;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.12);color:#fff;font-size:28px;cursor:pointer}
.phr-portfolio-modal-head{display:none !important;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:6px 8px 18px;color:#fff;flex-wrap:wrap}
.phr-portfolio-modal-title{font-size:22px}
.phr-portfolio-modal-category{padding:8px 14px;border-radius:999px;background:rgba(255,255,255,.1);font-size:13px;font-weight:700}
.phr-portfolio-modal-body{border-radius:22px;overflow:hidden;background:#03101e}
.phr-portfolio-modal-image,.phr-portfolio-modal-video{display:block;width:100%;max-height:72vh;object-fit:contain;background:#03101e}
@media (max-width:1199px){.phr-portfolio-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width:767px){.phr-portfolio-section{padding:64px 0}.phr-portfolio-filters{flex-wrap:nowrap;justify-content:flex-start;gap:8px;overflow-x:auto;overflow-y:hidden;padding:0 2px 8px;margin:0 auto 24px;-webkit-overflow-scrolling:touch;scrollbar-width:none}.phr-portfolio-filters::-webkit-scrollbar{display:none}.phr-portfolio-filter{flex:0 0 auto;padding:10px 14px;font-size:13px;line-height:1.2;white-space:nowrap}.phr-portfolio-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.phr-portfolio-media{height:min(var(--phr-portfolio-item-height),200px)}.phr-portfolio-modal{padding:12px}.phr-portfolio-modal-dialog{padding:12px;border-radius:22px}.phr-portfolio-modal-close{top:8px;left:8px;width:42px;height:42px}.phr-portfolio-card-caption{right:12px;left:12px;bottom:12px}.phr-portfolio-card-caption strong{font-size:15px}}
@media (max-width:520px){.phr-portfolio-grid{grid-template-columns:1fr}.phr-portfolio-media{height:min(var(--phr-portfolio-item-height),240px)}}

.phr-portfolio-card,.phr-portfolio-trigger{height:100%}
.phr-portfolio-trigger,.phr-portfolio-media{line-height:0}
.phr-portfolio-media img{max-width:none !important;max-height:none !important}

.phr-portfolio-card .phr-portfolio-media img{position:absolute !important;inset:0 !important;width:100% !important;height:100% !important;min-width:100% !important;min-height:100% !important;max-width:none !important;max-height:none !important;object-fit:cover !important;object-position:center center !important;border-radius:inherit;vertical-align:top;background:transparent !important;}
.phr-portfolio-card .phr-portfolio-media::after{content:none !important;}


/* Mobile menu icon and panel fixes */
#phr-header .phr-mobile-toggle {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(13,47,87,.10);
  color: var(--phr-text);
}
#phr-header .phr-mobile-toggle span {
  background: var(--phr-text);
  border-radius: 999px;
}
body.phr-dark-mode #phr-header .phr-mobile-toggle {
  background: rgba(255,255,255,.94) !important;
  color: #12395e !important;
  border-color: rgba(18,57,94,.12) !important;
}
body.phr-dark-mode #phr-header .phr-mobile-toggle span {
  background: #12395e !important;
}

.phr-mobile-panel {
  background: #0f2741;
  color: #ffffff;
}
.phr-mobile-head strong {
  color: #ffffff;
}
.phr-mobile-menu a,
.phr-mobile-panel .menu a {
  background: rgba(255,255,255,.08);
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.08);
}
.phr-mobile-menu .current-menu-item > a,
.phr-mobile-panel .menu .current-menu-item > a,
.phr-mobile-menu a:hover,
.phr-mobile-panel .menu a:hover {
  background: var(--phr-active-item-bg);
  color: var(--phr-menu-item-text) !important;
}
.phr-mobile-close {
  background: rgba(255,255,255,.10);
  color: #ffffff;
}
body.phr-dark-mode .phr-mobile-panel {
  background: #0f2741 !important;
}
body.phr-dark-mode .phr-mobile-menu a,
body.phr-dark-mode .phr-mobile-panel .menu a,
body.phr-dark-mode .phr-mobile-close {
  background: rgba(255,255,255,.08) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.08) !important;
}

@media (max-width: 1080px) {
  #phr-header .phr-left {
    order: 1;
    gap: 10px;
  }
  #phr-header .phr-right {
    order: 3;
  }
}
@media (max-width: 782px) {
  #phr-header .phr-shell {
    grid-template-columns: auto 1fr auto;
  }
  #phr-header .phr-left {
    justify-self: start;
  }
  #phr-header .phr-right {
    justify-self: end;
  }
  #phr-header .phr-cta {
    display: none;
  }
}


/* PHR 3.9.2 mobile menu visual controls */
#phr-header .phr-mobile-toggle{
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(13,47,87,.12) !important;
  color: var(--phr-mobile-toggle-icon-color) !important;
}
#phr-header .phr-mobile-toggle span,
body.phr-dark-mode #phr-header .phr-mobile-toggle span,
#phr-header.is-sticky-shadow .phr-mobile-toggle span{
  background: var(--phr-mobile-toggle-icon-color) !important;
}
body.phr-dark-mode #phr-header .phr-mobile-toggle{
  background: rgba(255,255,255,.94) !important;
  border-color: rgba(13,47,87,.12) !important;
  color: var(--phr-mobile-toggle-icon-color) !important;
}

.phr-mobile-panel{
  background: var(--phr-mobile-panel-custom-bg) !important;
  color: var(--phr-mobile-panel-text) !important;
  border-left: 1px solid var(--phr-mobile-panel-border);
  box-shadow: -18px 0 48px rgba(9,20,39,.24);
}
.phr-mobile-panel.is-brand{
  background: var(--phr-mobile-panel-brand-bg) !important;
}
.phr-mobile-panel.is-glass{
  backdrop-filter: blur(var(--phr-mobile-panel-blur));
  -webkit-backdrop-filter: blur(var(--phr-mobile-panel-blur));
}
.phr-mobile-overlay{
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.phr-mobile-head strong,
.phr-mobile-menu a,
.phr-mobile-panel .menu a,
.phr-mobile-close{
  color: var(--phr-mobile-panel-text) !important;
}
.phr-mobile-menu a,
.phr-mobile-panel .menu a{
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}
.phr-mobile-menu .current-menu-item > a,
.phr-mobile-panel .menu .current-menu-item > a,
.phr-mobile-menu a:hover,
.phr-mobile-panel .menu a:hover{
  background: rgba(255,255,255,.18) !important;
  color: #ffffff !important;
}
.phr-mobile-close{
  background: rgba(255,255,255,.12) !important;
}
body.phr-dark-mode .phr-mobile-panel{
  color: var(--phr-mobile-panel-text) !important;
}
body.phr-dark-mode .phr-mobile-menu a,
body.phr-dark-mode .phr-mobile-panel .menu a,
body.phr-dark-mode .phr-mobile-close{
  color: var(--phr-mobile-panel-text) !important;
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.12) !important;
}


/* PHR 3.9.3 proper mobile menu icon */
#phr-header .phr-mobile-toggle{
  display:none;
  align-items:center !important;
  justify-content:center !important;
}
@media (max-width:1080px){
  #phr-header .phr-mobile-toggle{ display:inline-flex !important; }
}
@media (max-width:980px){
  #phr-header .phr-mobile-toggle{ display:inline-flex !important; }
}
#phr-header .phr-mobile-toggle span{ display:none !important; }
#phr-header .phr-mobile-toggle .phr-mobile-toggle-svg{
  width:22px;
  height:22px;
  display:block;
}
#phr-header .phr-mobile-toggle .phr-mobile-toggle-svg path{
  fill:none;
  stroke: var(--phr-mobile-toggle-icon-color);
  stroke-width: 2.4;
  stroke-linecap: round;
  transition: stroke .2s ease;
}
body.phr-dark-mode #phr-header .phr-mobile-toggle .phr-mobile-toggle-svg path,
#phr-header.is-sticky-shadow .phr-mobile-toggle .phr-mobile-toggle-svg path{
  stroke: var(--phr-mobile-toggle-icon-color) !important;
}

/* PHR 4.0.0 testimonials section */
.phr-testimonials-section{
  position:relative;
  padding:90px 20px;
  background:var(--phr-testimonials-bg);
  overflow:hidden;
  font-family:'Tajawal',sans-serif;
}
.phr-testimonials-section,
.phr-testimonials-section *{
  font-family:'Tajawal',sans-serif;
}
.phr-testimonials-backdrop{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right,var(--phr-testimonials-overlay-1),transparent 38%),
    radial-gradient(circle at bottom left,var(--phr-testimonials-overlay-2),transparent 42%);
  pointer-events:none;
}
.phr-testimonials-shell{
  position:relative;
  z-index:1;
  max-width:var(--phr-testimonials-inner-width);
  margin:0 auto;
}
.phr-testimonials-head{
  text-align:center;
  max-width:780px;
  margin:0 auto 34px;
}
.phr-testimonials-pretitle{
  display:inline-flex;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.8);
  color:var(--phr-testimonials-title);
  margin-bottom:14px;
  font-weight:700;
}
.phr-testimonials-title{
  margin:0 0 14px;
  font-size:var(--phr-testimonials-title-size);
  color:var(--phr-testimonials-title);
  line-height:1.2;
}
.phr-testimonials-title .phr-highlight{
  background:var(--phr-testimonials-highlight-bg);
  color:var(--phr-testimonials-highlight-text);
}
.phr-testimonials-desc{
  margin:0;
  color:var(--phr-testimonials-desc);
  font-size:var(--phr-testimonials-desc-size);
  line-height:1.9;
}
.phr-testimonials-slider-wrap{
  position:relative;
  display:flex;
  align-items:center;
  gap:18px;
}
.phr-testimonials-viewport{
  overflow:hidden;
  flex:1;
}
.phr-testimonials-track{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(0,1fr));
  grid-auto-flow:column;
  grid-auto-columns:calc((100% - 72px) / 4);
  gap:24px;
  transition:transform .45s ease;
  will-change:transform;
}
.phr-testimonial-card{
  min-width:0;
  background:var(--phr-testimonials-card-bg);
  border-radius:var(--phr-testimonials-radius);
  padding:26px;
  box-shadow:0 20px 30px -18px rgba(13,47,87,.28);
  border:1px solid rgba(13,47,87,.08);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.phr-testimonial-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}
.phr-testimonial-avatar-wrap{flex:0 0 auto;}
.phr-testimonial-avatar{
  width:68px;
  height:68px;
  border-radius:20px;
  object-fit:cover;
  display:block;
  background:#e7eef8;
}
.phr-testimonial-avatar-fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:800;
  color:var(--phr-testimonials-title);
}
.phr-testimonial-meta h3{
  margin:0 0 5px;
  color:var(--phr-testimonials-name);
  font-size:var(--phr-testimonials-item-name-size);
  line-height:1.2;
}
.phr-testimonial-meta span{
  color:var(--phr-testimonials-meta);
  font-size:var(--phr-testimonials-item-meta-size);
  display:block;
}
.phr-testimonial-stars{
  display:flex;
  gap:4px;
  margin-bottom:10px;
  font-size:20px;
}
.phr-testimonial-stars span{ color:rgba(0,0,0,.14); }
.phr-testimonial-stars .is-filled{ color:var(--phr-testimonials-star); }
.phr-testimonial-rating-line{
  color:var(--phr-testimonials-meta);
  font-size:14px;
  margin-bottom:14px;
}
.phr-testimonial-rating-line strong{ color:var(--phr-testimonials-title); }
.phr-testimonial-text{
  margin:0;
  color:var(--phr-testimonials-text);
  font-size:var(--phr-testimonials-item-text-size);
  line-height:1.95;
}
.phr-testimonials-arrow{
  width:56px;
  height:56px;
  border:none;
  border-radius:18px;
  background:var(--phr-testimonials-arrow-bg);
  color:var(--phr-testimonials-arrow-text);
  box-shadow:0 16px 30px rgba(13,61,103,.20);
  cursor:pointer;
  font-size:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease, opacity .2s ease;
}
.phr-testimonials-arrow:hover{ transform:translateY(-2px); }
.phr-testimonials-arrow:disabled{ opacity:.45; cursor:not-allowed; transform:none; }
.phr-testimonials-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:24px;
}
.phr-testimonials-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:none;
  background:rgba(13,47,87,.18);
  padding:0;
  cursor:pointer;
}
.phr-testimonials-dot.is-active{
  width:28px;
  background:var(--phr-testimonials-arrow-bg);
}
@media (max-width:1024px){
  .phr-testimonials-track{ grid-auto-columns:calc((100% - 24px) / 2); }
}
@media (max-width:767px){
  .phr-testimonials-section{ padding:72px 14px; }
  .phr-testimonials-title{ font-size:34px; }
  .phr-testimonials-desc{ font-size:16px; }
  .phr-testimonials-slider-wrap{ gap:10px; }
  .phr-testimonials-arrow{
    width:42px;
    height:42px;
    border-radius:14px;
    font-size:20px;
  }
  .phr-testimonials-track{ grid-auto-columns:100%; gap:16px; }
  .phr-testimonial-card{ padding:22px 18px; }
  .phr-testimonial-avatar{ width:58px; height:58px; border-radius:16px; }
}



.phr-articles-section,
.phr-articles-section *{box-sizing:border-box;font-family:'Tajawal',Arial,sans-serif!important}
.phr-articles-section{position:relative;padding:92px 18px 96px;background:var(--phr-articles-bg,#eef4ff);overflow:hidden;color:var(--phr-articles-title,#172033);isolation:isolate}
.phr-articles-section::before{content:"";position:absolute;inset:0;background:linear-gradient(118deg,rgba(255,255,255,.72),rgba(255,255,255,.18) 44%,rgba(221,235,255,.38));z-index:-3;pointer-events:none}
.phr-articles-motion{position:absolute;inset:0;z-index:-2;overflow:hidden;pointer-events:none;opacity:calc(var(--phr-articles-motion-intensity,60) / 100)}
.phr-articles-motion i{position:absolute;border-radius:50%;filter:blur(3px);animation:phrArticlesFloat var(--phr-articles-motion-speed,22s) ease-in-out infinite alternate}
.phr-articles-motion i:nth-child(1){width:420px;height:420px;right:-90px;top:-150px;background:radial-gradient(circle,color-mix(in srgb,var(--phr-articles-accent,#3157d5) 26%,transparent),transparent 70%)}
.phr-articles-motion i:nth-child(2){width:520px;height:520px;left:-190px;bottom:-250px;background:radial-gradient(circle,rgba(59,188,178,.24),transparent 70%);animation-delay:-8s}
.phr-articles-motion i:nth-child(3){width:250px;height:250px;left:42%;top:14%;background:radial-gradient(circle,rgba(139,157,255,.18),transparent 68%);animation-delay:-14s}
.phr-articles-motion b{position:absolute;inset:-20%;opacity:.34;background-image:radial-gradient(circle at center,rgba(49,87,213,.13) 0 1px,transparent 1.5px);background-size:28px 28px;animation:phrArticlesDrift calc(var(--phr-articles-motion-speed,22s) * 1.45) linear infinite}
.phr-articles-section.motion-mesh .phr-articles-motion b{background:linear-gradient(120deg,rgba(49,87,213,.10),transparent 30%,rgba(44,182,170,.12) 56%,transparent 80%);background-size:220% 220%;animation:phrArticlesMesh var(--phr-articles-motion-speed,22s) ease-in-out infinite}
.phr-articles-section.motion-waves .phr-articles-motion b{background-image:repeating-radial-gradient(ellipse at 50% 120%,transparent 0 42px,rgba(49,87,213,.07) 43px 45px,transparent 46px 74px);background-size:100% 220px;animation:phrArticlesWaves var(--phr-articles-motion-speed,22s) linear infinite}
@keyframes phrArticlesFloat{from{transform:translate3d(-2%,-3%,0) scale(.96)}to{transform:translate3d(7%,6%,0) scale(1.08)}}
@keyframes phrArticlesDrift{to{transform:translate3d(28px,28px,0)}}
@keyframes phrArticlesMesh{0%,100%{background-position:0 50%}50%{background-position:100% 50%}}
@keyframes phrArticlesWaves{to{background-position:0 220px}}
.phr-articles-backdrop{position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.38));pointer-events:none}
.phr-articles-shell{position:relative;max-width:var(--phr-articles-inner-width,1280px);margin:0 auto}
.phr-articles-head{text-align:right;max-width:840px;margin:0 0 36px auto}
.phr-articles-pretitle{display:inline-flex;align-items:center;gap:7px;padding:8px 13px;border-radius:999px;background:rgba(255,255,255,.7);border:1px solid rgba(49,87,213,.13);color:var(--phr-articles-accent,#3157d5);font-weight:900;font-size:13px;backdrop-filter:blur(10px)}
.phr-articles-pretitle::before{content:'✦';font-size:11px}
.phr-articles-title{margin:14px 0 0;color:var(--phr-articles-title);font-size:clamp(32px,var(--phr-articles-title-size),58px);line-height:1.12;font-weight:900;letter-spacing:-1.1px}
.phr-articles-title-line{position:relative;display:block;width:min(185px,46%);height:6px;margin:14px 0 14px;border-radius:99px;background:rgba(49,87,213,.10);overflow:hidden}
.phr-articles-title-line::before{content:"";position:absolute;inset:0;width:76%;border-radius:inherit;background:linear-gradient(90deg,var(--phr-articles-accent,#3157d5),#5c83ff 52%,#26b8aa);box-shadow:0 5px 16px rgba(49,87,213,.20)}
.phr-articles-title-line i{position:absolute;inset-block:0;width:34%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.95),transparent);animation:phrArticlesTitleShine 2.9s linear infinite}
@keyframes phrArticlesTitleShine{from{right:-36%}to{right:105%}}
.phr-articles-desc{margin:0;color:var(--phr-articles-desc);font-size:clamp(15px,var(--phr-articles-desc-size),19px);line-height:1.9;max-width:760px}
.phr-articles-slider-wrap{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:18px;align-items:center}
.phr-articles-viewport{overflow:hidden;padding:4px}
.phr-articles-track{display:flex;transition:transform .5s cubic-bezier(.22,.78,.25,1)}
.phr-articles-page{min-width:100%;display:grid;grid-template-columns:repeat(var(--phr-articles-columns-desktop,4),minmax(0,1fr));gap:20px}
.phr-article-card{position:relative;overflow:hidden;border-radius:var(--phr-articles-radius);background:color-mix(in srgb,var(--phr-articles-card-bg,#fff) 94%,transparent);border:1px solid rgba(49,87,213,.09);box-shadow:0 18px 46px rgba(56,79,124,.08);display:flex;flex-direction:column;height:100%;transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease;backdrop-filter:blur(8px)}
.phr-article-card:hover{transform:translateY(-7px);border-color:color-mix(in srgb,var(--phr-articles-accent,#3157d5) 28%,transparent);box-shadow:0 24px 58px rgba(56,79,124,.15)}
.phr-article-media{position:relative;height:var(--phr-articles-image-height);overflow:hidden;background:linear-gradient(135deg,var(--phr-articles-overlay-1),var(--phr-articles-overlay-2))}
.phr-article-category{position:absolute;z-index:2;top:13px;right:13px;background:rgba(20,30,50,.88);color:#fff;padding:7px 10px;border-radius:10px;font-size:11px;font-weight:900;backdrop-filter:blur(8px)}
.phr-article-media::after{content:'';position:absolute;inset:auto -28% -62% -28%;height:92%;background:linear-gradient(120deg,transparent 10%,rgba(255,255,255,.08) 28%,rgba(255,255,255,.72) 48%,rgba(255,255,255,.12) 68%,transparent 82%);transform:translateX(-120%) rotate(8deg);transition:transform .75s ease;pointer-events:none}
.phr-articles-has-glow .phr-article-card:hover .phr-article-media::after{transform:translateX(120%) rotate(8deg)}
.phr-article-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .55s ease}
.phr-article-card:hover .phr-article-media img{transform:scale(1.055)}
.phr-article-body{padding:19px 19px 17px;display:flex;flex-direction:column;gap:11px;flex:1}
.phr-article-topmeta{display:flex;align-items:center;justify-content:space-between;gap:10px;color:var(--phr-articles-meta);font-size:11px;font-weight:700}
.phr-article-card-title{margin:0;font-size:20px;line-height:1.48;font-weight:900;color:var(--phr-articles-title)}
.phr-article-card-title a{color:inherit;text-decoration:none}.phr-article-card-title a:hover{color:var(--phr-articles-accent,#3157d5)}
.phr-article-card-desc{margin:0;color:var(--phr-articles-desc);font-size:14px;line-height:1.85;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.phr-article-footer{margin-top:auto;padding-top:12px;border-top:1px solid rgba(49,87,213,.08);display:flex;align-items:center;justify-content:space-between;gap:12px}.phr-article-meta{color:var(--phr-articles-meta);font-size:11px;font-weight:700}.phr-article-read{display:inline-flex;align-items:center;gap:8px;color:var(--phr-articles-accent,#3157d5);text-decoration:none;font-size:13px;font-weight:900}.phr-article-read b{transition:transform .2s ease}.phr-article-read:hover b{transform:translateX(-4px)}
.phr-articles-arrow{width:50px;height:50px;border:none;border-radius:16px;background:var(--phr-articles-arrow-bg);color:var(--phr-articles-arrow-text);cursor:pointer;box-shadow:0 14px 30px rgba(23,32,51,.16);font-size:20px;display:inline-flex;align-items:center;justify-content:center;transition:transform .2s ease,opacity .2s ease}.phr-articles-arrow:hover{transform:translateY(-2px) scale(1.03)}.phr-articles-arrow:disabled{opacity:.4;cursor:not-allowed;transform:none}
.phr-articles-dots{display:flex;justify-content:center;gap:8px;margin-top:22px}.phr-articles-dot{width:9px;height:9px;border-radius:50%;border:none;background:rgba(49,87,213,.18);cursor:pointer;padding:0}.phr-articles-dot.is-active{width:31px;border-radius:99px;background:var(--phr-articles-accent,#3157d5)}
.phr-articles-section.phr-articles-is-grid .phr-articles-slider-wrap{display:block}.phr-articles-section.phr-articles-is-grid .phr-articles-viewport{overflow:visible}.phr-articles-section.phr-articles-is-grid .phr-articles-track{display:block;transform:none!important}.phr-articles-section.phr-articles-is-grid .phr-articles-page{min-width:0;grid-template-columns:repeat(var(--phr-articles-columns-desktop,4),minmax(0,1fr));margin:0}.phr-articles-section.phr-articles-is-grid .phr-articles-page + .phr-articles-page{margin-top:20px}.phr-articles-section.phr-articles-is-grid .phr-articles-dots,.phr-articles-section.phr-articles-is-grid .phr-articles-arrow{display:none!important}
@media(max-width:1199px){.phr-articles-page,.phr-articles-section.phr-articles-is-grid .phr-articles-page{grid-template-columns:repeat(var(--phr-articles-columns-tablet,2),minmax(0,1fr))}}
@media(max-width:767px){.phr-articles-section{padding:70px 13px 76px}.phr-articles-head{text-align:right;margin-bottom:27px}.phr-articles-slider-wrap{grid-template-columns:1fr;gap:12px}.phr-articles-arrow{display:none}.phr-articles-page,.phr-articles-section.phr-articles-is-grid .phr-articles-page{grid-template-columns:repeat(var(--phr-articles-columns-mobile,1),minmax(0,1fr));gap:14px}.phr-article-card-title{font-size:18px}.phr-article-body{padding:16px}.phr-article-topmeta{font-size:10px}.phr-articles-section.phr-articles-is-grid .phr-articles-page + .phr-articles-page{margin-top:14px}}
@media(prefers-reduced-motion:reduce){.phr-articles-motion i,.phr-articles-motion b,.phr-articles-title-line i{animation:none!important}.phr-article-card,.phr-article-media img{transition:none!important}}

/* Under Belt Footer V3 — simple, flat, no cards */
#phr-site-footer{
  position:relative;
  padding:44px 18px 0;
  background:linear-gradient(180deg,#fff 0%,var(--phr-footer-bg,#fff8f8) 100%);
  color:var(--phr-footer-text,#705f65);
  font-size:calc(16px * var(--phr-footer-font-scale,1));
  border-top:1px solid color-mix(in srgb,var(--phr-footer-accent-bg,#e3062e) 14%,#eee);
}
#phr-site-footer,#phr-site-footer *{box-sizing:border-box}
#phr-site-footer,#phr-site-footer *,#phr-site-footer h4,#phr-site-footer a,#phr-site-footer p,#phr-site-footer span,#phr-site-footer strong{font-family:'Tajawal',system-ui,-apple-system,'Segoe UI',Tahoma,Arial,sans-serif!important}
#phr-site-footer .phr-footer-shell{max-width:var(--phr-footer-inner-width,1280px);margin:0 auto}
#phr-site-footer .phr-footer-main{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(180px,.7fr) minmax(230px,.85fr);gap:44px;align-items:start;padding-bottom:34px}
#phr-site-footer .phr-footer-brand-simple{display:flex;gap:16px;align-items:flex-start;min-width:0}
#phr-site-footer .phr-footer-logo-simple{display:block;flex:0 0 auto;text-decoration:none}
#phr-site-footer .phr-footer-logo-simple img{display:block;width:min(var(--phr-footer-logo-width,118px),68px);height:68px;object-fit:contain;border-radius:0;box-shadow:none;border:0;background:transparent}
#phr-site-footer .phr-footer-brand-text{display:grid;gap:3px;min-width:0;padding-top:2px}
#phr-site-footer .phr-footer-kicker-simple{color:var(--phr-footer-accent-bg,#e3062e);font-size:.72em;font-weight:900}
#phr-site-footer .phr-footer-brand-text>strong{color:var(--phr-footer-title,#1d1115);font-size:1.08em;font-weight:900;line-height:1.35}
#phr-site-footer .phr-footer-brand-text p{margin:8px 0 0;max-width:560px;color:var(--phr-footer-text,#705f65);font-size:.88em;line-height:1.9;font-weight:500}
#phr-site-footer .phr-footer-links-simple h4,#phr-site-footer .phr-footer-contact-simple h4{margin:0 0 14px;color:var(--phr-footer-title,#1d1115);font-size:.92em;font-weight:900;position:relative;padding-bottom:8px}
#phr-site-footer .phr-footer-links-simple h4::after,#phr-site-footer .phr-footer-contact-simple h4::after{content:'';position:absolute;right:0;bottom:0;width:34px;height:2px;background:var(--phr-footer-accent-bg,#e3062e);border-radius:10px}
#phr-site-footer .phr-footer-menu-simple,#phr-site-footer .phr-footer-menu-simple ul,#phr-site-footer .phr-footer-links-simple .phr-menu,#phr-site-footer .phr-footer-links-simple .phr-menu ul{list-style:none;margin:0;padding:0}
#phr-site-footer .phr-footer-menu-simple,#phr-site-footer .phr-footer-links-simple .phr-menu{display:flex;flex-direction:column;gap:8px}
#phr-site-footer .phr-footer-menu-simple li,#phr-site-footer .phr-footer-links-simple .phr-menu li{margin:0;padding:0}
#phr-site-footer .phr-footer-menu-simple a,#phr-site-footer .phr-footer-links-simple .phr-menu a{display:inline-block;color:var(--phr-footer-text,#705f65);text-decoration:none;font-size:.78em;font-weight:700;line-height:1.6;transition:color .2s ease,transform .2s ease}
#phr-site-footer .phr-footer-menu-simple a:hover,#phr-site-footer .phr-footer-links-simple .phr-menu a:hover{color:var(--phr-footer-accent-bg,#e3062e);transform:translateX(-3px)}
#phr-site-footer .phr-footer-contact-lines{display:flex;flex-direction:column;gap:9px}
#phr-site-footer .phr-footer-contact-lines>a,#phr-site-footer .phr-footer-contact-lines>div{display:flex;align-items:baseline;gap:9px;min-width:0;color:inherit;text-decoration:none;padding:0;border:0;background:transparent}
#phr-site-footer .phr-footer-contact-lines span{color:var(--phr-footer-text,#705f65);font-size:.68em;font-weight:600;min-width:46px}
#phr-site-footer .phr-footer-contact-lines strong{color:var(--phr-footer-title,#1d1115);font-size:.76em;font-weight:800;overflow-wrap:anywhere}
#phr-site-footer .phr-footer-contact-lines>a:hover strong{color:var(--phr-footer-accent-bg,#e3062e)}
#phr-site-footer .phr-footer-social-row{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 0;border-top:1px solid color-mix(in srgb,var(--phr-footer-border,#f1d7de) 80%,transparent)}
#phr-site-footer .phr-footer-social-row>span{color:var(--phr-footer-title,#1d1115);font-size:.76em;font-weight:800}
#phr-site-footer .phr-footer-socials-simple{display:flex;align-items:center;gap:14px;direction:ltr;flex-wrap:wrap}
#phr-site-footer .phr-footer-socials-simple a{width:28px;height:28px;display:grid;place-items:center;color:var(--phr-footer-title,#1d1115);text-decoration:none;transition:color .2s ease,transform .2s ease}
#phr-site-footer .phr-footer-socials-simple a svg{width:19px;height:19px;display:block;fill:currentColor}
#phr-site-footer .phr-footer-socials-simple a:hover{color:var(--phr-footer-accent-bg,#e3062e);transform:translateY(-2px)}
#phr-site-footer .phr-footer-bottom-simple{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:17px 0 19px;border-top:1px solid color-mix(in srgb,var(--phr-footer-border,#f1d7de) 80%,transparent)}
#phr-site-footer .phr-footer-bottom-simple>div{display:flex;align-items:center;flex-wrap:wrap;gap:6px;color:var(--phr-footer-text,#705f65);font-size:.7em;font-weight:600}
#phr-site-footer .phr-footer-bottom-simple strong{color:var(--phr-footer-title,#1d1115);font-weight:900}
#phr-site-footer .phr-footer-credit-link{color:var(--phr-footer-accent-bg,#e3062e);text-decoration:none;font-weight:800}
#phr-site-footer .phr-footer-sep{opacity:.45}
#phr-site-footer .phr-footer-top-simple{width:34px;height:34px;padding:0;border:0;background:transparent;color:var(--phr-footer-accent-bg,#e3062e);font-size:21px;font-weight:900;cursor:pointer;transition:transform .2s ease}
#phr-site-footer .phr-footer-top-simple:hover{transform:translateY(-3px)}
@media (max-width:900px){
  #phr-site-footer .phr-footer-main{grid-template-columns:1fr 1fr;gap:30px}
  #phr-site-footer .phr-footer-brand-simple{grid-column:1/-1}
}
@media (max-width:620px){
  #phr-site-footer{padding:34px 14px 0}
  #phr-site-footer .phr-footer-main{grid-template-columns:1fr;gap:26px;padding-bottom:26px}
  #phr-site-footer .phr-footer-brand-simple{grid-column:auto}
  #phr-site-footer .phr-footer-logo-simple img{width:56px;height:56px}
  #phr-site-footer .phr-footer-social-row,#phr-site-footer .phr-footer-bottom-simple{align-items:flex-start;flex-direction:column}
  #phr-site-footer .phr-footer-socials-simple{direction:ltr}
}


/* Inner pages hero */
#phr-inner-hero, #phr-inner-hero * { box-sizing: border-box; font-family: 'Tajawal', Arial, sans-serif !important; }
#phr-inner-hero{
  position: relative; min-height: var(--phr-inner-hero-height); overflow: hidden;
  display:flex; align-items:center; isolation:isolate;
  margin-top: calc(-1 * (var(--phr-height) + var(--phr-adminbar)));
  padding-top: calc((var(--phr-height) * 2) + var(--phr-adminbar) + 38px);
  padding-bottom: 46px;
}
#phr-inner-hero .phr-inner-hero-media,
#phr-inner-hero .phr-inner-hero-overlay{
  position:absolute; inset:0; pointer-events:none;
}
#phr-inner-hero .phr-inner-hero-media{
  background-image: var(--phr-inner-hero-bg-image);
  background-size: cover;
  background-position: center var(--phr-inner-hero-pos-y);
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: var(--phr-inner-hero-image-opacity);
  transform-origin: center center;
  will-change: transform;
}
#phr-inner-hero .phr-inner-hero-overlay{
  background: linear-gradient(180deg, rgba(6,18,34,.10) 0%, var(--phr-inner-hero-bg-overlay) 18%, var(--phr-inner-hero-bg-overlay) 100%);
  backdrop-filter: blur(var(--phr-inner-hero-blur));
}
#phr-inner-hero .phr-inner-hero-shell{
  position:relative; z-index:2; width:min(100%, var(--phr-inner-hero-inner-width));
  margin:0 auto; padding:0 22px;
}
#phr-inner-hero .phr-inner-hero-content{
  max-width: 860px;
}
#phr-inner-hero .phr-inner-hero-title{
  margin:0; color:var(--phr-inner-hero-title); font-size:clamp(30px, 4vw, 56px);
  line-height:1.2; font-weight:800; text-shadow:0 10px 34px rgba(0,0,0,.22);
}
#phr-inner-hero.phr-motion-zoom .phr-inner-hero-media{ animation: phrInnerHeroZoom 18s ease-in-out infinite alternate; }
#phr-inner-hero.phr-motion-float-up .phr-inner-hero-media{ animation: phrInnerHeroFloatUp 18s ease-in-out infinite alternate; }
#phr-inner-hero.phr-motion-float-down .phr-inner-hero-media{ animation: phrInnerHeroFloatDown 18s ease-in-out infinite alternate; }
@keyframes phrInnerHeroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes phrInnerHeroFloatUp { from { transform: translateY(24px) scale(1.06); } to { transform: translateY(-10px) scale(1.06); } }
@keyframes phrInnerHeroFloatDown { from { transform: translateY(-10px) scale(1.06); } to { transform: translateY(24px) scale(1.06); } }

@media (max-width: 991px){
  #phr-inner-hero{ min-height: max(260px, calc(var(--phr-inner-hero-height) - 40px)); padding-top: calc((var(--phr-height) * 2) + var(--phr-adminbar) + 28px); }
}
@media (max-width: 767px){
  #phr-inner-hero{ min-height: max(220px, calc(var(--phr-inner-hero-height) - 90px)); padding-top: calc((var(--phr-height) * 2) + var(--phr-adminbar) + 18px); padding-bottom: 32px; }
  #phr-inner-hero .phr-inner-hero-title{ font-size: clamp(26px, 8vw, 38px); }
  #phr-inner-hero .phr-inner-hero-media{ background-attachment: scroll; }
}

/* Inner hero should start directly behind the transparent header */
body.phr-has-inner-hero #phr-inner-hero{ z-index: 1; }
body.phr-has-inner-hero #phr-inner-hero + *{ position: relative; z-index: 2; }


/* ===== PHR Contact Section ===== */
.phr-contact-section{
  --phr-contact-bg: var(--phr-contact-bg, #fafafa);
  --phr-contact-card-bg: var(--phr-contact-card-bg, #fff);
  --phr-contact-form-bg: var(--phr-contact-form-bg, #fff);
  --phr-contact-map-bg: var(--phr-contact-map-bg, #fff);
  --phr-contact-title: var(--phr-contact-title, #111111);
  --phr-contact-desc: var(--phr-contact-desc, #627287);
  --phr-contact-label: var(--phr-contact-label, #111111);
  --phr-contact-text: var(--phr-contact-text, #5f7084);
  --phr-contact-accent: var(--phr-contact-accent, #d5001c);
  --phr-contact-accent-text: var(--phr-contact-accent-text, #fff);
  --phr-contact-border: var(--phr-contact-border, #dce7f5);
  --phr-contact-success-bg: var(--phr-contact-success-bg, #1f9d55);
  --phr-contact-success-text: var(--phr-contact-success-text, #fff);
  --phr-contact-radius: var(--phr-contact-radius, 26px);
  --phr-contact-inner: var(--phr-contact-inner, 1200px);
  --phr-contact-title-size: var(--phr-contact-title-size, 44px);
  --phr-contact-desc-size: var(--phr-contact-desc-size, 18px);
  --phr-contact-icon-size: var(--phr-contact-icon-size, 54px);
  padding: 90px 18px;
  background: var(--phr-contact-bg);
}
.phr-contact-shell{max-width:var(--phr-contact-inner);margin:0 auto}
.phr-section-heading.is-contact{text-align:center;max-width:760px;margin:0 auto 34px}
.phr-section-heading.is-contact h2{font-size:var(--phr-contact-title-size);line-height:1.2;color:var(--phr-contact-title);margin:0 0 14px}
.phr-section-heading.is-contact p{font-size:var(--phr-contact-desc-size);line-height:1.85;color:var(--phr-contact-desc);margin:0}
.phr-contact-info-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-bottom:22px}
.phr-contact-mini-card,.phr-contact-form-card,.phr-contact-map-card{
  background: var(--phr-contact-card-bg);
  border:1px solid var(--phr-contact-border);
  border-radius: var(--phr-contact-radius);
  box-shadow: 0 20px 60px rgba(13,47,87,.07);
}
.phr-contact-form-card{background:var(--phr-contact-form-bg)}
.phr-contact-map-card{background:var(--phr-contact-map-bg)}
.phr-contact-mini-card{display:flex;align-items:center;gap:16px;padding:24px}
.phr-contact-mini-icon{
  width:var(--phr-contact-icon-size);height:var(--phr-contact-icon-size);
  min-width:var(--phr-contact-icon-size);border-radius:18px;background:var(--phr-contact-accent);
  color:var(--phr-contact-accent-text);display:flex;align-items:center;justify-content:center;
  font-size:26px;font-weight:700;
}
.phr-contact-mini-content strong{display:block;color:var(--phr-contact-title);font-size:20px;margin-bottom:8px}
.phr-contact-mini-content span,.phr-contact-mini-content a{color:var(--phr-contact-text);font-size:16px;line-height:1.8;text-decoration:none}
.phr-contact-main-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:22px;align-items:stretch}
.phr-contact-form-card{padding:28px}
.phr-contact-form-head h3,.phr-contact-map-head h3{margin:0 0 10px;color:var(--phr-contact-title);font-size:28px}
.phr-contact-form-head p{margin:0 0 18px;color:var(--phr-contact-desc);line-height:1.8}
.phr-contact-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.phr-field-wrap.full{grid-column:1/-1}
.phr-field-wrap label{display:block;margin-bottom:8px;color:var(--phr-contact-label);font-weight:700;font-size:15px}
.phr-contact-form input,.phr-contact-form select,.phr-contact-form textarea{
  width:100%;border:1px solid var(--phr-contact-border);background:#fff;border-radius:16px;
  min-height:54px;padding:14px 16px;color:var(--phr-contact-text);font-family:'Tajawal',sans-serif;
}
.phr-contact-form textarea{min-height:150px;resize:vertical}
.phr-contact-form input:focus,.phr-contact-form select:focus,.phr-contact-form textarea:focus{outline:none;border-color:var(--phr-contact-accent);box-shadow:0 0 0 3px rgba(13,61,103,.08)}
.phr-captcha-box{display:flex;gap:12px;align-items:center}
.phr-captcha-question{
  min-width:120px;height:54px;border-radius:16px;display:flex;align-items:center;justify-content:center;
  background:rgba(13,61,103,.07);color:var(--phr-contact-title);font-weight:800
}
.phr-contact-response{display:none;margin-top:16px;padding:14px 16px;border-radius:16px;font-weight:700}
.phr-contact-response.is-success{display:block;background:var(--phr-contact-success-bg);color:var(--phr-contact-success-text)}
.phr-contact-response.is-error{display:block;background:#ffe8e8;color:#9b1c1c}
.phr-contact-submit{
  margin-top:18px;border:0;border-radius:18px;background:var(--phr-contact-accent);color:var(--phr-contact-accent-text);
  min-height:58px;padding:0 28px;font-family:'Tajawal',sans-serif;font-size:18px;font-weight:800;cursor:pointer
}
.phr-contact-submit.is-loading{opacity:.7;pointer-events:none}
.phr-contact-map-card{padding:24px;display:flex;flex-direction:column}
.phr-contact-map-head{display:flex;flex-direction:column;gap:12px;margin-bottom:16px}
.phr-branch-switcher{display:flex;flex-wrap:wrap;gap:10px}
.phr-branch-btn{
  border:1px solid var(--phr-contact-border);background:#fff;color:var(--phr-contact-title);border-radius:999px;
  padding:10px 16px;font-family:'Tajawal',sans-serif;font-weight:700;cursor:pointer
}
.phr-branch-btn.is-active{background:var(--phr-contact-accent);color:var(--phr-contact-accent-text);border-color:var(--phr-contact-accent)}
.phr-contact-map-frame{position:relative;overflow:hidden;border-radius:22px;min-height:420px;background:#edf4fb;flex:1}
.phr-contact-map-frame iframe,.phr-contact-map-frame .phr-map-placeholder{position:absolute;inset:0;width:100%;height:100%;border:0}
.phr-map-placeholder{display:flex;align-items:center;justify-content:center;padding:24px;text-align:center;color:var(--phr-contact-desc);line-height:1.9}
@media (max-width:1024px){
  .phr-contact-info-grid{grid-template-columns:1fr}
  .phr-contact-main-grid{grid-template-columns:1fr}
}
@media (max-width:767px){
  .phr-contact-section{padding:70px 14px}
  .phr-section-heading.is-contact h2{font-size:34px}
  .phr-contact-fields{grid-template-columns:1fr}
  .phr-captcha-box{flex-direction:column;align-items:stretch}
}


/* Contact form refinement v19 */
.phr-contact-section,
.phr-contact-section *{font-family:'Almarai', 'Tajawal', Arial, sans-serif}
.phr-contact-mini-card,.phr-contact-form-card,.phr-contact-map-card{
  box-shadow:0 14px 40px rgba(13,47,87,.06);
}
.phr-contact-form-card{
  padding:32px;
  border-radius:calc(var(--phr-contact-radius) + 4px);
}
.phr-contact-form-head h3,.phr-contact-map-head h3,.phr-contact-mini-content strong,
.phr-field-wrap label,.phr-section-heading.is-contact h2{
  font-family:'Almarai','Tajawal',Arial,sans-serif;
}
.phr-field-wrap label{
  margin-bottom:10px;
  font-size:16px;
  letter-spacing:0;
}
.phr-input-shell{
  position:relative;
  display:flex;
  align-items:center;
}
.phr-input-shell .phr-field-icon{
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--phr-contact-accent);
  opacity:.72;
  font-size:15px;
  pointer-events:none;
}
.phr-input-shell.is-textarea .phr-field-icon{
  top:22px;
  transform:none;
}
.phr-contact-form input,.phr-contact-form select,.phr-contact-form textarea{
  border:1px solid rgba(13,61,103,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,250,253,.98));
  border-radius:20px;
  min-height:58px;
  padding:16px 18px 16px 52px;
  box-shadow:0 6px 22px rgba(13,61,103,.05);
  transition:border-color .22s ease, box-shadow .22s ease, transform .22s ease;
  font-size:15px;
}
.phr-contact-form textarea{
  min-height:180px;
  padding-top:18px;
}
.phr-contact-form select{
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
}
.phr-input-shell.is-select::after{
  content:'⌄';
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-52%);
  color:var(--phr-contact-title);
  font-size:18px;
  pointer-events:none;
}
.phr-contact-form input::placeholder,.phr-contact-form textarea::placeholder,.phr-contact-form select{color:#7f8da1}
.phr-contact-form input:focus,.phr-contact-form select:focus,.phr-contact-form textarea:focus{
  outline:none;
  border-color:rgba(13,61,103,.28);
  box-shadow:0 0 0 4px rgba(13,61,103,.08),0 12px 28px rgba(13,61,103,.08);
  transform:translateY(-1px);
}
.phr-captcha-box{
  gap:14px;
  align-items:flex-end;
}
.phr-captcha-question{
  min-height:58px;
  padding:0 20px;
  border-radius:18px;
  background:linear-gradient(135deg,rgba(13,61,103,.08),rgba(13,61,103,.14));
}
.phr-captcha-box .phr-input-shell{min-width:180px;flex:1}
.phr-contact-submit{
  min-height:58px;
  padding:0 28px;
  border-radius:18px;
  box-shadow:0 16px 32px rgba(13,61,103,.18);
}
@media (max-width:767px){
  .phr-contact-form-card{padding:22px}
  .phr-contact-form input,.phr-contact-form select,.phr-contact-form textarea{padding-right:16px;padding-left:48px}
}


/* Contact form refinement v20 - remove heavy black borders */
.phr-contact-form input,
.phr-contact-form select,
.phr-contact-form textarea,
.phr-captcha-box input{
  border: 1px solid rgba(13,61,103,.10) !important;
  outline: none !important;
  box-shadow: 0 8px 22px rgba(13,61,103,.04) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(249,251,254,.99)) !important;
}
.phr-contact-form input:hover,
.phr-contact-form select:hover,
.phr-contact-form textarea:hover,
.phr-captcha-box input:hover{
  border-color: rgba(13,61,103,.16) !important;
}
.phr-contact-form input:focus,
.phr-contact-form select:focus,
.phr-contact-form textarea:focus,
.phr-captcha-box input:focus{
  border-color: rgba(13,61,103,.24) !important;
  box-shadow: 0 0 0 4px rgba(13,61,103,.07), 0 12px 28px rgba(13,61,103,.06) !important;
}


/* Professional single article styling */
body.single-post{background:linear-gradient(180deg,#f5f8fc 0%,#eef3f8 100%)}
body.single-post .site,body.single-post .site-main,body.single-post .content-area,body.single-post .site-content{background:transparent}
body.single-post .site-main,body.single-post .content-area{max-width:1320px;margin:0 auto;padding:40px 18px 80px}
body.single-post article.post,body.single-post article.type-post,body.single-post .post.type-post,body.single-post .single-post article{background:rgba(255,255,255,.96);border:1px solid rgba(13,61,103,.08);border-radius:28px;box-shadow:0 18px 55px rgba(15,35,68,.08);padding:28px;overflow:hidden}
body.single-post .post-thumbnail,body.single-post .single-post-thumbnail,body.single-post .entry-media{margin:-28px -28px 24px;border-radius:28px 28px 0 0;overflow:hidden}
body.single-post .post-thumbnail img,body.single-post .single-post-thumbnail img,body.single-post .entry-media img{display:block;width:100%;height:auto;max-height:520px;object-fit:cover}
body.single-post .entry-header{margin-bottom:20px;padding-bottom:18px;border-bottom:1px solid rgba(13,61,103,.08)}
body.single-post .entry-title,body.single-post h1.entry-title{font-family:'Tajawal',Arial,sans-serif!important;font-size:clamp(32px,4vw,48px);line-height:1.25;color:#111111;margin:0 0 14px;font-weight:800}
body.single-post .entry-meta,body.single-post .posted-on,body.single-post .byline,body.single-post .cat-links,body.single-post .tags-links{display:flex;flex-wrap:wrap;gap:10px 12px;align-items:center;color:#6f7f90;font-size:14px}
body.single-post .entry-meta > *,body.single-post .posted-on a,body.single-post .byline a,body.single-post .cat-links a,body.single-post .tags-links a{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;background:#f5f8fc;border:1px solid rgba(13,61,103,.08);border-radius:999px;color:#5d7083;text-decoration:none}
body.single-post .entry-content{font-family:'Tajawal',Arial,sans-serif!important;color:#33485d;font-size:18px;line-height:2.05}
body.single-post .entry-content > *{margin-top:0;margin-bottom:1.2em}
body.single-post .entry-content h2,body.single-post .entry-content h3,body.single-post .entry-content h4{color:#111111;line-height:1.45;font-weight:800;margin-top:1.7em;margin-bottom:.8em}
body.single-post .entry-content h2{font-size:clamp(26px,3vw,36px)}
body.single-post .entry-content h3{font-size:clamp(22px,2.5vw,30px)}
body.single-post .entry-content p,body.single-post .entry-content li{font-size:18px}
body.single-post .entry-content ul,body.single-post .entry-content ol{padding-right:1.4rem}
body.single-post .entry-content li{margin-bottom:.7em}
body.single-post .entry-content a{color:#0d5ea8;text-decoration:none;font-weight:700;border-bottom:1px solid rgba(13,94,168,.2)}
body.single-post .entry-content blockquote{margin:26px 0;padding:24px 26px;border:none;border-right:5px solid #e07a14;background:linear-gradient(135deg,rgba(224,122,20,.08),rgba(13,61,103,.04));border-radius:22px;color:#193552;font-size:20px;box-shadow:0 12px 30px rgba(15,35,68,.05)}
body.single-post .entry-content img{border-radius:22px}
body.single-post .entry-content table{width:100%;overflow:hidden;border-collapse:separate;border-spacing:0;border:1px solid rgba(13,61,103,.08);border-radius:20px}
body.single-post .entry-content table th,body.single-post .entry-content table td{padding:14px 16px;border-bottom:1px solid rgba(13,61,103,.08)}
body.single-post .entry-content table tr:last-child td{border-bottom:none}
body.single-post .entry-footer{margin-top:24px;padding-top:18px;border-top:1px solid rgba(13,61,103,.08)}
body.single-post nav.post-navigation,body.single-post .navigation.post-navigation,body.single-post .comments-area,body.single-post .widget-area .widget,body.single-post aside.widget-area .widget{background:rgba(255,255,255,.96);border:1px solid rgba(13,61,103,.08);border-radius:24px;box-shadow:0 14px 34px rgba(15,35,68,.06);padding:24px;margin-top:0}
body.single-post .nav-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
body.single-post .nav-previous a,body.single-post .nav-next a{display:flex;min-height:100%;padding:18px 20px;border-radius:20px;background:#f5f8fc;color:#111111;text-decoration:none;font-weight:800;border:1px solid rgba(13,61,103,.08)}
body.single-post .comment-respond input[type='text'],body.single-post .comment-respond input[type='email'],body.single-post .comment-respond input[type='url'],body.single-post .comment-respond textarea,body.single-post .search-form input[type='search'],body.single-post .widget input[type='search']{width:100%;border-radius:16px;border:1px solid rgba(13,61,103,.12);background:#f9fbfe;padding:14px 16px;outline:none}
body.single-post .comment-respond input:focus,body.single-post .comment-respond textarea:focus,body.single-post .search-form input[type='search']:focus,body.single-post .widget input[type='search']:focus{border-color:rgba(224,122,20,.65);box-shadow:0 0 0 4px rgba(224,122,20,.12)}
body.single-post button,body.single-post input[type='submit'],body.single-post .wp-block-button__link{border:none;border-radius:999px;padding:13px 24px;background:linear-gradient(135deg,#e07a14,#f09a3f);color:#fff;font-weight:800;box-shadow:0 12px 26px rgba(224,122,20,.2)}
body.single-post .wp-block-group,body.single-post .wp-block-cover,body.single-post .wp-block-quote,body.single-post .wp-block-pullquote{border-radius:24px;overflow:hidden}
body.single-post .widget-title,body.single-post .comments-title{font-family:'Tajawal',Arial,sans-serif!important;font-size:24px;color:#111111;margin:0 0 18px;font-weight:800}
@media (max-width: 991px){body.single-post .site-main,body.single-post .content-area{padding:28px 14px 60px}body.single-post article.post,body.single-post article.type-post,body.single-post .post.type-post,body.single-post .single-post article{padding:20px;border-radius:22px}body.single-post .post-thumbnail,body.single-post .single-post-thumbnail,body.single-post .entry-media{margin:-20px -20px 20px;border-radius:22px 22px 0 0}body.single-post .nav-links{grid-template-columns:1fr}}


/* tighten single post boxes spacing */
body.single-post article.post + nav.post-navigation,body.single-post article.type-post + nav.post-navigation,body.single-post .post.type-post + nav.post-navigation,body.single-post .single-post article + nav.post-navigation,body.single-post article.post + .comments-area,body.single-post article.type-post + .comments-area,body.single-post .post.type-post + .comments-area,body.single-post .single-post article + .comments-area,body.single-post article.post + aside.widget-area,body.single-post article.type-post + aside.widget-area,body.single-post .post.type-post + aside.widget-area,body.single-post .single-post article + aside.widget-area{margin-top:0!important}body.single-post .comments-area + .widget-area,body.single-post nav.post-navigation + .comments-area,body.single-post nav.post-navigation + aside.widget-area{margin-top:12px!important}


/* Force Tajawal across the entire single article page */
body.single-post,
body.single-post *,
body.single-post article,
body.single-post article *,
body.single-post .entry-content,
body.single-post .entry-content *,
body.single-post .entry-header,
body.single-post .entry-header *,
body.single-post nav.post-navigation,
body.single-post nav.post-navigation *,
body.single-post .comments-area,
body.single-post .comments-area *,
body.single-post .widget,
body.single-post .widget *,
body.single-post aside,
body.single-post aside *,
body.single-post .sidebar,
body.single-post .sidebar *{
  font-family:'Tajawal', Arial, sans-serif !important;
}


/* Service single page: show full content directly inside page */
.phr-service-article-full{
  color:#23364e;
  font-size:18px;
  line-height:2.05;
}
.phr-service-article-full > *:first-child{margin-top:0;}
.phr-service-article-full > *:last-child{margin-bottom:0;}
.phr-service-article-full h1,
.phr-service-article-full h2,
.phr-service-article-full h3,
.phr-service-article-full h4,
.phr-service-article-full h5,
.phr-service-article-full h6{
  color:var(--phr-services-title);
  line-height:1.5;
  margin:0 0 14px;
}
.phr-service-article-full p,
.phr-service-article-full ul,
.phr-service-article-full ol,
.phr-service-article-full blockquote,
.phr-service-article-full table{
  margin:0 0 18px;
}
.phr-service-article-full ul,
.phr-service-article-full ol{
  padding-inline-start:22px;
}
.phr-service-article-full a{
  color:var(--phr-services-btn-bg);
  text-decoration:none;
  font-weight:700;
}
.phr-service-article-full a:hover{
  text-decoration:underline;
}
.phr-service-article-full img{
  max-width:100%;
  height:auto;
  border-radius:22px;
  display:block;
  margin:18px 0;
}
.phr-service-article-full blockquote{
  padding:18px 20px;
  border-radius:20px;
  background:#f8fbff;
  border-inline-start:4px solid var(--phr-services-btn-bg);
}
.phr-service-article-full table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:18px;
}
.phr-service-article-full table th,
.phr-service-article-full table td{
  border:1px solid rgba(13,61,103,.08);
  padding:12px 14px;
}
.phr-service-more-btn,
.phr-service-modal{display:none !important;}


/* Floating contact widget */
.phr-floating-contact{
  position:fixed;
  right:22px;
  bottom:26px;
  z-index:99999;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:14px;
  direction:rtl;
}
.phr-floating-contact.hide-mobile{}
.phr-floating-contact-toggle{
  width:62px;
  height:62px;
  padding:0;
  border:none;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.phr-floating-contact-toggle:hover{transform:translateY(-2px) scale(1.03);}
.phr-floating-contact-toggle-icon{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  line-height:1;
  position:absolute;
  inset:0;
  transform:translateY(-1px);
}
.phr-floating-contact-panel{
  display:none;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  min-width:250px;
}
.phr-floating-contact.is-open .phr-floating-contact-panel{display:flex;}
.phr-floating-contact.is-open .phr-floating-contact-toggle{transform:rotate(-8deg);}
.phr-floating-contact-item{
  width:100%;
  display:flex;
  flex-direction:row-reverse;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  padding:14px 18px;
  border-radius:var(--phr-float-radius,80px);
  background:color-mix(in srgb, var(--phr-float-box-bg,#fff) 88%, transparent);
  color:var(--phr-float-box-text,#111111);
  border:1px solid color-mix(in srgb, var(--phr-float-box-border,#dbe6f5) 88%, transparent);
  text-decoration:none;
  box-shadow:0 10px var(--phr-float-shadow,26px) rgba(13,61,103,.10);
  backdrop-filter:blur(var(--phr-float-blur,14px));
  -webkit-backdrop-filter:blur(var(--phr-float-blur,14px));
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  text-align:right;
}
.phr-floating-contact-item:hover{
  transform:translateY(-2px);
  box-shadow:0 18px calc(var(--phr-float-shadow,26px) + 4px) rgba(13,61,103,.16);
  border-color:color-mix(in srgb, var(--phr-float-box-border,#dbe6f5) 100%, #ffffff 0%);
}
.phr-floating-contact-item-icon{
  width:40px;
  height:40px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(13,61,103,.08);
  font-size:19px;
  flex:0 0 40px;
}
.phr-floating-contact-item-text{
  font-family:'Tajawal', sans-serif;
  font-size:16px;
  font-weight:700;
  line-height:1.4;
}
@media (max-width:767px){
  .phr-floating-contact{
    right:14px;
    bottom:16px;
  }
  .phr-floating-contact.hide-mobile{display:none !important;}
  .phr-floating-contact-panel{min-width:220px;}
}


.phr-floating-contact-toggle,
.phr-floating-contact-toggle:before,
.phr-floating-contact-toggle:after{
  box-sizing:border-box;
}
.phr-floating-contact-toggle span,
.phr-floating-contact-toggle i,
.phr-floating-contact-toggle svg{
  margin:0 !important;
}


.phr-floating-contact-item-icon{
  background:transparent !important;
  width:44px;
  height:44px;
  flex:0 0 44px;
  padding:0;
}
.phr-floating-contact-svg{
  display:block;
  width:44px;
  height:44px;
}
.phr-floating-contact-svg-wa{
  filter:drop-shadow(0 4px 10px rgba(37,211,102,.22));
}
.phr-floating-contact-svg-phone{
  filter:drop-shadow(0 4px 10px rgba(13,61,103,.22));
}


.phr-floating-contact-item.is-whatsapp .phr-floating-contact-item-icon{
  width:46px !important;
  height:46px !important;
  flex:0 0 46px !important;
}
.phr-floating-contact-item.is-whatsapp .phr-floating-contact-svg-wa{
  width:46px !important;
  height:46px !important;
  display:block;
  filter:drop-shadow(0 6px 14px rgba(37,211,102,.28));
}


/* Floating contact stable popup */
.phr-floating-contact{
  position:fixed;
  right:22px;
  bottom:26px;
  z-index:99999;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:14px;
  direction:rtl;
}
.phr-floating-contact-toggle,
.phr-floating-contact-toggle:hover,
.phr-floating-contact.is-open .phr-floating-contact-toggle{
  transform:none !important;
}
.phr-floating-contact.is-open .phr-floating-contact-toggle{
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}
.phr-floating-contact-panel{
  display:none;
  min-width:auto !important;
}
.phr-floating-contact.is-open .phr-floating-contact-panel{
  display:block;
}
.phr-floating-contact-popup{
  width:132px;
  min-height:70px;
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(246,250,255,.95) 100%);
  border:1px solid rgba(214,226,241,.95);
  box-shadow:0 18px 42px rgba(13,61,103,.16), 0 6px 18px rgba(13,61,103,.08);
  backdrop-filter:blur(var(--phr-float-blur,14px));
  -webkit-backdrop-filter:blur(var(--phr-float-blur,14px));
}
.phr-floating-contact-icon-btn{
  width:46px;
  height:46px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:linear-gradient(180deg, rgba(13,61,103,.06) 0%, rgba(13,61,103,.12) 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72), 0 8px 16px rgba(13,61,103,.10);
  transition:box-shadow .22s ease;
}
.phr-floating-contact-icon-btn.is-whatsapp{
  background:linear-gradient(180deg, rgba(37,211,102,.10) 0%, rgba(37,211,102,.18) 100%);
}
.phr-floating-contact-icon-btn:hover{
  transform:none !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72), 0 10px 20px rgba(13,61,103,.14);
}
.phr-floating-contact-icon-btn .phr-floating-contact-svg{
  width:28px !important;
  height:28px !important;
}
@media (max-width:767px){
  .phr-floating-contact{
    right:14px;
    bottom:16px;
  }
  .phr-floating-contact.hide-mobile{display:none !important;}
}

/* v5.7.2 - Professional desktop dropdown menu */
#phr-header .phr-nav .phr-menu > li,
#phr-header .phr-nav .menu > li { isolation: isolate; }
#phr-header .phr-nav .menu-item-has-children > a,
#phr-header .phr-nav .page_item_has_children > a { gap: 8px; padding-inline-end: 16px; }
#phr-header .phr-nav .menu-item-has-children > a::after,
#phr-header .phr-nav .page_item_has_children > a::after {
  content: ''; width: 7px; height: 7px; border-inline-end: 2px solid currentColor; border-block-end: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .72; transition: transform .24s ease, opacity .24s ease; flex: 0 0 auto;
}
#phr-header .phr-nav .menu-item-has-children:hover > a::after,
#phr-header .phr-nav .menu-item-has-children:focus-within > a::after,
#phr-header .phr-nav .page_item_has_children:hover > a::after,
#phr-header .phr-nav .page_item_has_children:focus-within > a::after { transform: rotate(225deg) translate(-2px, -1px); opacity: 1; }
#phr-header .phr-nav .sub-menu,
#phr-header .phr-nav .children {
  position: absolute; top: calc(100% + 14px); right: 0; z-index: 30; min-width: 238px; list-style: none; margin: 0; padding: 12px;
  direction: rtl; display: flex; flex-direction: column; gap: 6px; background: var(--phr-dropdown-bg); border: 1px solid rgba(13,47,87,.10);
  border-radius: 22px; box-shadow: 0 24px 60px rgba(10,31,58,.16), 0 8px 18px rgba(10,31,58,.08); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden; pointer-events: none; transform: translate3d(0,14px,0) scale(.96); transform-origin: top right;
  transition: opacity .22s ease, visibility .22s ease, transform .34s cubic-bezier(.16,1,.3,1);
}
#phr-header .phr-nav .sub-menu::before,
#phr-header .phr-nav .children::before {
  content: ''; position: absolute; top: -8px; right: 24px; width: 16px; height: 16px; background: var(--phr-dropdown-bg);
  border-inline-start: 1px solid rgba(13,47,87,.08); border-block-start: 1px solid rgba(13,47,87,.08); transform: rotate(45deg);
}
#phr-header .phr-nav .sub-menu::after,
#phr-header .phr-nav .children::after { content: ''; position: absolute; top: -18px; right: 0; width: 100%; height: 18px; }
#phr-header .phr-nav li:hover > .sub-menu,
#phr-header .phr-nav li:focus-within > .sub-menu,
#phr-header .phr-nav li:hover > .children,
#phr-header .phr-nav li:focus-within > .children { opacity: 1; visibility: visible; pointer-events: auto; transform: translate3d(0,0,0) scale(1); }
#phr-header .phr-nav .sub-menu li,
#phr-header .phr-nav .children li { width: 100%; position: relative; z-index: 1; }
#phr-header .phr-nav .sub-menu a,
#phr-header .phr-nav .children a {
  width: 100%; min-height: 44px; justify-content: flex-start; padding: 10px 14px; color: var(--phr-dropdown-text) !important; background: transparent;
  border-radius: 15px; font-size: 15px; line-height: 1.45; box-shadow: none; transform: none !important;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}
#phr-header .phr-nav .sub-menu li:hover > a,
#phr-header .phr-nav .sub-menu li:focus-within > a,
#phr-header .phr-nav .children li:hover > a,
#phr-header .phr-nav .children li:focus-within > a {
  background: linear-gradient(135deg, var(--phr-dropdown-hover-bg), color-mix(in srgb, var(--phr-dropdown-hover-bg) 72%, #ffffff 28%)); color: var(--phr-dropdown-hover-text) !important;
  box-shadow: 0 10px 24px rgba(13,61,103,.12); transform: translateX(-3px) !important;
}
#phr-header .phr-nav .sub-menu .current-menu-item > a,
#phr-header .phr-nav .sub-menu .current_page_item > a,
#phr-header .phr-nav .children .current-menu-item > a,
#phr-header .phr-nav .children .current_page_item > a { background: var(--phr-dropdown-hover-bg); color: var(--phr-dropdown-hover-text) !important; }
#phr-header .phr-nav .sub-menu .sub-menu,
#phr-header .phr-nav .children .children { top: -10px; right: calc(100% + 12px); transform-origin: top right; }
#phr-header .phr-nav .sub-menu .sub-menu::before,
#phr-header .phr-nav .children .children::before { top: 22px; right: auto; left: -8px; }
@media (max-width: 1080px) {
  #phr-header .phr-nav .sub-menu, #phr-header .phr-nav .children { display: none; }
  .phr-mobile-panel .sub-menu, .phr-mobile-panel .children, .phr-mobile-menu .sub-menu, .phr-mobile-menu .children {
    list-style: none; margin: 8px 14px 0 0; padding: 8px; display: flex; flex-direction: column; gap: 8px; background: rgba(13,61,103,.05);
    border: 1px solid rgba(13,61,103,.08); border-radius: 18px;
  }
  .phr-mobile-panel .sub-menu a, .phr-mobile-panel .children a, .phr-mobile-menu .sub-menu a, .phr-mobile-menu .children a {
    min-height: 44px; font-size: 15px; background: rgba(255,255,255,.72); border-radius: 14px;
  }
  body.phr-dark-mode .phr-mobile-panel .sub-menu, body.phr-dark-mode .phr-mobile-panel .children, body.phr-dark-mode .phr-mobile-menu .sub-menu, body.phr-dark-mode .phr-mobile-menu .children { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
}

/* v5.9.1 - Keep top-level menu text white on active/hover/focus states */
#phr-header .phr-nav > .phr-menu > li:hover > a,
#phr-header .phr-nav > .phr-menu > li:focus-within > a,
#phr-header .phr-nav > .phr-menu > li.current-menu-item > a,
#phr-header .phr-nav > .phr-menu > li.current_page_item > a,
#phr-header .phr-nav > .phr-menu > li.current-menu-ancestor > a,
#phr-header .phr-nav > .phr-menu > li.current_page_ancestor > a,
#phr-header .phr-nav > .phr-menu > li.current_page_parent > a,
#phr-header .phr-nav > .phr-menu > li.current-menu-parent > a,
#phr-header .phr-nav > .menu > li:hover > a,
#phr-header .phr-nav > .menu > li:focus-within > a,
#phr-header .phr-nav > .menu > li.current-menu-item > a,
#phr-header .phr-nav > .menu > li.current_page_item > a,
#phr-header .phr-nav > .menu > li.current-menu-ancestor > a,
#phr-header .phr-nav > .menu > li.current_page_ancestor > a,
#phr-header .phr-nav > .menu > li.current_page_parent > a,
#phr-header .phr-nav > .menu > li.current-menu-parent > a {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

#phr-header .phr-nav > .phr-menu > li:hover > a *,
#phr-header .phr-nav > .phr-menu > li:focus-within > a *,
#phr-header .phr-nav > .phr-menu > li.current-menu-item > a *,
#phr-header .phr-nav > .phr-menu > li.current_page_item > a *,
#phr-header .phr-nav > .phr-menu > li.current-menu-ancestor > a *,
#phr-header .phr-nav > .phr-menu > li.current_page_ancestor > a *,
#phr-header .phr-nav > .phr-menu > li.current_page_parent > a *,
#phr-header .phr-nav > .phr-menu > li.current-menu-parent > a *,
#phr-header .phr-nav > .menu > li:hover > a *,
#phr-header .phr-nav > .menu > li:focus-within > a *,
#phr-header .phr-nav > .menu > li.current-menu-item > a *,
#phr-header .phr-nav > .menu > li.current_page_item > a *,
#phr-header .phr-nav > .menu > li.current-menu-ancestor > a *,
#phr-header .phr-nav > .menu > li.current_page_ancestor > a *,
#phr-header .phr-nav > .menu > li.current_page_parent > a *,
#phr-header .phr-nav > .menu > li.current-menu-parent > a * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}



/* ===== Tahat Al-Hizam frontend identity v6.0 ===== */
#phr-header .phr-brand-wordmark{display:inline-flex;flex-direction:column;align-items:flex-end;justify-content:center;line-height:1;gap:2px;white-space:nowrap;direction:rtl}
#phr-header .phr-brand-wordmark small{font-size:11px;font-weight:800;letter-spacing:.5px;color:#d5001c;line-height:1}
#phr-header .phr-brand-wordmark>span{display:inline-flex;gap:5px;align-items:baseline;font-size:24px;font-weight:900;line-height:1.08}
#phr-header .phr-brand-wordmark b{font-weight:900}
#phr-header .phr-brand-red{color:#d5001c !important}
#phr-header .phr-brand-black{color:#111 !important}
#phr-header.phr-is-transparent:not(.is-sticky-shadow) .phr-brand-black,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-brand-black{color:#fff !important}
#phr-header.phr-is-transparent:not(.is-sticky-shadow) .phr-brand-wordmark small,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-brand-wordmark small{color:#ff304b !important}
#phr-header .phr-cta{background:linear-gradient(135deg,#d5001c,#b00018) !important;box-shadow:0 10px 24px rgba(213,0,28,.20)}
#phr-header .phr-cta:hover{filter:brightness(.96);transform:translateY(-1px)}
.phr-inner-hero::before{background:linear-gradient(135deg,rgba(5,5,6,.82),rgba(213,0,28,.28)) !important}
@media(max-width:760px){#phr-header .phr-brand-wordmark>span{font-size:19px}#phr-header .phr-brand-wordmark small{font-size:9px}}

/* v9.19.0 — Light Video Library & Tech Show with animated backgrounds */
.phr-video-hub{position:relative;overflow:hidden;isolation:isolate;background:var(--pv-bg);padding:var(--pv-pad-top) 20px var(--pv-pad-bottom);font-family:'Tajawal',Arial,sans-serif;direction:rtl}
.phr-video-hub.has-motion-bg:before,.phr-video-hub.has-motion-bg:after{content:"";position:absolute;pointer-events:none;z-index:0;will-change:transform,opacity}
.phr-video-hub.has-motion-bg.motion-aurora:before{width:min(58vw,780px);height:min(58vw,780px);right:-18%;top:-38%;border-radius:48% 52% 62% 38%;background:radial-gradient(circle at 35% 35%,color-mix(in srgb,var(--pv-accent) var(--pv-motion-intensity),transparent),transparent 67%);filter:blur(18px);opacity:.18;animation:phrVideoAurora var(--pv-motion-speed) ease-in-out infinite alternate}
.phr-video-hub.has-motion-bg.motion-aurora:after{width:min(46vw,620px);height:min(46vw,620px);left:-14%;bottom:-38%;border-radius:61% 39% 46% 54%;background:radial-gradient(circle at 55% 45%,color-mix(in srgb,#7eb7ff 12%,transparent),transparent 69%);filter:blur(20px);opacity:.16;animation:phrVideoAurora var(--pv-motion-speed) ease-in-out infinite alternate-reverse}
.phr-video-hub.has-motion-bg.motion-mesh:before{inset:-35%;background:radial-gradient(circle at 20% 28%,color-mix(in srgb,var(--pv-accent) 13%,transparent),transparent 20%),radial-gradient(circle at 78% 22%,rgba(126,183,255,.16),transparent 20%),radial-gradient(circle at 68% 78%,rgba(255,198,214,.23),transparent 22%),radial-gradient(circle at 25% 76%,rgba(255,232,190,.24),transparent 21%);background-size:72% 72%;filter:blur(10px);animation:phrVideoMesh var(--pv-motion-speed) linear infinite}
.phr-video-hub.has-motion-bg.motion-mesh:after{inset:0;background-image:linear-gradient(rgba(227,6,46,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(227,6,46,.03) 1px,transparent 1px);background-size:48px 48px;mask-image:linear-gradient(to bottom,transparent,black 25%,black 75%,transparent);opacity:.55}
.phr-video-hub.has-motion-bg.motion-orbs:before{width:330px;height:330px;right:5%;top:7%;border-radius:50%;background:radial-gradient(circle at 35% 30%,rgba(255,255,255,.9),color-mix(in srgb,var(--pv-accent) 14%,#fff) 42%,transparent 70%);box-shadow:0 0 80px rgba(227,6,46,.10);animation:phrVideoOrbs var(--pv-motion-speed) ease-in-out infinite alternate}
.phr-video-hub.has-motion-bg.motion-orbs:after{width:230px;height:230px;left:8%;bottom:6%;border-radius:50%;background:radial-gradient(circle at 40% 35%,#fff,rgba(126,183,255,.16) 48%,transparent 72%);animation:phrVideoOrbs var(--pv-motion-speed) ease-in-out infinite alternate-reverse}
@keyframes phrVideoAurora{0%{transform:translate3d(0,0,0) rotate(0deg) scale(.95)}50%{transform:translate3d(-7%,8%,0) rotate(14deg) scale(1.08)}100%{transform:translate3d(6%,-3%,0) rotate(-8deg) scale(1.02)}}
@keyframes phrVideoMesh{0%{transform:translate3d(-3%,-2%,0) rotate(0deg)}50%{transform:translate3d(4%,3%,0) rotate(5deg)}100%{transform:translate3d(-2%,4%,0) rotate(-4deg)}}
@keyframes phrVideoOrbs{0%{transform:translate3d(0,0,0) scale(.92)}100%{transform:translate3d(-28px,24px,0) scale(1.08)}}
.phr-video-hub-shell{position:relative;z-index:2;width:100%;max-width:var(--pv-inner);margin:0 auto}
.phr-video-hub-head{text-align:right;max-width:780px;margin-bottom:34px}.phr-video-hub-kicker{display:inline-flex;align-items:center;gap:8px;margin-bottom:10px;padding:7px 11px;border-radius:999px;background:color-mix(in srgb,var(--pv-accent) 7%,#fff);border:1px solid color-mix(in srgb,var(--pv-accent) 13%,transparent);color:var(--pv-accent);font-size:11px;font-weight:900;letter-spacing:.8px}.phr-video-hub-kicker:before{content:"";width:7px;height:7px;border-radius:50%;background:var(--pv-accent);box-shadow:0 0 0 5px color-mix(in srgb,var(--pv-accent) 10%,transparent)}.phr-video-hub-head h2{margin:0 0 10px;color:var(--pv-title);font-size:clamp(31px,4vw,48px);font-weight:900;line-height:1.22;letter-spacing:-.6px}.phr-video-hub-head p{margin:0;color:var(--pv-desc);font-size:16px;line-height:1.9;max-width:68ch}
.phr-video-hub-list{gap:var(--pv-gap)}.phr-video-hub.is-grid .phr-video-hub-list{display:grid;grid-template-columns:repeat(var(--pv-cols-d),minmax(0,1fr));align-items:start}.phr-video-hub.is-rail .phr-video-hub-list{display:flex;align-items:flex-start;overflow-x:auto;scroll-snap-type:x mandatory;padding:4px 2px 18px;overscroll-behavior-inline:contain}.phr-video-hub.is-rail .phr-video-hub-list::-webkit-scrollbar{height:7px}.phr-video-hub.is-rail .phr-video-hub-list::-webkit-scrollbar-thumb{background:color-mix(in srgb,var(--pv-accent) 38%,#e9e9ed);border-radius:99px}
.phr-video-card{position:relative;width:100%;max-width:var(--pv-normal);justify-self:center;background:color-mix(in srgb,var(--pv-card) 94%,transparent);padding:var(--pv-card-pad);border-radius:var(--pv-card-radius);box-shadow:0 18px 48px rgba(49,37,43,.075);border:1px solid rgba(58,42,49,.075);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;overflow:hidden;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}.phr-video-card.is-short{max-width:var(--pv-short)}.phr-video-hub.is-rail .phr-video-card{flex:0 0 min(var(--pv-normal),84vw);scroll-snap-align:start}.phr-video-hub.is-rail .phr-video-card.is-short{flex-basis:min(var(--pv-short),72vw)}.phr-video-card:hover{transform:translateY(-6px);box-shadow:0 26px 65px rgba(49,37,43,.12);border-color:color-mix(in srgb,var(--pv-accent) 20%,transparent)}
.phr-video-card-media{position:relative;display:block;width:100%;padding:0;border:0;overflow:hidden;border-radius:var(--pv-media-radius);background:#f5eef1;cursor:pointer;aspect-ratio:16/9}.phr-video-card.is-short .phr-video-card-media{aspect-ratio:9/16}.phr-video-card-media img,.phr-video-card-fallback{position:absolute;inset:0;width:100%;height:100%;display:block;object-fit:cover}.phr-video-card-fallback{background:radial-gradient(circle at 25% 18%,color-mix(in srgb,var(--pv-accent) 15%,#fff),transparent 36%),linear-gradient(135deg,#fff9fb,#f1f5fb)}.phr-video-card-media:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.02) 45%,rgba(32,22,26,.28) 100%)}
.phr-video-play{position:absolute;z-index:3;inset:0;display:flex;align-items:center;justify-content:center}.phr-video-play>span{display:flex;align-items:center;justify-content:center;width:62px;height:62px;padding-right:4px;border-radius:50%;background:rgba(255,255,255,.94);color:var(--pv-accent);border:1px solid rgba(255,255,255,.85);box-shadow:0 14px 35px rgba(32,22,26,.14);font-size:19px;transition:transform .22s ease,background .22s ease,color .22s ease}.phr-video-card-media:hover .phr-video-play>span{transform:scale(1.08);background:var(--pv-accent);color:#fff}
.phr-video-type-chip,.phr-video-badge{position:absolute;z-index:4;top:12px;padding:7px 10px;border-radius:999px;font-size:9px;font-weight:900;letter-spacing:.55px}.phr-video-type-chip{right:12px;background:rgba(255,255,255,.88);color:#30252a;box-shadow:0 5px 16px rgba(25,14,19,.08);backdrop-filter:blur(10px)}.phr-video-badge{left:12px;background:var(--pv-accent);color:#fff}.phr-video-card-copy{padding:16px 7px 6px;text-align:right}.phr-video-card-copy h3{margin:0 0 7px;color:var(--pv-title);font-size:19px;font-weight:900;line-height:1.45}.phr-video-card-copy p{margin:0;color:var(--pv-muted);font-size:13px;line-height:1.8}
.phr-video-modal{position:fixed;z-index:999999;inset:0;display:none;align-items:center;justify-content:center;padding:22px}.phr-video-modal.is-open{display:flex}.phr-video-modal-backdrop{position:absolute;inset:0;border:0;background:rgba(21,14,18,.78);backdrop-filter:blur(12px);cursor:pointer}.phr-video-modal-dialog{position:relative;z-index:2;width:min(1100px,94vw);max-height:92vh;padding:12px;border:1px solid rgba(255,255,255,.12);border-radius:26px;background:#151015;box-shadow:0 30px 100px rgba(0,0,0,.38)}.phr-video-modal-close{position:absolute;z-index:5;top:-16px;left:-16px;width:44px;height:44px;border:1px solid rgba(255,255,255,.16);border-radius:50%;background:var(--pv-accent);color:#fff;font-size:26px;line-height:1;cursor:pointer;box-shadow:0 10px 24px rgba(0,0,0,.24)}.phr-video-modal-stage{position:relative;overflow:hidden;border-radius:18px;background:#000;aspect-ratio:16/9}.phr-video-modal-stage iframe,.phr-video-modal-stage video{position:absolute;inset:0;width:100%;height:100%;border:0;background:#000}
body.phr-video-modal-open{overflow:hidden}
@media(max-width:991px){.phr-video-hub.is-grid .phr-video-hub-list{grid-template-columns:repeat(var(--pv-cols-t),minmax(0,1fr))}.phr-video-hub-head{margin-bottom:26px}}
@media(max-width:640px){.phr-video-hub{padding-left:14px;padding-right:14px}.phr-video-hub.is-grid .phr-video-hub-list{grid-template-columns:repeat(var(--pv-cols-m),minmax(0,1fr))}.phr-video-card,.phr-video-card.is-short{max-width:min(100%,var(--pv-normal))}.phr-video-card.is-short{max-width:min(82vw,var(--pv-short))}.phr-video-hub-head h2{font-size:30px}.phr-video-hub-head p{font-size:15px}.phr-video-modal{padding:12px}.phr-video-modal-dialog{width:100%;padding:8px;border-radius:18px}.phr-video-modal-close{top:8px;left:8px;width:38px;height:38px;font-size:22px}}
.phr-video-modal-stage.is-short{aspect-ratio:9/16;width:min(460px,86vw);max-height:82vh;margin:0 auto}

/* v9.16.0 - Elementor editor empty state for video widgets */
.phr-video-empty-state{
  grid-column:1/-1;
  width:100%;
  min-height:180px;
  padding:34px 26px;
  border:1px dashed color-mix(in srgb,var(--pv-accent) 35%,transparent);
  border-radius:var(--pv-card-radius);
  background:color-mix(in srgb,var(--pv-card) 86%,transparent);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:8px;
}
.phr-video-empty-state strong{color:var(--pv-title);font-size:19px;font-weight:900}
.phr-video-empty-state span{max-width:520px;color:var(--pv-desc);font-size:14px;line-height:1.8}


/* v9.17.0 — skippable mid-roll video ads */
.phr-video-ad-layer{position:absolute;z-index:4;inset:12px;display:none;flex-direction:column;overflow:hidden;border-radius:18px;background:#050204;color:#fff;box-shadow:0 18px 60px rgba(0,0,0,.42)}
.phr-video-ad-layer.is-active{display:flex}
.phr-video-ad-topline{position:absolute;z-index:5;top:14px;right:14px;left:14px;display:flex;align-items:center;gap:10px;pointer-events:none}
.phr-video-ad-badge{display:inline-flex;align-items:center;justify-content:center;padding:7px 12px;border-radius:999px;background:var(--pv-accent);color:#fff;font-size:11px;font-weight:900;box-shadow:0 8px 20px color-mix(in srgb,var(--pv-accent) 38%,transparent)}
.phr-video-ad-topline strong{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:13px;font-weight:800;text-shadow:0 2px 12px rgba(0,0,0,.65)}
.phr-video-ad-stage{position:absolute;inset:0;background:#000;display:flex;align-items:center;justify-content:center}
.phr-video-ad-stage iframe,.phr-video-ad-stage video,.phr-video-ad-stage>div{width:100%!important;height:100%!important;border:0;background:#000;object-fit:contain}
.phr-video-ad-actions{position:absolute;z-index:6;right:14px;left:14px;bottom:14px;display:flex;align-items:center;justify-content:space-between;gap:10px;pointer-events:none}
.phr-video-ad-skip,.phr-video-ad-cta{pointer-events:auto;min-height:42px;border-radius:13px;padding:0 16px;display:inline-flex;align-items:center;justify-content:center;gap:4px;font-family:inherit;font-weight:900;text-decoration:none;transition:.2s ease}
.phr-video-ad-skip{margin-right:auto;border:1px solid rgba(255,255,255,.26);background:rgba(12,8,9,.76);color:#fff;backdrop-filter:blur(12px);cursor:pointer}.phr-video-ad-skip:not(:disabled):hover{background:#fff;color:#111;transform:translateY(-1px)}.phr-video-ad-skip:disabled{opacity:.7;cursor:not-allowed}
.phr-video-ad-cta{background:var(--pv-accent);color:#fff;box-shadow:0 10px 26px color-mix(in srgb,var(--pv-accent) 35%,transparent)}.phr-video-ad-cta:hover{color:#fff;filter:brightness(1.05);transform:translateY(-1px)}
@media(max-width:640px){.phr-video-ad-layer{inset:8px;border-radius:14px}.phr-video-ad-topline{top:10px;right:10px;left:10px}.phr-video-ad-actions{right:10px;left:10px;bottom:10px}.phr-video-ad-skip,.phr-video-ad-cta{min-height:38px;padding:0 12px;font-size:12px}.phr-video-ad-topline strong{font-size:11px}}

/* v9.19.0 — premium light mixed-media slider */
.phr-media-slider{--pms-inner:1380px;--pms-h-d:620px;--pms-h-t:560px;--pms-h-m:660px;--pms-radius:34px;--pms-content:520px;--pms-section-bg:#fff9fb;--pms-card-bg:#fff;--pms-overlay:#fff;--pms-title:#241d1f;--pms-desc:#756c71;--pms-accent:#e3062e;--pms-btn-bg:#e3062e;--pms-btn-text:#fff;--pms-motion-color:#e3062e;--pms-motion-opacity:22%;--pms-motion-size:72px;position:relative;width:100%;padding:56px 18px;background:var(--pms-section-bg);direction:rtl;isolation:isolate;overflow:hidden}
.phr-media-slider.has-motion-bg:before,.phr-media-slider.has-motion-bg:after{content:"";position:absolute;pointer-events:none;z-index:0;will-change:transform}
.phr-media-slider.has-motion-bg.motion-aurora:before{width:min(60vw,880px);height:min(60vw,880px);right:-24%;top:-52%;border-radius:46% 54% 62% 38%;background:radial-gradient(circle at 38% 42%,color-mix(in srgb,var(--pms-accent) var(--pms-motion-intensity),transparent),transparent 66%);filter:blur(22px);opacity:.16;animation:phrSliderAurora var(--pms-motion-speed) ease-in-out infinite alternate}
.phr-media-slider.has-motion-bg.motion-aurora:after{width:min(48vw,680px);height:min(48vw,680px);left:-16%;bottom:-48%;border-radius:62% 38% 44% 56%;background:radial-gradient(circle at 45% 45%,rgba(126,183,255,.20),transparent 66%);filter:blur(22px);opacity:.55;animation:phrSliderAurora var(--pms-motion-speed) ease-in-out infinite alternate-reverse}
.phr-media-slider.has-motion-bg.motion-mesh:before{inset:-30%;background:radial-gradient(circle at 20% 26%,color-mix(in srgb,var(--pms-accent) 12%,transparent),transparent 18%),radial-gradient(circle at 82% 24%,rgba(126,183,255,.16),transparent 20%),radial-gradient(circle at 70% 78%,rgba(255,198,214,.20),transparent 22%),radial-gradient(circle at 24% 78%,rgba(255,231,184,.20),transparent 20%);background-size:68% 68%;filter:blur(12px);animation:phrSliderMesh var(--pms-motion-speed) linear infinite}
.phr-media-slider.has-motion-bg.motion-mesh:after{inset:0;background-image:linear-gradient(rgba(227,6,46,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(227,6,46,.025) 1px,transparent 1px);background-size:52px 52px;mask-image:linear-gradient(to bottom,transparent,black 18%,black 82%,transparent);opacity:.8}
.phr-media-slider.has-motion-bg.motion-orbs:before{width:360px;height:360px;right:7%;top:5%;border-radius:50%;background:radial-gradient(circle at 36% 32%,#fff,color-mix(in srgb,var(--pms-accent) 13%,#fff) 45%,transparent 72%);animation:phrSliderOrbs var(--pms-motion-speed) ease-in-out infinite alternate}
.phr-media-slider.has-motion-bg.motion-orbs:after{width:250px;height:250px;left:8%;bottom:7%;border-radius:50%;background:radial-gradient(circle at 35% 35%,#fff,rgba(126,183,255,.17) 48%,transparent 72%);animation:phrSliderOrbs var(--pms-motion-speed) ease-in-out infinite alternate-reverse}
@keyframes phrSliderAurora{0%{transform:translate3d(0,0,0) rotate(0) scale(.94)}50%{transform:translate3d(-6%,8%,0) rotate(13deg) scale(1.08)}100%{transform:translate3d(6%,-3%,0) rotate(-8deg) scale(1.02)}}
@keyframes phrSliderMesh{0%{transform:translate3d(-3%,-2%,0) rotate(0)}50%{transform:translate3d(4%,3%,0) rotate(5deg)}100%{transform:translate3d(-2%,4%,0) rotate(-4deg)}}
@keyframes phrSliderOrbs{0%{transform:translate3d(0,0,0) scale(.92)}100%{transform:translate3d(-34px,26px,0) scale(1.08)}}
/* v9.19.3 — premium geometric slider backgrounds */
.phr-media-slider.has-motion-bg.motion-hexagons:before{inset:-22%;opacity:.82;background-color:transparent;background-image:linear-gradient(30deg,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 12%,transparent 12.5%,transparent 87%,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 87.5%,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent)),linear-gradient(150deg,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 12%,transparent 12.5%,transparent 87%,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 87.5%,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent)),linear-gradient(60deg,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 25%,transparent 25.5%,transparent 75%,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 75%,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent));background-size:var(--pms-motion-size) var(--pms-motion-size);background-position:0 0,0 0,50% 50%;mask-image:radial-gradient(ellipse at center,#000 25%,rgba(0,0,0,.76) 58%,transparent 88%);animation:phrSliderHexFlow var(--pms-motion-speed) linear infinite}
.phr-media-slider.has-motion-bg.motion-hexagons:after{width:min(46vw,620px);height:min(46vw,620px);right:-8%;bottom:-42%;border-radius:50%;background:radial-gradient(circle,color-mix(in srgb,var(--pms-motion-color) 12%,#fff),transparent 68%);filter:blur(18px);opacity:.72;animation:phrSliderGeoGlow var(--pms-motion-speed) ease-in-out infinite alternate}
.phr-media-slider.has-motion-bg.motion-circles:before{inset:-18%;opacity:.82;background-image:radial-gradient(circle,transparent 0 31%,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 32% 34%,transparent 35% 100%),radial-gradient(circle,transparent 0 19%,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 20% 22%,transparent 23% 100%);background-size:var(--pms-motion-size) var(--pms-motion-size),140px 140px;background-position:0 0,52px 38px;mask-image:linear-gradient(to bottom right,transparent 0,#000 20%,#000 80%,transparent 100%);animation:phrSliderCircleDrift var(--pms-motion-speed) ease-in-out infinite alternate}
.phr-media-slider.has-motion-bg.motion-circles:after{width:min(34vw,480px);height:min(34vw,480px);left:7%;top:8%;border:1px solid color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent);border-radius:50%;box-shadow:0 0 0 42px color-mix(in srgb,var(--pms-motion-color) 5%,transparent),0 0 0 84px color-mix(in srgb,var(--pms-motion-color) 3%,transparent);opacity:.74;animation:phrSliderCirclePulse var(--pms-motion-speed) ease-in-out infinite alternate}
@keyframes phrSliderHexFlow{0%{background-position:0 0,0 0,50% 50%;transform:translate3d(-1.5%,0,0) rotate(-.3deg)}50%{transform:translate3d(1.5%,-1%,0) rotate(.25deg)}100%{background-position:var(--pms-motion-size) var(--pms-motion-size),var(--pms-motion-size) var(--pms-motion-size),calc(50% + 32px) calc(50% + 32px);transform:translate3d(-.5%,1%,0) rotate(-.15deg)}}
@keyframes phrSliderGeoGlow{0%{transform:translate3d(-4%,2%,0) scale(.92)}100%{transform:translate3d(7%,-5%,0) scale(1.08)}}
@keyframes phrSliderCircleDrift{0%{background-position:0 0,52px 38px;transform:translate3d(-2%,1%,0) scale(.96) rotate(-2deg)}100%{background-position:var(--pms-motion-size) var(--pms-motion-size),112px 94px;transform:translate3d(3%,-2%,0) scale(1.05) rotate(3deg)}}
@keyframes phrSliderCirclePulse{0%{transform:translate3d(-5%,2%,0) scale(.88);opacity:.46}100%{transform:translate3d(5%,-3%,0) scale(1.12);opacity:.82}}
.phr-media-slider.has-motion-bg.motion-hexagons .phr-media-slider-viewport:before,.phr-media-slider.has-motion-bg.motion-circles .phr-media-slider-viewport:before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;opacity:.34;mask-image:linear-gradient(90deg,transparent 0,rgba(0,0,0,.22) 38%,#000 100%)}
.phr-media-slider.has-motion-bg.motion-hexagons .phr-media-slider-viewport:before{background-image:linear-gradient(30deg,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 12%,transparent 12.5%,transparent 87%,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 87.5%),linear-gradient(150deg,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 12%,transparent 12.5%,transparent 87%,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 87.5%),linear-gradient(60deg,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 25%,transparent 25.5%,transparent 75%,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 75%);background-size:var(--pms-motion-size) var(--pms-motion-size);animation:phrSliderViewportHex var(--pms-motion-speed) linear infinite}
.phr-media-slider.has-motion-bg.motion-circles .phr-media-slider-viewport:before{background-image:radial-gradient(circle at 78% 28%,transparent 0 54px,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 55px 57px,transparent 58px 88px,color-mix(in srgb,var(--pms-motion-color) 8%,transparent) 89px 91px,transparent 92px),radial-gradient(circle at 58% 72%,transparent 0 34px,color-mix(in srgb,var(--pms-motion-color) var(--pms-motion-opacity),transparent) 35px 37px,transparent 38px 68px,color-mix(in srgb,var(--pms-motion-color) 7%,transparent) 69px 71px,transparent 72px);animation:phrSliderViewportCircle var(--pms-motion-speed) ease-in-out infinite alternate}
@keyframes phrSliderViewportHex{0%{background-position:0 0}100%{background-position:var(--pms-motion-size) var(--pms-motion-size)}}
@keyframes phrSliderViewportCircle{0%{transform:translate3d(-1.5%,1%,0) scale(.97)}100%{transform:translate3d(2%,-1.5%,0) scale(1.04)}}
.phr-media-slider-shell{position:relative;z-index:2;width:100%;max-width:var(--pms-inner);margin:0 auto}.phr-media-slider.is-wide .phr-media-slider-shell{max-width:min(1560px,calc(100vw - 36px))}
.phr-media-slider-viewport{position:relative;height:var(--pms-h-d);overflow:hidden;background:color-mix(in srgb,var(--pms-card-bg) 96%,transparent);border:1px solid rgba(58,42,49,.075);border-radius:var(--pms-radius);box-shadow:0 26px 70px rgba(51,36,43,.105),0 1px 0 rgba(255,255,255,.9) inset;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
.phr-media-slider-track,.phr-media-slide{position:absolute;inset:0}.phr-media-slide{opacity:0;visibility:hidden;pointer-events:none;transform:translate3d(0,18px,0) scale(.995);transition:opacity .58s cubic-bezier(.22,.61,.36,1),transform .7s cubic-bezier(.22,.61,.36,1),visibility .58s;overflow:hidden}.phr-media-slider.transition-slide .phr-media-slide{transform:translate3d(-22px,0,0) scale(.992)}.phr-media-slider.transition-slide .phr-media-slide.from-prev{transform:translate3d(22px,0,0) scale(.992)}.phr-media-slide.is-active{opacity:1;visibility:visible;pointer-events:auto;transform:translate3d(0,0,0) scale(1);z-index:2}
.phr-media-slide-bg{position:absolute;z-index:1;top:28px;bottom:28px;left:28px;width:55%;overflow:hidden;border-radius:calc(var(--pms-radius) - 9px);background:#f2edf0;box-shadow:0 20px 48px rgba(36,23,29,.12)}
.phr-media-slide-bg>picture,.phr-media-slide-bg>picture>img,.phr-media-slide-bg>img,.phr-media-slide-bg>video,.phr-media-slide-bg>iframe{position:absolute;inset:0;width:100%;height:100%}.phr-media-slide-bg>picture>img,.phr-media-slide-bg>img,.phr-media-slide-bg>video{object-fit:cover;object-position:center;transform:scale(1.02);transition:transform 8s ease}.phr-media-slide.is-active .phr-media-slide-bg>picture>img,.phr-media-slide.is-active .phr-media-slide-bg>img,.phr-media-slide.is-active .phr-media-slide-bg>video{transform:scale(1.075)}
.phr-media-slide-bg>iframe{z-index:2;border:0;background:#f2edf0;opacity:0;transition:opacity .4s ease}.phr-media-slide-bg>iframe.is-loaded{opacity:1}.phr-media-video-poster{z-index:1;transition:opacity .35s ease}.phr-media-slide-bg>iframe.is-loaded~.phr-media-video-poster{opacity:0}
.phr-media-slide-overlay{position:absolute;inset:0;z-index:3;background:linear-gradient(90deg,var(--pms-overlay),transparent 52%,var(--pms-overlay));opacity:var(--pms-slide-overlay-opacity,.16);pointer-events:none}.phr-media-slide-kind{position:absolute;z-index:5;top:16px;left:16px;display:inline-flex;align-items:center;justify-content:center;min-width:64px;height:31px;padding:0 11px;border-radius:999px;background:rgba(255,255,255,.91);color:#30252a;box-shadow:0 7px 20px rgba(24,13,18,.1);backdrop-filter:blur(10px);font-size:10px;font-weight:900;letter-spacing:.8px}
.phr-media-slide-inner{position:relative;z-index:5;width:100%;height:100%;padding:54px 48px;display:flex;align-items:center;justify-content:flex-start}.phr-media-slide-copy{width:min(40%,var(--pms-content));color:var(--pms-title);transform:translateX(22px);opacity:0;transition:transform .68s .12s cubic-bezier(.22,.61,.36,1),opacity .62s .12s ease}.phr-media-slide.is-active .phr-media-slide-copy{transform:translateX(0);opacity:1}
.phr-media-slide.align-left .phr-media-slide-copy{text-align:left;direction:ltr}.phr-media-slide.align-center .phr-media-slide-copy{text-align:center}.phr-media-slide.align-right .phr-media-slide-copy{text-align:right;direction:rtl}
.phr-media-slide-number{display:inline-flex;align-items:center;margin-bottom:14px;color:color-mix(in srgb,var(--pms-accent) 72%,#5e5660);font-size:12px;font-weight:900;letter-spacing:2px}.phr-media-slide-number:after{content:"";width:38px;height:1px;margin-inline-start:10px;background:color-mix(in srgb,var(--pms-accent) 35%,#e6dce1)}
.phr-media-slide-kicker{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;margin-bottom:16px;border:1px solid color-mix(in srgb,var(--pms-accent) 13%,transparent);border-radius:999px;background:color-mix(in srgb,var(--pms-accent) 6%,#fff);color:var(--pms-accent);font-weight:900;font-size:11px;letter-spacing:.5px}.phr-media-slide-kicker:before{content:"";width:7px;height:7px;border-radius:50%;background:var(--pms-accent);box-shadow:0 0 0 5px color-mix(in srgb,var(--pms-accent) 10%,transparent)}
.phr-media-slide h2{margin:0;color:var(--pms-slide-title-color,var(--pms-title));font-size:var(--pms-slide-title-size,clamp(34px,4.1vw,62px));line-height:1.08;letter-spacing:-1.1px;font-weight:900;text-wrap:balance}.phr-media-slide p{margin:18px 0 0;color:var(--pms-slide-desc-color,var(--pms-desc));font-size:var(--pms-slide-desc-size,clamp(15px,1.14vw,18px));line-height:1.9;max-width:58ch;text-wrap:pretty}.phr-media-slide.align-center p{margin-left:auto;margin-right:auto}
.phr-media-slide-btn{display:inline-flex;align-items:center;gap:10px;margin-top:26px;padding:14px 21px;border-radius:14px;background:var(--pms-btn-bg);color:var(--pms-btn-text)!important;text-decoration:none!important;font-weight:900;box-shadow:0 13px 30px color-mix(in srgb,var(--pms-btn-bg) 24%,transparent);transition:transform .22s ease,box-shadow .22s ease}.phr-media-slide-btn:hover{transform:translateY(-2px);box-shadow:0 17px 38px color-mix(in srgb,var(--pms-btn-bg) 34%,transparent)}
.phr-media-slider-arrow{position:absolute;z-index:9;top:50%;width:46px;height:46px;margin-top:-23px;border:1px solid rgba(58,42,49,.09);border-radius:50%;background:rgba(255,255,255,.94);color:#382b31;font-size:28px;line-height:1;display:grid;place-items:center;cursor:pointer;box-shadow:0 10px 28px rgba(35,23,29,.11);transition:background .2s,transform .2s,color .2s,border-color .2s}.phr-media-slider-arrow:hover{background:var(--pms-accent);color:#fff;border-color:var(--pms-accent);transform:scale(1.05)}.phr-media-slider-arrow.is-prev{right:17px}.phr-media-slider-arrow.is-next{left:17px}.phr-media-slider-arrow:disabled{opacity:.35;cursor:not-allowed;transform:none}
.phr-media-slider-dots{position:absolute;z-index:10;bottom:24px;left:50%;transform:translateX(-50%);display:flex;align-items:center;gap:7px;padding:9px 11px;border:1px solid rgba(58,42,49,.07);border-radius:999px;background:rgba(255,255,255,.9);box-shadow:0 7px 25px rgba(35,23,29,.07);backdrop-filter:blur(10px)}.phr-media-slider-dots button{appearance:none;border:0;width:7px;height:7px;border-radius:999px;background:#d7cdd2;padding:0;cursor:pointer;transition:width .28s,background .28s}.phr-media-slider-dots button.is-active{width:26px;background:var(--pms-accent)}
.phr-media-slider-counter{position:absolute;z-index:10;bottom:26px;right:78px;display:flex;align-items:baseline;gap:5px;color:#968a90;font-size:10px;font-weight:800;letter-spacing:.7px}.phr-media-slider-counter strong{color:var(--pms-accent);font-size:16px}.phr-media-slider-counter b{color:#665b61;font-size:11px}
.phr-media-slider-progress{position:absolute;z-index:10;left:0;right:0;bottom:0;height:3px;background:rgba(98,78,88,.08);overflow:hidden}.phr-media-slider-progress i{display:block;width:0;height:100%;background:linear-gradient(90deg,var(--pms-accent),color-mix(in srgb,var(--pms-accent) 52%,#ffb6c2));box-shadow:0 0 12px color-mix(in srgb,var(--pms-accent) 28%,transparent)}
.phr-media-slide.is-empty{display:grid;place-items:center;background:linear-gradient(135deg,#fff,#fff7f9);opacity:1;visibility:visible}.phr-media-slide-placeholder{position:relative;z-index:4;color:#30252a;text-align:center;padding:40px}.phr-media-slide-placeholder strong{display:block;font-size:28px;margin-bottom:8px}.phr-media-slide-placeholder span{color:#80747a}
@media(max-width:1024px){.phr-media-slider{padding:40px 14px}.phr-media-slider-viewport{height:var(--pms-h-t)}.phr-media-slide-bg{width:52%;left:20px;top:20px;bottom:20px}.phr-media-slide-inner{padding:38px 34px}.phr-media-slide-copy{width:min(43%,var(--pms-content))}.phr-media-slide h2{font-size:var(--pms-slide-title-size,clamp(32px,5vw,50px))}.phr-media-slider-arrow{width:42px;height:42px}.phr-media-slider-arrow.is-prev{right:12px}.phr-media-slider-arrow.is-next{left:12px}}
@media(max-width:767px){.phr-media-slider{padding:28px 10px}.phr-media-slider-viewport{height:var(--pms-h-m);border-radius:var(--pms-radius)}.phr-media-slide-bg{top:16px;left:16px;right:16px;width:auto;height:50%;bottom:auto;border-radius:var(--pms-radius)}.phr-media-slide-inner{align-items:flex-end;padding:0 22px 76px}.phr-media-slide-copy{width:100%;max-width:none;transform:translateY(18px)}.phr-media-slide.is-active .phr-media-slide-copy{transform:translateY(0)}.phr-media-slide.align-left .phr-media-slide-copy,.phr-media-slide.align-center .phr-media-slide-copy,.phr-media-slide.align-right .phr-media-slide-copy{text-align:right;direction:rtl}.phr-media-slide-number{margin-bottom:10px}.phr-media-slide-kicker{margin-bottom:11px}.phr-media-slide h2{font-size:var(--pms-slide-title-size-mobile,clamp(29px,8.7vw,43px));letter-spacing:-.6px}.phr-media-slide p{font-size:var(--pms-slide-desc-size-mobile,14px);line-height:1.75;margin-top:11px}.phr-media-slide-btn{margin-top:17px;padding:12px 17px;border-radius:12px}.phr-media-slider-arrow{top:calc(25% + 16px);bottom:auto;margin:0;width:38px;height:38px;font-size:23px}.phr-media-slider-arrow.is-prev{right:22px}.phr-media-slider-arrow.is-next{left:22px}.phr-media-slider-dots{bottom:23px;max-width:calc(100% - 160px);overflow:hidden}.phr-media-slider-counter{right:20px;bottom:27px}.phr-media-slide-kind{top:10px;left:10px;min-width:55px;height:27px}.phr-media-slider-progress{height:3px}}
@media(prefers-reduced-motion:reduce){.phr-video-hub.has-motion-bg:before,.phr-video-hub.has-motion-bg:after,.phr-media-slider.has-motion-bg:before,.phr-media-slider.has-motion-bg:after{animation:none!important}.phr-media-slide,.phr-media-slide-copy,.phr-media-slide-bg>picture>img,.phr-media-slide-bg>img,.phr-media-slide-bg>video,.phr-media-slide-btn,.phr-media-slider-arrow,.phr-media-slider-dots button{transition:none!important}.phr-media-slider-progress{display:none}}


/* v9.19.2 — unified Tajawal typography + glossy red-on-black slider title */
.phr-media-slider,.phr-media-slider *{font-family:'Tajawal',Tahoma,Arial,sans-serif!important}
.phr-media-slide-copy>h2,.phr-media-slide-copy>p{font-family:'Tajawal',Tahoma,Arial,sans-serif!important}
.phr-media-slide-copy>h2{font-weight:900!important}
.phr-media-slide-copy>p{font-weight:500!important}
.phr-media-slide-title-text{font-family:'Tajawal',Tahoma,Arial,sans-serif!important}
.phr-media-slider.has-title-effect .phr-media-slide h2{line-height:1.28;filter:drop-shadow(0 10px 22px rgba(0,0,0,.08))}
.phr-media-slider.has-title-effect .phr-media-slide-title-text{
  display:inline;
  position:relative;
  padding:.03em .24em .11em;
  border-radius:.18em;
  color:var(--pms-slide-title-color,var(--pms-title-fx-text,#ff173f))!important;
  background:linear-gradient(110deg,transparent 0 40%,rgba(255,255,255,.11) 48%,transparent 56%) 160% 0/220% 100% no-repeat,linear-gradient(180deg,color-mix(in srgb,var(--pms-title-fx-bg,#09090b) 78%,#2a2a2e),var(--pms-title-fx-bg,#09090b));
  -webkit-box-decoration-break:clone;
  box-decoration-break:clone;
  box-shadow:0 .12em .38em rgba(0,0,0,.16),0 0 0 1px rgba(255,255,255,.055) inset,0 0 .55em color-mix(in srgb,var(--pms-title-fx-text,#ff173f) 13%,transparent);
  text-shadow:0 0 .5em color-mix(in srgb,var(--pms-title-fx-text,#ff173f) 30%,transparent);
  animation:phrSliderTitleGloss 4.6s ease-in-out infinite;
}
@keyframes phrSliderTitleGloss{0%,62%{background-position:160% 0,0 0}82%,100%{background-position:-80% 0,0 0}}
@media(prefers-reduced-motion:reduce){.phr-media-slider.has-title-effect .phr-media-slide-title-text{animation:none!important}}

/* v9.19.1 — slider copy persistence visual guard + glossy black/red word badge */
.phr-media-slide-copy{
  position:relative;
  z-index:7;
  min-height:120px;
}
.phr-media-slide-copy > h2,
.phr-media-slide-copy > p,
.phr-media-slide-copy > .phr-media-slide-kicker,
.phr-media-slide-copy > .phr-media-slide-premium-badge,
.phr-media-slide-copy > .phr-media-slide-btn{
  position:relative;
  z-index:2;
}
.phr-media-slide-premium-badge{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  gap:9px;
  width:max-content;
  max-width:100%;
  min-height:36px;
  margin:0 0 16px;
  padding:8px 14px 8px 12px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:999px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,0) 46%),
    linear-gradient(135deg,#050505 0%,#171717 52%,#020202 100%);
  color:#ff173f;
  box-shadow:
    0 12px 32px rgba(0,0,0,.18),
    0 0 0 1px rgba(227,6,46,.08) inset,
    0 0 22px rgba(227,6,46,.10);
  font-size:12px;
  font-weight:950;
  letter-spacing:.35px;
  line-height:1;
  text-transform:none;
  text-shadow:0 0 12px rgba(255,23,63,.36);
}
.phr-media-slide-premium-badge:before{
  content:"";
  position:absolute;
  z-index:-1;
  top:-70%;
  bottom:-70%;
  left:-38%;
  width:28%;
  transform:skewX(-22deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.48),transparent);
  filter:blur(.2px);
  animation:phrPremiumBadgeShine 3.2s cubic-bezier(.4,0,.2,1) infinite;
  pointer-events:none;
}
.phr-media-slide-premium-badge:after{
  content:"";
  position:absolute;
  inset:1px;
  z-index:-2;
  border-radius:inherit;
  background:radial-gradient(circle at 18% 0%,rgba(255,255,255,.12),transparent 32%);
  pointer-events:none;
}
.phr-media-slide-premium-badge i{
  width:21px;
  height:21px;
  flex:0 0 21px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:radial-gradient(circle at 35% 30%,#ff5470,#e3062e 52%,#8d0019 100%);
  color:#080808;
  font-style:normal;
  font-size:11px;
  font-weight:1000;
  box-shadow:0 0 16px rgba(227,6,46,.38),0 1px 0 rgba(255,255,255,.25) inset;
}
.phr-media-slide-premium-badge b{
  color:#ff173f;
  font:inherit;
  font-weight:950;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
@keyframes phrPremiumBadgeShine{
  0%,58%{left:-42%;opacity:0}
  64%{opacity:.85}
  82%{left:122%;opacity:.25}
  100%{left:122%;opacity:0}
}
@media(max-width:767px){
  .phr-media-slide-premium-badge{min-height:33px;padding:7px 12px 7px 10px;margin-bottom:12px;font-size:11px}
  .phr-media-slide-premium-badge i{width:19px;height:19px;flex-basis:19px;font-size:10px}
}
@media(prefers-reduced-motion:reduce){.phr-media-slide-premium-badge:before{animation:none!important;display:none}}


/* v9.19.5 — guaranteed visible geometric motion layer inside slider */
.phr-media-slider{--pms-motion-alpha:.34}
.phr-media-slider-viewport>.phr-slider-motion-stage{position:absolute;inset:0;z-index:1;overflow:hidden;pointer-events:none;border-radius:inherit;color:var(--pms-motion-color);opacity:var(--pms-motion-alpha);contain:paint}
.phr-media-slider-viewport>.phr-media-slider-track{z-index:2}
.phr-slider-motion-stage i{position:absolute;display:block;will-change:transform,opacity;pointer-events:none}

/* Hexagons: real moving elements, not only a CSS background image. */
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i{width:var(--pms-motion-size);height:calc(var(--pms-motion-size) * .88);background:currentColor;clip-path:polygon(25% 3%,75% 3%,100% 50%,75% 97%,25% 97%,0 50%);opacity:.28;filter:drop-shadow(0 8px 14px rgba(227,6,46,.12));animation:phrSliderRealHex var(--pms-motion-speed) ease-in-out infinite alternate}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(1){right:4%;top:7%;transform:scale(.48);animation-delay:-2s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(2){right:17%;top:21%;transform:scale(.78);animation-delay:-7s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(3){right:33%;top:9%;transform:scale(.38);animation-delay:-4s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(4){right:43%;top:35%;transform:scale(.64);animation-delay:-11s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(5){right:8%;top:60%;transform:scale(.88);animation-delay:-5s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(6){right:29%;top:72%;transform:scale(.46);animation-delay:-9s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(7){right:48%;top:77%;transform:scale(.72);animation-delay:-3s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(8){left:5%;top:13%;transform:scale(.34);animation-delay:-8s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(9){left:18%;top:45%;transform:scale(.44);animation-delay:-13s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(10){left:8%;bottom:8%;transform:scale(.7);animation-delay:-6s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(11){left:34%;bottom:12%;transform:scale(.32);animation-delay:-10s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(12){left:43%;top:12%;transform:scale(.54);animation-delay:-1s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(13){right:54%;top:54%;transform:scale(.32);animation-delay:-12s}
.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(14){left:28%;top:20%;transform:scale(.26);animation-delay:-4.5s}
@keyframes phrSliderRealHex{0%{translate:-8px 10px;rotate:-8deg;opacity:.16}50%{opacity:.42}100%{translate:14px -12px;rotate:10deg;opacity:.24}}

/* Circles: rings drift independently to create depth. */
.phr-media-slider.motion-circles .phr-slider-motion-stage i{width:var(--pms-motion-size);height:var(--pms-motion-size);border:2px solid currentColor;border-radius:50%;background:transparent;opacity:.42;box-shadow:0 0 0 10px rgba(227,6,46,.035),0 10px 30px rgba(227,6,46,.06);animation:phrSliderRealCircle var(--pms-motion-speed) ease-in-out infinite alternate}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(1){right:3%;top:4%;transform:scale(1.45);animation-delay:-4s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(2){right:22%;top:18%;transform:scale(.58);animation-delay:-10s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(3){right:41%;top:8%;transform:scale(.33);animation-delay:-6s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(4){right:8%;top:55%;transform:scale(.72);animation-delay:-12s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(5){right:32%;top:68%;transform:scale(1.05);animation-delay:-3s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(6){right:48%;top:43%;transform:scale(.45);animation-delay:-9s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(7){left:5%;top:12%;transform:scale(.5);animation-delay:-2s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(8){left:17%;top:43%;transform:scale(.82);animation-delay:-8s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(9){left:3%;bottom:4%;transform:scale(1.3);animation-delay:-14s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(10){left:31%;bottom:10%;transform:scale(.38);animation-delay:-5s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(11){left:43%;top:12%;transform:scale(.68);animation-delay:-11s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(12){left:54%;top:63%;transform:scale(.3);animation-delay:-7s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(13){right:58%;top:26%;transform:scale(.22);animation-delay:-13s}
.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(14){left:25%;top:20%;transform:scale(.27);animation-delay:-1s}
@keyframes phrSliderRealCircle{0%{translate:-10px 12px;scale:.92;opacity:.22}50%{opacity:.5}100%{translate:16px -14px;scale:1.08;opacity:.34}}

/* Keep text/media/navigation safely above the decorative layer. */
.phr-media-slider-track,.phr-media-slider-arrow,.phr-media-slider-dots,.phr-media-slider-progress{position:absolute}
.phr-media-slider-track{inset:0;z-index:3}
.phr-media-slider-arrow,.phr-media-slider-dots,.phr-media-slider-progress{z-index:12}
@media(max-width:767px){.phr-media-slider-viewport>.phr-slider-motion-stage{opacity:calc(var(--pms-motion-alpha) * .82)}.phr-media-slider.motion-hexagons .phr-slider-motion-stage i:nth-child(n+10),.phr-media-slider.motion-circles .phr-slider-motion-stage i:nth-child(n+10){display:none}}
@media(prefers-reduced-motion:reduce){.phr-slider-motion-stage i{animation:none!important}}

/* v9.19.6 — Tech Show signature identity: animated Tahat Al-Hizam scene + premium cards */
.phr-video-hub-tech_show{
  background:
    radial-gradient(circle at 88% 10%,color-mix(in srgb,var(--pv-accent) 7%,transparent),transparent 28%),
    radial-gradient(circle at 8% 86%,rgba(17,17,20,.035),transparent 32%),
    linear-gradient(180deg,#fff 0%,color-mix(in srgb,var(--pv-bg) 90%,#fff) 100%);
}
.phr-techshow-brand-scene{position:absolute;inset:0;z-index:1;overflow:hidden;pointer-events:none;isolation:isolate}
.phr-techshow-brand-mark{position:absolute;width:min(42vw,570px);height:auto;left:-2.5%;top:47%;opacity:.075;transform:translate3d(0,-50%,0) rotate(-2deg) scale(.96);filter:drop-shadow(0 18px 48px rgba(227,6,46,.09));mix-blend-mode:multiply;animation:phrTechShowMarkFloat 13s ease-in-out infinite alternate;will-change:transform,opacity}
.phr-techshow-brand-halo{position:absolute;border-radius:50%;border:1px solid color-mix(in srgb,var(--pv-accent) 20%,transparent);opacity:.48;will-change:transform,opacity}
.phr-techshow-brand-halo.halo-a{width:min(42vw,560px);height:min(42vw,560px);left:-4%;top:9%;box-shadow:0 0 0 42px color-mix(in srgb,var(--pv-accent) 2.8%,transparent),0 0 0 84px rgba(17,17,20,.018);animation:phrTechShowOrbit 15s ease-in-out infinite alternate}
.phr-techshow-brand-halo.halo-b{width:240px;height:240px;right:8%;bottom:-82px;border-color:rgba(17,17,20,.08);box-shadow:0 0 0 30px color-mix(in srgb,var(--pv-accent) 3%,transparent);animation:phrTechShowOrbit 11s ease-in-out infinite alternate-reverse}
.phr-techshow-brand-beam{position:absolute;height:2px;border-radius:99px;transform-origin:center;background:linear-gradient(90deg,transparent,var(--pv-accent),transparent);opacity:.16;filter:blur(.2px)}
.phr-techshow-brand-beam.beam-a{width:44%;right:-8%;top:24%;transform:rotate(-18deg);animation:phrTechShowBeam 8s ease-in-out infinite}
.phr-techshow-brand-beam.beam-b{width:34%;left:10%;bottom:24%;transform:rotate(16deg);animation:phrTechShowBeam 10s 1.4s ease-in-out infinite reverse}
.phr-techshow-brand-scan{position:absolute;inset:-15% -5%;opacity:.25;background-image:linear-gradient(rgba(227,6,46,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(17,17,20,.025) 1px,transparent 1px);background-size:58px 58px;mask-image:linear-gradient(90deg,transparent,#000 16%,#000 82%,transparent);animation:phrTechShowGridDrift 18s linear infinite}
@keyframes phrTechShowMarkFloat{0%{transform:translate3d(-10px,-52%,0) rotate(-3deg) scale(.93);opacity:.055}50%{opacity:.09}100%{transform:translate3d(24px,-47%,0) rotate(2deg) scale(1.035);opacity:.075}}
@keyframes phrTechShowOrbit{0%{transform:translate3d(-12px,8px,0) scale(.93);opacity:.26}100%{transform:translate3d(24px,-18px,0) scale(1.08);opacity:.58}}
@keyframes phrTechShowBeam{0%,100%{opacity:.05;transform:translate3d(-8%,0,0) rotate(-18deg) scaleX(.82)}50%{opacity:.25;transform:translate3d(8%,0,0) rotate(-18deg) scaleX(1.08)}}
@keyframes phrTechShowGridDrift{0%{background-position:0 0,0 0}100%{background-position:58px 58px,58px 58px}}

.phr-video-hub-tech_show .phr-video-hub-shell{z-index:3}
.phr-techshow-head{position:relative;max-width:860px;padding:8px 18px 4px 0;margin-bottom:40px}
.phr-techshow-head:before{content:"";position:absolute;right:0;top:4px;bottom:8px;width:3px;border-radius:99px;background:linear-gradient(180deg,var(--pv-accent),color-mix(in srgb,var(--pv-accent) 14%,transparent));box-shadow:0 0 18px color-mix(in srgb,var(--pv-accent) 32%,transparent)}
.phr-techshow-kicker{position:relative;isolation:isolate;overflow:hidden;min-height:38px;padding:9px 15px!important;background:linear-gradient(145deg,#060607,#17171a 52%,#070708)!important;border:1px solid rgba(255,255,255,.09)!important;color:#ff123a!important;font-size:13px!important;font-weight:950!important;letter-spacing:.25px!important;box-shadow:0 12px 28px rgba(15,8,11,.15),0 0 0 1px rgba(227,6,46,.08) inset,0 0 22px rgba(227,6,46,.08)!important;text-shadow:0 0 12px rgba(255,18,58,.34)}
.phr-techshow-kicker:before{display:none!important}.phr-techshow-kicker:after{content:"";position:absolute;inset:-40% -60%;z-index:-1;background:linear-gradient(110deg,transparent 38%,rgba(255,255,255,.18) 49%,transparent 60%);transform:translateX(55%);animation:phrTechShowKickerShine 4.8s ease-in-out infinite}
.phr-techshow-kicker i{display:grid;place-items:center;width:19px;height:19px;border-radius:50%;background:var(--pv-accent);color:#fff;font-style:normal;font-size:10px;box-shadow:0 0 0 5px rgba(227,6,46,.1),0 0 14px rgba(227,6,46,.35)}
@keyframes phrTechShowKickerShine{0%,58%{transform:translateX(62%)}82%,100%{transform:translateX(-62%)}}
.phr-techshow-title{margin-top:5px!important;line-height:1.14!important;letter-spacing:-1px!important}
.phr-techshow-title span{position:relative;display:inline-block;color:transparent!important;background:linear-gradient(92deg,#e3062e 0 28%,#101014 44% 100%);-webkit-background-clip:text;background-clip:text;font-size:clamp(38px,5vw,64px);font-weight:950;filter:drop-shadow(0 10px 18px rgba(20,15,18,.07))}
.phr-techshow-title span:after{content:"";position:absolute;right:0;bottom:-8px;width:min(72%,210px);height:5px;border-radius:99px;background:linear-gradient(90deg,var(--pv-accent),#0d0d10 72%,transparent);box-shadow:0 5px 18px rgba(227,6,46,.16);transform-origin:right;animation:phrTechShowTitleLine 4.2s ease-in-out infinite alternate}
@keyframes phrTechShowTitleLine{0%{transform:scaleX(.72);opacity:.7}100%{transform:scaleX(1);opacity:1}}
.phr-techshow-head p{max-width:72ch;margin-top:20px!important;font-size:16px!important;line-height:2!important;color:color-mix(in srgb,var(--pv-desc) 92%,#111)!important}

.phr-video-hub-tech_show .phr-video-card{isolation:isolate;overflow:visible;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.92));border:1px solid rgba(30,23,27,.075);box-shadow:0 22px 56px rgba(39,25,31,.10),0 1px 0 #fff inset;transform-style:preserve-3d}
.phr-video-hub-tech_show .phr-video-card:before{content:"";position:absolute;z-index:3;top:-1px;right:28px;left:28px;height:3px;border-radius:0 0 999px 999px;background:linear-gradient(90deg,transparent,var(--pv-accent),#111,var(--pv-accent),transparent);opacity:.72;box-shadow:0 4px 15px rgba(227,6,46,.12);transition:left .28s ease,right .28s ease,opacity .28s ease}
.phr-video-hub-tech_show .phr-video-card:after{content:"";position:absolute;z-index:-1;width:84px;height:84px;left:-20px;bottom:-20px;border-radius:50%;background:radial-gradient(circle,color-mix(in srgb,var(--pv-accent) 13%,transparent),transparent 68%);filter:blur(5px);opacity:.75;transition:transform .3s ease,opacity .3s ease}
.phr-video-hub-tech_show .phr-video-card:hover{transform:translateY(-9px) scale(1.012);box-shadow:0 30px 78px rgba(39,25,31,.15),0 0 0 1px color-mix(in srgb,var(--pv-accent) 10%,transparent) inset;border-color:color-mix(in srgb,var(--pv-accent) 22%,transparent)}
.phr-video-hub-tech_show .phr-video-card:hover:before{right:12px;left:12px;opacity:1}.phr-video-hub-tech_show .phr-video-card:hover:after{transform:scale(1.25);opacity:1}
.phr-video-hub-tech_show .phr-video-card-media{box-shadow:0 13px 34px rgba(27,18,22,.11);border:1px solid rgba(21,14,17,.055);background:linear-gradient(135deg,#f5f2f3,#ece8ea)}
.phr-video-hub-tech_show .phr-video-card-media img{transition:transform .65s cubic-bezier(.22,.61,.36,1),filter .4s ease}.phr-video-hub-tech_show .phr-video-card:hover .phr-video-card-media img{transform:scale(1.045);filter:saturate(1.05) contrast(1.02)}
.phr-video-hub-tech_show .phr-video-card-media:after{background:linear-gradient(180deg,transparent 42%,rgba(9,9,10,.36) 100%)}
.phr-video-hub-tech_show .phr-video-play>span{position:relative;width:68px;height:68px;background:linear-gradient(145deg,#070708,#1b1b1e 56%,#080809);color:#ff123a;border:1px solid rgba(255,255,255,.13);box-shadow:0 18px 38px rgba(5,5,7,.28),0 0 0 7px rgba(255,255,255,.75),0 0 0 9px rgba(227,6,46,.11);text-shadow:0 0 12px rgba(227,6,46,.45)}
.phr-video-hub-tech_show .phr-video-play>span:after{content:"";position:absolute;inset:-13px;border:1px solid rgba(227,6,46,.25);border-radius:50%;animation:phrTechShowPlayPulse 2.2s ease-out infinite}
.phr-video-hub-tech_show .phr-video-card-media:hover .phr-video-play>span{background:linear-gradient(145deg,#111,#050505);color:#ff173f;transform:scale(1.08) rotate(.01deg);box-shadow:0 20px 42px rgba(5,5,7,.32),0 0 0 7px rgba(255,255,255,.85),0 0 0 10px rgba(227,6,46,.18)}
@keyframes phrTechShowPlayPulse{0%{transform:scale(.82);opacity:.72}70%,100%{transform:scale(1.35);opacity:0}}
.phr-video-hub-tech_show .phr-video-type-chip{background:linear-gradient(145deg,#080809,#1a1a1d)!important;color:#ff173f!important;border:1px solid rgba(255,255,255,.1);box-shadow:0 8px 22px rgba(4,4,5,.16);text-shadow:0 0 10px rgba(227,6,46,.25)}
.phr-video-hub-tech_show .phr-video-badge{background:linear-gradient(135deg,var(--pv-accent),#a90022)!important;box-shadow:0 8px 22px rgba(227,6,46,.24)}
.phr-video-hub-tech_show .phr-video-card-copy{padding:19px 9px 9px}.phr-video-hub-tech_show .phr-video-card-copy h3{position:relative;margin-bottom:10px;font-size:21px;line-height:1.5;color:#161116;font-weight:950}.phr-video-hub-tech_show .phr-video-card-copy h3:after{content:"";display:block;width:34px;height:3px;margin-top:8px;border-radius:99px;background:linear-gradient(90deg,var(--pv-accent),#18181b);transition:width .28s ease}.phr-video-hub-tech_show .phr-video-card:hover .phr-video-card-copy h3:after{width:64px}.phr-video-hub-tech_show .phr-video-card-copy p{font-size:13.5px;line-height:1.9;color:color-mix(in srgb,var(--pv-muted) 90%,#2d2529)}

@media(max-width:767px){
  .phr-techshow-brand-mark{width:min(78vw,430px);left:-26%;top:42%;opacity:.055}.phr-techshow-brand-halo.halo-a{width:420px;height:420px;left:-45%;top:4%}.phr-techshow-brand-halo.halo-b{right:-100px;bottom:-110px}.phr-techshow-brand-scan{background-size:44px 44px}.phr-techshow-head{padding-right:14px;margin-bottom:30px}.phr-techshow-title span{font-size:clamp(35px,11vw,50px)}.phr-video-hub-tech_show .phr-video-card{max-width:100%}.phr-video-hub-tech_show .phr-video-play>span{width:62px;height:62px}
}
@media(prefers-reduced-motion:reduce){.phr-techshow-brand-mark,.phr-techshow-brand-halo,.phr-techshow-brand-beam,.phr-techshow-brand-scan,.phr-techshow-kicker:after,.phr-techshow-title span:after,.phr-video-hub-tech_show .phr-video-play>span:after{animation:none!important}}


/* v9.19.7 — Premium Video Library + responsive section title sizing */
.phr-video-hub-head h2{font-size:var(--pv-title-size-d,48px)}
@media(max-width:991px){.phr-video-hub-head h2{font-size:var(--pv-title-size-t,42px)}}
@media(max-width:640px){.phr-video-hub-head h2{font-size:var(--pv-title-size-m,34px)!important}}
.phr-techshow-title span{font-size:var(--pv-title-size-d,64px)!important}
@media(max-width:991px){.phr-techshow-title span{font-size:var(--pv-title-size-t,50px)!important}}
@media(max-width:640px){.phr-techshow-title span{font-size:var(--pv-title-size-m,38px)!important}}

.phr-video-hub-video_library{background:var(--pv-bg,#08070a);color:#fff;min-height:520px}
.phr-video-hub-video_library.has-motion-bg:before,.phr-video-hub-video_library.has-motion-bg:after{display:none!important}
.phr-videolib-scene{position:absolute;inset:0;z-index:1;pointer-events:none;overflow:hidden;isolation:isolate;background:radial-gradient(circle at 82% 18%,color-mix(in srgb,var(--pv-accent) 18%,transparent),transparent 28%),radial-gradient(circle at 14% 78%,color-mix(in srgb,var(--pv-accent) 10%,transparent),transparent 34%),linear-gradient(135deg,rgba(255,255,255,.012),transparent 45%)}
.phr-video-hub-video_library:not(.has-motion-bg) .phr-videolib-scene{display:none}
.phr-videolib-grid{position:absolute;inset:-20%;opacity:.36;background-image:linear-gradient(rgba(227,6,46,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(227,6,46,.055) 1px,transparent 1px);background-size:58px 58px;transform:perspective(700px) rotateX(58deg) translateY(20%);transform-origin:center bottom;mask-image:linear-gradient(to top,#000,transparent 74%);animation:phrVideoLibGrid var(--pv-motion-speed,18s) linear infinite}
.phr-videolib-orb{position:absolute;border-radius:50%;filter:blur(4px);opacity:.42;will-change:transform}
.phr-videolib-orb.orb-a{width:min(42vw,540px);height:min(42vw,540px);right:-12%;top:-22%;background:radial-gradient(circle at 38% 38%,rgba(255,38,74,.32),rgba(227,6,46,.09) 44%,transparent 72%);box-shadow:0 0 110px rgba(227,6,46,.12);animation:phrVideoLibOrb var(--pv-motion-speed,18s) ease-in-out infinite alternate}
.phr-videolib-orb.orb-b{width:340px;height:340px;left:-90px;bottom:-130px;background:radial-gradient(circle at 52% 48%,rgba(227,6,46,.20),rgba(88,0,18,.07) 52%,transparent 74%);animation:phrVideoLibOrb var(--pv-motion-speed,18s) 1.2s ease-in-out infinite alternate-reverse}
.phr-videolib-film{position:absolute;width:min(70vw,940px);height:92px;border:1px solid rgba(227,6,46,.16);border-left:0;border-right:0;background:repeating-linear-gradient(90deg,transparent 0 34px,rgba(227,6,46,.13) 35px 38px,transparent 39px 72px),linear-gradient(180deg,rgba(255,255,255,.018),rgba(227,6,46,.025));box-shadow:0 0 44px rgba(227,6,46,.035) inset;opacity:.42;will-change:transform}
.phr-videolib-film:before,.phr-videolib-film:after{content:"";position:absolute;left:0;right:0;height:13px;background:repeating-linear-gradient(90deg,rgba(255,255,255,.10) 0 18px,transparent 18px 30px);opacity:.7}.phr-videolib-film:before{top:8px}.phr-videolib-film:after{bottom:8px}
.phr-videolib-film.film-a{right:-14%;top:18%;transform:rotate(-8deg);animation:phrVideoLibFilm var(--pv-motion-speed,18s) linear infinite}
.phr-videolib-film.film-b{left:-24%;bottom:16%;transform:rotate(10deg) scale(.86);opacity:.23;animation:phrVideoLibFilm var(--pv-motion-speed,18s) linear infinite reverse}
.phr-videolib-playmark{position:absolute;display:grid;place-items:center;width:146px;height:146px;left:9%;top:14%;border-radius:50%;border:1px solid rgba(227,6,46,.20);box-shadow:0 0 0 24px rgba(227,6,46,.025),0 0 0 48px rgba(255,255,255,.012),0 0 55px rgba(227,6,46,.08);opacity:.5;animation:phrVideoLibPlay var(--pv-motion-speed,18s) ease-in-out infinite alternate}
.phr-videolib-playmark i{display:grid;place-items:center;width:66px;height:66px;border-radius:50%;background:linear-gradient(145deg,#1b1518,#050405);border:1px solid rgba(255,255,255,.08);color:#ff143c;font-style:normal;font-size:20px;padding-left:4px;box-shadow:0 13px 32px rgba(0,0,0,.35),0 0 24px rgba(227,6,46,.18)}
.phr-video-hub-video_library .phr-video-hub-shell{z-index:3}
.phr-videolib-head{position:relative;max-width:920px;margin-bottom:44px;padding-right:20px}
.phr-videolib-head:before{content:"";position:absolute;right:0;top:2px;width:4px;height:100%;max-height:112px;border-radius:99px;background:linear-gradient(180deg,#ff173f,var(--pv-accent),rgba(227,6,46,.08));box-shadow:0 0 24px rgba(227,6,46,.30)}
.phr-videolib-kicker{position:relative;isolation:isolate;overflow:hidden;min-height:38px;padding:9px 15px!important;background:linear-gradient(145deg,#151115,#050405 62%,#171115)!important;border:1px solid rgba(227,6,46,.25)!important;color:#ff1a42!important;font-size:12px!important;font-weight:950!important;letter-spacing:.45px!important;box-shadow:0 12px 32px rgba(0,0,0,.28),0 0 0 1px rgba(227,6,46,.06) inset!important;text-shadow:0 0 13px rgba(227,6,46,.30)}
.phr-videolib-kicker:before{display:none!important}.phr-videolib-kicker:after{content:"";position:absolute;inset:-40% -65%;z-index:-1;background:linear-gradient(108deg,transparent 38%,rgba(255,255,255,.18) 49%,transparent 60%);animation:phrVideoLibShine 4.6s ease-in-out infinite}
.phr-videolib-kicker i{display:grid;place-items:center;width:20px;height:20px;border-radius:50%;background:var(--pv-accent);color:#fff;font-style:normal;font-size:8px;padding-left:1px;box-shadow:0 0 0 5px rgba(227,6,46,.12),0 0 16px rgba(227,6,46,.38)}
.phr-videolib-title{display:flex;align-items:center;gap:15px;margin-top:5px!important;line-height:1.12!important;letter-spacing:-1px!important}
.phr-videolib-title-icon{flex:0 0 auto;display:grid;place-items:center;width:.82em;height:.82em;min-width:46px;min-height:46px;border-radius:18px;background:linear-gradient(145deg,#e3062e,#820018);color:#fff;font-size:.28em;padding-left:3px;border:1px solid rgba(255,255,255,.13);box-shadow:0 14px 38px rgba(227,6,46,.24),0 0 0 6px rgba(227,6,46,.055);transform:rotate(-4deg);animation:phrVideoLibIcon 4.8s ease-in-out infinite alternate}
.phr-videolib-title-text{position:relative;display:inline-block;color:transparent;background:linear-gradient(92deg,var(--pv-title,#fff) 0 56%,#ff1741 76%,#a90022 100%);-webkit-background-clip:text;background-clip:text;font-weight:950;text-shadow:none;filter:drop-shadow(0 14px 28px rgba(0,0,0,.22))}
.phr-videolib-title-text:after{content:"";position:absolute;right:0;bottom:-11px;width:min(78%,260px);height:4px;border-radius:99px;background:linear-gradient(90deg,var(--pv-accent),#ff3557 48%,rgba(255,255,255,.24),transparent);box-shadow:0 0 18px rgba(227,6,46,.18);transform-origin:right;animation:phrVideoLibTitleLine 4.2s ease-in-out infinite alternate}
.phr-videolib-head p{max-width:74ch!important;margin-top:22px!important;color:var(--pv-desc)!important;font-size:16px!important;line-height:2!important}
.phr-video-hub-video_library .phr-video-card{isolation:isolate;background:linear-gradient(180deg,color-mix(in srgb,var(--pv-card) 96%,#171117),color-mix(in srgb,var(--pv-card) 92%,#050405));border:1px solid rgba(255,255,255,.07);box-shadow:0 24px 64px rgba(0,0,0,.34),0 1px 0 rgba(255,255,255,.035) inset;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);overflow:visible}
.phr-video-hub-video_library .phr-video-card:before{content:"";position:absolute;z-index:4;top:-1px;right:18px;left:18px;height:3px;border-radius:0 0 999px 999px;background:linear-gradient(90deg,transparent,#8a001a,var(--pv-accent),#ff3255,var(--pv-accent),#8a001a,transparent);box-shadow:0 4px 20px rgba(227,6,46,.20);opacity:.72;transition:.3s ease}
.phr-video-hub-video_library .phr-video-card:after{content:"";position:absolute;z-index:-1;inset:20% 8% -12%;border-radius:50%;background:radial-gradient(circle,color-mix(in srgb,var(--pv-accent) 13%,transparent),transparent 68%);filter:blur(20px);opacity:.32;transition:.3s ease}
.phr-video-hub-video_library .phr-video-card:hover{transform:translateY(-10px) scale(1.012);border-color:rgba(227,6,46,.30);box-shadow:0 34px 82px rgba(0,0,0,.44),0 0 0 1px rgba(227,6,46,.08) inset}.phr-video-hub-video_library .phr-video-card:hover:before{right:8px;left:8px;opacity:1}.phr-video-hub-video_library .phr-video-card:hover:after{opacity:.72;transform:scale(1.08)}
.phr-video-hub-video_library .phr-video-card-media{background:#0c0a0d;border:1px solid rgba(255,255,255,.055);box-shadow:0 18px 44px rgba(0,0,0,.32)}
.phr-video-hub-video_library .phr-video-card-media:after{background:linear-gradient(180deg,rgba(0,0,0,.02) 38%,rgba(3,2,3,.62) 100%)}
.phr-video-hub-video_library .phr-video-card-media img{transition:transform .7s cubic-bezier(.22,.61,.36,1),filter .4s ease}.phr-video-hub-video_library .phr-video-card:hover .phr-video-card-media img{transform:scale(1.052);filter:saturate(1.08) contrast(1.04)}
.phr-video-hub-video_library .phr-video-play>span{position:relative;width:70px;height:70px;background:linear-gradient(145deg,#171217,#030203);color:#ff173f;border:1px solid rgba(255,255,255,.12);box-shadow:0 20px 44px rgba(0,0,0,.38),0 0 0 7px rgba(255,255,255,.13),0 0 0 10px rgba(227,6,46,.14),0 0 28px rgba(227,6,46,.19);text-shadow:0 0 12px rgba(227,6,46,.5)}
.phr-video-hub-video_library .phr-video-play>span:after{content:"";position:absolute;inset:-14px;border-radius:50%;border:1px solid rgba(227,6,46,.32);animation:phrVideoLibPlayPulse 2.15s ease-out infinite}
.phr-video-hub-video_library .phr-video-type-chip{background:linear-gradient(145deg,#171116,#050405)!important;color:#ff2349!important;border:1px solid rgba(255,255,255,.08);box-shadow:0 8px 24px rgba(0,0,0,.28);text-shadow:0 0 10px rgba(227,6,46,.25)}
.phr-video-hub-video_library .phr-video-badge{background:linear-gradient(135deg,var(--pv-accent),#93001c)!important;color:#fff;box-shadow:0 8px 22px rgba(227,6,46,.28)}
.phr-video-hub-video_library .phr-video-card-copy{padding:20px 9px 10px}.phr-video-hub-video_library .phr-video-card-copy h3{position:relative;color:#fff;font-size:21px;font-weight:950;line-height:1.5;margin-bottom:10px}.phr-video-hub-video_library .phr-video-card-copy h3:after{content:"";display:block;width:36px;height:3px;margin-top:8px;border-radius:99px;background:linear-gradient(90deg,var(--pv-accent),#ff3a5b);box-shadow:0 0 12px rgba(227,6,46,.18);transition:width .28s ease}.phr-video-hub-video_library .phr-video-card:hover .phr-video-card-copy h3:after{width:68px}.phr-video-hub-video_library .phr-video-card-copy p{color:var(--pv-muted);font-size:13.5px;line-height:1.9}
@keyframes phrVideoLibGrid{0%{background-position:0 0,0 0}100%{background-position:58px 58px,58px 58px}}
@keyframes phrVideoLibOrb{0%{transform:translate3d(-3%,2%,0) scale(.94)}100%{transform:translate3d(7%,-5%,0) scale(1.08)}}
@keyframes phrVideoLibFilm{0%{background-position:0 0,0 0}100%{background-position:360px 0,0 0}}
@keyframes phrVideoLibPlay{0%{transform:translate3d(0,0,0) rotate(-5deg) scale(.94);opacity:.34}100%{transform:translate3d(28px,18px,0) rotate(4deg) scale(1.06);opacity:.58}}
@keyframes phrVideoLibShine{0%,58%{transform:translateX(58%)}82%,100%{transform:translateX(-58%)}}
@keyframes phrVideoLibIcon{0%{transform:rotate(-5deg) translateY(0)}100%{transform:rotate(2deg) translateY(-5px)}}
@keyframes phrVideoLibTitleLine{0%{transform:scaleX(.58);opacity:.62}100%{transform:scaleX(1);opacity:1}}
@keyframes phrVideoLibPlayPulse{0%{transform:scale(.78);opacity:.75}100%{transform:scale(1.35);opacity:0}}
@media(max-width:991px){.phr-videolib-film{opacity:.28}.phr-videolib-playmark{left:-30px;top:12%}.phr-videolib-head{max-width:780px}}
@media(max-width:640px){.phr-videolib-grid{background-size:42px 42px}.phr-videolib-film{width:650px;height:76px;opacity:.18}.phr-videolib-playmark{width:110px;height:110px;left:-40px;top:9%;opacity:.28}.phr-videolib-head{padding-right:14px;margin-bottom:30px}.phr-videolib-title{gap:11px}.phr-videolib-title-icon{min-width:40px;min-height:40px;border-radius:14px}.phr-videolib-head p{font-size:14.5px!important}.phr-video-hub-video_library .phr-video-card{max-width:100%}}
@media(prefers-reduced-motion:reduce){.phr-videolib-grid,.phr-videolib-orb,.phr-videolib-film,.phr-videolib-playmark,.phr-videolib-kicker:after,.phr-videolib-title-icon,.phr-videolib-title-text:after,.phr-video-hub-video_library .phr-video-play>span:after{animation:none!important}}


/* v9.19.9 — Tech Show: clean cards, arrow navigation, hidden scrollbar, hover video preview */
.phr-video-hub-tech_show .phr-video-card,
.phr-video-hub-tech_show .phr-video-card:hover{
  box-shadow:none!important;
}
.phr-video-hub-tech_show .phr-video-card-media,
.phr-video-hub-tech_show .phr-video-card:hover .phr-video-card-media{
  box-shadow:none!important;
}
.phr-video-hub-tech_show .phr-video-card:after{display:none!important}
.phr-video-hub-tech_show.is-rail .phr-video-hub-list{
  overflow-x:auto!important;
  overflow-y:hidden!important;
  scrollbar-width:none!important;
  scrollbar-color:transparent transparent!important;
  scrollbar-gutter:auto!important;
  -ms-overflow-style:none!important;
  cursor:grab;
  user-select:none;
  -webkit-user-select:none;
  touch-action:pan-x;
  padding:4px 2px 0!important;
  scroll-behavior:smooth;
  overscroll-behavior-inline:contain;
}
.phr-video-hub-tech_show.is-rail .phr-video-hub-list::-webkit-scrollbar,
.phr-video-hub-tech_show.is-rail .phr-video-hub-list::-webkit-scrollbar-track,
.phr-video-hub-tech_show.is-rail .phr-video-hub-list::-webkit-scrollbar-thumb{
  display:none!important;
  width:0!important;
  height:0!important;
  background:transparent!important;
  border:0!important;
}
.phr-video-hub-tech_show.is-rail .phr-video-hub-list.is-dragging{
  cursor:grabbing;
  scroll-snap-type:none!important;
  scroll-behavior:auto!important;
}
.phr-video-hub-tech_show.is-rail .phr-video-card{cursor:grab}
.phr-video-hub-tech_show.is-rail .phr-video-hub-list.is-dragging .phr-video-card{cursor:grabbing}

.phr-techshow-rail-nav{
  position:relative;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  margin:-16px 0 18px;
  direction:rtl;
}
.phr-techshow-rail-arrow{
  position:relative;
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  padding:0;
  border:1px solid rgba(17,17,20,.10);
  border-radius:15px;
  background:rgba(255,255,255,.92);
  color:#111116;
  box-shadow:none;
  cursor:pointer;
  overflow:hidden;
  font-family:'Tajawal',Tahoma,Arial,sans-serif;
  font-size:22px;
  font-weight:900;
  line-height:1;
  transition:transform .22s ease,border-color .22s ease,background .22s ease,color .22s ease;
}
.phr-techshow-rail-arrow:before{content:"";position:absolute;inset:0;background:linear-gradient(135deg,transparent 12%,rgba(227,6,46,.075),transparent 68%);transform:translateX(80%);transition:transform .35s ease}
.phr-techshow-rail-arrow span{position:relative;z-index:2;transform:translateY(-1px)}
.phr-techshow-rail-arrow:hover{transform:translateY(-2px);border-color:rgba(227,6,46,.28);background:#111116;color:#ff1741}
.phr-techshow-rail-arrow:hover:before{transform:translateX(-70%)}
.phr-techshow-rail-arrow:active{transform:translateY(0) scale(.96)}
.phr-techshow-rail-arrow:focus-visible{outline:3px solid rgba(227,6,46,.18);outline-offset:3px}

.phr-video-hub-tech_show .phr-video-card-media>img{transition:opacity .22s ease,transform .65s cubic-bezier(.22,.61,.36,1),filter .4s ease}
.phr-video-hover-preview{
  position:absolute;
  z-index:2;
  inset:0;
  display:block;
  overflow:hidden;
  border-radius:inherit;
  background:#060607;
  opacity:0;
  transform:scale(1.015);
  transition:opacity .24s ease,transform .36s ease;
  pointer-events:none;
}
.phr-video-hover-preview video,.phr-video-hover-preview iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  border:0;
  background:#060607;
  object-fit:cover;
  pointer-events:none;
}
.phr-video-hub-tech_show .phr-video-card-media.is-previewing .phr-video-hover-preview{opacity:1;transform:scale(1)}
.phr-video-hub-tech_show .phr-video-card-media.is-previewing>img{opacity:0}
.phr-video-hub-tech_show .phr-video-card-media.is-previewing .phr-video-play{opacity:0;transform:scale(.84)}
.phr-video-hub-tech_show .phr-video-play{transition:opacity .2s ease,transform .2s ease}
.phr-video-hub-tech_show .phr-video-card-media.is-previewing:before{content:"معاينة";position:absolute;z-index:5;left:12px;bottom:12px;padding:6px 10px;border-radius:999px;background:rgba(9,9,11,.82);border:1px solid rgba(255,255,255,.12);color:#ff2349;font-family:'Tajawal',Tahoma,Arial,sans-serif;font-size:10px;font-weight:900;letter-spacing:.2px;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}

@media(max-width:640px){
  .phr-techshow-rail-nav{margin:-10px 0 14px;gap:8px}
  .phr-techshow-rail-arrow{width:42px;height:42px;border-radius:13px;font-size:20px}
  .phr-video-hub-tech_show.is-rail .phr-video-hub-list{padding-inline:2px!important}
}
@media(hover:none),(pointer:coarse){.phr-video-hover-preview{display:none!important}}
@media(prefers-reduced-motion:reduce){.phr-techshow-rail-arrow,.phr-video-hover-preview,.phr-video-hub-tech_show .phr-video-play{transition:none!important}}



/* v9.19.11 — automatic video thumbnails + cleaner Tech Show header */
.phr-techshow-head:before{display:none!important;content:none!important}
.phr-techshow-head{padding-right:0!important}
.phr-video-auto-thumb{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  display:block!important;
  pointer-events:none!important;
  background:linear-gradient(135deg,#f5f2f3,#ece8ea);
  opacity:1;
}
.phr-video-card-media.is-previewing>.phr-video-auto-thumb{opacity:0}


/* v9.19.12 — Video Library arrows replace the rail scrollbar */
.phr-video-hub-video_library.is-rail .phr-video-hub-list{
  scrollbar-width:none!important;
  scrollbar-gutter:auto!important;
  -ms-overflow-style:none!important;
  padding-bottom:4px!important;
  scroll-behavior:smooth;
  overscroll-behavior-inline:contain;
}
.phr-video-hub-video_library.is-rail .phr-video-hub-list::-webkit-scrollbar,
.phr-video-hub-video_library.is-rail .phr-video-hub-list::-webkit-scrollbar-track,
.phr-video-hub-video_library.is-rail .phr-video-hub-list::-webkit-scrollbar-thumb{
  display:none!important;
  width:0!important;
  height:0!important;
  background:transparent!important;
  border:0!important;
}
.phr-videolib-rail-nav{
  position:relative;
  z-index:12;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  width:100%;
  margin:22px auto 0;
  direction:rtl;
}
.phr-videolib-rail-arrow{
  position:relative;
  display:grid;
  place-items:center;
  width:50px;
  height:50px;
  padding:0;
  border:1px solid rgba(227,6,46,.24);
  border-radius:16px;
  background:linear-gradient(145deg,#171216,#060506 68%,#1a0a0e);
  color:#ff1741;
  box-shadow:0 12px 28px rgba(0,0,0,.22),0 0 0 1px rgba(255,255,255,.025) inset;
  cursor:pointer;
  overflow:hidden;
  font-family:'Tajawal',Tahoma,Arial,sans-serif;
  font-size:23px;
  font-weight:900;
  line-height:1;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,color .22s ease;
}
.phr-videolib-rail-arrow:before{
  content:"";
  position:absolute;
  inset:-35% -70%;
  background:linear-gradient(110deg,transparent 38%,rgba(255,255,255,.15) 50%,transparent 62%);
  transform:translateX(65%);
  transition:transform .42s ease;
}
.phr-videolib-rail-arrow span{position:relative;z-index:2;transform:translateY(-1px)}
.phr-videolib-rail-arrow:hover{
  transform:translateY(-3px);
  color:#fff;
  border-color:rgba(255,23,65,.58);
  box-shadow:0 16px 34px rgba(0,0,0,.28),0 0 24px rgba(227,6,46,.18);
}
.phr-videolib-rail-arrow:hover:before{transform:translateX(-58%)}
.phr-videolib-rail-arrow:active{transform:translateY(0) scale(.96)}
.phr-videolib-rail-arrow:focus-visible{outline:3px solid rgba(227,6,46,.22);outline-offset:3px}
@media(max-width:640px){
  .phr-videolib-rail-nav{margin-top:16px;gap:9px}
  .phr-videolib-rail-arrow{width:44px;height:44px;border-radius:14px;font-size:20px}
}
@media(prefers-reduced-motion:reduce){.phr-videolib-rail-arrow{transition:none!important}}

/* ========================================================================== */
/* v9.20.0 — Integrated Store                                                 */
/* ========================================================================== */
.phr-store-route-main{min-height:70vh;background:#fffaf9}.phr-store-section{position:relative;overflow:hidden;background:var(--phr-store-bg,#fff7f4);padding:96px 22px;color:var(--phr-store-title,#171217);font-family:Tajawal,Arial,sans-serif}.phr-store-section .phr-store-motion{position:absolute;inset:0;pointer-events:none;overflow:hidden;opacity:.82}.phr-store-motion i{position:absolute;border-radius:999px;filter:blur(4px);animation:phrStoreFloat var(--phr-store-motion,18s) ease-in-out infinite alternate}.phr-store-motion i:nth-child(1){width:380px;height:380px;right:-90px;top:-120px;background:radial-gradient(circle, color-mix(in srgb,var(--phr-store-accent) 26%,transparent),transparent 68%)}.phr-store-motion i:nth-child(2){width:460px;height:460px;left:-160px;bottom:-200px;background:radial-gradient(circle,color-mix(in srgb,var(--phr-store-alt) 28%,transparent),transparent 68%);animation-delay:-7s}.phr-store-motion i:nth-child(3){width:220px;height:220px;left:38%;top:18%;background:radial-gradient(circle,color-mix(in srgb,var(--phr-store-accent) 14%,transparent),transparent 70%);animation-delay:-12s}.phr-store-motion b{position:absolute;inset:0;background-image:linear-gradient(rgba(227,6,46,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(227,6,46,.035) 1px,transparent 1px);background-size:38px 38px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.65),transparent 90%);animation:phrStoreGrid 22s linear infinite}.phr-store-section.motion-circles .phr-store-motion b{background-image:radial-gradient(circle at center,transparent 0 22px,rgba(227,6,46,.07) 23px 24px,transparent 25px);background-size:74px 74px}.phr-store-section.motion-mesh .phr-store-motion b{background:linear-gradient(120deg,rgba(227,6,46,.08),transparent 28%,rgba(255,141,93,.10) 58%,transparent 80%);background-size:220% 220%;animation:phrStoreMesh var(--phr-store-motion,18s) ease infinite}.phr-store-shell{position:relative;z-index:2;width:min(100%,var(--phr-store-width,1280px));margin:auto}.phr-store-head{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-bottom:30px}.phr-store-head>div{max-width:820px}.phr-store-kicker{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;border-radius:999px;background:#fff;border:1px solid rgba(227,6,46,.11);box-shadow:0 10px 30px rgba(70,25,36,.06);font-weight:800;color:var(--phr-store-accent);font-size:13px}.phr-store-head h2{margin:14px 0 10px;font-size:var(--phr-store-title-d,58px);line-height:1.06;letter-spacing:-1.6px;font-weight:900}.phr-store-head h2:after{content:"";display:inline-block;width:44px;height:9px;border-radius:999px;margin-inline-start:13px;background:linear-gradient(90deg,var(--phr-store-accent),var(--phr-store-alt));box-shadow:0 7px 18px color-mix(in srgb,var(--phr-store-accent) 26%,transparent)}.phr-store-head p{margin:0;color:var(--phr-store-desc);font-size:17px;line-height:1.9;max-width:720px}.phr-store-cart-link{display:flex;align-items:center;gap:10px;text-decoration:none;color:#fff;background:#171217;padding:12px 14px 12px 18px;border-radius:18px;font-weight:800;box-shadow:0 14px 34px rgba(35,20,27,.13);transition:.25s}.phr-store-cart-link:hover{transform:translateY(-3px);color:#fff}.phr-store-cart-link b{display:grid;place-items:center;min-width:28px;height:28px;border-radius:10px;background:linear-gradient(135deg,var(--phr-store-accent),var(--phr-store-alt));font-size:12px}.phr-store-cats{display:flex;gap:9px;overflow:auto;padding:4px 0 20px;scrollbar-width:none}.phr-store-cats::-webkit-scrollbar{display:none}.phr-store-cats a{flex:none;text-decoration:none;color:#514950;background:rgba(255,255,255,.76);border:1px solid rgba(48,28,38,.08);padding:9px 16px;border-radius:999px;font-weight:700;transition:.2s}.phr-store-cats a:hover,.phr-store-cats a.is-active{color:#fff;background:#171217;border-color:#171217}.phr-products-grid{display:grid;grid-template-columns:repeat(var(--phr-store-cols-d,4),minmax(0,1fr));gap:22px}.phr-product-card{background:var(--phr-store-card,#fff);border:1px solid rgba(40,22,31,.075);border-radius:28px;overflow:hidden;box-shadow:0 18px 55px rgba(80,40,54,.075);transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease}.phr-product-card:hover{transform:translateY(-7px);border-color:color-mix(in srgb,var(--phr-store-accent) 22%,transparent);box-shadow:0 24px 62px rgba(80,40,54,.12)}.phr-product-media{position:relative;display:block;aspect-ratio:1/1;background:linear-gradient(145deg,#fff,#fff3f0);overflow:hidden}.phr-product-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.phr-product-card:hover .phr-product-media img{transform:scale(1.045)}.phr-product-noimage{display:grid;place-items:center;width:100%;height:100%;font-size:70px;color:rgba(227,6,46,.22)}.phr-product-sale{position:absolute;top:14px;right:14px;background:#171217;color:#ff3858;border:1px solid rgba(255,56,88,.28);padding:7px 10px;border-radius:11px;font-size:12px;font-weight:900;box-shadow:0 9px 25px rgba(0,0,0,.12)}.phr-product-copy{padding:18px 18px 20px}.phr-product-copy small{display:block;color:var(--phr-store-accent);font-weight:800;font-size:11px;margin-bottom:6px}.phr-product-copy h3{font-size:20px;line-height:1.35;margin:0 0 8px}.phr-product-copy h3 a{text-decoration:none;color:#171217}.phr-product-copy p{min-height:43px;margin:0 0 12px;color:#7b7077;line-height:1.65;font-size:14px}.phr-product-price{display:flex;align-items:baseline;gap:9px;margin:12px 0 16px}.phr-product-price strong{font-size:19px;color:var(--phr-store-accent)}.phr-product-price del{font-size:13px;color:#aaa}.phr-product-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px}.phr-product-actions a,.phr-product-actions button{border:0;text-align:center;border-radius:13px;padding:11px 8px;font:inherit;font-weight:800;cursor:pointer;text-decoration:none}.phr-product-actions a{color:#282126;background:#f5f1f3}.phr-product-actions button{color:#fff;background:linear-gradient(135deg,var(--phr-store-accent),#ff3658);box-shadow:0 9px 22px color-mix(in srgb,var(--phr-store-accent) 20%,transparent)}.phr-product-actions button:disabled,.phr-product-buy:disabled{opacity:.45;cursor:not-allowed}.phr-store-more{text-align:center;margin-top:30px}.phr-store-more a{display:inline-flex;gap:12px;align-items:center;text-decoration:none;font-weight:900;color:#171217;padding:13px 20px;border-radius:15px;background:#fff;border:1px solid rgba(40,22,31,.08)}.phr-store-empty{grid-column:1/-1;padding:50px;text-align:center;background:#fff;border-radius:24px;color:#887c83}
.phr-product-single{padding:120px 20px 90px;background:linear-gradient(180deg,#fff7f4,#fff);font-family:Tajawal,Arial,sans-serif}.phr-product-single-shell,.phr-store-checkout-shell{width:min(1220px,calc(100% - 28px));margin:auto}.phr-store-back{display:inline-block;margin-bottom:24px;text-decoration:none;color:#7b6f75;font-weight:800}.phr-product-single-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);gap:50px;align-items:center}.phr-product-main-image{aspect-ratio:1/1;border-radius:34px;overflow:hidden;background:#fff;border:1px solid rgba(40,22,31,.075);box-shadow:0 24px 80px rgba(77,35,48,.08);display:grid;place-items:center}.phr-product-main-image img{width:100%;height:100%;object-fit:cover}.phr-product-main-image>span{font-size:100px;color:#e3062e33}.phr-product-thumbs{display:flex;gap:10px;margin-top:12px;overflow:auto}.phr-product-thumbs button{width:78px;height:78px;flex:none;border:1px solid #eee;background:#fff;border-radius:16px;padding:4px;cursor:pointer}.phr-product-thumbs img{width:100%;height:100%;object-fit:cover;border-radius:11px}.phr-product-single-copy{padding:10px}.phr-product-single-badge{display:inline-flex;background:#171217;color:#ff3858;padding:8px 13px;border-radius:12px;font-weight:900}.phr-product-single-copy h1{font-size:52px;line-height:1.08;margin:16px 0 15px;color:#171217}.phr-product-lead{font-size:17px;line-height:1.9;color:#73686f}.phr-product-single-price{display:flex;align-items:baseline;gap:12px;margin:22px 0}.phr-product-single-price strong{font-size:32px;color:#e3062e}.phr-product-single-price del{color:#aaa}.phr-product-buy-row{display:flex;gap:12px;align-items:center}.phr-store-qty{display:flex;align-items:center;background:#fff;border:1px solid #eee;border-radius:16px;overflow:hidden}.phr-store-qty button{width:44px;height:48px;border:0;background:#fff;font-size:22px;cursor:pointer}.phr-store-qty input{width:54px;text-align:center;border:0!important;box-shadow:none!important;font-weight:800;-moz-appearance:textfield}.phr-product-buy{height:50px;flex:1;border:0;border-radius:16px;background:linear-gradient(135deg,#e3062e,#ff4562);color:#fff;font:inherit;font-weight:900;cursor:pointer;box-shadow:0 14px 30px rgba(227,6,46,.18)}.phr-product-meta-line{display:flex;gap:20px;margin-top:16px;color:#8b7f85;font-size:13px}.phr-product-details{margin-top:55px;background:#fff;border:1px solid #f0e8eb;border-radius:30px;padding:34px;box-shadow:0 18px 60px rgba(75,39,50,.06)}.phr-product-details>span{color:#e3062e;font-weight:900}.phr-product-details h2{font-size:30px;margin:6px 0 18px}.phr-product-details>div{color:#665c62;line-height:1.9}
.phr-store-checkout-shell{padding:120px 0 90px;font-family:Tajawal,Arial,sans-serif}.phr-store-page-head{margin-bottom:28px}.phr-store-page-head span{color:#e3062e;font-weight:900}.phr-store-page-head h1{font-size:44px;margin:6px 0}.phr-cart-empty{padding:60px 28px;background:#fff;border:1px solid #eee;border-radius:30px;text-align:center}.phr-cart-empty a{display:inline-block;margin-top:15px;background:#171217;color:#fff;text-decoration:none;padding:12px 20px;border-radius:14px}.phr-cart-layout,.phr-checkout-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:24px;align-items:start}.phr-cart-items{display:grid;gap:12px}.phr-cart-item{display:grid;grid-template-columns:84px minmax(0,1fr) auto auto auto;align-items:center;gap:14px;background:#fff;border:1px solid #eee;border-radius:22px;padding:12px}.phr-cart-item>img{width:84px;height:84px;object-fit:cover;border-radius:15px}.phr-cart-item h3{margin:0 0 5px;font-size:17px}.phr-cart-item strong{color:#e3062e}.phr-cart-item-qty{display:flex;align-items:center;border:1px solid #eee;border-radius:12px;overflow:hidden}.phr-cart-item-qty button{border:0;background:#f8f5f6;width:34px;height:36px;cursor:pointer}.phr-cart-item-qty input{width:42px;border:0!important;text-align:center;box-shadow:none!important}.phr-cart-remove{border:0;background:#fff0f2;color:#d40b2c;padding:8px 10px;border-radius:10px;cursor:pointer}.phr-cart-summary,.phr-checkout-summary{position:sticky;top:120px;background:#171217;color:#fff;border-radius:26px;padding:24px}.phr-cart-summary>span{color:#ff6179;font-weight:900}.phr-cart-summary>div{display:flex;justify-content:space-between;padding:16px 0;border-bottom:1px solid #ffffff17}.phr-cart-summary .is-total strong,.phr-checkout-total strong{color:#ff4a66;font-size:22px}.phr-cart-summary>a,.phr-checkout-summary>button{display:block;width:100%;box-sizing:border-box;margin-top:18px;background:linear-gradient(135deg,#e3062e,#ff4562);color:#fff;text-decoration:none;border:0;border-radius:14px;padding:13px;text-align:center;font:inherit;font-weight:900;cursor:pointer}.phr-cart-summary>small,.phr-checkout-summary>small{display:block;margin-top:10px;color:#cfc4c9;line-height:1.6}.phr-checkout-error{background:#fff0f2;color:#b60e29;border:1px solid #ffd2d9;padding:13px 16px;border-radius:14px;margin-bottom:18px}.phr-checkout-form{background:transparent}.phr-checkout-fields{background:#fff;border:1px solid #eee;border-radius:28px;padding:26px}.phr-checkout-fields h2{margin:4px 0 18px;font-size:22px}.phr-checkout-fields>label,.phr-vodafone-extra>label{display:block;margin-bottom:14px;font-weight:800}.phr-checkout-fields input,.phr-checkout-fields textarea{width:100%;box-sizing:border-box;margin-top:7px;border:1px solid #e9e1e5;border-radius:13px;padding:12px;background:#fff;font:inherit}.phr-checkout-fields label small{display:block;color:#9b8e95;font-weight:500;margin-top:5px}.phr-payment-methods{display:grid;gap:10px;margin-bottom:15px}.phr-payment-methods label{display:flex;gap:10px;align-items:flex-start;border:1px solid #eee;border-radius:17px;padding:14px;cursor:pointer}.phr-payment-methods label:has(input:checked){border-color:#e3062e;background:#fff6f7}.phr-payment-methods input{width:auto;margin-top:5px}.phr-payment-methods span{display:grid;gap:3px}.phr-payment-methods small{color:#8e8187;font-weight:500}.phr-vodafone-extra{padding:16px;border-radius:18px;background:#fff6f7;border:1px solid #ffdbe1}.phr-vodafone-number{display:flex;justify-content:space-between;align-items:center;background:#171217;color:#fff;padding:12px 15px;border-radius:13px}.phr-vodafone-number strong{color:#ff4965}.phr-checkout-summary h2{margin-top:0}.phr-checkout-line,.phr-checkout-total{display:flex;justify-content:space-between;gap:10px;padding:12px 0;border-bottom:1px solid #ffffff15}.phr-checkout-total{padding-top:20px;border:0}.phr-order-success{padding:125px 20px 90px;background:linear-gradient(180deg,#fff6f5,#fff);font-family:Tajawal,Arial,sans-serif}.phr-order-success-card{width:min(900px,100%);margin:auto;background:#fff;border:1px solid #eee;border-radius:34px;padding:34px;box-shadow:0 24px 80px rgba(78,35,48,.08);text-align:center}.phr-order-success-icon{width:74px;height:74px;margin:-72px auto 18px;display:grid;place-items:center;border-radius:50%;background:linear-gradient(135deg,#e3062e,#ff7a5c);color:#fff;font-size:32px;border:7px solid #fff;box-shadow:0 12px 30px rgba(227,6,46,.18)}.phr-order-success-card>span{color:#e3062e;font-weight:900}.phr-order-success-card>h1{font-size:38px;margin:8px 0}.phr-order-success-card>p{color:#786c72}.phr-order-success-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin:25px 0}.phr-order-success-grid>div{background:#faf7f8;border-radius:16px;padding:14px}.phr-order-success-grid small{display:block;color:#8f8289;margin-bottom:5px}.phr-order-success-grid strong{color:#251d21}.phr-order-pay-now,.phr-order-back-store{display:inline-block;background:#171217;color:#fff;text-decoration:none;padding:13px 20px;border-radius:14px;font-weight:900;margin:10px}.phr-order-vodafone{display:grid;gap:6px;max-width:500px;margin:20px auto;padding:18px;background:#fff4f5;border-radius:18px}.phr-order-vodafone strong{font-size:23px;color:#e3062e}.phr-order-payment-note,.phr-order-mail-note{font-size:13px!important}.phr-order-invoice{margin-top:25px;text-align:right}.phr-store-toast{position:fixed;z-index:999999;bottom:26px;left:26px;max-width:320px;background:#171217;color:#fff;padding:13px 17px;border-radius:14px;box-shadow:0 18px 50px #0003;font-family:Tajawal,Arial,sans-serif;transform:translateY(20px);opacity:0;transition:.25s}.phr-store-toast.is-show{transform:none;opacity:1}.phr-store-toast strong{color:#ff4e69}
@keyframes phrStoreFloat{from{transform:translate3d(0,0,0) scale(.96)}to{transform:translate3d(50px,34px,0) scale(1.08)}}@keyframes phrStoreGrid{to{background-position:76px 76px}}@keyframes phrStoreMesh{0%{background-position:0 40%}50%{background-position:100% 60%}100%{background-position:0 40%}}
@media(max-width:980px){.phr-store-head{align-items:flex-start}.phr-products-grid{grid-template-columns:repeat(var(--phr-store-cols-t,2),minmax(0,1fr))}.phr-store-head h2{font-size:var(--phr-store-title-t,46px)}.phr-product-single-grid,.phr-cart-layout,.phr-checkout-grid{grid-template-columns:1fr}.phr-cart-summary,.phr-checkout-summary{position:static}.phr-order-success-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.phr-store-section{padding:72px 14px}.phr-store-head{display:grid}.phr-store-cart-link{width:max-content}.phr-store-head h2{font-size:var(--phr-store-title-m,34px)}.phr-products-grid{grid-template-columns:repeat(var(--phr-store-cols-m,1),minmax(0,1fr));gap:15px}.phr-product-single{padding:95px 10px 65px}.phr-product-single-shell,.phr-store-checkout-shell{width:calc(100% - 18px)}.phr-product-single-copy h1{font-size:36px}.phr-product-buy-row{align-items:stretch;flex-direction:column}.phr-store-page-head h1{font-size:33px}.phr-cart-item{grid-template-columns:66px 1fr auto}.phr-cart-item>img{width:66px;height:66px}.phr-cart-item-qty{grid-column:2}.phr-cart-item>b{grid-column:3}.phr-cart-remove{grid-column:2/4}.phr-order-success-card{padding:25px 15px}.phr-order-success-card>h1{font-size:30px}.phr-order-success-grid{grid-template-columns:1fr 1fr}}
@media(prefers-reduced-motion:reduce){.phr-store-motion *{animation:none!important}.phr-product-card{transition:none}}

/* ================================================================
   v9.20.1 — Premium light store + header mini cart
   ================================================================ */
#phr-header .phr-header-cart-wrap{position:relative;display:flex;align-items:center;justify-content:center;z-index:10005}
#phr-header .phr-header-cart-toggle{position:relative;width:56px;height:56px;border-radius:18px;border:1px solid rgba(255,255,255,.22);background:rgba(17,19,26,.84);color:#fff;display:grid;place-items:center;cursor:pointer;box-shadow:0 14px 34px rgba(15,17,24,.18);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);transition:transform .22s ease,box-shadow .22s ease,background .22s ease,border-color .22s ease;color .22s ease}
#phr-header .phr-header-cart-toggle:hover,#phr-header .phr-header-cart-toggle[aria-expanded="true"]{transform:translateY(-2px);background:#11131a;border-color:rgba(227,6,46,.34);box-shadow:0 18px 38px rgba(15,17,24,.22),0 0 0 4px rgba(227,6,46,.06)}
#phr-header .phr-header-cart-toggle svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
#phr-header.is-sticky-shadow .phr-header-cart-toggle{background:#fff;color:#11131a;border-color:rgba(17,19,26,.08);box-shadow:0 10px 28px rgba(15,17,24,.10)}
#phr-header.is-sticky-shadow .phr-header-cart-toggle:hover,#phr-header.is-sticky-shadow .phr-header-cart-toggle[aria-expanded="true"]{color:#e3062e;border-color:rgba(227,6,46,.22)}
.phr-header-cart-badge{position:absolute;top:-5px;right:-5px;min-width:22px;height:22px;padding:0 6px;border-radius:999px;background:linear-gradient(135deg,#e3062e,#ff244b);color:#fff;border:2px solid #fff;display:grid;place-items:center;font:900 10px/1 Tajawal,Arial,sans-serif;box-shadow:0 8px 18px rgba(227,6,46,.30);opacity:0;transform:scale(.65);transition:opacity .2s ease,transform .2s ease}
.phr-header-cart-badge.has-items{opacity:1;transform:scale(1)}
.phr-header-cart-badge.is-pulse{animation:phrCartBadgePulse .52s ease}
@keyframes phrCartBadgePulse{0%{transform:scale(.75)}45%{transform:scale(1.28)}100%{transform:scale(1)}}
.phr-header-cart-popover{position:absolute;top:calc(100% + 14px);left:0;width:min(410px,calc(100vw - 28px));background:rgba(255,255,255,.98);color:#11131a;border:1px solid rgba(17,19,26,.08);border-radius:26px;box-shadow:0 28px 80px rgba(23,27,38,.18);padding:16px;opacity:0;visibility:hidden;transform:translateY(-8px) scale(.985);transform-origin:top left;pointer-events:none;transition:opacity .2s ease,visibility .2s ease,transform .2s ease;backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);font-family:Tajawal,Arial,sans-serif}
.phr-header-cart-popover:before{content:"";position:absolute;top:-7px;left:24px;width:14px;height:14px;background:#fff;border-left:1px solid rgba(17,19,26,.08);border-top:1px solid rgba(17,19,26,.08);transform:rotate(45deg)}
.phr-header-cart-popover.is-open{opacity:1;visibility:visible;transform:translateY(0) scale(1);pointer-events:auto}
.phr-header-cart-top{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:3px 4px 13px;border-bottom:1px solid #f0f1f5}
.phr-header-cart-top>div{display:grid;gap:2px}.phr-header-cart-top small{color:#8a91a0;font-size:10px;font-weight:800}.phr-header-cart-top strong{font-size:16px;font-weight:900}.phr-header-cart-total-count{flex:none;background:#fff1f3;color:#d80028;border:1px solid #ffd8df;border-radius:999px;padding:7px 10px;font-size:11px;font-weight:800}.phr-header-cart-total-count b{font-size:12px}
.phr-header-cart-items{max-height:330px;overflow:auto;padding:8px 0 3px;scrollbar-width:thin;scrollbar-color:#e5e7ed transparent}
.phr-header-cart-item{position:relative;display:grid;grid-template-columns:58px minmax(0,1fr) auto;gap:10px;align-items:center;padding:9px 3px;border-bottom:1px solid #f3f4f7}.phr-header-cart-item:last-child{border-bottom:0}.phr-header-cart-thumb{width:58px;height:58px;border-radius:15px;overflow:hidden;background:#f4f6fb;display:grid;place-items:center;text-decoration:none;color:#e3062e}.phr-header-cart-thumb img{width:100%;height:100%;object-fit:cover}.phr-header-cart-copy{min-width:0;display:grid;gap:5px}.phr-header-cart-copy>a{color:#11131a;text-decoration:none;font-size:12.5px;font-weight:900;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.phr-header-cart-copy small{color:#888f9c;font-size:10.5px;font-weight:700}.phr-header-cart-item>strong{color:#e3062e;font-size:11px;white-space:nowrap;padding-inline-end:22px}.phr-header-cart-remove{position:absolute;left:2px;top:7px;width:22px;height:22px;border-radius:50%;border:0;background:#f5f6f8;color:#7d8490;display:grid;place-items:center;cursor:pointer;font-size:17px;line-height:1;transition:.18s}.phr-header-cart-remove:hover{background:#11131a;color:#fff}
.phr-header-cart-empty{display:grid;place-items:center;text-align:center;gap:5px;padding:28px 10px}.phr-header-cart-empty>span{font-size:30px;filter:grayscale(1);opacity:.45}.phr-header-cart-empty strong{font-size:14px}.phr-header-cart-empty small{color:#8a91a0;font-size:11px}
.phr-header-cart-bottom{padding-top:12px;border-top:1px solid #f0f1f5}.phr-header-cart-bottom>div:first-child{display:flex;align-items:center;justify-content:space-between;margin-bottom:11px}.phr-header-cart-bottom span{color:#777f8e;font-size:11px;font-weight:800}.phr-header-cart-bottom strong{font-size:15px;color:#11131a}.phr-header-cart-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px}.phr-header-cart-actions a{text-decoration:none;text-align:center;border-radius:13px;padding:11px 8px;background:#f2f4f8;color:#11131a;font-size:11px;font-weight:900}.phr-header-cart-actions a.is-primary{background:linear-gradient(135deg,#11131a,#262a35);color:#fff;box-shadow:0 10px 24px rgba(17,19,26,.14)}.phr-header-cart-actions a.is-primary:hover{background:linear-gradient(135deg,#e3062e,#ff244b)}

.phr-store-section{background:linear-gradient(135deg,var(--phr-store-bg,#f5f7ff) 0%,#fbfcff 42%,#fff7f8 100%);padding:104px 22px;isolation:isolate}
.phr-store-section:before{content:"";position:absolute;inset:0;pointer-events:none;z-index:0;background:radial-gradient(circle at 86% 12%,rgba(227,6,46,.09),transparent 24%),radial-gradient(circle at 9% 78%,rgba(108,99,255,.13),transparent 28%),linear-gradient(120deg,rgba(255,255,255,.0),rgba(255,255,255,.72) 48%,rgba(255,255,255,0) 70%);background-size:auto,auto,220% 100%;animation:phrStorePearl 10s ease-in-out infinite alternate}
@keyframes phrStorePearl{from{background-position:center,center,0 0}to{background-position:center,center,100% 0}}
.phr-store-section .phr-store-motion{opacity:1;z-index:0}
.phr-store-motion i{filter:blur(1px);mix-blend-mode:multiply;opacity:.76}
.phr-store-motion i:nth-child(1){width:430px;height:430px;right:-105px;top:-150px;background:radial-gradient(circle,rgba(227,6,46,.17),rgba(227,6,46,.035) 45%,transparent 70%)}
.phr-store-motion i:nth-child(2){width:520px;height:520px;left:-175px;bottom:-225px;background:radial-gradient(circle,rgba(108,99,255,.20),rgba(108,99,255,.04) 48%,transparent 72%)}
.phr-store-motion i:nth-child(3){width:250px;height:250px;left:42%;top:12%;background:radial-gradient(circle,rgba(78,191,255,.12),transparent 68%)}
.phr-store-section.motion-circles .phr-store-motion b{opacity:.75;background-image:radial-gradient(circle at center,transparent 0 28px,rgba(108,99,255,.075) 29px 30px,transparent 31px),radial-gradient(circle at center,transparent 0 11px,rgba(227,6,46,.055) 12px 13px,transparent 14px);background-size:92px 92px,58px 58px;background-position:0 0,24px 19px;mask-image:linear-gradient(115deg,rgba(0,0,0,.65),rgba(0,0,0,.22) 60%,transparent 94%);animation:phrStoreGrid var(--phr-store-motion,18s) linear infinite}
.phr-store-section.motion-orbs .phr-store-motion b{background-image:radial-gradient(circle,rgba(227,6,46,.07) 0 4px,transparent 5px),radial-gradient(circle,rgba(108,99,255,.08) 0 3px,transparent 4px);background-size:58px 58px,43px 43px;animation:phrStoreGrid var(--phr-store-motion,18s) linear infinite}
.phr-store-section.motion-mesh .phr-store-motion b{opacity:.8;background:linear-gradient(120deg,rgba(227,6,46,.08),transparent 26%,rgba(108,99,255,.13) 55%,transparent 78%,rgba(78,191,255,.08));background-size:240% 240%;animation:phrStoreMesh var(--phr-store-motion,18s) ease infinite}
.phr-store-shell{z-index:2}
.phr-store-head{align-items:center;margin-bottom:34px}
.phr-store-head-copy{max-width:860px}
.phr-store-kicker{position:relative;overflow:hidden;background:rgba(255,255,255,.84);border:1px solid rgba(17,19,26,.07);color:#11131a;box-shadow:0 10px 30px rgba(34,39,60,.06);padding:8px 13px}.phr-store-kicker i{font-style:normal;color:var(--phr-store-accent);animation:phrStoreSpark 2.1s ease-in-out infinite}@keyframes phrStoreSpark{50%{transform:rotate(25deg) scale(1.18);filter:drop-shadow(0 0 7px rgba(227,6,46,.35))}}
.phr-store-head h2{position:relative;margin:15px 0 0;color:var(--phr-store-title);font-size:var(--phr-store-title-d,58px);font-weight:900;line-height:1.08;letter-spacing:-1.7px;text-shadow:0 1px 0 #fff}.phr-store-head h2:after{display:none!important}
.phr-store-title-line{position:relative;display:block;width:min(190px,48%);height:7px;margin:14px 0 13px;border-radius:999px;background:rgba(17,19,26,.08);overflow:hidden}.phr-store-title-line:before{content:"";position:absolute;inset:0;width:74%;border-radius:inherit;background:linear-gradient(90deg,var(--phr-store-accent),#ff244b 48%,var(--phr-store-alt));box-shadow:0 4px 14px rgba(227,6,46,.18)}.phr-store-title-line i{position:absolute;top:0;bottom:0;width:34%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.92),transparent);animation:phrStoreTitleShine 2.7s linear infinite}@keyframes phrStoreTitleShine{from{right:-35%}to{right:105%}}
.phr-store-head p{font-size:16px;color:var(--phr-store-desc);max-width:750px}
.phr-store-cart-link{background:rgba(255,255,255,.88);color:#11131a;border:1px solid rgba(17,19,26,.07);box-shadow:0 14px 38px rgba(34,39,60,.08);padding:10px 12px 10px 15px}.phr-store-cart-link:hover{color:#11131a;border-color:rgba(227,6,46,.22);box-shadow:0 18px 42px rgba(34,39,60,.12)}.phr-store-cart-link svg{width:20px;height:20px;fill:none;stroke:#11131a;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.phr-store-cart-link b{background:linear-gradient(135deg,var(--phr-store-accent),#ff244b);color:#fff}
.phr-store-cats a{background:rgba(255,255,255,.78);border-color:rgba(17,19,26,.07);color:#51596a;box-shadow:0 6px 20px rgba(34,39,60,.035)}.phr-store-cats a:hover,.phr-store-cats a.is-active{background:#11131a;border-color:#11131a;color:#fff;box-shadow:0 9px 24px rgba(17,19,26,.15)}
.phr-product-card{border-color:rgba(48,55,76,.075);box-shadow:0 18px 48px rgba(36,44,72,.07);background:rgba(255,255,255,.94)}.phr-product-card:hover{transform:translateY(-8px);border-color:rgba(227,6,46,.16);box-shadow:0 25px 64px rgba(36,44,72,.12)}.phr-product-media{background:linear-gradient(145deg,#fff,#f1f4ff)}.phr-product-copy h3 a{color:#11131a}.phr-product-copy p{color:#737b8c}.phr-product-actions a{background:#f0f2f8;color:#242936}.phr-product-actions button{background:linear-gradient(135deg,#11131a,#2b3040);box-shadow:0 9px 22px rgba(17,19,26,.14)}.phr-product-actions button:hover{background:linear-gradient(135deg,var(--phr-store-accent),#ff244b)}.phr-store-more a{background:rgba(255,255,255,.85);color:#11131a;border-color:rgba(17,19,26,.07);box-shadow:0 10px 28px rgba(34,39,60,.055)}

@media(max-width:980px){#phr-header .phr-header-cart-popover{left:0}.phr-store-head h2{font-size:var(--phr-store-title-t,46px)}}
@media(max-width:640px){#phr-header .phr-header-cart-toggle{width:46px;height:46px;border-radius:14px}#phr-header .phr-header-cart-toggle svg{width:22px;height:22px}.phr-header-cart-popover{position:fixed;top:calc(var(--phr-height,80px) + var(--phr-adminbar,0px) + 8px);left:14px!important;right:14px;width:auto;transform-origin:top center}.phr-header-cart-popover:before{display:none}.phr-store-section{padding:78px 14px}.phr-store-head{display:grid;gap:18px}.phr-store-head h2{font-size:var(--phr-store-title-m,34px)}.phr-store-title-line{width:140px}.phr-store-cart-link{width:max-content}}
@media(prefers-reduced-motion:reduce){.phr-store-section:before,.phr-store-title-line i,.phr-store-kicker i,.phr-header-cart-badge{animation:none!important}}


/* v9.20.2 — Scheduled offers and checkout coupons */
.phr-product-offer-window{display:inline-flex;align-items:center;gap:8px;margin:4px 0 14px;padding:8px 12px;border-radius:12px;background:#fff1f4;border:1px solid rgba(227,6,46,.14);color:#9e1029}.phr-product-offer-window span{font-weight:900}.phr-product-offer-window small{color:#7b6670}.phr-coupon-box{margin:16px 0;padding:15px;border-radius:17px;background:linear-gradient(135deg,#fff7fa,#fff);border:1px dashed rgba(227,6,46,.28)}.phr-coupon-box>label{display:block;font-weight:900;margin-bottom:9px}.phr-coupon-box>div{display:flex;gap:8px}.phr-coupon-box input{min-width:0;flex:1;border:1px solid #e7dce1;border-radius:12px;padding:12px 13px;font:inherit;text-transform:uppercase}.phr-coupon-box button{border:0;border-radius:12px;padding:0 17px;background:#171217;color:#fff;font-weight:900;cursor:pointer}.phr-coupon-box button:hover{background:#e3062e}.phr-coupon-box button.is-loading{opacity:.65;cursor:wait}.phr-coupon-box small{display:block;margin-top:8px;min-height:18px}.phr-coupon-box small.is-success{color:#15804a}.phr-coupon-box small.is-error{color:#c91c37}.phr-checkout-subtotal,.phr-checkout-discount{display:flex;justify-content:space-between;gap:16px;padding:10px 0;border-top:1px solid rgba(34,24,30,.07)}.phr-checkout-discount{color:#12814a}.phr-checkout-discount[hidden]{display:none!important}


/* ==========================================================
   v9.20.4 — Brand-red language + cart controls
   ========================================================== */
#phr-header .phr-language-toggle,
#phr-header .phr-header-cart-toggle{
  background:rgba(255,255,255,.96)!important;
  color:#e3062e!important;
  border-color:rgba(227,6,46,.22)!important;
  box-shadow:0 12px 30px rgba(227,6,46,.10)!important;
}
#phr-header .phr-language-toggle:hover,
#phr-header .phr-header-cart-toggle:hover,
#phr-header .phr-header-cart-toggle[aria-expanded="true"]{
  background:#fff3f5!important;
  color:#c90027!important;
  border-color:rgba(227,6,46,.42)!important;
  box-shadow:0 16px 34px rgba(227,6,46,.16),0 0 0 4px rgba(227,6,46,.06)!important;
}
#phr-header.is-sticky-shadow .phr-language-toggle,
#phr-header.is-sticky-shadow .phr-header-cart-toggle,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-language-toggle{
  background:rgba(255,255,255,.96)!important;
  color:#e3062e!important;
  border-color:rgba(227,6,46,.22)!important;
}
#phr-header .phr-language-toggle svg,
#phr-header .phr-header-cart-toggle svg{stroke:currentColor!important;}


/* v9.20.5 — Light premium checkout / cart summary */
.phr-store-checkout-shell{
  position:relative;
  isolation:isolate;
  overflow:hidden;
}
.phr-store-checkout-shell::before,
.phr-store-checkout-shell::after{
  content:"";
  position:absolute;
  z-index:-2;
  border-radius:999px;
  pointer-events:none;
  filter:blur(10px);
  opacity:.72;
}
.phr-store-checkout-shell::before{
  width:380px;
  height:380px;
  inset:-70px auto auto -110px;
  background:radial-gradient(circle at 35% 35%,rgba(255,74,102,.26),rgba(255,175,190,.11) 46%,transparent 72%);
  animation:phrStoreCheckoutFloatA 11s ease-in-out infinite alternate;
}
.phr-store-checkout-shell::after{
  width:460px;
  height:460px;
  inset:auto -150px -120px auto;
  background:radial-gradient(circle at 45% 45%,rgba(255,205,214,.38),rgba(255,244,246,.18) 50%,transparent 74%);
  animation:phrStoreCheckoutFloatB 13s ease-in-out infinite alternate;
}
.phr-checkout-grid,.phr-cart-layout{position:relative;z-index:1}
.phr-checkout-grid::before,.phr-cart-layout::before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:-24px;
  border-radius:38px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.78),rgba(255,247,249,.58)),
    radial-gradient(circle at 12% 16%,rgba(227,6,46,.06),transparent 32%),
    radial-gradient(circle at 88% 82%,rgba(255,91,117,.08),transparent 34%);
  border:1px solid rgba(227,6,46,.08);
  box-shadow:0 26px 80px rgba(83,40,53,.06);
  backdrop-filter:blur(16px);
}
.phr-cart-summary,.phr-checkout-summary{
  color:#241a1f;
  background:
    linear-gradient(145deg,rgba(255,255,255,.96),rgba(255,246,248,.94)),
    radial-gradient(circle at 86% 8%,rgba(227,6,46,.09),transparent 32%);
  border:1px solid rgba(227,6,46,.13);
  box-shadow:0 20px 55px rgba(109,55,70,.11);
  overflow:hidden;
}
.phr-cart-summary::before,.phr-checkout-summary::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg,#e3062e,#ff5c76,#ffb6c1,#e3062e);
  background-size:240% 100%;
  animation:phrStoreCheckoutAccent 6s linear infinite;
}
.phr-cart-summary::after,.phr-checkout-summary::after{
  content:"";
  position:absolute;
  width:130px;
  height:130px;
  border-radius:50%;
  top:-70px;
  left:-52px;
  background:radial-gradient(circle,rgba(227,6,46,.12),rgba(227,6,46,.02) 58%,transparent 70%);
  pointer-events:none;
}
.phr-cart-summary>span{color:#d80b31}
.phr-checkout-summary h2{
  color:#1c1519;
  font-weight:900;
  position:relative;
  padding-bottom:13px;
}
.phr-checkout-summary h2::after{
  content:"";
  display:block;
  width:62px;
  height:4px;
  margin-top:10px;
  border-radius:999px;
  background:linear-gradient(90deg,#e3062e,#ff6179);
  box-shadow:0 5px 15px rgba(227,6,46,.18);
}
.phr-cart-summary>div,.phr-checkout-line{
  border-bottom-color:rgba(42,28,35,.08);
}
.phr-checkout-line span,.phr-checkout-subtotal span,.phr-checkout-total span{color:#382b32}
.phr-checkout-line b,.phr-checkout-subtotal strong{color:#1f171b}
.phr-checkout-total strong,.phr-cart-summary .is-total strong{color:#e3062e}
.phr-cart-summary>small,.phr-checkout-summary>small{color:#817079}
.phr-coupon-box{
  background:linear-gradient(135deg,#fff,#fff5f7);
  border:1px dashed rgba(227,6,46,.28);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 10px 26px rgba(120,62,78,.05);
}
.phr-coupon-box>label{color:#24191f}
.phr-coupon-box input{
  background:#fff;
  color:#2b2025;
  border-color:#eadce1;
}
.phr-coupon-box input::placeholder{color:#a79aa0}
.phr-coupon-box button{
  background:linear-gradient(135deg,#e3062e,#ff4562);
  color:#fff;
  box-shadow:0 9px 22px rgba(227,6,46,.16);
}
.phr-coupon-box button:hover{transform:translateY(-1px);filter:saturate(1.08)}
.phr-checkout-subtotal,.phr-checkout-discount{border-top-color:rgba(42,28,35,.07)}
.phr-checkout-discount{color:#12814a}
.phr-checkout-summary>button,.phr-cart-summary>a{
  background:linear-gradient(135deg,#e3062e,#ff4562 58%,#ff7189);
  box-shadow:0 15px 34px rgba(227,6,46,.19);
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
}
.phr-checkout-summary>button:hover,.phr-cart-summary>a:hover{
  transform:translateY(-2px);
  box-shadow:0 19px 38px rgba(227,6,46,.24);
  filter:saturate(1.08);
}
@keyframes phrStoreCheckoutAccent{to{background-position:240% 0}}
@keyframes phrStoreCheckoutFloatA{from{transform:translate3d(0,0,0) scale(1)}to{transform:translate3d(38px,26px,0) scale(1.08)}}
@keyframes phrStoreCheckoutFloatB{from{transform:translate3d(0,0,0) scale(1)}to{transform:translate3d(-34px,-24px,0) scale(.94)}}
@media(max-width:980px){
  .phr-checkout-grid::before,.phr-cart-layout::before{inset:-14px;border-radius:28px}
}
@media(max-width:640px){
  .phr-store-checkout-shell::before{width:280px;height:280px;left:-130px}
  .phr-store-checkout-shell::after{width:320px;height:320px;right:-150px}
  .phr-checkout-grid::before,.phr-cart-layout::before{inset:-8px;border-radius:24px}
  .phr-cart-summary,.phr-checkout-summary{border-radius:22px;padding:20px}
}
@media(prefers-reduced-motion:reduce){
  .phr-store-checkout-shell::before,.phr-store-checkout-shell::after,.phr-cart-summary::before,.phr-checkout-summary::before{animation:none!important}
}


/* ==========================================================================
   v9.20.6 — Premium product detail, video, order box & customer reviews
   ========================================================================== */
.phr-product-single-v2{
  position:relative;
  overflow:hidden;
  padding:118px 20px 96px;
  background:
    linear-gradient(180deg,#fff 0%,#fff8f9 42%,#fff 100%);
  color:#1d1519;
}
.phr-product-single-v2 .phr-product-single-shell{position:relative;z-index:2;width:min(1280px,calc(100% - 24px))}
.phr-product-single-bg{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.phr-product-single-bg i{position:absolute;border-radius:999px;filter:blur(2px);opacity:.72}
.phr-product-single-bg i:first-child{width:520px;height:520px;right:-220px;top:90px;background:radial-gradient(circle,rgba(227,6,46,.10),rgba(255,91,117,.04) 45%,transparent 72%);animation:phrProductFloatA 16s ease-in-out infinite alternate}
.phr-product-single-bg i:nth-child(2){width:440px;height:440px;left:-180px;top:620px;background:radial-gradient(circle,rgba(255,162,179,.15),transparent 70%);animation:phrProductFloatB 20s ease-in-out infinite alternate}
.phr-product-single-bg b{position:absolute;inset:0;background-image:linear-gradient(rgba(227,6,46,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(227,6,46,.025) 1px,transparent 1px);background-size:46px 46px;mask-image:linear-gradient(to bottom,#000 0%,transparent 92%)}
.phr-product-breadcrumb{display:flex;align-items:center;gap:10px;margin-bottom:24px;color:#9a8d93;font-size:13px;font-weight:700}
.phr-product-breadcrumb a{text-decoration:none;color:#e3062e}.phr-product-breadcrumb strong{color:#4a3d43}
.phr-product-hero-grid{grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);gap:56px;align-items:start}
.phr-product-gallery{position:sticky;top:112px}
.phr-product-main-image{position:relative;aspect-ratio:1.08/1;border-radius:36px;background:linear-gradient(145deg,#fff,#fff4f5);border:1px solid rgba(46,29,37,.07);box-shadow:0 28px 85px rgba(77,35,48,.10);isolation:isolate}
.phr-product-main-image:after{content:"";position:absolute;inset:12px;border:1px solid rgba(255,255,255,.72);border-radius:27px;pointer-events:none}
.phr-product-main-image img{transition:transform .5s ease}.phr-product-main-image:hover img{transform:scale(1.018)}
.phr-product-gallery-badge{position:absolute;top:20px;right:20px;z-index:3;padding:9px 13px;border-radius:12px;background:#171217;color:#ff3858;border:1px solid rgba(255,56,88,.26);font-size:12px;font-weight:900;box-shadow:0 12px 30px rgba(0,0,0,.13)}
.phr-product-thumbs{padding:4px 2px 8px;scrollbar-width:none}.phr-product-thumbs::-webkit-scrollbar{display:none}
.phr-product-thumbs button{width:86px;height:86px;border:1px solid rgba(48,30,38,.08);border-radius:18px;transition:.2s;opacity:.76}
.phr-product-thumbs button:hover,.phr-product-thumbs button.is-active{opacity:1;border-color:#e3062e;box-shadow:0 9px 24px rgba(227,6,46,.12);transform:translateY(-2px)}
.phr-product-single-copy{padding:10px 0}
.phr-product-category-line{display:inline-flex;padding:7px 11px;border-radius:999px;background:#fff0f3;color:#d9082d;font-size:12px;font-weight:900;border:1px solid #ffdce2}
.phr-product-single-v2 .phr-product-single-copy h1{position:relative;display:inline-block;margin:14px 0 12px;font-size:clamp(38px,4.7vw,68px);line-height:1.03;letter-spacing:-1.5px;color:#171217;font-weight:900}
.phr-product-single-v2 .phr-product-single-copy h1:after{content:"";display:block;width:88px;height:6px;margin-top:13px;border-radius:999px;background:linear-gradient(90deg,#e3062e,#ff5a75,#171217);box-shadow:0 7px 18px rgba(227,6,46,.15)}
.phr-product-rating-summary{display:flex;align-items:center;gap:10px;margin:9px 0 15px;font-size:13px}
.phr-product-rating-summary strong{font-size:15px;color:#302329}.phr-product-rating-summary a{color:#8c7d84;text-decoration:none;border-bottom:1px dashed #cdbfc5}
.phr-review-stars{display:inline-flex;gap:2px;direction:ltr}.phr-review-stars i{font-style:normal;color:#e4d8dd;font-size:17px}.phr-review-stars i.is-on{color:#f6a700;text-shadow:0 3px 10px rgba(246,167,0,.18)}
.phr-product-single-v2 .phr-product-lead{max-width:720px;font-size:17px;color:#71636a;line-height:1.95}
.phr-product-single-v2 .phr-product-single-price{margin:18px 0 16px}.phr-product-single-v2 .phr-product-single-price strong{font-size:36px}.phr-product-single-v2 .phr-product-single-price del{font-size:16px}
.phr-product-order-box{position:relative;margin-top:22px;padding:24px;border-radius:28px;background:linear-gradient(145deg,rgba(255,255,255,.98),rgba(255,247,249,.96));border:1px solid rgba(227,6,46,.12);box-shadow:0 22px 64px rgba(91,44,58,.09);overflow:hidden}
.phr-product-order-box:before{content:"";position:absolute;inset:0 0 auto;height:5px;background:linear-gradient(90deg,#171217,#e3062e,#ff647c,#e3062e);background-size:220% 100%;animation:phrProductAccent 7s linear infinite}
.phr-product-order-box:after{content:"";position:absolute;width:130px;height:130px;left:-50px;top:-72px;border-radius:50%;background:radial-gradient(circle,rgba(227,6,46,.13),transparent 68%);pointer-events:none}
.phr-product-order-head{position:relative;display:grid;gap:3px;margin-bottom:14px;padding-bottom:14px;border-bottom:1px solid rgba(48,30,38,.07)}
.phr-product-order-head span{font-size:20px;font-weight:900;color:#1d1519}.phr-product-order-head small{color:#93858b;font-size:12px}
.phr-product-order-row,.phr-product-order-qty,.phr-product-order-total{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:11px 0;border-bottom:1px solid rgba(48,30,38,.065)}
.phr-product-order-row span,.phr-product-order-qty>span,.phr-product-order-total span{color:#7d6f76;font-size:13px;font-weight:700}
.phr-product-order-row strong{font-size:14px;color:#302329}.phr-product-order-row strong.is-in{color:#12814a}.phr-product-order-row strong.is-out{color:#c91635}
.phr-product-order-box .phr-store-qty{border-radius:13px}.phr-product-order-box .phr-store-qty button{width:38px;height:40px}.phr-product-order-box .phr-store-qty input{height:40px}
.phr-product-order-total{margin-top:3px;padding:16px 0 12px;border-bottom:0}.phr-product-order-total strong{font-size:24px;color:#e3062e}
.phr-product-order-box .phr-product-buy{width:100%;height:53px;display:block;flex:none;margin-top:5px;box-shadow:0 15px 34px rgba(227,6,46,.20);transition:.2s}
.phr-product-order-box .phr-product-buy:hover{transform:translateY(-2px);box-shadow:0 19px 38px rgba(227,6,46,.25)}
.phr-product-cart-secondary{display:block;margin-top:9px;text-align:center;text-decoration:none;color:#34272d;background:#f5f0f2;border-radius:14px;padding:12px;font-weight:900}
.phr-product-payment-mini{margin-top:17px;padding-top:15px;border-top:1px solid rgba(48,30,38,.07)}.phr-product-payment-mini>span{display:block;margin-bottom:9px;color:#8f8087;font-size:12px;font-weight:800}
.phr-product-payment-mini>div{display:flex;flex-wrap:wrap;gap:7px}.phr-product-payment-mini b{display:inline-flex;align-items:center;gap:6px;padding:7px 9px;border-radius:10px;background:#fff;border:1px solid #eee3e7;font-size:11px;color:#45383e}.phr-product-payment-mini b i{display:grid;place-items:center;width:20px;height:20px;border-radius:7px;background:#171217;color:#ff3858;font-style:normal;font-size:10px}
.phr-product-order-note{margin-top:12px;padding:11px 12px;border-radius:12px;background:#fff7f8;color:#897981;font-size:11px;line-height:1.7}
.phr-product-section-head{margin-bottom:24px}.phr-product-section-head>span{display:inline-block;color:#e3062e;font-size:12px;font-weight:900;letter-spacing:.2px}.phr-product-section-head h2{margin:7px 0 9px;font-size:clamp(28px,3vw,42px);line-height:1.12;color:#1c1519;font-weight:900}.phr-product-section-head>i{display:block;width:78px;height:5px;border-radius:999px;background:linear-gradient(90deg,#e3062e,#ff647c,#171217);box-shadow:0 6px 17px rgba(227,6,46,.14)}
.phr-product-feature-section,.phr-product-details-v2,.phr-product-specs,.phr-product-videos,.phr-product-reviews{position:relative;margin-top:68px}
.phr-product-feature-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.phr-product-feature-grid article{display:flex;align-items:center;gap:12px;padding:17px 18px;border-radius:19px;background:#fff;border:1px solid rgba(47,30,38,.07);box-shadow:0 12px 32px rgba(75,39,50,.045)}
.phr-product-feature-grid article b{display:grid;place-items:center;flex:none;width:34px;height:34px;border-radius:11px;background:linear-gradient(135deg,#171217,#32262c);color:#ff4965}.phr-product-feature-grid article span{font-weight:800;color:#44363c;line-height:1.6}
.phr-product-details-v2{padding:34px 36px;background:linear-gradient(145deg,#fff,#fff9fa);border-radius:30px;border:1px solid rgba(48,30,38,.07);box-shadow:0 18px 55px rgba(80,40,54,.055)}
.phr-product-richtext{color:#62555c;font-size:16px;line-height:2}.phr-product-richtext p:last-child{margin-bottom:0}.phr-product-richtext h2,.phr-product-richtext h3{color:#231a1e}
.phr-product-specs-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.phr-product-specs-grid>div{display:flex;justify-content:space-between;gap:18px;padding:15px 17px;border-radius:16px;background:#fff;border:1px solid rgba(48,30,38,.07)}.phr-product-specs-grid span{color:#8a7a82}.phr-product-specs-grid strong{color:#2d2227;text-align:left}
.phr-product-video-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.phr-product-video-grid article{padding:12px;border-radius:24px;background:#171217;border:1px solid rgba(255,255,255,.07);box-shadow:0 18px 48px rgba(26,16,20,.10)}.phr-product-video-label{display:flex;align-items:center;gap:8px;color:#fff;padding:4px 5px 10px;font-weight:900}.phr-product-video-label b{display:grid;place-items:center;width:29px;height:29px;border-radius:9px;background:#e3062e;color:#fff;font-size:10px}.phr-product-video-frame{position:relative;aspect-ratio:16/9;border-radius:17px;overflow:hidden;background:#050505}.phr-product-video-frame iframe,.phr-product-video-frame video{position:absolute;inset:0;width:100%;height:100%;border:0;object-fit:cover}
.phr-product-review-layout{display:grid;grid-template-columns:320px minmax(0,1fr);gap:22px;align-items:start}
.phr-review-overview{position:sticky;top:110px;padding:24px;border-radius:26px;background:linear-gradient(145deg,#171217,#2b2025);color:#fff;box-shadow:0 22px 55px rgba(36,22,28,.12)}
.phr-review-score{display:flex;align-items:end;gap:8px}.phr-review-score strong{font-size:54px;line-height:1;color:#fff}.phr-review-score span{color:#b9aeb3;margin-bottom:5px}.phr-review-overview>.phr-review-stars{margin:10px 0 4px}.phr-review-overview p{color:#c8bdc2;font-size:12px}
.phr-review-bars{display:grid;gap:8px;margin-top:18px}.phr-review-bars>div{display:grid;grid-template-columns:38px 1fr 26px;align-items:center;gap:8px;font-size:11px;color:#d8cdd2}.phr-review-bars b{height:6px;border-radius:999px;background:#ffffff18;overflow:hidden}.phr-review-bars b i{display:block;height:100%;background:linear-gradient(90deg,#e3062e,#ff647c);border-radius:inherit}.phr-review-bars small{text-align:left}
.phr-review-list{display:grid;gap:12px}.phr-review-card{padding:19px;border-radius:21px;background:#fff;border:1px solid rgba(48,30,38,.07);box-shadow:0 12px 35px rgba(75,39,50,.045)}.phr-review-card-head{display:grid;grid-template-columns:42px minmax(0,1fr) auto;gap:10px;align-items:center}.phr-review-avatar{display:grid;place-items:center;width:42px;height:42px;border-radius:14px;background:#fff0f3;color:#d90a30;font-weight:900;font-size:18px}.phr-review-card-head strong{display:block;color:#2a2025}.phr-review-card-head small{display:block;margin-top:2px;color:#9b8d94;font-size:10px}.phr-review-card-head small em{font-style:normal;color:#13804a;font-weight:800}.phr-review-card p{margin:13px 0 0;color:#685b62;line-height:1.85}.phr-review-empty{display:grid;gap:4px;text-align:center;padding:42px;border-radius:22px;background:#fff;border:1px dashed #e7d9de;color:#8b7c84}.phr-review-empty b{color:#302329}
.phr-product-review-form{margin-top:24px;padding:28px;border-radius:28px;background:linear-gradient(145deg,#fff,#fff7f9);border:1px solid rgba(227,6,46,.11);box-shadow:0 18px 55px rgba(80,40,54,.06)}.phr-review-form-head>span{color:#e3062e;font-size:12px;font-weight:900}.phr-review-form-head h3{margin:4px 0;font-size:28px}.phr-review-form-head p{margin:0 0 18px;color:#897a82;font-size:13px}.phr-review-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px}.phr-review-form-grid label,.phr-review-form-grid fieldset{display:grid;gap:7px;margin:0;border:0;padding:0;font-weight:800;color:#45383e}.phr-review-form-grid label.is-full{grid-column:1/-1}.phr-review-form-grid input,.phr-review-form-grid textarea{width:100%;box-sizing:border-box;border:1px solid #e9dfe3;border-radius:13px;padding:12px 13px;background:#fff;font:inherit;outline:none}.phr-review-form-grid input:focus,.phr-review-form-grid textarea:focus{border-color:#e3062e;box-shadow:0 0 0 4px rgba(227,6,46,.055)}.phr-review-form-grid label small{font-weight:500;color:#9b8d94}
.phr-review-rating-input{display:inline-flex;flex-direction:row-reverse;justify-content:flex-end;gap:2px}.phr-review-rating-input input{position:absolute;opacity:0;pointer-events:none}.phr-review-rating-input label{display:block!important;font-size:29px;color:#e1d6db;cursor:pointer;line-height:1}.phr-review-rating-input input:checked~label,.phr-review-rating-input label:hover,.phr-review-rating-input label:hover~label{color:#f6a700}
.phr-product-review-form>button{margin-top:16px;border:0;border-radius:14px;padding:13px 22px;background:linear-gradient(135deg,#171217,#e3062e);color:#fff;font:inherit;font-weight:900;cursor:pointer;box-shadow:0 13px 30px rgba(227,6,46,.15)}.phr-review-privacy{display:block;margin-top:10px;color:#9b8d94;line-height:1.6}.phr-review-message{padding:12px 14px;border-radius:13px;margin:12px 0;font-weight:800}.phr-review-message.is-success{background:#edf9f2;color:#157443;border:1px solid #cfeedd}.phr-review-message.is-error{background:#fff0f3;color:#b30d2a;border:1px solid #ffd5dc}
.phr-order-review-cta{margin:28px 0 8px;padding:24px;border-radius:24px;background:linear-gradient(145deg,#171217,#2a2025);color:#fff;text-align:right}.phr-order-review-cta>span{color:#ff5972;font-weight:900;font-size:12px}.phr-order-review-cta h2{margin:5px 0 7px;font-size:25px}.phr-order-review-cta p{color:#cbbfc4!important;margin:0 0 14px!important}.phr-order-review-cta>div{display:flex;flex-wrap:wrap;gap:8px}.phr-order-review-cta a{display:inline-flex;text-decoration:none;color:#fff;background:#ffffff10;border:1px solid #ffffff18;border-radius:12px;padding:10px 12px;font-weight:800}.phr-order-review-cta a:hover{background:#e3062e;border-color:#e3062e}
@keyframes phrProductFloatA{from{transform:translate3d(0,0,0) scale(1)}to{transform:translate3d(-38px,42px,0) scale(1.07)}}@keyframes phrProductFloatB{from{transform:translate3d(0,0,0)}to{transform:translate3d(42px,-34px,0)}}@keyframes phrProductAccent{to{background-position:220% 0}}
@media(max-width:1020px){.phr-product-hero-grid{grid-template-columns:1fr;gap:28px}.phr-product-gallery{position:relative;top:auto}.phr-product-review-layout{grid-template-columns:1fr}.phr-review-overview{position:relative;top:auto}.phr-product-feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){.phr-product-single-v2{padding:94px 10px 64px}.phr-product-single-v2 .phr-product-single-shell{width:calc(100% - 8px)}.phr-product-main-image{border-radius:25px}.phr-product-single-v2 .phr-product-single-copy h1{font-size:38px}.phr-product-order-box{padding:19px;border-radius:23px}.phr-product-feature-grid,.phr-product-specs-grid,.phr-product-video-grid,.phr-review-form-grid{grid-template-columns:1fr}.phr-review-form-grid label.is-full{grid-column:auto}.phr-product-feature-section,.phr-product-details-v2,.phr-product-specs,.phr-product-videos,.phr-product-reviews{margin-top:48px}.phr-product-details-v2{padding:23px 20px}.phr-review-card-head{grid-template-columns:40px 1fr}.phr-review-card-head>.phr-review-stars{grid-column:2}.phr-product-thumbs button{width:68px;height:68px}.phr-product-payment-mini>div{display:grid;grid-template-columns:1fr 1fr}}
@media(prefers-reduced-motion:reduce){.phr-product-single-bg *,.phr-product-order-box:before{animation:none!important}.phr-product-main-image img,.phr-product-order-box .phr-product-buy{transition:none!important}}

/* ==========================================================================\n   v9.20.7 — Ultra premium checkout redesign\n   ========================================================================== */
.phr-checkout-premium{
  --phr-checkout-accent:#e3062e;
  --phr-checkout-accent-2:#ff4d6a;
  --phr-checkout-ink:#21171c;
  --phr-checkout-muted:#766970;
  --phr-checkout-line:rgba(42,25,34,.09);
  width:min(1280px,calc(100% - 30px));
  padding:118px 0 100px;
  position:relative;
  isolation:isolate;
  overflow:visible;
}
.phr-checkout-premium::before{
  content:"";
  position:absolute;
  z-index:-3;
  inset:58px -6vw -55px;
  border-radius:52px;
  background:
    radial-gradient(circle at 8% 12%,rgba(227,6,46,.12),transparent 29%),
    radial-gradient(circle at 88% 16%,rgba(255,95,126,.13),transparent 30%),
    radial-gradient(circle at 72% 84%,rgba(255,199,211,.25),transparent 32%),
    linear-gradient(135deg,#fffafa 0%,#fff 45%,#fff5f7 100%);
  border:1px solid rgba(227,6,46,.07);
  box-shadow:0 34px 110px rgba(90,42,58,.08);
}
.phr-checkout-premium::after{
  content:"";
  position:absolute;
  z-index:-2;
  width:540px;height:540px;
  left:-180px;top:145px;
  border-radius:50%;
  background:repeating-radial-gradient(circle,rgba(227,6,46,.065) 0 1px,transparent 1px 22px);
  opacity:.62;
  animation:phrCheckoutOrbit 28s linear infinite;
  pointer-events:none;
}
.phr-checkout-hero{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:28px;
  align-items:end;
  margin-bottom:28px;
  padding:30px 34px;
  border-radius:32px;
  overflow:hidden;
  background:linear-gradient(135deg,rgba(255,255,255,.92),rgba(255,247,249,.88));
  border:1px solid rgba(227,6,46,.09);
  box-shadow:0 18px 60px rgba(77,35,49,.06);
}
.phr-checkout-hero::before{
  content:"";position:absolute;inset:0 auto 0 0;width:7px;
  background:linear-gradient(180deg,#e3062e,#ff6b83,#e3062e);
  background-size:100% 220%;animation:phrCheckoutAccentMove 5s linear infinite;
}
.phr-checkout-hero::after{
  content:"";position:absolute;width:260px;height:260px;left:7%;top:-180px;border-radius:50%;
  background:radial-gradient(circle,rgba(227,6,46,.14),transparent 68%);pointer-events:none;
}
.phr-checkout-eyebrow{display:inline-flex;align-items:center;gap:8px;color:#e3062e;font-size:12px;font-weight:900;letter-spacing:.12em;margin-bottom:9px}
.phr-checkout-hero h1{margin:0;color:#1f161b;font-size:clamp(34px,4vw,56px);line-height:1.05;font-weight:900;letter-spacing:-.035em}
.phr-checkout-hero p{margin:12px 0 0;color:#776a71;font-size:15px;line-height:1.8;max-width:720px}
.phr-checkout-progress{display:flex;align-items:center;gap:9px;padding:10px 12px;border-radius:20px;background:#fff;border:1px solid rgba(40,24,32,.07);box-shadow:0 10px 28px rgba(69,36,47,.05)}
.phr-checkout-progress>div{display:grid;place-items:center;gap:5px;min-width:58px;color:#9d9297;font-size:10px;font-weight:800}
.phr-checkout-progress>div b{width:34px;height:34px;display:grid;place-items:center;border-radius:50%;background:#f6f1f3;color:#8c7d85;font-size:12px}
.phr-checkout-progress>div.is-active{color:#2a1e24}.phr-checkout-progress>div.is-active b{background:linear-gradient(135deg,#e3062e,#ff607a);color:#fff;box-shadow:0 8px 20px rgba(227,6,46,.22)}
.phr-checkout-progress>i{width:28px;height:2px;border-radius:999px;background:linear-gradient(90deg,rgba(227,6,46,.32),rgba(227,6,46,.06))}
.phr-checkout-error{display:flex;gap:10px;align-items:center;background:#fff1f3;border:1px solid #ffd5dc;border-radius:18px;padding:14px 18px;margin-bottom:18px;color:#a4112a}.phr-checkout-error strong{font-weight:900}.phr-checkout-error span{color:#7e3343}

.phr-checkout-premium .phr-checkout-grid{grid-template-columns:minmax(0,1fr) 410px;gap:26px;align-items:start;position:relative}
.phr-checkout-premium .phr-checkout-grid::before{display:none!important}
.phr-checkout-main{display:grid;gap:20px}
.phr-checkout-panel{
  position:relative;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(43,25,34,.075);
  border-radius:30px;
  padding:28px;
  box-shadow:0 18px 58px rgba(80,39,53,.065);
  overflow:hidden;
}
.phr-checkout-panel::before{content:"";position:absolute;inset:0 0 auto 0;height:3px;background:linear-gradient(90deg,#e3062e 0%,#ff7188 35%,rgba(255,255,255,0) 78%)}
.phr-checkout-panel-head{display:flex;align-items:flex-start;gap:14px;margin-bottom:24px}
.phr-checkout-panel-icon{width:48px;height:48px;flex:none;display:grid;place-items:center;border-radius:16px;background:linear-gradient(145deg,#171116,#2a1b22);color:#ff3557;font-size:12px;font-weight:900;box-shadow:0 12px 26px rgba(34,18,25,.14),inset 0 1px 0 rgba(255,255,255,.08)}
.phr-checkout-panel-head small{display:block;color:#e3062e;font-size:11px;font-weight:900;margin-bottom:3px}.phr-checkout-panel-head h2{margin:0!important;color:#20171b;font-size:24px!important;font-weight:900}.phr-checkout-panel-head p{margin:6px 0 0;color:#8a7e84;font-size:13px;line-height:1.7}
.phr-checkout-fields-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.phr-checkout-fields-grid label{display:block;margin:0!important;font-weight:800;color:#36292f;font-size:13px}.phr-checkout-fields-grid label.is-wide{grid-column:1/-1}.phr-checkout-fields-grid label>span{display:flex;align-items:center;gap:6px;margin-bottom:7px}.phr-checkout-fields-grid label>span em{font-style:normal;color:#e3062e}.phr-checkout-fields-grid label>span small{display:inline!important;margin:0!important;color:#a09299!important;font-size:10px!important}
.phr-checkout-fields-grid input,.phr-checkout-fields-grid textarea,.phr-vodafone-fields input{
  width:100%;box-sizing:border-box;margin:0!important;border:1px solid #e9dfe4!important;border-radius:16px!important;padding:14px 15px!important;background:#fff!important;color:#251b20!important;font:inherit!important;outline:0;transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease
}
.phr-checkout-fields-grid textarea{resize:vertical;min-height:98px;line-height:1.7}.phr-checkout-fields-grid input::placeholder,.phr-checkout-fields-grid textarea::placeholder,.phr-vodafone-fields input::placeholder{color:#b3a7ad}
.phr-checkout-fields-grid input:focus,.phr-checkout-fields-grid textarea:focus,.phr-vodafone-fields input:focus{border-color:rgba(227,6,46,.48)!important;box-shadow:0 0 0 4px rgba(227,6,46,.07)!important}
.phr-checkout-fields-grid label>small{display:block;margin-top:6px;color:#9a8e94;font-size:11px;font-weight:500}

.phr-checkout-premium .phr-payment-methods{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:0}
.phr-checkout-premium .phr-payment-card{position:relative;display:grid!important;grid-template-columns:44px minmax(0,1fr);gap:10px;align-items:center;padding:16px!important;border:1px solid #eadfe4!important;border-radius:20px!important;background:linear-gradient(145deg,#fff,#fffafb)!important;cursor:pointer;transition:.22s ease;min-height:108px}
.phr-payment-card input{position:absolute!important;opacity:0;pointer-events:none;width:1px!important;height:1px!important}
.phr-payment-card:hover{transform:translateY(-2px);border-color:rgba(227,6,46,.25)!important;box-shadow:0 14px 30px rgba(87,42,57,.07)}
.phr-payment-card:has(input:checked){border-color:rgba(227,6,46,.52)!important;background:linear-gradient(145deg,#fff,#fff2f5)!important;box-shadow:0 14px 34px rgba(227,6,46,.09),inset 0 0 0 1px rgba(227,6,46,.05)}
.phr-payment-visual{width:44px;height:44px;display:grid!important;place-items:center;border-radius:14px;background:#181116;color:#ff3c5c;font-size:18px;font-weight:900;box-shadow:0 9px 20px rgba(35,19,26,.14)}
.phr-payment-copy{display:grid!important;gap:3px}.phr-payment-copy b{color:#2a1e24;font-size:14px}.phr-payment-copy small{color:#8c8086!important;font-size:11px!important;line-height:1.55}
.phr-payment-card>i{position:absolute;left:10px;top:10px;font-style:normal;font-size:9px;color:#a4979d;background:#f7f2f4;border-radius:999px;padding:4px 7px}.phr-payment-card:has(input:checked)>i{color:#fff;background:#e3062e}
.phr-vodafone-extra{margin-top:16px;padding:18px!important;border-radius:22px!important;background:linear-gradient(145deg,#fff7f9,#fff)!important;border:1px solid rgba(227,6,46,.16)!important}
.phr-vodafone-number{display:flex;justify-content:space-between;align-items:center;gap:16px;background:linear-gradient(135deg,#1b1217,#2b1921)!important;border-radius:16px!important;padding:14px 16px!important}.phr-vodafone-number>div{display:grid;gap:3px}.phr-vodafone-number span{color:#d7cbd0;font-size:11px}.phr-vodafone-number strong{color:#ff4562!important;font-size:20px}.phr-vodafone-number button{border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.08);color:#fff;border-radius:11px;padding:8px 11px;font-family:inherit;font-weight:800;cursor:pointer}.phr-vodafone-extra>p{color:#786a71;line-height:1.7;font-size:12px}
.phr-vodafone-fields{display:grid;grid-template-columns:1fr 1fr;gap:12px}.phr-vodafone-fields label{margin:0!important;color:#3b2d34;font-size:12px;font-weight:800}.phr-vodafone-fields label>span{display:block;margin-bottom:7px}.phr-proof-upload input[type=file]{padding:10px!important;background:#fff!important}.phr-proof-upload>small{display:block;margin-top:5px;color:#9a8d93;font-size:10px;font-weight:500}

.phr-checkout-trust-row{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.phr-checkout-trust-row>div{display:flex;gap:10px;align-items:center;background:rgba(255,255,255,.78);border:1px solid rgba(44,27,36,.06);border-radius:18px;padding:13px 14px}.phr-checkout-trust-row>div>b{width:34px;height:34px;flex:none;display:grid;place-items:center;border-radius:12px;background:#fff0f3;color:#e3062e}.phr-checkout-trust-row span{display:grid}.phr-checkout-trust-row strong{font-size:12px;color:#32262c}.phr-checkout-trust-row small{font-size:10px;color:#93878d;line-height:1.5}

.phr-checkout-premium .phr-checkout-summary{
  position:sticky;top:104px;padding:0!important;border-radius:30px!important;color:#21181c!important;
  background:rgba(255,255,255,.96)!important;border:1px solid rgba(227,6,46,.12)!important;
  box-shadow:0 24px 68px rgba(83,39,53,.12)!important;overflow:hidden
}
.phr-checkout-premium .phr-checkout-summary::before{height:4px!important;background:linear-gradient(90deg,#e3062e,#ff607a,#ffc0cb,#e3062e)!important}
.phr-checkout-premium .phr-checkout-summary::after{width:190px;height:190px;top:-120px;left:-80px;opacity:.75}
.phr-checkout-summary-head{display:grid;grid-template-columns:42px minmax(0,1fr) auto;align-items:center;gap:10px;padding:23px 23px 18px;border-bottom:1px solid #f0e8eb}.phr-checkout-summary-head>span{width:42px;height:42px;display:grid;place-items:center;border-radius:14px;background:#171116;color:#ff3557;font-weight:900;font-size:11px}.phr-checkout-summary-head small{display:block;color:#e3062e;font-size:10px;font-weight:900}.phr-checkout-summary-head h2{padding:0!important;margin:2px 0 0!important;font-size:21px!important}.phr-checkout-summary-head h2::after{display:none!important}.phr-checkout-summary-head>b{font-size:10px;color:#76676f;background:#faf5f7;border-radius:999px;padding:6px 9px}
.phr-checkout-products{padding:7px 20px 2px;max-height:300px;overflow:auto;scrollbar-width:thin;scrollbar-color:#efcad2 transparent}.phr-checkout-premium .phr-checkout-line{display:grid;grid-template-columns:54px minmax(0,1fr) auto;align-items:center;gap:10px;padding:12px 0!important;border-bottom:1px solid #f1e9ec!important}.phr-checkout-line img,.phr-checkout-item-placeholder{width:54px;height:54px;object-fit:cover;border-radius:14px;background:#fff5f7;border:1px solid #f0e4e8;display:grid;place-items:center;color:#e3062e}.phr-checkout-item-copy{display:grid;gap:3px;min-width:0}.phr-checkout-item-copy strong{font-size:12px;color:#30242a;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.phr-checkout-item-copy small{font-size:10px;color:#978a90}.phr-checkout-line>b{font-size:11px;color:#241a1f!important;white-space:nowrap}
.phr-checkout-premium .phr-coupon-box{margin:16px 20px!important;padding:15px!important;border-radius:20px!important;background:linear-gradient(135deg,#fff8fa,#fff)!important}.phr-coupon-title{display:flex;gap:10px;align-items:center;margin-bottom:10px}.phr-coupon-title>span{width:35px;height:35px;display:grid;place-items:center;border-radius:11px;background:#171116;color:#ff3d5e;font-weight:900}.phr-coupon-title>div{display:grid}.phr-coupon-title label{margin:0!important;font-size:12px;color:#30242a!important}.phr-coupon-title small{font-size:9px;color:#9a8d93}.phr-checkout-premium .phr-coupon-box>div:not(.phr-coupon-title){display:grid;grid-template-columns:minmax(0,1fr) 74px;gap:7px}.phr-checkout-premium .phr-coupon-box input{padding:11px 12px!important;border-radius:13px!important;font-size:12px}.phr-checkout-premium .phr-coupon-box button{border-radius:13px!important;padding:0!important;font-family:inherit;font-size:11px}
.phr-checkout-totals{padding:0 22px 18px}.phr-checkout-premium .phr-checkout-subtotal,.phr-checkout-premium .phr-checkout-discount{padding:10px 0!important;border-top:0!important;border-bottom:1px solid #f1e9ec;font-size:12px}.phr-checkout-premium .phr-checkout-total{margin-top:10px;padding:15px 0 0!important;border-top:1px dashed rgba(227,6,46,.22)!important;display:flex;align-items:end}.phr-checkout-total>span{display:grid;font-weight:900;color:#261c21!important}.phr-checkout-total>span small{font-size:9px;color:#a09298;font-weight:700;margin-bottom:2px}.phr-checkout-premium .phr-checkout-total strong{font-size:25px!important;color:#e3062e!important;letter-spacing:-.03em}
.phr-checkout-submit{margin:0 20px!important;width:calc(100% - 40px)!important;display:flex!important;justify-content:space-between!important;align-items:center!important;padding:14px 17px!important;border-radius:16px!important;background:linear-gradient(135deg,#e3062e,#ff4562 58%,#ff7088)!important;box-shadow:0 14px 30px rgba(227,6,46,.2)!important;transition:.22s ease}.phr-checkout-submit:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(227,6,46,.26)!important}.phr-checkout-submit b{width:30px;height:30px;display:grid;place-items:center;border-radius:10px;background:rgba(255,255,255,.17);font-size:16px}
.phr-checkout-secure-note{display:flex;gap:10px;align-items:flex-start;margin:14px 20px 20px;padding:12px;border-radius:16px;background:#faf6f7}.phr-checkout-secure-note>span{width:28px;height:28px;flex:none;display:grid;place-items:center;border-radius:9px;background:#e9fff3;color:#15905a;font-weight:900}.phr-checkout-secure-note p{display:grid;margin:0}.phr-checkout-secure-note strong{font-size:11px;color:#3a2d33}.phr-checkout-secure-note small{font-size:9px;color:#93868c;line-height:1.55;margin-top:2px}

@keyframes phrCheckoutOrbit{to{transform:rotate(360deg)}}
@keyframes phrCheckoutAccentMove{to{background-position:0 220%}}
@media(max-width:1100px){.phr-checkout-premium .phr-checkout-grid{grid-template-columns:minmax(0,1fr) 360px}.phr-checkout-premium .phr-payment-methods{grid-template-columns:1fr}.phr-payment-card{min-height:auto!important}.phr-checkout-trust-row{grid-template-columns:1fr}}
@media(max-width:900px){.phr-checkout-premium{padding-top:100px}.phr-checkout-hero{grid-template-columns:1fr;align-items:start}.phr-checkout-progress{width:max-content;max-width:100%}.phr-checkout-premium .phr-checkout-grid{grid-template-columns:1fr}.phr-checkout-premium .phr-checkout-summary{position:static}.phr-checkout-summary{order:2}.phr-checkout-main{order:1}}
@media(max-width:640px){.phr-checkout-premium{width:calc(100% - 16px);padding:88px 0 70px}.phr-checkout-premium::before{inset:55px -5px -25px;border-radius:28px}.phr-checkout-premium::after{display:none}.phr-checkout-hero{padding:22px 18px;border-radius:24px}.phr-checkout-hero h1{font-size:34px}.phr-checkout-hero p{font-size:13px}.phr-checkout-progress{gap:4px;padding:8px}.phr-checkout-progress>div{min-width:46px}.phr-checkout-progress>i{width:16px}.phr-checkout-panel{padding:19px 15px;border-radius:23px}.phr-checkout-panel-head{gap:10px}.phr-checkout-panel-icon{width:42px;height:42px;border-radius:13px}.phr-checkout-panel-head h2{font-size:20px!important}.phr-checkout-fields-grid{grid-template-columns:1fr}.phr-checkout-fields-grid label.is-wide{grid-column:auto}.phr-vodafone-fields{grid-template-columns:1fr}.phr-checkout-trust-row{grid-template-columns:1fr}.phr-checkout-premium .phr-checkout-summary{border-radius:23px!important}.phr-checkout-summary-head{padding:18px 16px 14px}.phr-checkout-products{padding-inline:15px}.phr-checkout-premium .phr-coupon-box{margin:14px 15px!important}.phr-checkout-totals{padding-inline:17px}.phr-checkout-submit{margin-inline:15px!important;width:calc(100% - 30px)!important}.phr-checkout-secure-note{margin-inline:15px}}
@media(prefers-reduced-motion:reduce){.phr-checkout-premium::after,.phr-checkout-hero::before{animation:none!important}}


/* ==========================================================================
   v9.20.8 — Refined product hero hierarchy & aligned purchase panel
   ========================================================================== */
.phr-product-single-v2{
  --phr-product-title-d:34px;
  --phr-product-title-t:30px;
  --phr-product-title-m:25px;
  --phr-product-title-weight:900;
  --phr-product-title-color:#171217;
}
.phr-product-hero-intro{
  position:relative;
  max-width:900px;
  margin:0 0 26px auto;
  padding:2px 0 20px;
  text-align:right;
}
.phr-product-hero-intro:after{
  content:"";
  display:block;
  width:82px;
  height:4px;
  margin-top:14px;
  border-radius:999px;
  background:linear-gradient(90deg,#e3062e,#ff6d83,#171217);
  box-shadow:0 7px 18px rgba(227,6,46,.13);
}
.phr-product-hero-intro .phr-product-category-line{margin-bottom:9px}
.phr-product-hero-intro h1{
  margin:0;
  max-width:880px;
  color:var(--phr-product-title-color);
  font-family:Tajawal,Arial,sans-serif;
  font-size:var(--phr-product-title-d);
  line-height:1.28;
  letter-spacing:0;
  font-weight:var(--phr-product-title-weight);
  text-wrap:balance;
}
.phr-product-hero-intro .phr-product-rating-summary{
  margin:11px 0 0;
  padding:0;
  min-height:34px;
  flex-wrap:wrap;
}
.phr-product-rating-summary .phr-review-stars{
  padding:7px 10px;
  border-radius:12px;
  background:#fff9ef;
  border:1px solid rgba(246,167,0,.18);
}
.phr-product-rating-summary .phr-review-stars i{font-size:16px}
.phr-product-review-state{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:5px 10px;
  border-radius:10px;
  background:#fff0f3;
  border:1px solid #ffd9e0;
  color:#d4072c!important;
  font-size:12px!important;
  font-weight:900!important;
}
.phr-product-rating-summary a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  min-height:30px;
  padding:5px 10px;
  border:1px solid rgba(48,30,38,.07)!important;
  border-radius:10px;
  background:#fff;
  color:#766970!important;
  text-decoration:none!important;
  font-weight:800;
  transition:.2s ease;
}
.phr-product-rating-summary a span{color:#e3062e;font-size:10px}
.phr-product-rating-summary a:hover{border-color:rgba(227,6,46,.20)!important;color:#e3062e!important;transform:translateY(-1px)}
.phr-product-hero-grid{
  grid-template-columns:minmax(0,1.06fr) minmax(390px,.94fr);
  gap:34px;
  align-items:start;
}
.phr-product-single-v2 .phr-product-single-copy{
  padding:0;
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.phr-product-purchase-overview{
  padding:20px 22px;
  margin-bottom:12px;
  border-radius:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(255,248,250,.92));
  border:1px solid rgba(48,30,38,.065);
}
.phr-product-purchase-overview .phr-product-lead{margin:0 0 10px;max-width:none;font-size:15px;line-height:1.85}
.phr-product-purchase-overview .phr-product-single-price{margin:8px 0 0}
.phr-product-purchase-overview .phr-product-single-price strong{font-size:31px}
.phr-product-purchase-overview .phr-product-offer-window{margin-top:10px}
.phr-product-single-v2 .phr-product-order-box{
  margin-top:0;
  flex:1;
  box-shadow:0 16px 42px rgba(91,44,58,.07);
}
.phr-product-single-v2 .phr-product-main-image{box-shadow:0 18px 50px rgba(77,35,48,.075)}
/* Old inline-copy H1 should never affect the new hero hierarchy if cached markup exists. */
.phr-product-single-v2 .phr-product-single-copy>h1{font-size:var(--phr-product-title-d)!important}
@media(max-width:1020px){
  .phr-product-hero-intro{max-width:none;margin-bottom:20px}
  .phr-product-hero-intro h1{font-size:var(--phr-product-title-t)}
  .phr-product-hero-grid{grid-template-columns:1fr;gap:22px}
  .phr-product-gallery{position:relative;top:auto}
}
@media(max-width:680px){
  .phr-product-hero-intro{padding-bottom:16px;margin-bottom:16px}
  .phr-product-hero-intro h1{font-size:var(--phr-product-title-m);line-height:1.35}
  .phr-product-hero-intro:after{width:64px;height:4px;margin-top:11px}
  .phr-product-hero-intro .phr-product-rating-summary{gap:6px}
  .phr-product-rating-summary .phr-review-stars{padding:5px 8px}
  .phr-product-rating-summary .phr-review-stars i{font-size:14px}
  .phr-product-review-state,.phr-product-rating-summary a{min-height:27px;padding:4px 8px;font-size:11px!important}
  .phr-product-purchase-overview{padding:16px 17px;border-radius:18px}
  .phr-product-purchase-overview .phr-product-single-price strong{font-size:28px}
}


/* ================================================================
   v9.20.9 — Compact product cards + fresh animated store identity
   ================================================================ */
.phr-store-section{
  background:linear-gradient(135deg,var(--phr-store-bg,#effcf7) 0%,#fffaf0 39%,#f4fffb 70%,#fff2f5 100%)!important;
  padding:84px 22px 88px;
  isolation:isolate;
}
.phr-store-section:before{
  content:"";position:absolute;inset:-18%;pointer-events:none;z-index:0;
  background:
    radial-gradient(circle at 78% 24%,rgba(227,6,46,.14),transparent 21%),
    radial-gradient(circle at 20% 68%,rgba(18,165,147,.20),transparent 25%),
    radial-gradient(circle at 51% 18%,rgba(255,190,92,.17),transparent 18%),
    linear-gradient(115deg,transparent 22%,rgba(255,255,255,.72) 45%,transparent 66%);
  background-size:100% 100%,100% 100%,100% 100%,220% 100%;
  animation:phrStoreAurora9209 11s ease-in-out infinite alternate;
  opacity:.88;
}
.phr-store-section:after{
  content:"";position:absolute;inset:-80px;pointer-events:none;z-index:0;opacity:.58;
  background-image:
    radial-gradient(circle at center,transparent 0 30px,rgba(18,165,147,.10) 31px 32px,transparent 33px),
    radial-gradient(circle at center,transparent 0 13px,rgba(227,6,46,.075) 14px 15px,transparent 16px);
  background-size:104px 104px,64px 64px;
  background-position:0 0,31px 26px;
  -webkit-mask-image:linear-gradient(110deg,rgba(0,0,0,.62),rgba(0,0,0,.12) 70%,transparent 94%);
  mask-image:linear-gradient(110deg,rgba(0,0,0,.62),rgba(0,0,0,.12) 70%,transparent 94%);
  animation:phrStoreRings9209 24s linear infinite;
}
@keyframes phrStoreAurora9209{0%{transform:translate3d(-1.2%,0,0) scale(1)}100%{transform:translate3d(1.4%,1%,0) scale(1.035);background-position:center,center,center,100% 0}}
@keyframes phrStoreRings9209{to{background-position:104px 52px,95px 90px}}
.phr-store-section .phr-store-motion{opacity:.95;z-index:0}
.phr-store-motion i{mix-blend-mode:normal!important;filter:blur(2px)!important}
.phr-store-motion i:nth-child(1){width:360px!important;height:360px!important;background:radial-gradient(circle,rgba(227,6,46,.14),rgba(227,6,46,.025) 48%,transparent 72%)!important}
.phr-store-motion i:nth-child(2){width:470px!important;height:470px!important;background:radial-gradient(circle,rgba(18,165,147,.18),rgba(18,165,147,.025) 50%,transparent 73%)!important}
.phr-store-motion i:nth-child(3){background:radial-gradient(circle,rgba(255,185,81,.15),transparent 69%)!important}
.phr-store-section.motion-circles .phr-store-motion b{opacity:.52!important;background-image:radial-gradient(circle at center,transparent 0 25px,rgba(18,165,147,.08) 26px 27px,transparent 28px),radial-gradient(circle at center,transparent 0 9px,rgba(227,6,46,.06) 10px 11px,transparent 12px)!important;background-size:86px 86px,52px 52px!important;animation:phrStoreGrid var(--phr-store-motion,18s) linear infinite!important}
.phr-store-section.motion-orbs .phr-store-motion b{opacity:.56!important;background-image:radial-gradient(circle,rgba(18,165,147,.13) 0 4px,transparent 5px),radial-gradient(circle,rgba(227,6,46,.09) 0 3px,transparent 4px)!important}
.phr-store-section.motion-mesh .phr-store-motion b{opacity:.66!important;background:linear-gradient(120deg,rgba(18,165,147,.14),transparent 27%,rgba(255,190,92,.13) 51%,transparent 76%,rgba(227,6,46,.10))!important;background-size:240% 240%!important}
.phr-store-shell{position:relative;z-index:2}
.phr-store-head{margin-bottom:26px}
.phr-store-head h2{color:var(--phr-store-title,#15231f);text-shadow:none}
.phr-store-head p{color:var(--phr-store-desc,#65766f)}
.phr-store-kicker{background:rgba(255,255,255,.72);border-color:rgba(18,165,147,.14);box-shadow:0 12px 30px rgba(21,66,55,.055);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}
.phr-store-title-line{background:rgba(18,165,147,.10)}
.phr-store-title-line:before{background:linear-gradient(90deg,var(--phr-store-accent),#ff3555 48%,var(--phr-store-alt,#12a593))}
.phr-store-cats{padding-bottom:16px}
.phr-store-cats a{background:rgba(255,255,255,.70);border-color:rgba(18,91,79,.08);color:#49635b;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.phr-store-cats a:hover,.phr-store-cats a.is-active{background:#15342e;border-color:#15342e;color:#fff}
.phr-products-grid{max-width:1080px;margin-inline:auto;gap:18px}
.phr-product-card{border-radius:22px;border:1px solid rgba(18,91,79,.085);box-shadow:0 13px 36px rgba(27,77,65,.065);background:rgba(255,255,255,.90);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.phr-product-card:hover{transform:translateY(-5px);border-color:rgba(227,6,46,.17);box-shadow:0 18px 46px rgba(27,77,65,.10)}
.phr-product-media{aspect-ratio:1.13/1;background:linear-gradient(145deg,#fff,#effaf6)}
.phr-product-sale{top:11px;right:11px;padding:6px 9px;border-radius:10px;font-size:10px}
.phr-product-copy{padding:13px 14px 15px}
.phr-product-copy small{font-size:10px;margin-bottom:4px}
.phr-product-copy h3{font-size:17px;line-height:1.38;margin:0 0 6px}
.phr-product-copy p{min-height:0;margin:0 0 9px;font-size:12.5px;line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.phr-product-price{margin:9px 0 11px;gap:7px}.phr-product-price strong{font-size:17px}.phr-product-price del{font-size:11px}
.phr-product-actions{display:flex;align-items:center;justify-content:flex-start;gap:8px}
.phr-product-actions .phr-product-icon-action{position:relative;display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;min-width:42px;padding:0!important;border-radius:13px!important;border:1px solid rgba(17,35,31,.08)!important;box-sizing:border-box;text-decoration:none;cursor:pointer;transition:transform .18s ease,background .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease}
.phr-product-actions .phr-product-icon-action svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.phr-product-actions .phr-product-icon-action.is-details{background:#eef8f4!important;color:#176c5e!important}
.phr-product-actions .phr-product-icon-action.is-details:hover{background:#15342e!important;color:#fff!important;border-color:#15342e!important;transform:translateY(-2px)}
.phr-product-actions .phr-product-icon-action.is-cart{background:linear-gradient(135deg,#e3062e,#ff3153)!important;color:#fff!important;border-color:transparent!important;box-shadow:0 8px 20px rgba(227,6,46,.16)!important}
.phr-product-actions .phr-product-icon-action.is-cart:hover{background:linear-gradient(135deg,#c90027,#ff244b)!important;transform:translateY(-2px);box-shadow:0 11px 25px rgba(227,6,46,.23)!important}
.phr-product-actions .phr-product-icon-action:disabled{opacity:.42!important;transform:none!important;cursor:not-allowed}
.phr-product-icon-action[data-tooltip]:after,.phr-store-cart-link[data-tooltip]:after{content:attr(data-tooltip);position:absolute;z-index:20;bottom:calc(100% + 8px);right:50%;transform:translateX(50%) translateY(4px);white-space:nowrap;background:#15342e;color:#fff;padding:6px 9px;border-radius:8px;font:800 10px/1.2 Tajawal,Arial,sans-serif;opacity:0;visibility:hidden;pointer-events:none;transition:.16s ease;box-shadow:0 8px 20px rgba(21,52,46,.16)}
.phr-product-icon-action[data-tooltip]:hover:after,.phr-product-icon-action[data-tooltip]:focus-visible:after,.phr-store-cart-link[data-tooltip]:hover:after,.phr-store-cart-link[data-tooltip]:focus-visible:after{opacity:1;visibility:visible;transform:translateX(50%) translateY(0)}
.phr-store-cart-link{position:relative;width:48px;height:48px;padding:0!important;display:grid;place-items:center;border-radius:15px!important;background:rgba(255,255,255,.78)!important;color:#e3062e!important;border:1px solid rgba(227,6,46,.16)!important;box-shadow:0 11px 28px rgba(26,74,63,.08)!important;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}
.phr-store-cart-link:hover{color:#fff!important;background:#e3062e!important;border-color:#e3062e!important;transform:translateY(-2px)}
.phr-store-cart-link svg{width:22px!important;height:22px!important;stroke:currentColor!important}
.phr-store-cart-link b{position:absolute;top:-7px;right:-7px;min-width:21px!important;height:21px!important;padding:0 5px;border-radius:999px!important;background:#15342e!important;color:#fff!important;border:2px solid #fff;font-size:9px!important;box-shadow:0 7px 16px rgba(21,52,46,.18)}
.phr-store-more{margin-top:24px}.phr-store-more a{background:rgba(255,255,255,.74);border-color:rgba(18,91,79,.08);box-shadow:0 10px 25px rgba(27,77,65,.05)}
@media(max-width:980px){.phr-products-grid{max-width:760px}}
@media(max-width:640px){.phr-store-section{padding:66px 12px 72px}.phr-store-head{gap:14px}.phr-products-grid{max-width:330px;gap:14px}.phr-product-card{border-radius:20px}.phr-product-media{aspect-ratio:1.16/1}.phr-product-copy{padding:12px 13px 14px}.phr-product-copy h3{font-size:16px}.phr-product-actions .phr-product-icon-action{width:40px;height:40px;min-width:40px;flex-basis:40px}.phr-store-cart-link{width:44px;height:44px}}
@media(prefers-reduced-motion:reduce){.phr-store-section:before,.phr-store-section:after{animation:none!important}.phr-product-card,.phr-product-icon-action{transition:none!important}}

/* ========================================================================== */
/* v9.21.2 — Store alignment + branded light motion + glass footer motion      */
/* ========================================================================== */

/* Store: tighter, aligned from the heading edge, red/ink identity */
.phr-store-section{
  padding:82px 22px 86px!important;
  background:
    linear-gradient(128deg,#ffffff 0%,#fff8f9 35%,#f8f9fb 67%,#fff0f3 100%)!important;
  isolation:isolate;
}
.phr-store-section:before{
  inset:-22%!important;
  opacity:.94!important;
  background:
    radial-gradient(circle at 79% 20%,rgba(227,6,46,.16),transparent 22%),
    radial-gradient(circle at 20% 72%,rgba(21,17,19,.075),transparent 24%),
    radial-gradient(circle at 53% 15%,rgba(255,80,112,.10),transparent 18%),
    linear-gradient(118deg,transparent 22%,rgba(255,255,255,.78) 45%,transparent 68%)!important;
  background-size:100% 100%,100% 100%,100% 100%,240% 100%!important;
  animation:phrStoreBrandAurora9212 12s ease-in-out infinite alternate!important;
}
.phr-store-section:after{
  inset:-100px!important;
  opacity:.56!important;
  background-image:
    radial-gradient(circle at center,transparent 0 31px,rgba(227,6,46,.075) 32px 33px,transparent 34px),
    radial-gradient(circle at center,rgba(25,20,23,.05) 0 2px,transparent 3px)!important;
  background-size:108px 108px,34px 34px!important;
  background-position:0 0,17px 12px!important;
  -webkit-mask-image:linear-gradient(100deg,rgba(0,0,0,.7),rgba(0,0,0,.18) 72%,transparent 96%)!important;
  mask-image:linear-gradient(100deg,rgba(0,0,0,.7),rgba(0,0,0,.18) 72%,transparent 96%)!important;
  animation:phrStoreBrandPattern9212 28s linear infinite!important;
}
@keyframes phrStoreBrandAurora9212{
  0%{transform:translate3d(-1%,0,0) scale(1);background-position:center,center,center,0 0}
  100%{transform:translate3d(1.5%,1%,0) scale(1.045);background-position:center,center,center,100% 0}
}
@keyframes phrStoreBrandPattern9212{to{background-position:108px 54px,85px 63px}}
.phr-store-section .phr-store-motion{opacity:.88!important}
.phr-store-motion i:nth-child(1){background:radial-gradient(circle,rgba(227,6,46,.16),rgba(227,6,46,.025) 48%,transparent 72%)!important}
.phr-store-motion i:nth-child(2){background:radial-gradient(circle,rgba(24,19,22,.085),rgba(24,19,22,.014) 52%,transparent 74%)!important}
.phr-store-motion i:nth-child(3){background:radial-gradient(circle,rgba(255,86,116,.11),transparent 70%)!important}
.phr-store-section.motion-circles .phr-store-motion b{
  opacity:.42!important;
  background-image:
    radial-gradient(circle at center,transparent 0 25px,rgba(227,6,46,.07) 26px 27px,transparent 28px),
    radial-gradient(circle at center,transparent 0 9px,rgba(26,20,23,.045) 10px 11px,transparent 12px)!important;
  background-size:86px 86px,52px 52px!important;
}
.phr-store-section.motion-orbs .phr-store-motion b{
  opacity:.48!important;
  background-image:radial-gradient(circle,rgba(227,6,46,.11) 0 4px,transparent 5px),radial-gradient(circle,rgba(25,19,22,.045) 0 3px,transparent 4px)!important;
}
.phr-store-section.motion-mesh .phr-store-motion b{
  opacity:.55!important;
  background:linear-gradient(120deg,rgba(227,6,46,.12),transparent 29%,rgba(24,18,22,.055) 55%,transparent 78%,rgba(255,72,106,.09))!important;
  background-size:240% 240%!important;
}
.phr-store-shell{width:min(100%,var(--phr-store-width,1280px))!important}
.phr-store-head{
  width:100%;
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  align-items:start!important;
  gap:22px!important;
  margin-bottom:22px!important;
}
.phr-store-head-copy{max-width:760px!important}
.phr-store-kicker{
  background:#181316!important;
  color:#ff3153!important;
  border:1px solid rgba(227,6,46,.18)!important;
  box-shadow:0 10px 26px rgba(24,19,22,.08)!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
}
.phr-store-head h2{
  margin:12px 0 8px!important;
  max-width:760px;
  color:#171217!important;
  background:linear-gradient(95deg,#171217 0%,#171217 58%,#e3062e 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.phr-store-head p{max-width:680px!important;color:#766b71!important;font-size:15px!important}
.phr-store-title-line{width:160px!important;height:5px!important;background:rgba(227,6,46,.09)!important}
.phr-store-title-line:before{background:linear-gradient(90deg,#e3062e,#ff3153 55%,#171217)!important}
.phr-store-cart-link{
  align-self:start!important;
  margin-top:6px;
  background:rgba(255,255,255,.86)!important;
  color:#e3062e!important;
  border:1px solid rgba(227,6,46,.17)!important;
  box-shadow:0 10px 28px rgba(45,24,31,.07)!important;
}
.phr-store-cart-link:hover{background:#171217!important;color:#ff3153!important;border-color:#171217!important}
.phr-store-cart-link b{background:#171217!important;color:#fff!important}
.phr-store-cats{justify-content:flex-start;padding:3px 0 18px!important}
.phr-store-cats a{background:rgba(255,255,255,.75)!important;border-color:rgba(40,25,31,.075)!important;color:#5e555a!important}
.phr-store-cats a:hover,.phr-store-cats a.is-active{background:#171217!important;border-color:#171217!important;color:#fff!important}

/* Important: cards start exactly from the same RTL edge as the title */
.phr-products-grid{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  grid-template-columns:repeat(var(--phr-store-cols-d,4),minmax(0,236px))!important;
  justify-content:start!important;
  align-items:start!important;
  gap:16px!important;
}
.phr-product-card{
  width:100%;
  border-radius:20px!important;
  border:1px solid rgba(37,24,30,.08)!important;
  background:rgba(255,255,255,.94)!important;
  box-shadow:0 12px 30px rgba(45,24,31,.065)!important;
  position:relative;
}
.phr-product-card:before{
  content:"";position:absolute;z-index:3;top:0;right:18px;left:18px;height:3px;border-radius:0 0 99px 99px;
  background:linear-gradient(90deg,#171217 0 30%,#e3062e 30% 72%,#ff5a78 72%);
  opacity:.92;
}
.phr-product-card:hover{transform:translateY(-4px)!important;border-color:rgba(227,6,46,.18)!important;box-shadow:0 16px 38px rgba(45,24,31,.10)!important}
.phr-product-media{aspect-ratio:1.18/1!important;background:linear-gradient(145deg,#fff,#fff4f6)!important}
.phr-product-copy{padding:12px 13px 14px!important}
.phr-product-copy small{color:#e3062e!important;font-size:9.5px!important}
.phr-product-copy h3{font-size:16px!important;line-height:1.38!important;margin:0 0 5px!important}
.phr-product-copy h3 a{color:#1c1619!important}
.phr-product-copy p{font-size:11.5px!important;line-height:1.6!important;margin:0 0 8px!important;-webkit-line-clamp:2}
.phr-product-price{margin:8px 0 10px!important}.phr-product-price strong{font-size:16px!important}.phr-product-price del{font-size:10.5px!important}
.phr-product-actions .phr-product-icon-action{width:39px!important;height:39px!important;min-width:39px!important;flex-basis:39px!important;border-radius:12px!important}
.phr-product-actions .phr-product-icon-action.is-details{background:#f6f1f3!important;color:#171217!important}
.phr-product-actions .phr-product-icon-action.is-details:hover{background:#171217!important;color:#fff!important}
.phr-product-actions .phr-product-icon-action.is-cart{box-shadow:0 7px 17px rgba(227,6,46,.14)!important}
.phr-store-more{margin-top:22px!important;text-align:right!important}
.phr-store-more a{background:rgba(255,255,255,.80)!important;border-color:rgba(43,27,33,.08)!important;box-shadow:0 8px 22px rgba(43,27,33,.045)!important}

/* Footer: still simple/flat, now with an elegant transparent moving backdrop */
#phr-site-footer{
  overflow:hidden;
  isolation:isolate;
  background:
    linear-gradient(118deg,rgba(255,255,255,.94) 0%,rgba(255,245,247,.84) 48%,rgba(250,250,252,.92) 100%)!important;
  border-top:1px solid rgba(227,6,46,.13)!important;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}
#phr-site-footer:before{
  content:"";position:absolute;z-index:0;inset:-45%;pointer-events:none;opacity:.62;
  background:
    radial-gradient(circle at 74% 34%,rgba(227,6,46,.17),transparent 18%),
    radial-gradient(circle at 25% 68%,rgba(25,19,22,.075),transparent 20%),
    radial-gradient(circle at 51% 15%,rgba(255,90,120,.10),transparent 16%);
  filter:blur(10px);
  animation:phrFooterGlassFloat9212 17s ease-in-out infinite alternate;
}
#phr-site-footer:after{
  content:"";position:absolute;z-index:0;inset:-60px;pointer-events:none;opacity:.34;
  background-image:
    radial-gradient(circle at center,transparent 0 24px,rgba(227,6,46,.075) 25px 26px,transparent 27px),
    radial-gradient(circle,rgba(28,21,24,.045) 0 2px,transparent 3px);
  background-size:86px 86px,32px 32px;
  -webkit-mask-image:linear-gradient(90deg,transparent,rgba(0,0,0,.7) 18%,rgba(0,0,0,.45) 82%,transparent);
  mask-image:linear-gradient(90deg,transparent,rgba(0,0,0,.7) 18%,rgba(0,0,0,.45) 82%,transparent);
  animation:phrFooterGlassPattern9212 30s linear infinite;
}
@keyframes phrFooterGlassFloat9212{0%{transform:translate3d(-1.5%,-1%,0) scale(1)}100%{transform:translate3d(1.8%,1.5%,0) scale(1.06)}}
@keyframes phrFooterGlassPattern9212{to{background-position:86px 43px,64px 32px}}
#phr-site-footer .phr-footer-shell{position:relative;z-index:2}
#phr-site-footer .phr-footer-brand-text>strong,
#phr-site-footer .phr-footer-links-simple h4,
#phr-site-footer .phr-footer-contact-simple h4{color:#1b1518!important}
#phr-site-footer .phr-footer-kicker-simple,
#phr-site-footer .phr-footer-credit-link{color:#e3062e!important}
#phr-site-footer .phr-footer-links-simple h4::after,
#phr-site-footer .phr-footer-contact-simple h4::after{background:linear-gradient(90deg,#e3062e,#ff4a6b)!important}
#phr-site-footer .phr-footer-socials-simple a{color:#241b20!important}
#phr-site-footer .phr-footer-socials-simple a:hover{color:#e3062e!important;transform:translateY(-3px) scale(1.05)!important}

@media(max-width:980px){
  .phr-products-grid{grid-template-columns:repeat(var(--phr-store-cols-t,2),minmax(0,226px))!important}
}
@media(max-width:640px){
  .phr-store-section{padding:62px 13px 68px!important}
  .phr-store-head{grid-template-columns:1fr auto!important;gap:12px!important}
  .phr-store-head h2{margin-top:10px!important}
  .phr-store-head p{font-size:13px!important}
  .phr-products-grid{grid-template-columns:repeat(var(--phr-store-cols-m,1),minmax(0,1fr))!important;max-width:320px!important;margin:0!important}
  .phr-product-media{aspect-ratio:1.22/1!important}
  .phr-store-cart-link{width:43px!important;height:43px!important;margin-top:3px}
  #phr-site-footer:before{opacity:.48}
  #phr-site-footer:after{opacity:.24}
}
@media(prefers-reduced-motion:reduce){
  .phr-store-section:before,.phr-store-section:after,#phr-site-footer:before,#phr-site-footer:after{animation:none!important}
}

/* v9.21.3 — visible animated backdrop for the simple footer */
#phr-site-footer{
  position:relative!important;
  overflow:hidden!important;
  isolation:isolate!important;
  background:
    linear-gradient(120deg,rgba(255,255,255,.96) 0%,rgba(255,246,248,.92) 48%,rgba(255,252,252,.97) 100%)!important;
}
#phr-site-footer .phr-footer-motion-bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  overflow:hidden;
}
#phr-site-footer .phr-footer-motion-bg:before{
  content:"";
  position:absolute;
  inset:-35%;
  background:
    radial-gradient(circle at 75% 28%,rgba(227,6,46,.17),transparent 19%),
    radial-gradient(circle at 25% 72%,rgba(255,91,120,.13),transparent 22%),
    radial-gradient(circle at 48% 40%,rgba(23,17,20,.055),transparent 17%);
  filter:blur(14px);
  animation:phrFooterAura9213 var(--phr-footer-motion-speed,24s) ease-in-out infinite alternate;
}
#phr-site-footer .phr-footer-motion-orb,
#phr-site-footer .phr-footer-motion-ring{
  position:absolute;
  display:block;
  border-radius:999px;
  will-change:transform;
}
#phr-site-footer .phr-footer-motion-orb{filter:blur(2px)}
#phr-site-footer .phr-footer-motion-orb-a{
  width:220px;height:220px;right:8%;top:-82px;
  background:radial-gradient(circle,rgba(227,6,46,.16) 0%,rgba(227,6,46,.035) 56%,transparent 72%);
  animation:phrFooterOrbA9213 calc(var(--phr-footer-motion-speed,24s) * .86) ease-in-out infinite alternate;
}
#phr-site-footer .phr-footer-motion-orb-b{
  width:300px;height:300px;left:7%;bottom:-170px;
  background:radial-gradient(circle,rgba(255,78,109,.13) 0%,rgba(255,78,109,.025) 58%,transparent 73%);
  animation:phrFooterOrbB9213 calc(var(--phr-footer-motion-speed,24s) * 1.15) ease-in-out infinite alternate;
}
#phr-site-footer .phr-footer-motion-orb-c{
  width:150px;height:150px;left:43%;top:18%;
  background:radial-gradient(circle,rgba(34,24,29,.06),transparent 68%);
  animation:phrFooterOrbC9213 calc(var(--phr-footer-motion-speed,24s) * .72) ease-in-out infinite alternate;
}
#phr-site-footer .phr-footer-motion-ring{
  border:1px solid rgba(227,6,46,.105);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.32);
}
#phr-site-footer .phr-footer-motion-ring-a{
  width:190px;height:190px;right:31%;bottom:-105px;
  animation:phrFooterRing9213 calc(var(--phr-footer-motion-speed,24s) * 1.05) linear infinite;
}
#phr-site-footer .phr-footer-motion-ring-b{
  width:112px;height:112px;left:27%;top:-46px;
  border-color:rgba(27,20,24,.065);
  animation:phrFooterRingReverse9213 calc(var(--phr-footer-motion-speed,24s) * .82) linear infinite;
}
#phr-site-footer .phr-footer-motion-logo{
  position:absolute;
  width:min(var(--phr-footer-motion-size,540px),52vw);
  height:auto;
  max-height:145%;
  object-fit:contain;
  right:-3%;
  top:50%;
  transform:translateY(-50%);
  opacity:var(--phr-footer-motion-opacity,.07);
  filter:grayscale(1) contrast(1.08);
  mix-blend-mode:multiply;
  animation:phrFooterLogoDrift9213 var(--phr-footer-motion-speed,24s) ease-in-out infinite alternate;
}
#phr-site-footer .phr-footer-shell{position:relative!important;z-index:2!important}
@keyframes phrFooterAura9213{
  0%{transform:translate3d(-2%,-1.5%,0) scale(1)}
  100%{transform:translate3d(2.5%,2%,0) scale(1.08)}
}
@keyframes phrFooterOrbA9213{
  0%{transform:translate3d(0,0,0) scale(.92)}
  100%{transform:translate3d(-65px,44px,0) scale(1.12)}
}
@keyframes phrFooterOrbB9213{
  0%{transform:translate3d(0,0,0) scale(1)}
  100%{transform:translate3d(74px,-36px,0) scale(.9)}
}
@keyframes phrFooterOrbC9213{
  0%{transform:translate3d(0,0,0)}
  100%{transform:translate3d(-42px,31px,0)}
}
@keyframes phrFooterRing9213{
  to{transform:translate3d(52px,-18px,0) rotate(360deg) scale(1.08)}
}
@keyframes phrFooterRingReverse9213{
  to{transform:translate3d(-38px,24px,0) rotate(-360deg) scale(.9)}
}
@keyframes phrFooterLogoDrift9213{
  0%{transform:translate3d(0,-50%,0) rotate(-1.5deg) scale(.96)}
  100%{transform:translate3d(-36px,-47%,0) rotate(2deg) scale(1.04)}
}
@media(max-width:640px){
  #phr-site-footer .phr-footer-motion-logo{width:min(var(--phr-footer-motion-size,540px),78vw);right:-24%;opacity:calc(var(--phr-footer-motion-opacity,.07) * .72)}
  #phr-site-footer .phr-footer-motion-orb-a{width:160px;height:160px}
  #phr-site-footer .phr-footer-motion-orb-b{width:210px;height:210px}
  #phr-site-footer .phr-footer-motion-ring-a{width:130px;height:130px}
}
@media(prefers-reduced-motion:reduce){
  #phr-site-footer .phr-footer-motion-bg:before,
  #phr-site-footer .phr-footer-motion-bg *,
  #phr-site-footer:before,
  #phr-site-footer:after{animation:none!important}
}


/* v9.21.4 — center the animated footer backdrop */
#phr-site-footer .phr-footer-motion-bg:before{
  background:
    radial-gradient(circle at 50% 42%,rgba(227,6,46,.18),transparent 20%),
    radial-gradient(circle at 43% 61%,rgba(255,91,120,.12),transparent 24%),
    radial-gradient(circle at 58% 53%,rgba(23,17,20,.05),transparent 18%)!important;
}
#phr-site-footer .phr-footer-motion-orb-a{
  width:230px;height:230px;left:50%!important;right:auto!important;top:-86px!important;margin-left:-115px;
}
#phr-site-footer .phr-footer-motion-orb-b{
  width:310px;height:310px;left:50%!important;right:auto!important;bottom:-182px!important;margin-left:-155px;
}
#phr-site-footer .phr-footer-motion-orb-c{
  width:145px;height:145px;left:50%!important;right:auto!important;top:34%!important;margin-left:-72px;
}
#phr-site-footer .phr-footer-motion-ring-a{
  width:188px;height:188px;left:50%!important;right:auto!important;bottom:-102px!important;margin-left:-94px;
}
#phr-site-footer .phr-footer-motion-ring-b{
  width:116px;height:116px;left:50%!important;right:auto!important;top:-49px!important;margin-left:-58px;
}
#phr-site-footer .phr-footer-motion-logo{
  left:50%!important;right:auto!important;top:50%!important;
  transform:translate(-50%,-50%)!important;
  transform-origin:center center;
  opacity:var(--phr-footer-motion-opacity,.07);
  animation:phrFooterLogoCenter9214 var(--phr-footer-motion-speed,24s) ease-in-out infinite alternate!important;
}
@keyframes phrFooterLogoCenter9214{
  0%{transform:translate(-50%,-50%) rotate(-1.2deg) scale(.96)}
  100%{transform:translate(-50%,-50%) rotate(1.6deg) scale(1.045)}
}
@keyframes phrFooterOrbACenter9214{
  0%{transform:translate3d(-22px,0,0) scale(.94)}
  100%{transform:translate3d(28px,35px,0) scale(1.12)}
}
@keyframes phrFooterOrbBCenter9214{
  0%{transform:translate3d(28px,0,0) scale(1)}
  100%{transform:translate3d(-30px,-30px,0) scale(.92)}
}
@keyframes phrFooterOrbCCenter9214{
  0%{transform:translate3d(-18px,-10px,0)}
  100%{transform:translate3d(22px,24px,0)}
}
#phr-site-footer .phr-footer-motion-orb-a{animation:phrFooterOrbACenter9214 calc(var(--phr-footer-motion-speed,24s) * .86) ease-in-out infinite alternate!important}
#phr-site-footer .phr-footer-motion-orb-b{animation:phrFooterOrbBCenter9214 calc(var(--phr-footer-motion-speed,24s) * 1.15) ease-in-out infinite alternate!important}
#phr-site-footer .phr-footer-motion-orb-c{animation:phrFooterOrbCCenter9214 calc(var(--phr-footer-motion-speed,24s) * .72) ease-in-out infinite alternate!important}
@media(max-width:640px){
  #phr-site-footer .phr-footer-motion-logo{left:50%!important;right:auto!important;width:min(var(--phr-footer-motion-size,540px),78vw)!important;opacity:calc(var(--phr-footer-motion-opacity,.07) * .78)!important}
  #phr-site-footer .phr-footer-motion-orb-a{left:50%!important;right:auto!important;margin-left:-80px}
  #phr-site-footer .phr-footer-motion-orb-b{left:50%!important;right:auto!important;margin-left:-105px}
  #phr-site-footer .phr-footer-motion-ring-a{left:50%!important;right:auto!important;margin-left:-65px}
}

/* v9.22.1 — Professional single article layout with sidebar */
body.single-post article.post,
body.single-post article.type-post,
body.single-post .post.type-post,
body.single-post .single-post article{background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important;overflow:visible!important}
body.single-post .entry-header{position:relative;background:rgba(255,255,255,.9);border:1px solid rgba(49,87,213,.09);border-radius:26px;padding:25px 28px 22px;margin:0 0 22px!important;box-shadow:0 14px 38px rgba(45,67,105,.07);backdrop-filter:blur(13px)}
body.single-post .post-thumbnail,body.single-post .single-post-thumbnail,body.single-post .entry-media{margin:0 0 22px!important;border-radius:26px!important;overflow:hidden;box-shadow:0 16px 40px rgba(45,67,105,.09)}
body.single-post .entry-content{font-size:inherit!important;line-height:inherit!important;color:inherit!important;margin:0!important;max-width:none!important}
.phr-single-article-layout,.phr-single-article-layout *{box-sizing:border-box;font-family:'Tajawal',Arial,sans-serif!important}
.phr-single-article-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:24px;align-items:start;direction:rtl}
.phr-single-article-box{position:relative;min-width:0;background:rgba(255,255,255,.94);border:1px solid rgba(49,87,213,.09);border-radius:28px;padding:34px 36px;box-shadow:0 20px 55px rgba(45,67,105,.08);overflow:hidden;backdrop-filter:blur(12px)}
.phr-single-article-box::before{content:"";position:absolute;width:270px;height:270px;border-radius:50%;left:-130px;top:-120px;background:radial-gradient(circle,rgba(49,87,213,.10),transparent 68%);pointer-events:none}
.phr-single-article-accent{height:5px;width:min(180px,45%);border-radius:999px;background:rgba(49,87,213,.10);overflow:hidden;margin:0 0 28px auto;position:relative}
.phr-single-article-accent span{display:block;width:72%;height:100%;border-radius:inherit;background:linear-gradient(90deg,#3157d5,#5e84ff,#25b7aa);box-shadow:0 5px 16px rgba(49,87,213,.22)}
.phr-single-article-copy{position:relative;z-index:1;color:#33485d;font-size:18px;line-height:2.05}
.phr-single-article-copy > *:first-child{margin-top:0!important}.phr-single-article-copy > *:last-child{margin-bottom:0!important}
.phr-single-article-copy h2,.phr-single-article-copy h3,.phr-single-article-copy h4{color:#172033!important}.phr-single-article-copy a{color:#3157d5!important}
.phr-single-article-sidebar{display:grid;gap:18px;position:sticky;top:112px;min-width:0}
.phr-article-side-box{position:relative;background:rgba(255,255,255,.9);border:1px solid rgba(49,87,213,.09);border-radius:24px;padding:20px;box-shadow:0 16px 42px rgba(45,67,105,.07);overflow:hidden;backdrop-filter:blur(14px)}
.phr-article-side-box::before{content:"";position:absolute;width:150px;height:150px;left:-78px;top:-82px;border-radius:50%;background:radial-gradient(circle,rgba(46,183,171,.11),transparent 70%);pointer-events:none}
.phr-article-side-heading{position:relative;display:flex;align-items:center;justify-content:space-between;gap:10px;padding-bottom:13px;margin-bottom:13px;border-bottom:1px solid rgba(49,87,213,.08);color:#172033}
.phr-article-side-heading span{font-size:18px;font-weight:900}.phr-article-side-heading b{width:34px;height:34px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;background:#eef4ff;color:#3157d5;font-size:15px}
.phr-article-category-list{display:grid;gap:8px}.phr-article-category-list a{display:flex;align-items:center;justify-content:space-between;gap:12px;text-decoration:none!important;color:#4a5e72!important;background:#f7f9fc;border:1px solid rgba(49,87,213,.06);border-radius:14px;padding:11px 13px;font-size:14px;font-weight:800;transition:.2s ease}
.phr-article-category-list a b{min-width:28px;height:25px;padding:0 7px;border-radius:999px;background:#e9efff;color:#3157d5;display:inline-flex;align-items:center;justify-content:center;font-size:11px}.phr-article-category-list a:hover{transform:translateX(-3px);background:#eef4ff;border-color:rgba(49,87,213,.16)}
.phr-article-side-list{display:grid;gap:5px}.phr-article-side-item{display:grid;grid-template-columns:66px minmax(0,1fr);gap:11px;align-items:center;text-decoration:none!important;padding:9px;border-radius:16px;color:#172033!important;transition:.22s ease}.phr-article-side-item:hover{background:#f5f8ff;transform:translateX(-2px)}
.phr-article-side-thumb{width:66px;height:58px;border-radius:13px;overflow:hidden;background:linear-gradient(135deg,#e8efff,#e7f7f5);display:flex;align-items:center;justify-content:center}.phr-article-side-thumb img{width:100%;height:100%;object-fit:cover;display:block;border-radius:0!important}.phr-article-side-thumb b{color:#3157d5;font-size:17px}
.phr-article-side-copy{min-width:0;display:grid;gap:6px}.phr-article-side-copy strong{font-size:13px;line-height:1.55;font-weight:900;color:#172033;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.phr-article-side-copy small{font-size:10.5px;color:#7b879c;font-weight:700}.phr-article-side-copy small i{font-style:normal;margin:0 2px;color:#b5bfcc}
.phr-article-side-empty{margin:0;color:#7b879c;font-size:13px;line-height:1.8}
@media(max-width:1050px){.phr-single-article-layout{grid-template-columns:minmax(0,1fr) 290px;gap:18px}.phr-single-article-box{padding:29px}.phr-article-side-box{padding:17px}}
@media(max-width:860px){.phr-single-article-layout{grid-template-columns:1fr}.phr-single-article-sidebar{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}.phr-article-categories-box{grid-column:1/-1}}
@media(max-width:600px){body.single-post .entry-header{padding:20px;border-radius:21px}.phr-single-article-box{padding:22px 18px;border-radius:22px}.phr-single-article-copy{font-size:16px;line-height:1.95}.phr-single-article-sidebar{grid-template-columns:1fr}.phr-article-categories-box{grid-column:auto}.phr-article-side-box{border-radius:20px}.phr-single-article-accent{margin-bottom:21px}}
body.single-post aside.widget-area:not(.phr-single-article-sidebar),body.single-post .widget-area:not(.phr-single-article-sidebar){display:none!important}

/* v9.22.2 — Product features: one editorial box + clear call CTA */
.phr-product-feature-section-v3 .phr-product-section-head{margin-bottom:22px}
.phr-product-feature-box{position:relative;overflow:hidden;background:rgba(255,255,255,.94);border:1px solid rgba(33,23,28,.075);border-radius:26px;padding:30px 32px;box-shadow:0 18px 50px rgba(49,31,39,.055)}
.phr-product-feature-box::before{content:"";position:absolute;inset-inline-start:0;top:0;width:4px;height:100%;background:linear-gradient(180deg,#e3062e 0%,#ff5a74 48%,#171217 100%)}
.phr-product-feature-copy{position:relative;z-index:1;display:flex;flex-direction:column;gap:0}
.phr-product-feature-copy p{position:relative;margin:0;padding:0 0 20px;color:#43383d;font-size:17px;font-weight:650;line-height:2;text-align:right}
.phr-product-feature-copy p:not(:last-child){margin-bottom:20px;border-bottom:1px solid rgba(45,32,38,.07)}
.phr-product-feature-copy p.is-question{color:#1d171a;font-size:18px;font-weight:900}
.phr-product-feature-copy p.is-emphasis{color:#21191d;font-weight:850}
.phr-product-feature-copy p.is-ingredients{color:#4c4046;font-size:16px;font-weight:800;line-height:2.05;letter-spacing:.05px}
.phr-product-feature-copy p:last-child{padding-bottom:0}
.phr-product-feature-call{position:relative;z-index:1;display:grid;grid-template-columns:52px minmax(0,1fr) auto;align-items:center;gap:14px;margin-top:26px;padding:14px 16px;border-radius:18px;background:linear-gradient(135deg,#1b1518 0%,#2a2025 58%,#351a21 100%);color:#fff;text-decoration:none!important;box-shadow:0 15px 32px rgba(26,18,22,.14);transition:transform .22s ease,box-shadow .22s ease}
.phr-product-feature-call:hover{transform:translateY(-2px);box-shadow:0 20px 38px rgba(26,18,22,.18)}
.phr-product-feature-call-icon{display:grid;place-items:center;width:52px;height:52px;border-radius:15px;background:linear-gradient(135deg,#e3062e,#ff3b59);box-shadow:0 9px 20px rgba(227,6,46,.22)}
.phr-product-feature-call-icon svg{width:25px;height:25px;fill:none;stroke:#fff;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.phr-product-feature-call-copy{display:flex;flex-direction:column;gap:2px;min-width:0}
.phr-product-feature-call-copy small{color:rgba(255,255,255,.68);font-size:12px;font-weight:800}
.phr-product-feature-call-copy strong{color:#fff;font-size:25px;line-height:1.1;font-weight:950;letter-spacing:.7px;text-align:right}
.phr-product-feature-call-action{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:0 16px;border-radius:11px;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.12);color:#fff;font-size:13px;font-weight:900;white-space:nowrap}
.tph-feature-contact-fields{align-items:start}
@media(max-width:680px){
  .phr-product-feature-box{padding:23px 20px;border-radius:22px}
  .phr-product-feature-copy p{font-size:15.5px;line-height:1.95;padding-bottom:17px}
  .phr-product-feature-copy p:not(:last-child){margin-bottom:17px}
  .phr-product-feature-copy p.is-question{font-size:17px}
  .phr-product-feature-copy p.is-ingredients{font-size:14.5px}
  .phr-product-feature-call{grid-template-columns:46px minmax(0,1fr);gap:11px;padding:12px;border-radius:16px}
  .phr-product-feature-call-icon{width:46px;height:46px;border-radius:13px}
  .phr-product-feature-call-icon svg{width:22px;height:22px}
  .phr-product-feature-call-copy strong{font-size:22px}
  .phr-product-feature-call-action{grid-column:1/-1;width:100%;min-height:40px}
}

/* =========================================================
   v9.22.3 — compact product availability box
   ========================================================= */
.phr-product-availability-box{margin-top:14px;padding:16px 17px;border:1px solid rgba(35,27,31,.085);border-radius:20px;background:linear-gradient(145deg,rgba(255,255,255,.97),rgba(248,249,250,.94));box-shadow:0 14px 38px rgba(44,30,36,.045)}
.phr-product-availability-head{display:flex;align-items:center;gap:10px;margin-bottom:11px}.phr-product-availability-icon{width:38px;height:38px;flex:0 0 38px;border-radius:12px;display:grid;place-items:center;background:#171217;color:#fff}.phr-product-availability-icon svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.phr-product-availability-head>div{min-width:0}.phr-product-availability-head small{display:block;color:#968a90;font-size:10px;font-weight:700}.phr-product-availability-head strong{display:block;margin-top:1px;color:#20191d;font-size:15px;font-weight:900}
.phr-product-availability-list{display:grid;gap:7px;max-height:228px;overflow:auto;padding-inline-end:2px;scrollbar-width:thin;scrollbar-color:#d9d3d6 transparent}.phr-product-availability-item{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:9px;min-height:52px;padding:9px 10px;border:1px solid #eee9eb;border-radius:14px;background:#fff;color:inherit;text-decoration:none;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.phr-product-availability-item:hover{transform:translateY(-1px);border-color:#ddd4d8;box-shadow:0 9px 20px rgba(45,29,36,.05)}.phr-product-availability-type{display:inline-flex;align-items:center;justify-content:center;min-width:53px;min-height:27px;padding:4px 8px;border-radius:999px;background:#f2f0f1;color:#5c5056;font-size:9px;font-weight:900;white-space:nowrap}.phr-product-availability-copy{min-width:0}.phr-product-availability-copy b{display:block;color:#2a2226;font-size:12px;line-height:1.4}.phr-product-availability-copy small{display:block;margin-top:2px;color:#95898e;font-size:9.5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.phr-product-availability-go{display:grid;place-items:center;width:27px;height:27px;border-radius:9px;background:#171217;color:#fff;font-size:12px;font-weight:900}
.phr-product-availability-list::-webkit-scrollbar{width:5px}.phr-product-availability-list::-webkit-scrollbar-thumb{background:#d9d3d6;border-radius:999px}
@media(max-width:680px){.phr-product-availability-box{padding:14px;border-radius:18px}.phr-product-availability-item{grid-template-columns:auto minmax(0,1fr) auto}.phr-product-availability-copy b{font-size:11.5px}}

/* =========================================================
   v9.23.0 — customer account, simple availability sentence
   ========================================================= */
.phr-product-availability-note{position:relative;display:flex;align-items:center;gap:13px;margin-top:14px;padding:14px 16px;border:1px solid rgba(29,23,26,.075);border-radius:18px;background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(247,250,249,.96));box-shadow:0 13px 32px rgba(37,28,32,.045);overflow:hidden}
.phr-product-availability-note:after{content:"";position:absolute;inset-inline-start:0;top:0;bottom:0;width:3px;background:linear-gradient(180deg,#11a88c,#e3062e)}
.phr-product-availability-note-icon{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;border-radius:14px;background:#171217;color:#fff;box-shadow:0 10px 22px rgba(20,15,18,.12)}
.phr-product-availability-note-icon svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.phr-product-availability-note-copy{min-width:0;display:grid;gap:3px}.phr-product-availability-note-copy small{color:#8e8589;font-size:10px;font-weight:800}.phr-product-availability-note-copy strong{color:#2b2227;font-size:13px;line-height:1.75;font-weight:850}
@media(max-width:680px){.phr-product-availability-note{padding:12px 13px;border-radius:16px}.phr-product-availability-note-icon{flex-basis:38px;width:38px;height:38px;border-radius:12px}.phr-product-availability-note-copy strong{font-size:12px}}

#phr-header .phr-header-account-wrap{position:relative;display:flex;align-items:center;justify-content:center;z-index:10007}
#phr-header .phr-account-toggle{position:relative;width:46px;height:46px;border-radius:15px;border:1px solid rgba(255,255,255,.24);background:rgba(255,255,255,.09);color:#fff;display:grid;place-items:center;cursor:pointer;transition:.22s ease;padding:0;box-shadow:none}
#phr-header .phr-account-toggle:hover{transform:translateY(-1px);background:rgba(255,255,255,.16)}
#phr-header .phr-account-toggle svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
#phr-header.is-sticky-shadow .phr-account-toggle{background:#fff;color:var(--phr-sticky-text);border-color:rgba(13,47,87,.10);box-shadow:0 10px 26px rgba(13,61,103,.10)}
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-account-toggle{color:#fff;border-color:rgba(255,255,255,.25);background:rgba(255,255,255,.09)}
.phr-account-online-dot{position:absolute;left:5px;bottom:5px;width:10px;height:10px;border-radius:50%;background:#19b67b;border:2px solid #fff;box-shadow:0 0 0 2px rgba(25,182,123,.16)}
.phr-header-account-popover{position:absolute;top:calc(100% + 14px);left:0;width:min(390px,calc(100vw - 28px));padding:18px;border:1px solid rgba(34,25,30,.09);border-radius:24px;background:rgba(255,255,255,.985);box-shadow:0 26px 70px rgba(35,22,29,.18);backdrop-filter:blur(20px);opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-8px) scale(.985);transform-origin:top left;transition:.2s ease;color:#221a1e;z-index:10030}
.phr-header-account-popover.is-open{opacity:1;visibility:visible;pointer-events:auto;transform:none}
.phr-header-account-popover:before{content:"";position:absolute;left:16px;top:-7px;width:13px;height:13px;background:#fff;border-left:1px solid rgba(34,25,30,.08);border-top:1px solid rgba(34,25,30,.08);transform:rotate(45deg)}
.phr-account-auth-tabs{display:grid;grid-template-columns:1fr 1fr;gap:5px;padding:4px;border-radius:15px;background:#f4f1f2;margin-bottom:14px}.phr-account-auth-tabs button{min-height:39px;border:0;border-radius:11px;background:transparent;color:#766b71;font-weight:900;cursor:pointer}.phr-account-auth-tabs button.is-active{background:#171217;color:#fff;box-shadow:0 7px 17px rgba(26,18,22,.12)}
.phr-account-auth-panel{display:none}.phr-account-auth-panel.is-active{display:block}.phr-account-auth-panel form{display:grid;gap:10px}.phr-account-auth-panel label{display:grid;gap:6px}.phr-account-auth-panel label>span{font-size:11px;font-weight:850;color:#675c62}.phr-account-auth-panel input[type=text],.phr-account-auth-panel input[type=email],.phr-account-auth-panel input[type=password]{width:100%;height:45px;border:1px solid #e6e0e3;border-radius:12px;background:#fff;padding:0 12px;font-family:inherit;font-size:14px;outline:none}.phr-account-auth-panel input:focus{border-color:rgba(227,6,46,.46);box-shadow:0 0 0 3px rgba(227,6,46,.07)}
.phr-auth-pass-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}.phr-auth-check{display:flex!important;align-items:center;gap:7px!important;grid-template-columns:auto 1fr!important}.phr-auth-check input{margin:0}.phr-auth-check span{font-size:10.5px!important}
.phr-account-auth-panel form>button{height:45px;border:0;border-radius:13px;background:linear-gradient(135deg,#e3062e,#b60024);color:#fff;font-family:inherit;font-weight:950;cursor:pointer;box-shadow:0 12px 24px rgba(227,6,46,.18)}
.phr-account-mini-head{display:flex;align-items:center;gap:12px;padding-bottom:14px;border-bottom:1px solid #eee9eb}.phr-account-avatar{display:grid;place-items:center;flex:0 0 46px;width:46px;height:46px;border-radius:15px;background:linear-gradient(135deg,#171217,#34252d);color:#fff;font-size:20px;font-weight:950;box-shadow:0 10px 24px rgba(28,19,24,.15)}.phr-account-mini-head>div{display:grid;min-width:0}.phr-account-mini-head small{font-size:10px;color:#9a8e94;font-weight:800}.phr-account-mini-head strong{font-size:15px;color:#241b20}.phr-account-mini-head span:not(.phr-account-avatar){font-size:10.5px;color:#887b82;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.phr-account-mini-links{display:grid;padding:9px 0}.phr-account-mini-links a{display:flex;align-items:center;justify-content:space-between;min-height:42px;padding:0 10px;border-radius:11px;text-decoration:none;color:#3c3036;font-size:12.5px;font-weight:850}.phr-account-mini-links a:hover{background:#f8f4f5;color:#e3062e}.phr-account-mini-links a span{font-size:16px}
.phr-account-logout{display:flex;align-items:center;justify-content:center;height:40px;border-radius:11px;background:#f7f4f5;color:#7a6c73!important;text-decoration:none!important;font-size:12px;font-weight:900}.phr-account-logout:hover{background:#171217;color:#fff!important}

.phr-customer-account,.phr-customer-account *{box-sizing:border-box;font-family:'Tajawal',Arial,sans-serif}.phr-customer-account{width:min(1320px,calc(100% - 34px));margin:0 auto;padding:52px 0 80px;color:#241b20}
.phr-account-hero{position:relative;display:flex;align-items:end;justify-content:space-between;gap:24px;padding:30px 34px;margin-bottom:20px;border:1px solid rgba(43,31,37,.07);border-radius:28px;background:linear-gradient(135deg,#fbfcff,#f4faf9 58%,#fff8fa);overflow:hidden}.phr-account-hero:after{content:"";position:absolute;width:350px;height:350px;border-radius:50%;left:-130px;top:-220px;background:radial-gradient(circle,rgba(49,87,213,.13),transparent 68%);pointer-events:none}.phr-account-hero>div{position:relative;z-index:1}.phr-account-hero span,.phr-account-section>header>span,.phr-account-guest-copy>span{display:block;color:#e3062e;font-size:10px;font-weight:950;letter-spacing:1.3px}.phr-account-hero h1{margin:5px 0 8px;font-size:clamp(30px,4vw,48px);line-height:1.15;font-weight:950}.phr-account-hero p{margin:0;color:#7f7379;font-size:14px;line-height:1.8}.phr-account-hero>a{position:relative;z-index:1;display:inline-flex;align-items:center;gap:10px;min-height:44px;padding:0 17px;border-radius:13px;background:#171217;color:#fff;text-decoration:none;font-size:12px;font-weight:900;white-space:nowrap}
.phr-account-alert{margin-bottom:18px;padding:13px 16px;border-radius:14px;font-size:13px;font-weight:850}.phr-account-alert.is-error{background:#fff0f2;color:#a10020;border:1px solid #ffd3dc}.phr-account-alert.is-success{background:#edfbf5;color:#08784d;border:1px solid #c9f0df}
.phr-account-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:20px}.phr-account-stats>div{padding:19px 21px;border:1px solid rgba(43,31,37,.07);border-radius:20px;background:#fff;box-shadow:0 13px 36px rgba(45,31,38,.045)}.phr-account-stats span{display:block;color:#968990;font-size:10px;font-weight:800}.phr-account-stats strong{display:block;margin:5px 0 2px;color:#21191d;font-size:25px;font-weight:950}.phr-account-stats small{color:#a1969b;font-size:9.5px}
.phr-account-layout{display:grid;grid-template-columns:minmax(0,1fr) 350px;gap:20px;align-items:start}.phr-account-main{display:grid;gap:20px;min-width:0}.phr-account-section,.phr-account-profile{background:#fff;border:1px solid rgba(43,31,37,.07);border-radius:25px;padding:24px;box-shadow:0 17px 48px rgba(43,29,36,.055)}.phr-account-section>header{margin-bottom:17px}.phr-account-section h2,.phr-account-profile h2{margin:4px 0 5px;font-size:24px;font-weight:950}.phr-account-section header p,.phr-account-profile-head p{margin:0;color:#94878e;font-size:11px;line-height:1.7}
.phr-account-orders{display:grid;gap:9px}.phr-account-orders article{display:grid;grid-template-columns:170px minmax(0,1fr) 145px;gap:16px;align-items:center;padding:14px 15px;border:1px solid #eee9eb;border-radius:17px;background:#fcfbfc}.phr-account-order-no,.phr-account-order-total{display:grid;gap:2px}.phr-account-order-no small,.phr-account-order-total small{font-size:9px;color:#9a8e94}.phr-account-order-no strong{font-size:13px}.phr-account-order-no span{font-size:9px;color:#aaa0a5}.phr-account-order-products{display:flex;flex-wrap:wrap;gap:5px}.phr-account-order-products span,.phr-account-order-products small{padding:5px 8px;border-radius:999px;background:#f1eff0;color:#5f5359;font-size:9.5px;font-weight:800}.phr-account-order-total{text-align:left;justify-items:end}.phr-account-order-total strong{font-size:15px}.phr-account-order-total>span{padding:4px 8px;border-radius:999px;background:#eef4ff;color:#3157d5;font-size:8.5px;font-weight:900}.phr-account-order-total>span.is-completed{background:#e9f8f1;color:#08794e}.phr-account-order-total>span.is-cancelled{background:#fff0f2;color:#a40020}.phr-account-order-total>span.is-processing{background:#fff7e8;color:#946200}
.phr-account-top-products{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.phr-account-top-products>a{display:grid;grid-template-columns:78px minmax(0,1fr);gap:11px;align-items:center;padding:10px;border:1px solid #eee9eb;border-radius:17px;text-decoration:none;color:#2b2227;background:#fff}.phr-account-top-products img,.phr-account-product-placeholder{width:78px;height:72px;border-radius:13px;object-fit:contain;background:#f7f5f6;display:grid;place-items:center}.phr-account-top-products>a>span{display:grid;gap:4px;min-width:0}.phr-account-top-products small{font-size:8.5px;color:#9e9297}.phr-account-top-products strong{font-size:11.5px;line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.phr-account-top-products b{font-size:9.5px;color:#e3062e}
.phr-account-discounts{display:grid;grid-template-columns:200px minmax(0,1fr);gap:14px}.phr-account-saving-total{display:grid;align-content:center;padding:18px;border-radius:18px;background:linear-gradient(135deg,#171217,#35252e);color:#fff}.phr-account-saving-total small{color:rgba(255,255,255,.6);font-size:9px}.phr-account-saving-total strong{margin-top:5px;font-size:22px}.phr-account-coupon-history{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.phr-account-coupon-history>span{display:grid;gap:1px;padding:10px 13px;border-radius:13px;background:#f8f5f6;color:#6e6268;font-size:10px}.phr-account-coupon-history b{color:#e3062e;font-size:12px}.phr-account-coupon-history small{font-size:8.5px}
.phr-account-profile{position:sticky;top:108px}.phr-account-profile-head{display:flex;gap:12px;align-items:center;padding-bottom:16px;margin-bottom:15px;border-bottom:1px solid #eee9eb}.phr-account-avatar.is-large{flex-basis:58px;width:58px;height:58px;border-radius:18px;font-size:24px}.phr-account-profile form{display:grid;gap:10px}.phr-account-profile label{display:grid;gap:6px}.phr-account-profile label>span{font-size:10.5px;color:#665b60;font-weight:850}.phr-account-profile label>span em{display:block;margin-top:2px;color:#a69ba0;font-size:8.5px;font-style:normal;font-weight:600}.phr-account-profile input,.phr-account-profile textarea{width:100%;border:1px solid #e6e0e3;border-radius:12px;background:#fff;padding:10px 11px;font-family:inherit;font-size:13px;outline:none}.phr-account-profile input{height:43px}.phr-account-profile input:focus,.phr-account-profile textarea:focus{border-color:rgba(227,6,46,.4);box-shadow:0 0 0 3px rgba(227,6,46,.06)}.phr-account-password-box{display:grid;gap:9px;margin:5px 0;padding:12px;border-radius:15px;background:#f8f6f7}.phr-account-password-box>strong{font-size:11px}.phr-account-profile form>button{height:46px;border:0;border-radius:13px;background:linear-gradient(135deg,#e3062e,#b60024);color:#fff;font-family:inherit;font-weight:950;cursor:pointer}.phr-account-empty{padding:18px;border-radius:15px;background:#f9f7f8;color:#8b7f85;font-size:12px}.phr-account-empty a{color:#e3062e;font-weight:900}
.phr-customer-account-guest{max-width:880px;padding-top:70px}.phr-account-guest-copy{text-align:center;margin-bottom:20px}.phr-account-guest-copy h1{font-size:clamp(32px,5vw,52px);margin:5px 0 8px}.phr-account-guest-copy p{margin:0 auto;max-width:650px;color:#83777d;line-height:1.9}.phr-account-guest-auth{max-width:410px;margin:0 auto}.phr-account-guest-auth .phr-header-account-popover{position:relative;top:auto;left:auto;width:100%;opacity:1;visibility:visible;pointer-events:auto;transform:none;box-shadow:0 25px 65px rgba(42,27,34,.1)}.phr-account-guest-auth .phr-header-account-popover:before{display:none}
@media(max-width:1050px){.phr-account-layout{grid-template-columns:minmax(0,1fr) 310px}.phr-account-top-products{grid-template-columns:repeat(2,minmax(0,1fr))}.phr-account-orders article{grid-template-columns:145px minmax(0,1fr) 125px}}
@media(max-width:820px){.phr-account-layout{grid-template-columns:1fr}.phr-account-profile{position:static}.phr-account-stats{grid-template-columns:1fr 1fr}.phr-account-stats>div:last-child{grid-column:1/-1}.phr-account-hero{align-items:flex-start;flex-direction:column}.phr-account-orders article{grid-template-columns:1fr}.phr-account-order-total{text-align:right;justify-items:start}.phr-account-discounts{grid-template-columns:1fr}}
@media(max-width:620px){.phr-header-account-popover{position:fixed;left:14px!important;right:14px!important;top:78px!important;width:auto;max-height:calc(100vh - 96px);overflow:auto}.phr-header-account-popover:before{display:none}.phr-auth-pass-grid{grid-template-columns:1fr}.phr-customer-account{width:min(100% - 20px,1320px);padding-top:30px}.phr-account-hero{padding:23px 20px;border-radius:22px}.phr-account-stats{grid-template-columns:1fr}.phr-account-stats>div:last-child{grid-column:auto}.phr-account-section,.phr-account-profile{padding:18px;border-radius:21px}.phr-account-top-products{grid-template-columns:1fr}.phr-account-orders article{padding:12px}.phr-customer-account-guest{padding-top:45px}}
#phr-header .phr-account-toggle{width:auto;min-width:46px;padding:0 12px;grid-auto-flow:column;gap:7px}
#phr-header .phr-account-toggle-label{font-size:11px;font-weight:900;white-space:nowrap}
@media(max-width:760px){#phr-header .phr-account-toggle{width:44px;min-width:44px;padding:0}.phr-account-toggle-label{display:none!important}}

/* ================================================================
   v9.23.1 — Red account trigger + inner transparent header
   ================================================================ */
/* Header account: same compact geometry as the cart, with a clear brand-red identity. */
#phr-header .phr-account-toggle,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-account-toggle,
#phr-header.is-sticky-shadow .phr-account-toggle{
  width:56px;
  min-width:56px;
  height:56px;
  padding:0;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#f00635 0%,#d8002b 58%,#a90021 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.24);
  box-shadow:0 14px 34px rgba(211,0,39,.24),0 1px 0 rgba(255,255,255,.18) inset;
}
#phr-header .phr-account-toggle:hover,
#phr-header .phr-account-toggle[aria-expanded="true"],
#phr-header.is-sticky-shadow .phr-account-toggle:hover,
#phr-header.is-sticky-shadow .phr-account-toggle[aria-expanded="true"]{
  transform:translateY(-2px);
  color:#fff;
  background:linear-gradient(145deg,#ff1745 0%,#e3062e 58%,#b40022 100%);
  border-color:rgba(255,255,255,.34);
  box-shadow:0 18px 42px rgba(211,0,39,.31),0 0 0 4px rgba(227,6,46,.07);
}
#phr-header .phr-account-toggle svg{width:25px;height:25px;stroke:#fff!important}
#phr-header .phr-account-toggle-label{display:none!important}
#phr-header .phr-account-online-dot{right:5px;bottom:5px;border-color:#fff}

/* Internal transparent header: top-level navigation is white only while the header overlays the hero. */
#phr-header.phr-inner-transparent-header.phr-is-transparent:not(.is-sticky-shadow) .phr-nav > .phr-menu > li > a,
#phr-header.phr-inner-transparent-header.phr-is-transparent:not(.is-sticky-shadow) .phr-nav > .menu > li > a,
#phr-header.phr-inner-transparent-header.phr-is-transparent:not(.is-sticky-shadow) .phr-nav > .phr-menu > li > a > span,
#phr-header.phr-inner-transparent-header.phr-is-transparent:not(.is-sticky-shadow) .phr-nav > .menu > li > a > span,
#phr-header.phr-inner-transparent-header.phr-is-transparent:not(.is-sticky-shadow) .phr-logo-text{
  color:#fff!important;
  text-shadow:0 2px 14px rgba(0,0,0,.22);
}
#phr-header.phr-inner-transparent-header.is-sticky-shadow .phr-nav > .phr-menu > li > a,
#phr-header.phr-inner-transparent-header.is-sticky-shadow .phr-nav > .menu > li > a,
#phr-header.phr-inner-transparent-header.is-sticky-shadow .phr-logo-text{
  color:var(--phr-sticky-text)!important;
  text-shadow:none;
}
#phr-header.phr-inner-transparent-header.is-sticky-shadow .phr-nav > .phr-menu > li.current-menu-item > a,
#phr-header.phr-inner-transparent-header.is-sticky-shadow .phr-nav > .menu > li.current-menu-item > a,
#phr-header.phr-inner-transparent-header.is-sticky-shadow .phr-nav > .phr-menu > li.current_page_item > a,
#phr-header.phr-inner-transparent-header.is-sticky-shadow .phr-nav > .menu > li.current_page_item > a{
  color:#fff!important;
}

/* Elementor widget “شورت تحت الحزام”: different visual language for internal pages,
   while intentionally reusing the established video-library title treatment. */
.phr-video-hub-video_library.phr-video-variant-short2{
  background:
    radial-gradient(circle at 86% 12%,rgba(124,92,255,.10),transparent 28%),
    radial-gradient(circle at 8% 78%,rgba(59,169,255,.11),transparent 31%),
    linear-gradient(145deg,#06131d 0%,#081c28 48%,#07151f 100%)!important;
  color:#fff;
  min-height:0;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-scene{display:none!important}
.phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:before,
.phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:after{
  display:block!important;
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:0;
}
.phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:before{
  width:min(76vw,980px);
  height:min(76vw,980px);
  right:-24%;
  top:-62%;
  border-radius:44% 56% 63% 37%;
  background:
    radial-gradient(circle at 38% 42%,rgba(38,211,199,.24),transparent 34%),
    radial-gradient(circle at 62% 58%,rgba(59,169,255,.18),transparent 42%),
    radial-gradient(circle at 50% 50%,rgba(255,255,255,.035),transparent 64%);
  filter:blur(10px);
  opacity:.72;
  animation:phrShortsInnerFloat 18s ease-in-out infinite alternate;
}
.phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:after{
  inset:0;
  width:auto;
  height:auto;
  left:0;
  bottom:0;
  background-image:
    radial-gradient(circle,rgba(72,218,208,.16) 0 1.2px,transparent 1.6px),
    linear-gradient(115deg,transparent 0 42%,rgba(255,255,255,.035) 50%,transparent 58%);
  background-size:38px 38px,230% 100%;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.32),#000 35%,#000 72%,rgba(0,0,0,.18));
  opacity:.45;
  animation:phrShortsInnerGrid 22s linear infinite;
}
@keyframes phrShortsInnerFloat{
  0%{transform:translate3d(0,0,0) rotate(-5deg) scale(.94)}
  55%{transform:translate3d(-7%,9%,0) rotate(8deg) scale(1.07)}
  100%{transform:translate3d(5%,2%,0) rotate(-2deg) scale(1.01)}
}
@keyframes phrShortsInnerGrid{from{background-position:0 0,-120% 0}to{background-position:76px 38px,120% 0}}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-hub-shell{position:relative;z-index:2}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-hub-list{align-items:stretch}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card.is-short{
  max-width:var(--pv-short);
  height:100%;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(14,40,53,.94),rgba(8,28,39,.92));
  border:1px solid rgba(115,220,226,.14);
  box-shadow:0 22px 58px rgba(0,8,14,.28),0 1px 0 rgba(255,255,255,.05) inset;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card.is-short:before{
  right:14px;
  left:14px;
  height:3px;
  background:linear-gradient(90deg,transparent,#7c5cff,#3ba9ff,#7b79ff,transparent);
  box-shadow:0 5px 22px rgba(124,92,255,.20);
  opacity:.9;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card.is-short:after{
  inset:auto -24% -18% 20%;
  width:170px;
  height:170px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(124,92,255,.16),rgba(59,169,255,.07) 42%,transparent 70%);
  filter:blur(14px);
  opacity:.65;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card.is-short:hover{
  transform:translateY(-8px) scale(1.012);
  border-color:rgba(124,92,255,.34);
  box-shadow:0 30px 76px rgba(0,8,14,.40),0 0 0 1px rgba(59,169,255,.07) inset;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-media{
  background:#06131c;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 14px 38px rgba(0,6,10,.34);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-media:after{
  background:linear-gradient(180deg,rgba(5,17,24,.02) 36%,rgba(4,17,25,.74) 100%);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-play>span{
  width:58px;
  height:58px;
  background:rgba(239,253,255,.94);
  color:#5d46d6;
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 17px 40px rgba(0,14,22,.28),0 0 0 7px rgba(124,92,255,.12);
  text-shadow:none;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-play>span:after{
  border-color:rgba(124,92,255,.34);
  animation:phrShortsInnerPulse 2.3s ease-out infinite;
}
@keyframes phrShortsInnerPulse{0%{transform:scale(.82);opacity:.7}100%{transform:scale(1.18);opacity:0}}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-media:hover .phr-video-play>span{
  background:linear-gradient(145deg,#7c5cff,#4b8cff);
  color:#fff;
  box-shadow:0 20px 48px rgba(16,148,166,.30),0 0 0 7px rgba(255,255,255,.12);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-type-chip{
  background:rgba(4,20,29,.82)!important;
  color:#b9b0ff!important;
  border:1px solid rgba(115,238,229,.16);
  box-shadow:0 8px 24px rgba(0,0,0,.20);
  text-shadow:none;
  backdrop-filter:blur(10px);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-badge{
  background:linear-gradient(135deg,#7c5cff,#2f8fd4)!important;
  color:#fff;
  box-shadow:0 9px 24px rgba(28,170,183,.24);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-copy{padding:15px 8px 8px}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-copy h3{
  color:#f6fdff;
  font-size:17px;
  line-height:1.55;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-copy h3:after{
  background:linear-gradient(90deg,#7c5cff,#3ba9ff);
  box-shadow:0 0 14px rgba(124,92,255,.18);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-copy p{color:#93adb8;font-size:12.5px}
@media(max-width:991px){
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card.is-short{max-width:100%}
}
@media(max-width:640px){
  #phr-header .phr-account-toggle,
  #phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-account-toggle,
  #phr-header.is-sticky-shadow .phr-account-toggle{width:46px;min-width:46px;height:46px;border-radius:14px}
  #phr-header .phr-account-toggle svg{width:22px;height:22px}
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card.is-short{max-width:100%}
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-video-play>span{width:48px;height:48px;font-size:15px}
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-copy h3{font-size:14px}
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-copy p{font-size:11px}
}
@media(prefers-reduced-motion:reduce){
  .phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:before,
  .phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:after,
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-video-play>span:after{animation:none!important}
}


/* ================================================================
   v9.23.2 — Short 2: independent Grid / moving Slider / Cinema layout
   ================================================================ */
.phr-video-hub-video_library.phr-video-variant-short2{
  --s2-violet:#7c5cff;
  --s2-blue:#4b8cff;
  --s2-cyan:#52d9ff;
  isolation:isolate;
  background:
    radial-gradient(circle at 82% 9%,rgba(124,92,255,.16),transparent 29%),
    radial-gradient(circle at 11% 88%,rgba(82,217,255,.12),transparent 31%),
    linear-gradient(145deg,#080d1c 0%,#0d1530 48%,#0a1023 100%)!important;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-title-icon{
  background:linear-gradient(145deg,var(--s2-violet),#4231ae)!important;
  box-shadow:0 14px 38px rgba(124,92,255,.27),0 0 0 6px rgba(124,92,255,.07)!important;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-title-text{
  background:linear-gradient(92deg,#fff 0 58%,#a998ff 76%,#52d9ff 100%)!important;
  -webkit-background-clip:text!important;background-clip:text!important;color:transparent!important;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-title-text:after{
  background:linear-gradient(90deg,var(--s2-violet),var(--s2-blue) 52%,var(--s2-cyan),transparent)!important;
  box-shadow:0 0 20px rgba(124,92,255,.24)!important;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-kicker{
  border-color:rgba(124,92,255,.22)!important;
  background:rgba(13,20,45,.72)!important;
  color:#c7c0ff!important;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-hub-head p{color:#aebbd9!important}

/* Short 2 navigation */
.phr-short2-nav{
  position:relative;z-index:12;display:flex;align-items:center;justify-content:center;gap:12px;
  width:100%;margin:0 auto 22px;direction:rtl;
}
.phr-short2-arrow{
  display:grid;place-items:center;width:48px;height:48px;padding:0;border-radius:16px;
  border:1px solid rgba(151,132,255,.28);background:rgba(15,23,52,.86);color:#d8d2ff;
  box-shadow:0 13px 30px rgba(0,0,0,.22),0 0 0 1px rgba(255,255,255,.035) inset;
  cursor:pointer;font-size:22px;font-weight:900;line-height:1;transition:.22s ease;
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
}
.phr-short2-arrow:hover{transform:translateY(-2px);color:#fff;border-color:rgba(82,217,255,.42);box-shadow:0 16px 38px rgba(0,0,0,.30),0 0 0 4px rgba(124,92,255,.08)}
.phr-short2-counter{min-width:72px;text-align:center;color:#9eaed1;font-size:12px;font-weight:900;letter-spacing:.7px}

/* Grid mode */
.phr-video-hub-video_library.phr-video-variant-short2.is-grid .phr-video-hub-list{
  grid-template-columns:repeat(var(--pv-cols-d),minmax(0,1fr));
}
.phr-video-hub-video_library.phr-video-variant-short2.is-grid .phr-video-card.is-short{max-width:100%;width:100%}

/* Moving horizontal slider */
.phr-video-hub-video_library.phr-video-variant-short2.is-rail .phr-video-hub-list{
  display:flex!important;gap:var(--pv-gap);overflow-x:auto!important;scroll-snap-type:x mandatory;
  scroll-behavior:smooth;padding:6px 3px 10px!important;scrollbar-width:none!important;-ms-overflow-style:none!important;
}
.phr-video-hub-video_library.phr-video-variant-short2.is-rail .phr-video-hub-list::-webkit-scrollbar{display:none!important}
.phr-video-hub-video_library.phr-video-variant-short2.is-rail .phr-video-card.is-short{
  flex:0 0 min(var(--pv-short),78vw);width:min(var(--pv-short),78vw);max-width:none;scroll-snap-align:center;
}

/* Cinema mode: one hero Short with its neighbours framing it. */
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-hub-shell{max-width:min(var(--pv-inner),1420px)}
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-hub-list{
  position:relative;display:grid!important;grid-template-columns:minmax(150px,.70fr) minmax(290px,1.25fr) minmax(150px,.70fr);
  grid-template-areas:'prev active next';align-items:center;justify-items:center;gap:clamp(14px,2.4vw,34px);
  min-height:clamp(470px,54vw,690px);overflow:visible!important;padding:8px clamp(0px,1vw,10px) 16px;
}
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card{
  display:none;min-width:0;margin:0!important;transition:transform .5s cubic-bezier(.22,.8,.2,1),opacity .42s ease,filter .42s ease;
}
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-active,
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-prev,
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-next{display:block}
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-active{
  grid-area:active;width:min(100%,360px);max-width:360px;z-index:4;transform:translateY(-4px) scale(1.035);opacity:1;
  border-color:rgba(124,92,255,.42);box-shadow:0 32px 90px rgba(0,0,0,.46),0 0 0 1px rgba(124,92,255,.18) inset,0 0 60px rgba(124,92,255,.10);
}
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-prev{grid-area:prev}
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-next{grid-area:next}
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-prev,
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-next{
  width:min(100%,245px);max-width:245px;z-index:2;opacity:.66;filter:saturate(.75) brightness(.72);transform:scale(.84);
  cursor:pointer;
}
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-prev:hover,
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-next:hover{opacity:.88;filter:saturate(.92) brightness(.88);transform:scale(.88)}
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-prev .phr-video-card-copy,
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-next .phr-video-card-copy{opacity:.58}
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-active .phr-video-card-copy h3{font-size:18px}
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-active .phr-video-play>span{
  width:66px;height:66px;background:linear-gradient(145deg,#f8f7ff,#dfe7ff);color:#5d46d6;box-shadow:0 18px 48px rgba(0,0,0,.32),0 0 0 8px rgba(124,92,255,.14)
}

@media(max-width:991px){
  .phr-video-hub-video_library.phr-video-variant-short2.is-grid .phr-video-hub-list{grid-template-columns:repeat(var(--pv-cols-t),minmax(0,1fr))}
  .phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-hub-list{grid-template-columns:minmax(125px,.62fr) minmax(260px,1.2fr) minmax(125px,.62fr);gap:12px;min-height:560px}
  .phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-active{max-width:320px}
  .phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-prev,
  .phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-next{max-width:205px;transform:scale(.78)}
}
@media(max-width:700px){
  .phr-short2-nav{margin-bottom:16px;gap:9px}.phr-short2-arrow{width:43px;height:43px;border-radius:14px;font-size:20px}.phr-short2-counter{min-width:56px;font-size:11px}
  .phr-video-hub-video_library.phr-video-variant-short2.is-grid .phr-video-hub-list{grid-template-columns:repeat(var(--pv-cols-m),minmax(0,1fr))}
  .phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-hub-list{display:block!important;min-height:0;padding:4px 0 12px}
  .phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-prev,
  .phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-next{display:none!important}
  .phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-active{display:block;width:min(82vw,320px);max-width:320px;margin:0 auto!important;transform:none}
}
@media(prefers-reduced-motion:reduce){
  .phr-short2-arrow,.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card{transition:none!important}
}

/* v9.24.0 — Dynamic Egypt shipping fields */
.phr-checkout-fields-grid select{
  width:100%;min-height:52px;padding:0 16px 0 46px;border:1px solid #eadfe3!important;border-radius:15px!important;
  background-color:#fff!important;color:#2e2529!important;font:700 14px/1.2 inherit!important;outline:0;appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23766a70' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E")!important;
  background-repeat:no-repeat!important;background-position:left 15px center!important;background-size:18px!important;
  transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease;
}
.phr-checkout-fields-grid select:focus{border-color:rgba(227,6,46,.48)!important;box-shadow:0 0 0 4px rgba(227,6,46,.07)!important}
.phr-checkout-shipping-notice{grid-column:1/-1;display:flex;align-items:center;gap:12px;padding:14px 15px;border:1px solid #dfe9e6;border-radius:17px;background:linear-gradient(135deg,#f7fbfa,#fff);color:#25332f;transition:.25s ease}
.phr-checkout-shipping-notice .phr-shipping-notice-icon{width:42px;height:42px;flex:0 0 42px;display:grid;place-items:center;border-radius:13px;background:#17211f;color:#fff;font-size:20px;font-weight:900}
.phr-checkout-shipping-notice>div{min-width:0;display:grid;gap:3px}.phr-checkout-shipping-notice strong{font-size:13px;font-weight:900}.phr-checkout-shipping-notice small{display:block!important;margin:0!important;color:#71817c!important;font-size:11px!important;font-weight:600!important;line-height:1.6}
.phr-checkout-shipping-notice.is-free{border-color:#ccebd8;background:linear-gradient(135deg,#effbf4,#fff)}.phr-checkout-shipping-notice.is-free .phr-shipping-notice-icon{background:#13884b}.phr-checkout-shipping-notice.is-pending{border-color:#eadfe3;background:#fffafb}.phr-checkout-shipping-notice.is-pending .phr-shipping-notice-icon{background:#e3062e}
.phr-checkout-form.is-shipping-loading [data-phr-checkout-shipping]{opacity:.46}.phr-checkout-form.is-shipping-loading .phr-checkout-shipping-notice{opacity:.72}
@media(max-width:640px){.phr-checkout-fields-grid select{min-height:50px}.phr-checkout-shipping-notice{padding:12px}.phr-checkout-shipping-notice .phr-shipping-notice-icon{width:38px;height:38px;flex-basis:38px}}

/* v9.24.3 — InstaPay checkout experience */
.phr-checkout-premium .phr-payment-methods{grid-template-columns:repeat(auto-fit,minmax(210px,1fr))}
.phr-payment-card.is-instapay .phr-payment-visual{font-size:13px;letter-spacing:-.5px;color:#fff;background:linear-gradient(145deg,#31246f,#5a45c7);box-shadow:0 10px 24px rgba(72,54,158,.22)}
.phr-payment-card.is-instapay:has(input:checked){border-color:rgba(76,60,173,.42)!important;background:linear-gradient(145deg,#fff,#f7f5ff)!important;box-shadow:0 14px 34px rgba(73,56,167,.1),inset 0 0 0 1px rgba(73,56,167,.05)}
.phr-payment-card.is-instapay:has(input:checked)>i{background:#4d3daf}
.phr-instapay-extra{margin-top:16px;padding:18px;border-radius:24px;background:linear-gradient(145deg,#f8f7ff 0%,#fff 52%,#f3fffb 100%);border:1px solid rgba(76,60,173,.16);box-shadow:0 16px 42px rgba(50,39,111,.06)}
.phr-instapay-head{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:15px 16px;border-radius:18px;background:linear-gradient(135deg,#211a4d,#342575);color:#fff}
.phr-instapay-head>div{display:grid;gap:3px}.phr-instapay-head span{font-size:11px;color:#cfc8ff;font-weight:800}.phr-instapay-head strong{font-size:17px;color:#fff}.phr-instapay-head small{font-size:10px;color:#ded9ff}.phr-instapay-head>b{width:48px;height:48px;display:grid;place-items:center;border-radius:15px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.12);font-size:14px;letter-spacing:-.5px;color:#c9ffed}
.phr-instapay-actions{display:grid;grid-template-columns:minmax(170px,220px) minmax(0,1fr);gap:16px;margin-top:16px;align-items:stretch}
.phr-instapay-qr{display:grid;justify-items:center;align-content:start;gap:8px;padding:14px;border:1px solid #e7e2fb;background:#fff;border-radius:19px}.phr-instapay-qr>span{font-size:11px;font-weight:900;color:#51439d}.phr-instapay-qr img{display:block;width:min(170px,100%);aspect-ratio:1;object-fit:contain;border-radius:13px;background:#fff;border:8px solid #fff;box-shadow:0 8px 22px rgba(33,26,77,.1)}.phr-instapay-qr small{text-align:center;color:#8b83a8;font-size:10px;line-height:1.55}
.phr-instapay-linkbox{display:flex;flex-direction:column;justify-content:center;gap:12px;min-width:0}.phr-instapay-open{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:14px 16px;border-radius:15px;background:linear-gradient(135deg,#4d3daf,#6c59d3);color:#fff!important;text-decoration:none!important;font-weight:900;box-shadow:0 12px 28px rgba(77,61,175,.18);transition:.2s ease}.phr-instapay-open:hover{transform:translateY(-2px);box-shadow:0 16px 32px rgba(77,61,175,.24)}.phr-instapay-open span{font-size:17px}
.phr-instapay-account{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:5px 10px;align-items:center;padding:13px 14px;border:1px solid #e8e4f5;background:#fff;border-radius:15px}.phr-instapay-account>span{grid-column:1/-1;font-size:10px;color:#8e86a9;font-weight:800}.phr-instapay-account strong{overflow-wrap:anywhere;color:#2d2657;font-size:14px}.phr-instapay-account button{border:0;border-radius:10px;padding:8px 11px;background:#eefcf7;color:#16775a;font:inherit;font-size:11px;font-weight:900;cursor:pointer}.phr-instapay-linkbox>p{margin:0;color:#726b86;font-size:12px;line-height:1.75}
.phr-instapay-proof{display:block;margin-top:16px!important;padding:15px;border-radius:17px;border:1px dashed rgba(77,61,175,.32);background:rgba(255,255,255,.8);color:#332d55!important;font-size:12px!important;font-weight:800}.phr-instapay-proof>span{display:flex!important;align-items:center;gap:7px;margin-bottom:8px!important}.phr-instapay-proof em{font-style:normal;color:#d9143a;font-size:10px;background:#fff0f3;padding:3px 7px;border-radius:999px}.phr-instapay-proof input[type=file]{display:block;width:100%;box-sizing:border-box;padding:11px!important;border:1px solid #e8e3f6!important;border-radius:13px!important;background:#fff!important}.phr-instapay-proof>small{display:block;margin-top:7px;color:#8d86a0;font-size:10px;font-weight:500;line-height:1.6}
.phr-order-instapay{display:grid;gap:6px;max-width:540px;margin:20px auto;padding:18px;border-radius:18px;background:linear-gradient(145deg,#f5f2ff,#f4fff9);border:1px solid #e6e0fb}.phr-order-instapay>span{color:#5948b8;font-size:11px;font-weight:900}.phr-order-instapay>strong{color:#292252;font-size:18px}.phr-order-instapay>small{color:#7f7898}
@media(max-width:700px){.phr-instapay-actions{grid-template-columns:1fr}.phr-instapay-qr img{width:min(190px,72vw)}.phr-instapay-head{align-items:flex-start}.phr-instapay-head>b{width:42px;height:42px}}


/* ================================================================
   v9.24.5 — Short 2 cinematic red × black identity + richer motion
   ================================================================ */
.phr-video-hub-video_library.phr-video-variant-short2{
  --s2-violet:#e3062e;
  --s2-blue:#a90022;
  --s2-cyan:#ff3152;
  --pv-accent:#e3062e;
  isolation:isolate;
  background:
    radial-gradient(circle at 80% 12%,rgba(227,6,46,.18),transparent 30%),
    radial-gradient(circle at 15% 84%,rgba(110,0,21,.23),transparent 34%),
    linear-gradient(145deg,#050506 0%,#0b0608 47%,#13070a 76%,#050506 100%)!important;
  color:#fff;
}
/* Re-enable the premium film scene only for Short 2 so the background feels alive. */
.phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg .phr-videolib-scene{
  display:block!important;
  z-index:0;
  background:
    radial-gradient(circle at 78% 18%,rgba(227,6,46,.16),transparent 27%),
    radial-gradient(circle at 18% 78%,rgba(128,0,24,.12),transparent 33%),
    linear-gradient(135deg,rgba(255,255,255,.012),transparent 48%);
}
.phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:before,
.phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:after{
  display:block!important;
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:1;
}
.phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:before{
  inset:-24% -18% auto auto;
  width:min(76vw,1040px);
  height:min(76vw,1040px);
  border-radius:42% 58% 64% 36% / 48% 44% 56% 52%;
  background:
    radial-gradient(circle at 42% 43%,rgba(255,30,67,.22),transparent 27%),
    radial-gradient(circle at 64% 58%,rgba(126,0,24,.24),transparent 42%),
    conic-gradient(from 120deg,transparent 0 22%,rgba(227,6,46,.08) 34%,transparent 47% 72%,rgba(255,255,255,.025) 86%,transparent);
  filter:blur(15px);
  opacity:calc(var(--pv-motion-intensity,58%) / 100);
  animation:phrShort2RedAura var(--pv-motion-speed,18s) ease-in-out infinite alternate;
}
.phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:after{
  inset:0;
  width:auto;
  height:auto;
  background-image:
    radial-gradient(circle,rgba(255,40,72,.15) 0 1.25px,transparent 1.7px),
    linear-gradient(118deg,transparent 0 41%,rgba(227,6,46,.055) 49%,rgba(255,255,255,.018) 51%,transparent 59%),
    repeating-linear-gradient(135deg,transparent 0 92px,rgba(227,6,46,.028) 93px 94px,transparent 95px 184px);
  background-size:42px 42px,250% 100%,260px 260px;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.2),#000 28%,#000 78%,rgba(0,0,0,.22));
  opacity:.62;
  animation:phrShort2RedSweep calc(var(--pv-motion-speed,18s) * 1.25) linear infinite;
}
@keyframes phrShort2RedAura{
  0%{transform:translate3d(0,0,0) rotate(-7deg) scale(.94)}
  50%{transform:translate3d(-7%,7%,0) rotate(6deg) scale(1.06)}
  100%{transform:translate3d(4%,1%,0) rotate(-2deg) scale(1.01)}
}
@keyframes phrShort2RedSweep{
  from{background-position:0 0,-120% 0,0 0}
  to{background-position:84px 42px,120% 0,260px -260px}
}
/* Film strips + ambient scene become red/black instead of violet/blue. */
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-grid{
  opacity:.32;
  background-image:linear-gradient(rgba(227,6,46,.075) 1px,transparent 1px),linear-gradient(90deg,rgba(227,6,46,.055) 1px,transparent 1px);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-orb.orb-a{
  background:radial-gradient(circle at 38% 38%,rgba(255,33,68,.34),rgba(227,6,46,.09) 44%,transparent 72%);
  box-shadow:0 0 130px rgba(227,6,46,.15);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-orb.orb-b{
  background:radial-gradient(circle at 52% 48%,rgba(176,0,34,.27),rgba(77,0,15,.08) 52%,transparent 74%);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-film{
  border-color:rgba(227,6,46,.18);
  background:repeating-linear-gradient(90deg,transparent 0 34px,rgba(227,6,46,.15) 35px 38px,transparent 39px 72px),linear-gradient(180deg,rgba(255,255,255,.018),rgba(227,6,46,.03));
  box-shadow:0 0 54px rgba(227,6,46,.045) inset;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-playmark{
  border-color:rgba(227,6,46,.24);
  box-shadow:0 0 0 24px rgba(227,6,46,.03),0 0 0 48px rgba(255,255,255,.012),0 0 68px rgba(227,6,46,.11);
}
/* Title keeps the established layout, but now carries the site's red/black identity. */
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-title-icon{
  background:linear-gradient(145deg,#f20d36,#8d001b)!important;
  border-color:rgba(255,255,255,.14)!important;
  box-shadow:0 15px 42px rgba(227,6,46,.32),0 0 0 7px rgba(227,6,46,.075)!important;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-title-text{
  background:linear-gradient(92deg,#fff 0 59%,#ff5570 77%,#e3062e 100%)!important;
  -webkit-background-clip:text!important;background-clip:text!important;color:transparent!important;
  filter:drop-shadow(0 14px 28px rgba(0,0,0,.30));
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-title-text:after{
  background:linear-gradient(90deg,#e3062e,#ff3557 52%,#7e0018,transparent)!important;
  box-shadow:0 0 22px rgba(227,6,46,.28)!important;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-kicker{
  border-color:rgba(227,6,46,.25)!important;
  background:rgba(12,7,9,.78)!important;
  color:#ff4966!important;
  box-shadow:0 12px 32px rgba(0,0,0,.22),0 0 0 1px rgba(227,6,46,.04) inset!important;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-hub-head p{color:#b9aeb3!important}
/* Cards */
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card.is-short{
  background:linear-gradient(180deg,rgba(24,12,16,.96),rgba(8,6,7,.95));
  border-color:rgba(227,6,46,.16);
  box-shadow:0 24px 62px rgba(0,0,0,.38),0 1px 0 rgba(255,255,255,.045) inset;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card.is-short:before{
  background:linear-gradient(90deg,transparent,#6e0015,#e3062e,#ff3b5d,#e3062e,#6e0015,transparent);
  box-shadow:0 5px 24px rgba(227,6,46,.25);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card.is-short:after{
  background:radial-gradient(circle,rgba(227,6,46,.18),rgba(90,0,17,.08) 44%,transparent 72%);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card.is-short:hover{
  border-color:rgba(227,6,46,.38);
  box-shadow:0 34px 84px rgba(0,0,0,.50),0 0 0 1px rgba(227,6,46,.08) inset,0 0 44px rgba(227,6,46,.08);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-media{
  background:#080607;
  border-color:rgba(227,6,46,.10);
  box-shadow:0 16px 42px rgba(0,0,0,.40);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-media:after{
  background:linear-gradient(180deg,rgba(5,4,4,.01) 34%,rgba(9,2,4,.78) 100%);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-play>span,
.phr-video-hub-video_library.phr-video-variant-short2.is-cinema .phr-video-card.is-cinema-active .phr-video-play>span{
  background:linear-gradient(145deg,#1b1114,#050405)!important;
  color:#ff2349!important;
  border-color:rgba(255,255,255,.13)!important;
  box-shadow:0 18px 44px rgba(0,0,0,.42),0 0 0 7px rgba(255,255,255,.09),0 0 0 10px rgba(227,6,46,.13),0 0 34px rgba(227,6,46,.22)!important;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-play>span:after{border-color:rgba(227,6,46,.38)!important}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-media:hover .phr-video-play>span{
  background:linear-gradient(145deg,#f20d36,#8d001b)!important;
  color:#fff!important;
  box-shadow:0 20px 50px rgba(0,0,0,.38),0 0 0 7px rgba(255,255,255,.11),0 0 34px rgba(227,6,46,.28)!important;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-type-chip{
  background:rgba(9,5,6,.84)!important;
  color:#ff5671!important;
  border-color:rgba(227,6,46,.20)!important;
  box-shadow:0 8px 24px rgba(0,0,0,.30);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-badge{
  background:linear-gradient(135deg,#e3062e,#870019)!important;
  box-shadow:0 9px 26px rgba(227,6,46,.28);
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-copy h3{color:#fff7f9}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-copy h3:after{
  background:linear-gradient(90deg,#e3062e,#ff4160)!important;
  box-shadow:0 0 14px rgba(227,6,46,.24)!important;
}
.phr-video-hub-video_library.phr-video-variant-short2 .phr-video-card-copy p{color:#aa9aa0}
/* Short 2 controls */
.phr-short2-arrow{
  color:#ff3b5d!important;
  border-color:rgba(227,6,46,.22)!important;
  background:linear-gradient(145deg,rgba(23,11,14,.94),rgba(7,5,6,.94))!important;
  box-shadow:0 13px 34px rgba(0,0,0,.34)!important;
}
.phr-short2-arrow:hover{
  color:#fff!important;
  border-color:rgba(227,6,46,.44)!important;
  background:linear-gradient(145deg,#e3062e,#820019)!important;
  box-shadow:0 16px 40px rgba(0,0,0,.38),0 0 0 4px rgba(227,6,46,.08)!important;
}
.phr-short2-counter{color:#b7a9ae!important}
@media(max-width:700px){
  .phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:before{right:-58%;top:-18%;width:880px;height:880px;opacity:.48}
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-film{opacity:.18}
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-playmark{opacity:.28}
}
@media(prefers-reduced-motion:reduce){
  .phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:before,
  .phr-video-hub-video_library.phr-video-variant-short2.has-motion-bg:after,
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-grid,
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-orb,
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-film,
  .phr-video-hub-video_library.phr-video-variant-short2 .phr-videolib-playmark{animation:none!important}
}


/* v9.25.0 — Ask a Doctor premium section + customer invoices */
.phr-consult-section{position:relative;isolation:isolate;overflow:hidden;background:
radial-gradient(circle at 10% 10%,rgba(227,6,46,.055),transparent 28%),
linear-gradient(135deg,var(--phr-consult-bg,#f8f8f9),#fff 58%,#faf6f7);padding:96px 22px;color:var(--phr-consult-title,#171217)}
.phr-consult-section:before{content:"";position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(25,18,22,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(25,18,22,.028) 1px,transparent 1px);background-size:42px 42px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 88%);z-index:-2}
.phr-consult-motion{position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:-1;opacity:0}
.phr-consult-section.has-motion .phr-consult-motion{opacity:1}
.phr-consult-motion i,.phr-consult-motion b,.phr-consult-motion span{position:absolute;display:block}
.phr-consult-motion i{width:420px;height:420px;border-radius:50%;filter:blur(1px);background:radial-gradient(circle,rgba(227,6,46,.13),rgba(227,6,46,.03) 48%,transparent 70%);animation:phrConsultOrb var(--phr-consult-motion,18s) ease-in-out infinite alternate}
.phr-consult-motion i:first-child{right:-120px;top:-160px}.phr-consult-motion i:nth-child(2){left:-150px;bottom:-170px;animation-delay:-6s;animation-direction:alternate-reverse}
.phr-consult-motion b{width:540px;height:540px;border-radius:50%;border:1px solid rgba(227,6,46,.07);right:48%;top:28%;transform:translate(50%,-50%);box-shadow:0 0 0 80px rgba(227,6,46,.015),0 0 0 160px rgba(20,15,18,.012);animation:phrConsultRing calc(var(--phr-consult-motion,18s)*1.8) linear infinite}
.phr-consult-motion span{width:8px;height:8px;border-radius:50%;background:rgba(227,6,46,.28);box-shadow:0 0 24px rgba(227,6,46,.18);animation:phrConsultDot calc(var(--phr-consult-motion,18s)*1.15) ease-in-out infinite}
.phr-consult-motion span:nth-last-child(2){right:18%;top:24%}.phr-consult-motion span:last-child{left:22%;bottom:22%;animation-delay:-8s}
@keyframes phrConsultOrb{0%{transform:translate3d(0,0,0) scale(.9)}100%{transform:translate3d(70px,48px,0) scale(1.16)}}@keyframes phrConsultRing{to{transform:translate(50%,-50%) rotate(360deg)}}@keyframes phrConsultDot{0%,100%{transform:translateY(0) scale(.8);opacity:.35}50%{transform:translateY(-55px) scale(1.25);opacity:.9}}
.phr-consult-shell{width:min(var(--phr-consult-inner,1200px),100%);margin:auto;position:relative}
.phr-consult-heading{text-align:right;max-width:760px;margin:0 0 38px 0}
.phr-consult-heading>span{display:inline-flex;align-items:center;min-height:34px;padding:0 14px;border-radius:999px;background:#fff;border:1px solid rgba(227,6,46,.14);color:var(--phr-consult-accent,#e3062e);font-size:11px;font-weight:900;letter-spacing:.4px}
.phr-consult-heading h2{margin:12px 0 4px;color:var(--phr-consult-title,#171217);font-size:var(--phr-consult-title-size,44px);line-height:1.18;font-weight:900}
.phr-consult-heading>i{display:block;width:112px;height:5px;border-radius:999px;background:rgba(227,6,46,.1);overflow:hidden;margin:11px 0 16px}
.phr-consult-heading>i b{display:block;width:65%;height:100%;background:linear-gradient(90deg,var(--phr-consult-accent,#e3062e),#ff7088);border-radius:inherit;animation:phrConsultLine 3.6s ease-in-out infinite}
@keyframes phrConsultLine{0%,100%{transform:translateX(0)}50%{transform:translateX(-45%)}}
.phr-consult-heading p{margin:0;color:var(--phr-consult-desc,#6b6b72);font-size:var(--phr-consult-desc-size,18px);line-height:1.9}
.phr-consult-layout{display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);gap:28px;align-items:stretch}
.phr-consult-intro{display:flex;flex-direction:column;gap:20px;min-width:0}
.phr-consult-intro-copy{padding:28px 30px;border-radius:var(--phr-consult-radius,26px);background:linear-gradient(145deg,#181216,#2c1016);color:#fff;position:relative;overflow:hidden;min-height:190px}
.phr-consult-intro-copy:after{content:"?";position:absolute;left:25px;bottom:-42px;font-size:190px;font-weight:900;color:rgba(255,255,255,.035);line-height:1}
.phr-consult-badge{display:inline-block;color:#ff8da0;font-size:10px;font-weight:900;letter-spacing:1.2px;margin-bottom:14px}.phr-consult-intro-copy h3{position:relative;z-index:1;margin:0 0 11px;font-size:25px;line-height:1.5}.phr-consult-intro-copy p{position:relative;z-index:1;margin:0;color:#d6cdd0;line-height:1.9;font-size:13px}
.phr-consult-contact-actions{display:grid;grid-template-columns:1fr 1fr;gap:14px}.phr-consult-contact-card{display:flex;align-items:center;gap:13px;text-decoration:none;padding:17px;border-radius:20px;background:var(--phr-consult-card,#fff);border:1px solid var(--phr-consult-border,#e7e1e3);color:#21171b;transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease}.phr-consult-contact-card:hover{transform:translateY(-4px);border-color:rgba(227,6,46,.26);box-shadow:0 18px 42px rgba(30,20,25,.09)}
.phr-consult-contact-icon{flex:0 0 48px;width:48px;height:48px;border-radius:16px;display:grid;place-items:center;background:#191216;color:#fff}.phr-consult-contact-card.is-whatsapp .phr-consult-contact-icon{background:#159b59}.phr-consult-contact-icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.phr-consult-contact-card>span:last-child{min-width:0}.phr-consult-contact-card small,.phr-consult-contact-card strong,.phr-consult-contact-card em{display:block;font-style:normal}.phr-consult-contact-card small{color:#95878c;font-size:10px;font-weight:800}.phr-consult-contact-card strong{margin:4px 0 5px;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.phr-consult-contact-card em{font-size:10px;color:var(--phr-consult-accent,#e3062e);font-weight:900}.phr-consult-contact-card.is-whatsapp em{color:#15834d}
.phr-consult-steps{display:grid;gap:1px;background:var(--phr-consult-border,#e7e1e3);border:1px solid var(--phr-consult-border,#e7e1e3);border-radius:22px;overflow:hidden}.phr-consult-steps>div{display:flex;align-items:center;gap:14px;padding:16px 18px;background:rgba(255,255,255,.88)}.phr-consult-steps>b{}.phr-consult-steps>div>b{font-size:11px;color:var(--phr-consult-accent,#e3062e);width:32px}.phr-consult-steps span{display:block}.phr-consult-steps strong,.phr-consult-steps small{display:block}.phr-consult-steps strong{font-size:12px}.phr-consult-steps small{color:#91858a;margin-top:4px;font-size:10px}
.phr-consult-form-card{background:var(--phr-consult-form,#fff);border:1px solid var(--phr-consult-border,#e7e1e3);border-radius:var(--phr-consult-radius,26px);padding:30px;box-shadow:0 24px 65px rgba(27,18,22,.075);position:relative;overflow:hidden}.phr-consult-form-card:before{content:"";position:absolute;right:0;top:0;width:120px;height:4px;background:linear-gradient(90deg,var(--phr-consult-accent,#e3062e),#ff8093);border-radius:0 0 0 999px}
.phr-consult-form-head>span{color:var(--phr-consult-accent,#e3062e);font-size:10px;font-weight:900;letter-spacing:1.1px}.phr-consult-form-head h3{margin:7px 0 8px;font-size:24px;color:var(--phr-consult-title,#171217)}.phr-consult-form-head p{margin:0 0 23px;color:var(--phr-consult-desc,#6b6b72);line-height:1.8;font-size:12px}
.phr-consult-fields{display:grid;grid-template-columns:1fr 1fr;gap:15px}.phr-consult-fields label{display:block;min-width:0}.phr-consult-fields label.is-full{grid-column:1/-1}.phr-consult-fields label>span{display:block;margin:0 0 7px;color:var(--phr-consult-title,#171217);font-size:11px;font-weight:900}.phr-consult-fields input,.phr-consult-fields textarea{width:100%;border:1px solid var(--phr-consult-border,#e4e4e7);background:#fbfbfc;color:#20171b;border-radius:14px;padding:12px 14px;font:600 13px/1.7 inherit;outline:none;transition:border-color .18s,box-shadow .18s,background .18s}.phr-consult-fields input{height:49px}.phr-consult-fields textarea{resize:vertical;min-height:150px}.phr-consult-fields input:focus,.phr-consult-fields textarea:focus{background:#fff;border-color:rgba(227,6,46,.48);box-shadow:0 0 0 4px rgba(227,6,46,.065)}
.phr-consult-captcha{display:flex!important;align-items:center;gap:12px;grid-column:1/-1;padding:10px 12px;border-radius:14px;background:#f7f7f8;border:1px dashed #ddd3d6}.phr-consult-captcha>span{margin:0!important;flex:1}.phr-consult-captcha>input[type=number]{width:115px;flex:0 0 115px}
.phr-consult-submit{margin-top:16px;width:100%;min-height:52px;border:0!important;border-radius:14px!important;background:linear-gradient(135deg,var(--phr-consult-accent,#e3062e),#b50022)!important;color:var(--phr-consult-accent-text,#fff)!important;display:flex!important;align-items:center;justify-content:center;gap:10px;font-weight:900!important;cursor:pointer;box-shadow:0 12px 30px rgba(227,6,46,.2);transition:transform .18s ease,box-shadow .18s ease}.phr-consult-submit:hover{transform:translateY(-2px);box-shadow:0 17px 36px rgba(227,6,46,.26)}.phr-consult-submit svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.phr-consult-privacy{margin:11px 0 0;text-align:center;color:#9a8d91;font-size:10px;line-height:1.8}.phr-consult-form .phr-contact-response{margin-top:14px}.phr-consult-form .phr-contact-response.is-success,.phr-consult-form .phr-contact-response.is-error{padding:11px 13px;border-radius:12px;font-size:11px;font-weight:800}.phr-consult-form .phr-contact-response.is-success{background:#edf9f3;color:#16794d}.phr-consult-form .phr-contact-response.is-error{background:#fff0f2;color:#9b0b22}

/* My Account invoice tab */
.phr-account-tabs{display:flex;gap:9px;flex-wrap:wrap;margin:18px 0 22px;padding:8px;border-radius:18px;background:#fff;border:1px solid #ebe7e9;box-shadow:0 12px 32px rgba(26,18,22,.05)}.phr-account-tabs a{display:inline-flex;align-items:center;gap:8px;min-height:42px;padding:0 15px;border-radius:12px;text-decoration:none;color:#4d4145;font-size:12px;font-weight:900;transition:.18s}.phr-account-tabs a:hover,.phr-account-tabs a.is-invoices{background:#191216;color:#fff}.phr-account-tabs a b{min-width:21px;height:21px;border-radius:999px;display:grid;place-items:center;background:#f1ecee;color:#e3062e;font-size:10px}.phr-account-tabs a.is-invoices b{background:#e3062e;color:#fff}
.phr-account-order-invoice-link{display:inline-flex!important;align-items:center;justify-content:center;margin-top:8px;padding:6px 10px;border-radius:9px;background:#191216;color:#fff!important;text-decoration:none;font-size:10px!important;font-weight:900}
.phr-account-invoices{display:grid;gap:12px}.phr-account-invoice-card{display:grid;grid-template-columns:auto minmax(0,1fr) auto auto;gap:16px;align-items:center;padding:17px 18px;border-radius:18px;background:#fff;border:1px solid #eae6e8;transition:transform .18s,border-color .18s,box-shadow .18s}.phr-account-invoice-card:hover{transform:translateY(-2px);border-color:#edd1d7;box-shadow:0 15px 36px rgba(30,20,24,.07)}.phr-account-invoice-icon{width:46px;height:46px;border-radius:14px;display:grid;place-items:center;background:#191216;color:#fff}.phr-account-invoice-icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.phr-account-invoice-copy small,.phr-account-invoice-copy strong,.phr-account-invoice-copy span,.phr-account-invoice-total small,.phr-account-invoice-total strong{display:block}.phr-account-invoice-copy small{font-size:9px;color:#e3062e;font-weight:900;letter-spacing:1px}.phr-account-invoice-copy strong{font-size:15px;margin:4px 0}.phr-account-invoice-copy span{color:#8b7c81;font-size:10px}.phr-account-invoice-total{text-align:center}.phr-account-invoice-total small{color:#96888d;font-size:9px}.phr-account-invoice-total strong{margin-top:4px;font-size:14px}.phr-account-invoice-card>a{display:inline-flex;align-items:center;gap:8px;min-height:42px;padding:0 14px;border-radius:12px;background:#e3062e;color:#fff;text-decoration:none;font-size:11px;font-weight:900}.phr-account-invoice-card>a b{font-size:14px}

@media(max-width:900px){.phr-consult-section{padding:72px 18px}.phr-consult-layout{grid-template-columns:1fr}.phr-consult-intro{order:2}.phr-consult-form-card{order:1}.phr-account-invoice-card{grid-template-columns:auto 1fr auto}.phr-account-invoice-total{display:none}.phr-account-invoice-card>a span{display:none}.phr-account-invoice-card>a{width:42px;padding:0;justify-content:center}}
@media(max-width:640px){.phr-consult-heading h2{font-size:clamp(30px,10vw,var(--phr-consult-title-size,44px))}.phr-consult-contact-actions{grid-template-columns:1fr}.phr-consult-fields{grid-template-columns:1fr}.phr-consult-fields label.is-full,.phr-consult-captcha{grid-column:auto}.phr-consult-captcha{display:grid!important;grid-template-columns:1fr auto}.phr-consult-form-card{padding:22px 17px}.phr-consult-intro-copy{padding:24px 20px}.phr-account-tabs{flex-wrap:nowrap;overflow-x:auto;padding:6px}.phr-account-tabs a{white-space:nowrap;flex:0 0 auto}.phr-account-invoice-card{grid-template-columns:auto minmax(0,1fr) auto;gap:11px;padding:14px}.phr-account-invoice-icon{width:40px;height:40px}.phr-account-invoice-copy span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}
@media(prefers-reduced-motion:reduce){.phr-consult-motion *,.phr-consult-heading>i b{animation:none!important}}

/* v9.25.3 — requested polish: frameless media, premium About, red consultation launcher, clean brand wordmark */
/* Media slider: remove the shaded frame completely while keeping IMAGE/VIDEO label. */
.phr-media-slider-viewport{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
}
.phr-media-slide-bg{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  isolation:isolate;
}
.phr-media-slide-bg:before{
  content:"";
  position:absolute;
  z-index:4;
  top:-32%;
  bottom:-32%;
  left:-42%;
  width:24%;
  pointer-events:none;
  opacity:0;
  transform:skewX(-18deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.12) 20%,rgba(255,255,255,.82) 50%,rgba(255,255,255,.18) 78%,transparent);
  filter:blur(2px);
}
.phr-media-slide.is-active .phr-media-slide-bg:before{
  animation:phrMediaImageShine 4.8s ease-in-out 1.1s infinite;
}
@keyframes phrMediaImageShine{
  0%,58%{left:-42%;opacity:0}
  66%{opacity:.72}
  82%{left:126%;opacity:.2}
  100%{left:126%;opacity:0}
}
.phr-media-slide-kind{
  background:rgba(255,255,255,.94)!important;
  color:#20181c!important;
  box-shadow:0 8px 22px rgba(26,17,21,.09)!important;
}

/* About: light gray premium section with an abstract red/black editorial background. */
.phr-about-section{
  padding:96px 0!important;
  background:
    radial-gradient(circle at 88% 16%,rgba(213,0,28,.085),transparent 23%),
    radial-gradient(circle at 12% 78%,rgba(17,17,17,.055),transparent 26%),
    linear-gradient(135deg,#f4f4f5 0%,var(--phr-about-bg,#f2f2f3) 52%,#ececef 100%)!important;
  overflow:hidden;
  isolation:isolate;
}
.phr-about-section:before{
  width:auto!important;height:auto!important;right:0!important;top:0!important;left:0!important;bottom:0!important;
  border-radius:0!important;filter:none!important;opacity:1!important;
  background:
    linear-gradient(rgba(20,16,18,.028) 1px,transparent 1px),
    linear-gradient(90deg,rgba(20,16,18,.028) 1px,transparent 1px)!important;
  background-size:46px 46px!important;
  -webkit-mask-image:linear-gradient(110deg,rgba(0,0,0,.62),rgba(0,0,0,.12) 72%,transparent 96%);
  mask-image:linear-gradient(110deg,rgba(0,0,0,.62),rgba(0,0,0,.12) 72%,transparent 96%);
}
.phr-about-section:after{
  width:540px!important;height:540px!important;left:-170px!important;bottom:-230px!important;
  border-radius:50%!important;filter:none!important;opacity:.68!important;
  background:radial-gradient(circle,transparent 0 31%,rgba(213,0,28,.075) 31.5% 32%,transparent 32.5% 47%,rgba(17,17,17,.045) 47.5% 48%,transparent 48.5%)!important;
  animation:phrAboutOrbit 20s linear infinite;
}
.phr-about-backdrop{
  position:absolute;inset:0;pointer-events:none;z-index:0;overflow:hidden;
}
.phr-about-backdrop:before,.phr-about-backdrop:after{content:"";position:absolute;display:block;pointer-events:none}
.phr-about-backdrop:before{
  width:360px;height:360px;right:-90px;top:70px;border-radius:46% 54% 60% 40%;
  border:1px solid rgba(213,0,28,.08);box-shadow:0 0 0 48px rgba(213,0,28,.018),0 0 0 96px rgba(17,17,17,.012);
  transform:rotate(18deg);
}
.phr-about-backdrop:after{
  width:9px;height:9px;border-radius:50%;left:18%;top:24%;background:#d5001c;
  box-shadow:78px 116px 0 rgba(213,0,28,.22),-52px 232px 0 rgba(17,17,17,.16),240px 48px 0 rgba(17,17,17,.12),360px 210px 0 rgba(213,0,28,.14);
  opacity:.45;
}
@keyframes phrAboutOrbit{to{transform:rotate(360deg)}}
.phr-about-shell{z-index:2!important}
.phr-about-head{max-width:800px!important;margin:0 0 38px auto!important;text-align:right!important}
.phr-about-pretitle{
  background:rgba(255,255,255,.78)!important;border-color:rgba(213,0,28,.10)!important;color:#d5001c!important;
  box-shadow:0 10px 28px rgba(32,23,27,.05);
}
.phr-about-title{margin:0!important;color:#171217!important;font-weight:900!important;letter-spacing:-.5px}
.phr-about-title-line{position:relative;display:block;width:148px;height:5px;margin:13px 0 16px;border-radius:999px;background:rgba(213,0,28,.10);overflow:hidden}
.phr-about-title-line:before{content:"";position:absolute;inset:0;width:72%;border-radius:inherit;background:linear-gradient(90deg,#d5001c,#ff3153 55%,#171217);box-shadow:0 4px 14px rgba(213,0,28,.18)}
.phr-about-title-line i{position:absolute;inset-block:0;width:34%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.96),transparent);animation:phrAboutTitleShine 2.9s linear infinite}
@keyframes phrAboutTitleShine{from{right:-35%}to{right:105%}}
.phr-about-desc{max-width:700px!important;margin:0!important;color:#6c6569!important}
.phr-about-grid{gap:30px!important;align-items:stretch!important}
.phr-about-media-card,.phr-about-content-card{
  border:1px solid rgba(39,29,34,.07)!important;
  background:rgba(255,255,255,.82)!important;
  box-shadow:0 22px 60px rgba(45,31,37,.065)!important;
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
}
.phr-about-media-card{padding:18px!important}
.phr-about-video-shell{background:linear-gradient(135deg,#171217,#d5001c)!important;box-shadow:inset 0 0 0 1px rgba(255,255,255,.08)}
.phr-about-content-card{padding:38px!important;overflow:hidden}
.phr-about-content-card:before{inset:22px auto 22px 18px!important;width:5px!important;background:linear-gradient(180deg,#d5001c,#171217)!important}
.phr-about-content-card:after{content:"";position:absolute;width:180px;height:180px;left:-75px;top:-75px;border-radius:50%;border:1px solid rgba(213,0,28,.09);box-shadow:0 0 0 28px rgba(213,0,28,.018),0 0 0 56px rgba(17,17,17,.012);pointer-events:none}
.phr-about-content-badge{background:#171217!important;color:#fff!important;box-shadow:0 12px 26px rgba(23,18,20,.13)!important}
.phr-about-content-card h3{color:#171217!important;font-weight:900!important}
.phr-about-content-card p{color:#6f676b!important}

/* Header brand: red + black text only, with no plate/background behind it. */
#phr-header .phr-logo-wrap{
  background:transparent!important;border:0!important;box-shadow:none!important;outline:0!important;
}
#phr-header .phr-brand-wordmark,#phr-header .phr-brand-wordmark small,#phr-header .phr-brand-wordmark>span,#phr-header .phr-brand-wordmark b{
  background:transparent!important;box-shadow:none!important;text-shadow:none!important;
}
#phr-header .phr-brand-wordmark small,#phr-header .phr-brand-red{color:#d5001c!important;-webkit-text-fill-color:#d5001c!important}
#phr-header .phr-brand-black{color:#111!important;-webkit-text-fill-color:#111!important}
#phr-header.phr-is-transparent:not(.is-sticky-shadow) .phr-brand-wordmark small,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-brand-wordmark small,
#phr-header.phr-is-transparent:not(.is-sticky-shadow) .phr-brand-red,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-brand-red{color:#d5001c!important;-webkit-text-fill-color:#d5001c!important}
#phr-header.phr-is-transparent:not(.is-sticky-shadow) .phr-brand-black,
#phr-header.phr-inner-transparent-header:not(.is-sticky-shadow) .phr-brand-black{color:#111!important;-webkit-text-fill-color:#111!important}

/* Glossy consultation launcher: red background and white copy. */
.phr-floating-contact-toggle,
.phr-floating-contact-toggle:hover,
.phr-floating-contact.is-open .phr-floating-contact-toggle{
  width:auto!important;min-width:62px!important;height:58px!important;padding:0 18px!important;
  display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:9px!important;
  border:1px solid rgba(255,255,255,.34)!important;border-radius:999px!important;
  background:linear-gradient(145deg,#ff1745 0%,#e3062e 58%,#b40022 100%)!important;
  color:#fff!important;
  box-shadow:0 18px 42px rgba(211,0,39,.31),0 0 0 4px rgba(227,6,46,.07)!important;
  overflow:hidden!important;
}
.phr-floating-contact-toggle:before{
  content:""!important;position:absolute!important;top:-45%!important;bottom:-45%!important;left:-45%!important;width:26%!important;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),rgba(255,255,255,.86),rgba(255,255,255,.16),transparent)!important;
  transform:skewX(-20deg)!important;animation:phrConsultLauncherShine 3.8s ease-in-out infinite!important;pointer-events:none!important;
}
@keyframes phrConsultLauncherShine{0%,55%{left:-45%;opacity:0}63%{opacity:.9}82%{left:122%;opacity:.15}100%{left:122%;opacity:0}}
.phr-floating-contact-toggle-icon{
  position:relative!important;inset:auto!important;width:28px!important;height:28px!important;flex:0 0 28px!important;
  display:grid!important;place-items:center!important;font-size:20px!important;line-height:1!important;transform:none!important;color:#fff!important;z-index:2!important;
}
.phr-floating-contact-toggle-text{
  position:relative;z-index:2;display:block;color:#fff!important;font-family:'Tajawal',Arial,sans-serif!important;font-size:14px;font-weight:900;white-space:nowrap;line-height:1;
}
@media(max-width:767px){
  .phr-floating-contact-toggle,.phr-floating-contact-toggle:hover{height:54px!important;padding:0 15px!important}
  .phr-floating-contact-toggle-text{font-size:13px}
  .phr-about-section{padding:70px 0!important}
  .phr-about-head{margin-bottom:30px!important}
  .phr-about-title-line{width:124px}
}
@media(prefers-reduced-motion:reduce){
  .phr-media-slide.is-active .phr-media-slide-bg:before,.phr-about-section:after,.phr-about-title-line i,.phr-floating-contact-toggle:before{animation:none!important}
}

/* v9.25.4 — correction: restore the OUTER slider card, remove styling only around the media image. */
.phr-media-slider-viewport{
  background:color-mix(in srgb,var(--pms-card-bg) 96%,transparent)!important;
  border:1px solid rgba(58,42,49,.075)!important;
  box-shadow:0 26px 70px rgba(51,36,43,.105),0 1px 0 rgba(255,255,255,.9) inset!important;
  backdrop-filter:blur(12px)!important;
  -webkit-backdrop-filter:blur(12px)!important;
}
/* The inner media itself stays frameless: no shaded plate / border / shadow around the image. */
.phr-media-slide-bg{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}



/* v9.25.5 — article section alignment + clean single article reading layout. */
.phr-article-footer:has(.phr-article-read:only-child){justify-content:flex-end!important}

@media (min-width:768px){
  .phr-articles-slider-wrap{position:relative!important;display:block!important}
  .phr-articles-viewport{padding:4px 0!important}
  .phr-articles-arrow{position:absolute!important;top:50%!important;transform:translateY(-50%)!important;z-index:6!important}
  .phr-articles-arrow:hover{transform:translateY(calc(-50% - 2px)) scale(1.03)!important}
  .phr-articles-arrow.is-prev{right:-68px!important}
  .phr-articles-arrow.is-next{left:-68px!important}
  .phr-articles-arrow:disabled{transform:translateY(-50%)!important}
}
@media (max-width:1415px) and (min-width:768px){
  .phr-articles-arrow.is-prev{right:8px!important}
  .phr-articles-arrow.is-next{left:8px!important}
  .phr-articles-arrow{opacity:.88}
}

/* Single article: 1450px writing area, no cramped theme shell. */
body.single-post .site-content,
body.single-post .content-area,
body.single-post .site-main,
body.single-post main#primary,
body.single-post #primary{
  width:100%!important;
  max-width:1490px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:20px!important;
  padding-right:20px!important;
  box-sizing:border-box!important;
}
body.single-post article.post,
body.single-post article.type-post,
body.single-post .post.type-post,
body.single-post .single-post article{
  width:100%!important;
  max-width:1450px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  overflow:visible!important;
}
body.single-post .entry-header{
  width:100%!important;
  max-width:1450px!important;
  margin:0 auto 22px!important;
  padding:28px 34px!important;
  background:rgba(255,255,255,.96)!important;
  border:1px solid rgba(49,87,213,.08)!important;
  border-radius:24px!important;
  box-shadow:0 16px 42px rgba(45,67,105,.065)!important;
}
body.single-post .entry-content{width:100%!important;max-width:1450px!important;margin:0 auto!important}
.phr-single-article-layout{display:block!important;width:100%!important;max-width:1450px!important;margin:0 auto!important;direction:rtl!important}
.phr-single-article-box{width:100%!important;max-width:1450px!important;padding:40px 44px!important}
.phr-single-article-copy{font-size:18px!important;line-height:2.05!important;overflow-wrap:normal!important;word-break:normal!important;hyphens:none!important}
.phr-single-article-sidebar{position:static!important;display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:18px!important;margin-top:24px!important}
.phr-article-categories-box{grid-column:auto!important}

/* Remove legacy theme article clutter completely. */
body.single-post .comments-area,
body.single-post #comments,
body.single-post .comment-respond,
body.single-post .comments-link,
body.single-post nav.post-navigation,
body.single-post .navigation.post-navigation,
body.single-post .post-navigation,
body.single-post .entry-footer,
body.single-post aside.widget-area:not(.phr-single-article-sidebar),
body.single-post .widget-area:not(.phr-single-article-sidebar){display:none!important}

@media(max-width:980px){
  .phr-single-article-sidebar{grid-template-columns:1fr 1fr!important}
  .phr-article-categories-box{grid-column:1/-1!important}
}
@media(max-width:700px){
  body.single-post .site-content,body.single-post .content-area,body.single-post .site-main,body.single-post main#primary,body.single-post #primary{padding-left:12px!important;padding-right:12px!important}
  body.single-post .entry-header{padding:22px 18px!important;border-radius:20px!important}
  .phr-single-article-box{padding:24px 18px!important;border-radius:22px!important}
  .phr-single-article-sidebar{grid-template-columns:1fr!important}
  .phr-article-categories-box{grid-column:auto!important}
}


/* v9.25.6 — viewport-safe video/shorts modal portal */
html.phr-video-modal-open,
body.phr-video-modal-open{overflow:hidden!important;overscroll-behavior:none}
body>.phr-video-modal.phr-video-modal-portal{
  position:fixed!important;
  inset:0!important;
  width:100vw!important;
  height:100vh!important;
  height:100dvh!important;
  max-width:none!important;
  max-height:none!important;
  margin:0!important;
  padding:clamp(12px,2.2vw,28px)!important;
  z-index:2147483000!important;
  isolation:isolate!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
  transform:none!important;
  filter:none!important;
  perspective:none!important;
  box-sizing:border-box!important;
}
body>.phr-video-modal.phr-video-modal-portal,
body>.phr-video-modal.phr-video-modal-portal *{box-sizing:border-box}
body>.phr-video-modal.phr-video-modal-portal .phr-video-modal-backdrop{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  z-index:0!important;
  background:rgba(10,7,9,.84)!important;
  backdrop-filter:blur(14px)!important;
  -webkit-backdrop-filter:blur(14px)!important;
}
body>.phr-video-modal.phr-video-modal-portal .phr-video-modal-dialog{
  position:relative!important;
  z-index:2!important;
  width:min(1200px,calc(100vw - 48px))!important;
  max-width:1200px!important;
  max-height:calc(100dvh - 48px)!important;
  margin:auto!important;
  padding:12px!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:stretch!important;
  justify-content:center!important;
  overflow:visible!important;
  transform:none!important;
}
body>.phr-video-modal.phr-video-modal-portal .phr-video-modal-stage{
  position:relative!important;
  width:100%!important;
  max-width:100%!important;
  aspect-ratio:16/9!important;
  max-height:calc(100dvh - 72px)!important;
  margin:0 auto!important;
  flex:0 1 auto!important;
  overflow:hidden!important;
  background:#000!important;
}
body>.phr-video-modal.phr-video-modal-portal .phr-video-modal-stage iframe,
body>.phr-video-modal.phr-video-modal-portal .phr-video-modal-stage video{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  max-height:none!important;
  object-fit:contain!important;
  border:0!important;
  background:#000!important;
}
body>.phr-video-modal.phr-video-modal-portal.is-short-video .phr-video-modal-dialog{
  width:min(520px,calc(100vw - 28px))!important;
  max-width:520px!important;
  max-height:calc(100dvh - 28px)!important;
  padding:10px!important;
}
body>.phr-video-modal.phr-video-modal-portal .phr-video-modal-stage.is-short{
  width:min(440px,84vw,calc((100dvh - 72px) * .5625))!important;
  max-width:100%!important;
  height:auto!important;
  max-height:calc(100dvh - 72px)!important;
  aspect-ratio:9/16!important;
  margin:0 auto!important;
}
body>.phr-video-modal.phr-video-modal-portal .phr-video-modal-close{
  z-index:8!important;
}
body>.phr-video-modal.phr-video-modal-portal .phr-video-ad-layer{
  z-index:7!important;
}
@media(max-width:640px){
  body>.phr-video-modal.phr-video-modal-portal{padding:10px!important}
  body>.phr-video-modal.phr-video-modal-portal .phr-video-modal-dialog{
    width:calc(100vw - 20px)!important;
    max-height:calc(100dvh - 20px)!important;
    padding:7px!important;
    border-radius:18px!important;
  }
  body>.phr-video-modal.phr-video-modal-portal .phr-video-modal-stage{
    max-height:calc(100dvh - 34px)!important;
    border-radius:14px!important;
  }
  body>.phr-video-modal.phr-video-modal-portal.is-short-video .phr-video-modal-dialog{
    width:min(94vw,430px)!important;
    max-width:430px!important;
  }
  body>.phr-video-modal.phr-video-modal-portal .phr-video-modal-stage.is-short{
    width:min(86vw,calc((100dvh - 48px) * .5625))!important;
    max-height:calc(100dvh - 48px)!important;
  }
  body>.phr-video-modal.phr-video-modal-portal .phr-video-modal-close{
    top:10px!important;
    left:10px!important;
  }
}

/* v9.25.8 — dedicated clean article template (no theme meta, comments, related posts or legacy footer). */
body.single-post.phr-dedicated-single-article{
  margin:0!important;
  background:
    radial-gradient(circle at 88% 8%,rgba(213,0,28,.055),transparent 28%),
    radial-gradient(circle at 8% 35%,rgba(18,39,73,.045),transparent 30%),
    #f5f7fb!important;
  color:#182033!important;
}
body.single-post.phr-dedicated-single-article #phr-inner-hero{display:none!important}
.phr-dedicated-article-page{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  padding:54px 20px 82px!important;
  box-sizing:border-box!important;
  direction:rtl!important;
}
.phr-dedicated-article{
  width:min(1450px,100%)!important;
  max-width:1450px!important;
  margin:0 auto!important;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}
.phr-dedicated-article-head{
  position:relative!important;
  margin:0 0 24px!important;
  padding:32px 38px 31px!important;
  overflow:hidden!important;
  border:1px solid rgba(17,24,39,.07)!important;
  border-radius:28px!important;
  background:rgba(255,255,255,.95)!important;
  box-shadow:0 20px 55px rgba(26,35,55,.075)!important;
  text-align:right!important;
}
.phr-dedicated-article-head::before{
  content:"";
  position:absolute;
  width:250px;height:250px;border-radius:50%;
  left:-125px;top:-145px;
  background:radial-gradient(circle,rgba(213,0,28,.10),transparent 68%);
  pointer-events:none;
}
.phr-dedicated-article-kicker{
  position:relative;z-index:1;
  display:inline-flex!important;
  align-items:center!important;
  min-height:34px!important;
  padding:7px 14px!important;
  border-radius:999px!important;
  background:#fff1f3!important;
  color:#c9001b!important;
  font-size:13px!important;
  font-weight:800!important;
  letter-spacing:0!important;
  margin-bottom:13px!important;
}
.phr-dedicated-article-title{
  position:relative;z-index:1;
  margin:0!important;
  color:#111827!important;
  font-family:'Tajawal',Arial,sans-serif!important;
  font-size:clamp(32px,4vw,54px)!important;
  line-height:1.3!important;
  font-weight:900!important;
  text-align:right!important;
  overflow-wrap:anywhere!important;
}
.phr-dedicated-article-line{
  position:relative;z-index:1;
  display:block!important;
  width:min(200px,42%)!important;
  height:5px!important;
  margin:21px 0 0 auto!important;
  border-radius:999px!important;
  overflow:hidden!important;
  background:rgba(213,0,28,.08)!important;
}
.phr-dedicated-article-line i{
  display:block!important;
  width:72%!important;height:100%!important;
  border-radius:inherit!important;
  background:linear-gradient(90deg,#101828,#d5001c,#ff5870)!important;
  box-shadow:0 4px 14px rgba(213,0,28,.22)!important;
}
.phr-dedicated-article-media{
  width:100%!important;
  margin:0 0 24px!important;
  padding:22px!important;
  border:1px solid rgba(17,24,39,.07)!important;
  border-radius:28px!important;
  background:#fff!important;
  box-shadow:0 20px 55px rgba(26,35,55,.07)!important;
  text-align:center!important;
  overflow:hidden!important;
}
.phr-dedicated-article-image{
  display:block!important;
  width:auto!important;
  max-width:100%!important;
  max-height:680px!important;
  height:auto!important;
  object-fit:contain!important;
  margin:0 auto!important;
  border-radius:20px!important;
  box-shadow:none!important;
}
.phr-dedicated-article-content{
  width:100%!important;
  max-width:1450px!important;
  margin:0!important;
  padding:0!important;
}
.phr-dedicated-article-content .phr-single-article-layout,
.phr-dedicated-article-content .phr-single-article-box{
  width:100%!important;
  max-width:1450px!important;
}
.phr-dedicated-article-content .phr-single-article-box{
  padding:42px 46px!important;
  border-radius:28px!important;
  background:rgba(255,255,255,.97)!important;
  border:1px solid rgba(17,24,39,.07)!important;
  box-shadow:0 20px 55px rgba(26,35,55,.07)!important;
}
.phr-dedicated-article-content .phr-single-article-copy{
  color:#344054!important;
  font-size:19px!important;
  line-height:2.05!important;
  text-align:right!important;
}
/* Absolute cleanup: these legacy theme fragments must never appear on dedicated article pages. */
body.single-post.phr-dedicated-single-article .entry-meta,
body.single-post.phr-dedicated-single-article .posted-on,
body.single-post.phr-dedicated-single-article .byline,
body.single-post.phr-dedicated-single-article .cat-links,
body.single-post.phr-dedicated-single-article .tags-links,
body.single-post.phr-dedicated-single-article .entry-footer,
body.single-post.phr-dedicated-single-article .post-navigation,
body.single-post.phr-dedicated-single-article .navigation,
body.single-post.phr-dedicated-single-article .comments-area,
body.single-post.phr-dedicated-single-article #comments,
body.single-post.phr-dedicated-single-article .comment-respond,
body.single-post.phr-dedicated-single-article .wp-block-comments,
body.single-post.phr-dedicated-single-article .wp-block-post-comments,
body.single-post.phr-dedicated-single-article .wp-block-post-date,
body.single-post.phr-dedicated-single-article .wp-block-post-author,
body.single-post.phr-dedicated-single-article .wp-block-post-terms,
body.single-post.phr-dedicated-single-article .wp-block-post-navigation-link,
body.single-post.phr-dedicated-single-article .wp-block-query,
body.single-post.phr-dedicated-single-article .wp-block-post-template,
body.single-post.phr-dedicated-single-article footer:not(#phr-site-footer){display:none!important}
@media(max-width:700px){
  .phr-dedicated-article-page{padding:30px 12px 56px!important}
  .phr-dedicated-article-head{padding:24px 20px!important;border-radius:22px!important}
  .phr-dedicated-article-title{font-size:clamp(29px,9vw,40px)!important}
  .phr-dedicated-article-media{padding:10px!important;border-radius:22px!important}
  .phr-dedicated-article-image{border-radius:16px!important;max-height:520px!important}
  .phr-dedicated-article-content .phr-single-article-box{padding:25px 20px!important;border-radius:22px!important}
  .phr-dedicated-article-content .phr-single-article-copy{font-size:17px!important;line-height:1.95!important}
}


/* v9.25.11 — Floating WhatsApp composer + article social sharing */
.phr-floating-contact{
  right:22px!important;
  bottom:24px!important;
  z-index:2147483000!important;
  gap:10px!important;
}
.phr-floating-contact-toggle,
.phr-floating-contact-toggle:hover,
.phr-floating-contact.is-open .phr-floating-contact-toggle{
  position:relative!important;
  min-width:154px!important;
  height:56px!important;
  padding:0 16px!important;
  gap:10px!important;
  border-radius:999px!important;
  border:1px solid rgba(255,255,255,.16)!important;
  background:linear-gradient(115deg,#141012 0 34%,#e3062e 35% 100%)!important;
  color:#fff!important;
  box-shadow:0 16px 40px rgba(27,15,19,.23),0 10px 28px rgba(227,6,46,.2)!important;
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
  transform:none!important;
  overflow:hidden!important;
}
.phr-floating-contact-toggle:after{
  content:"";position:absolute;inset:-2px auto -2px -34%;width:24%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.8),transparent);
  transform:skewX(-22deg);animation:phrWaLauncherShine 4s ease-in-out infinite;pointer-events:none;
}
@keyframes phrWaLauncherShine{0%,62%{left:-34%;opacity:0}70%{opacity:.8}88%{left:118%;opacity:.1}100%{left:118%;opacity:0}}
.phr-floating-contact-toggle-icon{
  width:31px!important;height:31px!important;flex:0 0 31px!important;border-radius:50%!important;
  display:grid!important;place-items:center!important;background:rgba(0,0,0,.2)!important;color:#fff!important;z-index:2!important;
}
.phr-floating-contact-toggle-icon svg{width:18px!important;height:18px!important;display:block!important;fill:currentColor!important}
.phr-floating-contact-toggle-text{font-size:13.5px!important;font-weight:900!important;color:#fff!important;z-index:2!important}
.phr-floating-contact-panel{
  position:absolute!important;right:0!important;bottom:68px!important;width:min(370px,calc(100vw - 30px))!important;
  min-width:0!important;display:none!important;z-index:2!important;
}
.phr-floating-contact.is-open .phr-floating-contact-panel{display:block!important}
.phr-floating-contact-popup{
  width:100%!important;min-height:0!important;padding:0!important;display:block!important;overflow:hidden!important;
  border-radius:24px!important;background:#fff!important;border:1px solid rgba(227,6,46,.14)!important;
  box-shadow:0 28px 70px rgba(22,15,18,.25),0 10px 28px rgba(227,6,46,.09)!important;
  backdrop-filter:blur(18px)!important;-webkit-backdrop-filter:blur(18px)!important;
}
.phr-floating-contact-head{
  display:grid;grid-template-columns:42px minmax(0,1fr) 32px;gap:11px;align-items:center;padding:17px 17px 15px;
  background:linear-gradient(125deg,#171214 0 68%,#2b1218 100%);color:#fff;position:relative;overflow:hidden;
}
.phr-floating-contact-head:after{content:"";position:absolute;left:-44px;bottom:-80px;width:160px;height:160px;border-radius:50%;background:radial-gradient(circle,rgba(227,6,46,.42),rgba(227,6,46,0) 70%);pointer-events:none}
.phr-floating-contact-head-icon{position:relative;z-index:1;width:42px;height:42px;border-radius:14px;background:#e3062e;display:grid;place-items:center;box-shadow:0 10px 24px rgba(227,6,46,.28)}
.phr-floating-contact-head-icon svg{width:22px;height:22px;fill:#fff;display:block}
.phr-floating-contact-head>div:nth-child(2){position:relative;z-index:1;min-width:0}
.phr-floating-contact-head strong{display:block;font-size:15px;font-weight:900;line-height:1.35}
.phr-floating-contact-head small{display:block;margin-top:3px;color:#d9d2d4;font-size:10.5px;font-weight:600;line-height:1.55}
.phr-floating-contact-close{position:relative;z-index:2;width:30px;height:30px;border:0;border-radius:10px;background:rgba(255,255,255,.09);color:#fff;font-size:22px;line-height:1;cursor:pointer;display:grid;place-items:center;padding:0}
.phr-floating-contact-close:hover{background:#e3062e}
.phr-floating-contact-compose{padding:16px 17px 14px;background:linear-gradient(180deg,#fff,#fffafb)}
.phr-floating-contact-compose label{display:block;margin:0 0 8px;color:#251b1e;font-size:12px;font-weight:900}
.phr-floating-contact-compose textarea{
  display:block;width:100%;min-height:96px;resize:vertical;border:1px solid #eadfe2;border-radius:15px;padding:12px 13px;
  background:#fff;color:#21181b;font-family:'Tajawal',Arial,sans-serif;font-size:13px;line-height:1.75;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.02)
}
.phr-floating-contact-compose textarea:focus{border-color:#e3062e;box-shadow:0 0 0 3px rgba(227,6,46,.08)}
.phr-floating-contact-compose textarea.is-required{animation:phrWaNudge .26s ease 2;border-color:#e3062e}
@keyframes phrWaNudge{50%{transform:translateX(-4px)}}
.phr-floating-contact-send{
  width:100%;height:44px;margin-top:10px;border:0;border-radius:14px;background:linear-gradient(135deg,#e3062e,#bd001f);color:#fff;
  display:flex;align-items:center;justify-content:center;gap:9px;font:900 12.5px 'Tajawal',Arial,sans-serif;cursor:pointer;box-shadow:0 10px 24px rgba(227,6,46,.2)
}
.phr-floating-contact-send:hover{filter:brightness(1.04)}
.phr-floating-contact-send b{font-size:18px;line-height:1}
.phr-floating-contact-call{
  margin:0 17px 17px;padding:11px 12px;min-height:58px;border:1px solid #ece5e7;border-radius:16px;background:#f8f6f7;color:#20171a;text-decoration:none;
  display:grid;grid-template-columns:36px minmax(0,1fr) auto;gap:10px;align-items:center;transition:border-color .2s ease,background .2s ease
}
.phr-floating-contact-call:hover{border-color:rgba(227,6,46,.3);background:#fff5f7}
.phr-floating-contact-call-icon{width:36px;height:36px;border-radius:12px;background:#171214;display:grid;place-items:center;color:#fff}
.phr-floating-contact-call-icon svg{width:18px;height:18px;fill:currentColor;display:block}
.phr-floating-contact-call small{display:block;color:#8c7d82;font-size:10px;font-weight:700}
.phr-floating-contact-call strong{display:block;margin-top:2px;color:#171214;font-size:14px;font-weight:900;direction:ltr;text-align:right}
.phr-floating-contact-call>b{font-size:10.5px;color:#e3062e;font-weight:900;padding:6px 8px;border-radius:9px;background:#fff;border:1px solid #f0d9df}

/* share controls in article cards */
.phr-article-footer{gap:10px!important;flex-wrap:wrap}
.phr-article-card-share{display:flex;align-items:center;gap:5px;margin-inline-start:auto}
.phr-article-card-share>span{font-size:10px;font-weight:800;color:var(--phr-articles-meta,#7a7f8e);margin-inline-end:2px}
.phr-article-card-share>a,.phr-article-card-share>button{
  width:27px;height:27px;border-radius:9px;border:1px solid rgba(227,6,46,.12);background:#fff;color:#25191d;text-decoration:none;
  display:grid;place-items:center;padding:0;font:900 11px Arial,sans-serif;cursor:pointer;transition:background .2s ease,color .2s ease,transform .2s ease
}
.phr-article-card-share>a:hover,.phr-article-card-share>button:hover{background:#e3062e;color:#fff;transform:translateY(-2px)}
.phr-article-card-share>a.is-wa:hover{background:#171214}
.phr-article-card-share [data-phr-copy-link].is-copied{background:#171214;color:#fff}

/* full social share bar inside the dedicated article page */
.phr-dedicated-article-share{
  max-width:1450px;margin:24px auto 0;padding:18px 20px;border-radius:22px;border:1px solid #eee4e7;background:linear-gradient(120deg,#fff 0%,#fff9fa 100%);
  display:flex;align-items:center;justify-content:space-between;gap:18px;box-shadow:0 14px 36px rgba(32,19,23,.06);direction:rtl
}
.phr-dedicated-article-share-copy small{display:block;color:#e3062e;font-size:11px;font-weight:900;margin-bottom:3px}
.phr-dedicated-article-share-copy strong{display:block;color:#1c1517;font-size:16px;font-weight:900}
.phr-dedicated-article-share-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.phr-dedicated-article-share-actions>a,.phr-dedicated-article-share-actions>button{
  min-height:40px;padding:0 12px;border-radius:12px;border:1px solid #ece4e6;background:#fff;color:#261a1e;text-decoration:none;
  display:inline-flex;align-items:center;gap:7px;font:800 11px 'Tajawal',Arial,sans-serif;cursor:pointer;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease
}
.phr-dedicated-article-share-actions>a:hover,.phr-dedicated-article-share-actions>button:hover{transform:translateY(-2px);border-color:rgba(227,6,46,.28);box-shadow:0 9px 20px rgba(31,20,24,.08)}
.phr-dedicated-article-share-actions b{width:24px;height:24px;border-radius:8px;background:#171214;color:#fff;display:grid;place-items:center;font:900 11px Arial,sans-serif}
.phr-dedicated-article-share-actions .is-facebook b{background:#1877f2}.phr-dedicated-article-share-actions .is-whatsapp b{background:#e3062e}.phr-dedicated-article-share-actions .is-x b{background:#111}.phr-dedicated-article-share-actions .is-telegram b{background:#229ed9}
.phr-dedicated-article-share-actions [data-phr-copy-link].is-copied{border-color:#e3062e;background:#fff5f7;color:#b90021}

@media(max-width:767px){
  .phr-floating-contact{right:12px!important;bottom:14px!important}
  .phr-floating-contact-toggle,.phr-floating-contact-toggle:hover,.phr-floating-contact.is-open .phr-floating-contact-toggle{min-width:124px!important;height:46px!important;padding:0 11px!important;gap:7px!important}
  .phr-floating-contact-toggle-icon{width:25px!important;height:25px!important;flex-basis:25px!important}.phr-floating-contact-toggle-icon svg{width:15px!important;height:15px!important}.phr-floating-contact-toggle-text{font-size:11.5px!important}
  .phr-floating-contact-panel{bottom:56px!important;width:min(310px,calc(100vw - 24px))!important}
  .phr-floating-contact-head{grid-template-columns:36px minmax(0,1fr) 29px;padding:14px;gap:9px}.phr-floating-contact-head-icon{width:36px;height:36px;border-radius:12px}.phr-floating-contact-head-icon svg{width:19px;height:19px}.phr-floating-contact-head strong{font-size:13.5px}.phr-floating-contact-head small{font-size:9.5px}.phr-floating-contact-close{width:28px;height:28px}
  .phr-floating-contact-compose{padding:13px 14px 12px}.phr-floating-contact-compose textarea{min-height:78px;font-size:12px;border-radius:13px}.phr-floating-contact-send{height:40px;border-radius:12px;font-size:11.5px}
  .phr-floating-contact-call{margin:0 14px 14px;padding:9px 10px;min-height:52px;grid-template-columns:32px minmax(0,1fr) auto}.phr-floating-contact-call-icon{width:32px;height:32px;border-radius:10px}.phr-floating-contact-call strong{font-size:12.5px}.phr-floating-contact-call>b{font-size:9.5px;padding:5px 7px}
  .phr-article-card-share>span{display:none}.phr-article-card-share>a,.phr-article-card-share>button{width:25px;height:25px;border-radius:8px;font-size:10px}
  .phr-dedicated-article-share{margin:18px 0 0;padding:15px;border-radius:18px;display:block}.phr-dedicated-article-share-actions{margin-top:12px;gap:6px}.phr-dedicated-article-share-actions>a,.phr-dedicated-article-share-actions>button{min-height:36px;padding:0 9px;font-size:10px}.phr-dedicated-article-share-actions b{width:21px;height:21px;border-radius:7px}
}
@media(prefers-reduced-motion:reduce){.phr-floating-contact-toggle:after{animation:none!important}}
.phr-article-card-share svg{width:13px;height:13px;display:block;fill:currentColor}
.phr-dedicated-article-share-actions b svg{width:13px;height:13px;display:block;fill:currentColor}

/* v9.25.12 — Floating WhatsApp visual polish */
.phr-floating-contact,
.phr-floating-contact *{
  box-sizing:border-box!important;
  font-family:'Tajawal',Tahoma,Arial,sans-serif!important;
}

/* stronger glossy treatment for the floating launcher and WhatsApp icon */
.phr-floating-contact-toggle{
  isolation:isolate!important;
}
.phr-floating-contact-toggle:before{
  content:"";
  position:absolute;
  inset:1px 1px auto 1px;
  height:48%;
  border-radius:999px 999px 46% 46%;
  background:linear-gradient(180deg,rgba(255,255,255,.28),rgba(255,255,255,.035));
  opacity:.72;
  pointer-events:none;
  z-index:1;
}
.phr-floating-contact-toggle-icon{
  position:relative!important;
  overflow:hidden!important;
  background:linear-gradient(145deg,#ff2349 0%,#e3062e 48%,#a8001c 100%)!important;
  border:1px solid rgba(255,255,255,.38)!important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.52),
    inset 0 -7px 13px rgba(91,0,18,.24),
    0 0 0 4px rgba(227,6,46,.09),
    0 9px 24px rgba(227,6,46,.34)!important;
  animation:phrWaIconGlow 2.8s ease-in-out infinite!important;
}
.phr-floating-contact-toggle-icon:before,
.phr-floating-contact-head-icon:before{
  content:"";
  position:absolute;
  width:72%;
  height:30%;
  left:10%;
  top:8%;
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,255,255,.78),rgba(255,255,255,0));
  transform:rotate(-18deg);
  opacity:.72;
  pointer-events:none;
}
.phr-floating-contact-toggle-icon:after,
.phr-floating-contact-head-icon:after{
  content:"";
  position:absolute;
  top:-35%;
  left:-80%;
  width:34%;
  height:170%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.92),transparent);
  transform:rotate(20deg);
  animation:phrWaIconShine 3.6s ease-in-out infinite;
  pointer-events:none;
}
.phr-floating-contact-toggle-icon svg,
.phr-floating-contact-head-icon svg{position:relative!important;z-index:2!important}
@keyframes phrWaIconGlow{
  0%,100%{transform:translateZ(0) scale(1);filter:brightness(1)}
  50%{transform:translateZ(0) scale(1.045);filter:brightness(1.12)}
}
@keyframes phrWaIconShine{
  0%,58%{left:-80%;opacity:0}
  67%{opacity:.9}
  83%{left:145%;opacity:.12}
  100%{left:145%;opacity:0}
}

/* header typography: force Tajawal and improve spacing */
.phr-floating-contact-head,
.phr-floating-contact-head strong,
.phr-floating-contact-head small,
.phr-floating-contact-close{
  font-family:'Tajawal',Tahoma,Arial,sans-serif!important;
}
.phr-floating-contact-head strong{
  font-size:15.5px!important;
  font-weight:900!important;
  letter-spacing:0!important;
}
.phr-floating-contact-head small{
  margin-top:4px!important;
  font-size:10.5px!important;
  font-weight:600!important;
  line-height:1.7!important;
}
.phr-floating-contact-head-icon{
  position:relative!important;
  overflow:hidden!important;
  background:linear-gradient(145deg,#ff244b,#e3062e 58%,#a8001c)!important;
  border:1px solid rgba(255,255,255,.22)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.42),0 12px 28px rgba(227,6,46,.32)!important;
}

/* cleaner composer card + corrected textarea sizing */
.phr-floating-contact-compose{
  position:relative!important;
  padding:17px!important;
  background:linear-gradient(180deg,#ffffff 0%,#fff9fa 100%)!important;
  border-bottom:1px solid rgba(227,6,46,.06)!important;
}
.phr-floating-contact-compose label{
  margin:0 2px 8px!important;
  color:#33262b!important;
  font-size:11.5px!important;
  font-weight:800!important;
}
.phr-floating-contact-compose textarea{
  box-sizing:border-box!important;
  width:100%!important;
  max-width:100%!important;
  min-width:100%!important;
  min-height:110px!important;
  max-height:220px!important;
  resize:vertical!important;
  margin:0!important;
  padding:14px 15px!important;
  border:1px solid #ead9de!important;
  border-radius:17px!important;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,rgba(227,6,46,.22),rgba(20,16,18,.10)) border-box!important;
  color:#251b1e!important;
  font-family:'Tajawal',Tahoma,Arial,sans-serif!important;
  font-size:13px!important;
  font-weight:500!important;
  line-height:1.9!important;
  text-align:right!important;
  direction:rtl!important;
  outline:none!important;
  box-shadow:inset 0 1px 2px rgba(22,10,14,.025),0 7px 22px rgba(57,27,36,.035)!important;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease!important;
}
.phr-floating-contact-compose textarea::placeholder{
  color:#a29398!important;
  opacity:1!important;
  font-family:'Tajawal',Tahoma,Arial,sans-serif!important;
}
.phr-floating-contact-compose textarea:hover{
  border-color:#dfc8cf!important;
}
.phr-floating-contact-compose textarea:focus{
  border-color:#e3062e!important;
  background:#fff!important;
  box-shadow:0 0 0 4px rgba(227,6,46,.075),0 12px 28px rgba(74,29,42,.06)!important;
}
.phr-floating-contact-send{
  position:relative!important;
  overflow:hidden!important;
  font-family:'Tajawal',Tahoma,Arial,sans-serif!important;
}
.phr-floating-contact-send:after{
  content:"";
  position:absolute;
  top:-45%;left:-36%;width:24%;height:190%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.75),transparent);
  transform:rotate(19deg);
  animation:phrWaSendShine 4s ease-in-out infinite;
  pointer-events:none;
}
@keyframes phrWaSendShine{0%,64%{left:-36%;opacity:0}72%{opacity:.75}88%{left:125%;opacity:.08}100%{left:125%;opacity:0}}

/* direct-call block typography */
.phr-floating-contact-call,
.phr-floating-contact-call small,
.phr-floating-contact-call strong,
.phr-floating-contact-call>b{
  font-family:'Tajawal',Tahoma,Arial,sans-serif!important;
}
.phr-floating-contact-call small{
  color:#7f7076!important;
  font-size:10.5px!important;
  font-weight:700!important;
  line-height:1.5!important;
}
.phr-floating-contact-call strong{
  font-weight:900!important;
  letter-spacing:.15px!important;
}

@media(max-width:767px){
  .phr-floating-contact-compose{padding:14px!important}
  .phr-floating-contact-compose textarea{min-height:92px!important;max-height:180px!important;padding:12px 13px!important;border-radius:14px!important;font-size:12px!important}
  .phr-floating-contact-head strong{font-size:13.5px!important}
  .phr-floating-contact-head small{font-size:9.5px!important;line-height:1.55!important}
  .phr-floating-contact-call small{font-size:9.5px!important}
}
@media(prefers-reduced-motion:reduce){
  .phr-floating-contact-toggle-icon,
  .phr-floating-contact-toggle-icon:after,
  .phr-floating-contact-head-icon:after,
  .phr-floating-contact-send:after{animation:none!important}
}

/* v9.25.13 — Platform advertising section */
.phr-platform-ads{position:relative;isolation:isolate;overflow:hidden;padding:84px 20px;background:var(--phr-ads-bg,#fff8fa);font-family:'Tajawal',Tahoma,Arial,sans-serif;color:var(--phr-ads-title,#1f171a)}
.phr-platform-ads *{box-sizing:border-box}.phr-platform-ads-inner{position:relative;z-index:2;width:min(var(--phr-ads-width,1320px),100%);margin:auto}.phr-platform-ads-orb{position:absolute;z-index:0;border-radius:999px;filter:blur(4px);pointer-events:none}.phr-platform-ads-orb-a{width:420px;height:420px;right:-160px;top:-190px;background:radial-gradient(circle,rgba(227,6,46,.13),rgba(227,6,46,0) 68%)}.phr-platform-ads-orb-b{width:520px;height:520px;left:-220px;bottom:-290px;background:radial-gradient(circle,rgba(18,14,16,.065),rgba(18,14,16,0) 70%)}
.phr-platform-ads-head{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-bottom:34px}.phr-platform-ads-heading{max-width:820px}.phr-platform-ads-kicker{display:inline-flex;align-items:center;gap:9px;margin-bottom:8px;color:var(--phr-ads-accent,#e3062e);font-size:12px;font-weight:900;letter-spacing:.2px}.phr-platform-ads-kicker i{display:inline-block;width:28px;height:3px;border-radius:50px;background:linear-gradient(90deg,var(--phr-ads-accent,#e3062e),var(--phr-ads-dark,#120e10))}.phr-platform-ads-heading h2{margin:0;color:var(--phr-ads-title,#1f171a);font-size:clamp(34px,4vw,54px);font-weight:900;line-height:1.12}.phr-platform-ads-heading p{max-width:760px;margin:12px 0 0;color:var(--phr-ads-text,#71656a);font-size:16px;font-weight:500;line-height:1.9}
.phr-platform-ads-main-cta{position:relative;display:inline-flex;align-items:center;justify-content:center;gap:14px;min-width:148px;padding:14px 18px;border:1px solid rgba(227,6,46,.15);border-radius:16px;background:linear-gradient(135deg,var(--phr-ads-dark,#120e10),#2a171d 58%,var(--phr-ads-accent,#e3062e));color:#fff!important;text-decoration:none!important;font-weight:900;box-shadow:0 14px 34px rgba(41,18,25,.12);overflow:hidden}.phr-platform-ads-main-cta:before{content:"";position:absolute;top:-80%;left:-35%;width:22%;height:250%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.8),transparent);transform:rotate(21deg);animation:phrAdsShine 4.2s ease-in-out infinite}.phr-platform-ads-main-cta b{width:28px;height:28px;display:grid;place-items:center;border-radius:9px;background:rgba(255,255,255,.12);font-size:16px}
@keyframes phrAdsShine{0%,62%{left:-35%;opacity:0}70%{opacity:.8}88%{left:125%;opacity:.05}100%{left:125%;opacity:0}}
.phr-platform-ads-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}.phr-platform-ad-card{position:relative;overflow:hidden;min-width:0;border:1px solid var(--phr-ads-border,#f1d7de);border-radius:26px;background:var(--phr-ads-card,#fff);box-shadow:0 18px 50px rgba(44,22,29,.055)}.phr-platform-ad-card.is-image{display:grid;grid-template-columns:minmax(240px,46%) 1fr;min-height:285px}.phr-platform-ad-media{position:relative;min-height:285px;background:#f2edef;overflow:hidden}.phr-platform-ad-media img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .45s ease}.phr-platform-ad-card:hover .phr-platform-ad-media img{transform:scale(1.025)}.phr-platform-ad-image-placeholder{height:100%;min-height:285px;display:grid;place-items:center;background:linear-gradient(135deg,#f8eaee,#fff);color:rgba(227,6,46,.25);font-size:68px;font-weight:900}.phr-platform-ad-badge{position:absolute;top:14px;right:14px;padding:7px 10px;border-radius:10px;background:rgba(15,10,12,.88);backdrop-filter:blur(8px);color:#fff;font-size:10px;font-weight:900}.phr-platform-ad-copy{display:flex;flex-direction:column;justify-content:center;min-width:0;padding:26px}.phr-platform-ad-copy>small{color:var(--phr-ads-accent,#e3062e);font-size:11px;font-weight:900}.phr-platform-ad-copy h3{margin:7px 0 9px;color:var(--phr-ads-title,#1f171a);font-size:24px;font-weight:900;line-height:1.35}.phr-platform-ad-copy p{margin:0;color:var(--phr-ads-text,#71656a);font-size:14px;font-weight:500;line-height:1.9}.phr-platform-ad-actions{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin-top:18px}.phr-platform-ad-primary,.phr-platform-ad-contact{display:inline-flex;align-items:center;justify-content:center;gap:7px;padding:11px 14px;border-radius:12px;text-decoration:none!important;font-size:12px;font-weight:900;transition:.2s ease}.phr-platform-ad-primary{background:var(--phr-ads-accent,#e3062e);color:#fff!important;box-shadow:0 9px 22px rgba(227,6,46,.16)}.phr-platform-ad-contact{border:1px solid var(--phr-ads-border,#f1d7de);background:#fff;color:var(--phr-ads-dark,#120e10)!important}.phr-platform-ad-primary:hover,.phr-platform-ad-contact:hover{transform:translateY(-2px)}
.phr-platform-ad-card.is-text{display:grid;grid-template-columns:86px 1fr;align-items:stretch;min-height:225px;background:linear-gradient(135deg,var(--phr-ads-card,#fff),#fffafb)}.phr-platform-ad-text-icon{display:grid;place-items:center;background:linear-gradient(180deg,var(--phr-ads-dark,#120e10),#23171b);color:#fff}.phr-platform-ad-text-icon span{display:grid;place-items:center;width:52px;height:52px;border:1px solid rgba(255,255,255,.15);border-radius:17px;background:linear-gradient(135deg,rgba(255,255,255,.1),rgba(227,6,46,.35));font-weight:900}.phr-platform-ad-meta{display:flex;align-items:center;gap:9px}.phr-platform-ad-meta span{padding:5px 8px;border-radius:8px;background:#fff0f3;color:var(--phr-ads-accent,#e3062e);font-size:9px;font-weight:900}.phr-platform-ad-meta small{color:#95878c;font-size:10px;font-weight:700}.phr-platform-ad-contact.is-strong{align-self:flex-start;margin-top:17px;background:var(--phr-ads-dark,#120e10);border-color:var(--phr-ads-dark,#120e10);color:#fff!important}.phr-platform-ad-contact.is-strong i{font-style:normal;color:#ff3154}.phr-platform-ads-grid.is-empty{display:block}.phr-platform-ad-empty{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:22px;padding:28px;border:1px dashed rgba(227,6,46,.3);border-radius:26px;background:rgba(255,255,255,.74);box-shadow:0 18px 45px rgba(43,19,26,.04)}.phr-platform-ad-empty-icon{display:grid;place-items:center;width:68px;height:68px;border-radius:20px;background:linear-gradient(135deg,var(--phr-ads-dark,#120e10),var(--phr-ads-accent,#e3062e));color:#fff;font-size:20px;font-weight:900}.phr-platform-ad-empty small{color:var(--phr-ads-accent,#e3062e);font-size:9px;font-weight:900;letter-spacing:1.3px}.phr-platform-ad-empty h3{margin:4px 0;color:var(--phr-ads-title,#1f171a);font-size:22px;font-weight:900}.phr-platform-ad-empty p{margin:0;color:var(--phr-ads-text,#71656a);font-size:13px}.phr-platform-ad-empty a{padding:12px 16px;border-radius:12px;background:var(--phr-ads-accent,#e3062e);color:#fff!important;text-decoration:none!important;font-weight:900;white-space:nowrap}

/* popup ad */
.phr-platform-ad-popup{position:fixed;inset:0;z-index:2147482000;display:flex;align-items:center;justify-content:center;padding:22px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .28s ease,visibility .28s ease;font-family:'Tajawal',Tahoma,Arial,sans-serif}.phr-platform-ad-popup.is-open{opacity:1;visibility:visible;pointer-events:auto}.phr-platform-ad-popup-backdrop{position:absolute;inset:0;width:100%;height:100%;border:0;background:rgba(12,8,10,.76);backdrop-filter:blur(9px);cursor:default}.phr-platform-ad-popup-dialog{position:relative;z-index:2;width:min(720px,calc(100vw - 34px));max-height:calc(100vh - 44px);overflow:auto;border:1px solid rgba(255,255,255,.14);border-radius:28px;background:#fff;box-shadow:0 30px 90px rgba(0,0,0,.34);transform:translateY(16px) scale(.975);transition:transform .3s ease}.phr-platform-ad-popup.is-open .phr-platform-ad-popup-dialog{transform:none}.phr-platform-ad-popup-close{position:absolute;z-index:5;top:12px;left:12px;width:40px;height:40px;border:0;border-radius:13px;background:rgba(19,13,15,.88);color:#fff;font-size:24px;line-height:1;cursor:pointer}.phr-platform-ad-popup-badge{position:absolute;z-index:4;top:16px;right:16px;padding:7px 11px;border-radius:10px;background:#e3062e;color:#fff;font-size:10px;font-weight:900}.phr-platform-ad-popup-image{width:100%;max-height:520px;background:#f2edef;overflow:hidden;border-radius:28px 28px 0 0}.phr-platform-ad-popup-image img{display:block;width:100%;height:auto;max-height:520px;object-fit:contain;background:#fff}.phr-platform-ad-popup-copy{padding:23px 25px 26px;text-align:right}.phr-platform-ad-popup-copy small{color:#e3062e;font-size:10px;font-weight:900}.phr-platform-ad-popup-copy h3{margin:5px 0 7px;color:#1d1316;font-size:25px;font-weight:900}.phr-platform-ad-popup-copy p{margin:0;color:#71656a;font-size:14px;line-height:1.85}.phr-platform-ad-popup-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:17px}.phr-platform-ad-popup-actions a{padding:11px 15px;border-radius:12px;background:#e3062e;color:#fff!important;text-decoration:none!important;font-size:12px;font-weight:900}.phr-platform-ad-popup-actions a.is-contact{background:#171013}.phr-platform-ad-popup-lock{overflow:hidden!important}
@media(max-width:900px){.phr-platform-ads{padding:68px 16px}.phr-platform-ads-grid{grid-template-columns:1fr}.phr-platform-ads-head{align-items:flex-start;flex-direction:column}.phr-platform-ads-main-cta{min-width:0}.phr-platform-ad-card.is-image{grid-template-columns:minmax(210px,42%) 1fr}}
@media(max-width:620px){.phr-platform-ads{padding:54px 12px}.phr-platform-ads-heading h2{font-size:34px}.phr-platform-ads-heading p{font-size:13px}.phr-platform-ad-card.is-image{display:block}.phr-platform-ad-media,.phr-platform-ad-image-placeholder{min-height:210px}.phr-platform-ad-media{height:210px}.phr-platform-ad-copy{padding:20px}.phr-platform-ad-copy h3{font-size:20px}.phr-platform-ad-card.is-text{grid-template-columns:64px 1fr}.phr-platform-ad-text-icon span{width:42px;height:42px;border-radius:13px;font-size:13px}.phr-platform-ad-empty{grid-template-columns:54px 1fr;gap:14px;padding:20px}.phr-platform-ad-empty-icon{width:54px;height:54px;border-radius:16px;font-size:15px}.phr-platform-ad-empty a{grid-column:1/-1;text-align:center}.phr-platform-ad-popup{padding:12px}.phr-platform-ad-popup-dialog{width:100%;max-height:calc(100vh - 24px);border-radius:20px}.phr-platform-ad-popup-image{border-radius:20px 20px 0 0}.phr-platform-ad-popup-copy{padding:19px 18px 21px}.phr-platform-ad-popup-copy h3{font-size:21px}}
@media(prefers-reduced-motion:reduce){.phr-platform-ads-main-cta:before{animation:none}.phr-platform-ad-popup,.phr-platform-ad-popup-dialog{transition:none}}


/* v9.25.14 — side-slide platform ads */
.phr-platform-side-ad{--phr-side-accent:#e3062e;position:fixed;z-index:2147481500;top:50%;width:min(390px,calc(100vw - 28px));display:grid;grid-template-columns:116px minmax(0,1fr);direction:rtl;overflow:hidden;border:1px solid rgba(227,6,46,.16);border-radius:22px;background:#fff;color:#1c1417;font-family:'Tajawal',Tahoma,Arial,sans-serif;box-shadow:0 24px 70px rgba(21,9,13,.22);opacity:0;visibility:hidden;pointer-events:none;transition:transform .42s cubic-bezier(.22,.9,.25,1),opacity .3s ease,visibility .3s ease}.phr-platform-side-ad.is-right{right:16px;transform:translate(115%,-50%)}.phr-platform-side-ad.is-left{left:16px;transform:translate(-115%,-50%)}.phr-platform-side-ad.is-visible{transform:translate(0,-50%);opacity:1;visibility:visible;pointer-events:auto}.phr-platform-side-ad.is-leaving{opacity:0;pointer-events:none}.phr-platform-side-ad *{box-sizing:border-box}.phr-platform-side-ad-media{display:block;min-height:155px;background:#f5f1f2;overflow:hidden;text-decoration:none!important}.phr-platform-side-ad-media img{width:100%;height:100%;min-height:155px;display:block;object-fit:cover}.phr-platform-side-ad-copy{min-width:0;padding:18px 17px 20px}.phr-platform-side-ad-top{display:flex;align-items:center;gap:8px;margin:0 0 7px}.phr-platform-side-ad-top span{padding:4px 8px;border-radius:999px;background:#e3062e;color:#fff;font-size:9px;font-weight:900}.phr-platform-side-ad-top small{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#8c747b;font-size:9px;font-weight:700}.phr-platform-side-ad h3{margin:0 0 6px;color:#181013;font-size:18px;line-height:1.35;font-weight:900}.phr-platform-side-ad p{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin:0;color:#75656a;font-size:11px;line-height:1.7;font-weight:500}.phr-platform-side-ad-actions{display:flex;flex-wrap:wrap;gap:7px;margin-top:11px}.phr-platform-side-ad-actions a{padding:8px 10px;border:1px solid #eadcdf;border-radius:10px;background:#fff;color:#24181c!important;text-decoration:none!important;font-size:10px;font-weight:900}.phr-platform-side-ad-actions a.is-primary{border-color:#e3062e;background:#e3062e;color:#fff!important}.phr-platform-side-ad-close{position:absolute;z-index:5;top:8px;left:8px;width:30px;height:30px;border:0;border-radius:10px;background:rgba(20,13,16,.88);color:#fff;font:700 19px/1 Arial;cursor:pointer;box-shadow:0 6px 16px rgba(0,0,0,.14)}.phr-platform-side-ad-progress{position:absolute;right:0;bottom:0;height:3px;width:100%;background:linear-gradient(90deg,#120e10,#e3062e);transform-origin:right center;transform:scaleX(1)}.phr-platform-side-ad.is-visible .phr-platform-side-ad-progress{animation:phrSideAdProgress var(--phr-side-ad-duration,12s) linear forwards}@keyframes phrSideAdProgress{to{transform:scaleX(0)}}
@media(max-width:620px){.phr-platform-side-ad{top:auto;bottom:78px;width:min(310px,calc(100vw - 22px));grid-template-columns:88px minmax(0,1fr);border-radius:17px}.phr-platform-side-ad.is-right{right:11px;transform:translateX(115%)}.phr-platform-side-ad.is-left{left:11px;transform:translateX(-115%)}.phr-platform-side-ad.is-visible{transform:translateX(0)}.phr-platform-side-ad-media,.phr-platform-side-ad-media img{min-height:122px}.phr-platform-side-ad-copy{padding:13px 12px 15px}.phr-platform-side-ad h3{font-size:14px;margin-bottom:4px}.phr-platform-side-ad p{font-size:9.5px;-webkit-line-clamp:2}.phr-platform-side-ad-top{margin-bottom:5px}.phr-platform-side-ad-actions{margin-top:8px;gap:5px}.phr-platform-side-ad-actions a{padding:6px 8px;font-size:9px}.phr-platform-side-ad-close{width:27px;height:27px;border-radius:9px;font-size:17px;top:6px;left:6px}}
@media(prefers-reduced-motion:reduce){.phr-platform-side-ad{transition:none}.phr-platform-side-ad.is-visible .phr-platform-side-ad-progress{animation:none}}

/* v9.25.16 — gray editorial background for Latest Articles */
.phr-articles-section{
  background:var(--phr-articles-bg,#e9e9e9)!important;
}
.phr-articles-section::before{
  content:""!important;
  position:absolute!important;
  inset:-7%!important;
  z-index:-4!important;
  pointer-events:none!important;
  background-image:url('articles-editorial-bg.webp')!important;
  background-repeat:no-repeat!important;
  background-size:cover!important;
  background-position:center center!important;
  opacity:.24!important;
  filter:grayscale(1) saturate(.2) contrast(.92)!important;
  transform:scale(1.06) translate3d(0,0,0);
  will-change:transform,background-position;
}
.phr-articles-section.phr-articles-photo-motion::before{
  animation:phrArticlesEditorialPan var(--phr-articles-motion-speed,22s) ease-in-out infinite alternate!important;
}
.phr-articles-section::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 20%,rgba(255,255,255,.88),rgba(255,255,255,.58) 35%,transparent 66%),
    linear-gradient(90deg,rgba(224,224,224,.62),rgba(246,246,246,.84) 48%,rgba(224,224,224,.62));
}
.phr-articles-backdrop{
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.30))!important;
}
.phr-articles-motion i:nth-child(1){
  background:radial-gradient(circle,color-mix(in srgb,var(--phr-articles-accent,#d90026) 22%,transparent),transparent 70%)!important;
}
.phr-articles-motion i:nth-child(2){
  background:radial-gradient(circle,rgba(20,20,20,.12),transparent 70%)!important;
}
.phr-articles-motion i:nth-child(3){
  background:radial-gradient(circle,color-mix(in srgb,var(--phr-articles-accent,#d90026) 12%,transparent),transparent 68%)!important;
}
.phr-articles-motion b{
  background-image:radial-gradient(circle at center,rgba(25,25,25,.075) 0 1px,transparent 1.5px)!important;
}
.phr-articles-section.motion-mesh .phr-articles-motion b{
  background:linear-gradient(120deg,color-mix(in srgb,var(--phr-articles-accent,#d90026) 10%,transparent),transparent 30%,rgba(20,20,20,.08) 58%,transparent 80%)!important;
  background-size:220% 220%!important;
}
.phr-articles-section.motion-waves .phr-articles-motion b{
  background-image:repeating-radial-gradient(ellipse at 50% 120%,transparent 0 42px,color-mix(in srgb,var(--phr-articles-accent,#d90026) 8%,transparent) 43px 45px,transparent 46px 74px)!important;
  background-size:100% 220px!important;
}
.phr-articles-pretitle{
  background:rgba(255,255,255,.76)!important;
  border-color:color-mix(in srgb,var(--phr-articles-accent,#d90026) 18%,transparent)!important;
  color:var(--phr-articles-accent,#d90026)!important;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.phr-articles-title-line{background:rgba(20,20,20,.08)!important}
.phr-articles-title-line::before{
  background:linear-gradient(90deg,var(--phr-articles-accent,#d90026),#171717 52%,var(--phr-articles-accent,#d90026))!important;
  box-shadow:0 5px 16px color-mix(in srgb,var(--phr-articles-accent,#d90026) 18%,transparent)!important;
}
.phr-article-card{
  border-color:rgba(20,20,20,.08)!important;
  box-shadow:0 18px 46px rgba(0,0,0,.08)!important;
}
.phr-article-card:hover{
  border-color:color-mix(in srgb,var(--phr-articles-accent,#d90026) 24%,transparent)!important;
  box-shadow:0 24px 58px rgba(0,0,0,.14)!important;
}
.phr-article-footer{border-top-color:rgba(20,20,20,.08)!important}
.phr-articles-dot{background:rgba(20,20,20,.16)!important}
.phr-articles-dot.is-active{background:var(--phr-articles-accent,#d90026)!important}
@keyframes phrArticlesEditorialPan{
  0%{transform:scale(1.06) translate3d(-1.2%,0,0);background-position:47% 50%}
  50%{transform:scale(1.095) translate3d(.6%,-.7%,0);background-position:52% 47%}
  100%{transform:scale(1.07) translate3d(1.2%,.5%,0);background-position:55% 52%}
}
@media(max-width:767px){
  .phr-articles-section::before{opacity:.18!important;inset:-4%!important;background-position:center top!important}
  .phr-articles-section::after{background:linear-gradient(180deg,rgba(244,244,244,.90),rgba(232,232,232,.82))}
}
@media(prefers-reduced-motion:reduce){
  .phr-articles-section.phr-articles-photo-motion::before{animation:none!important;transform:scale(1.06)!important}
}


/* =========================================================
   v9.25.17 — Premium white mobile menu / Tahat Al-Hizam
   ========================================================= */
.phr-mobile-panel.phr-mobile-panel-premium,
body.phr-dark-mode .phr-mobile-panel.phr-mobile-panel-premium{
  width:min(390px,92vw) !important;
  padding:calc(var(--phr-adminbar) + 14px) 16px 22px !important;
  background:#ffffff !important;
  color:#111111 !important;
  border-left:1px solid rgba(17,17,17,.08) !important;
  border-radius:28px 0 0 28px !important;
  box-shadow:-24px 0 70px rgba(17,17,17,.18) !important;
  overflow-x:hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
  font-family:'Tajawal',Tahoma,Arial,sans-serif !important;
  scrollbar-width:thin;
  scrollbar-color:#e3062e #f4f4f4;
}
.phr-mobile-panel-premium,
.phr-mobile-panel-premium *{
  box-sizing:border-box;
  font-family:'Tajawal',Tahoma,Arial,sans-serif !important;
}
.phr-mobile-panel-premium::-webkit-scrollbar{width:5px}
.phr-mobile-panel-premium::-webkit-scrollbar-track{background:#f4f4f4}
.phr-mobile-panel-premium::-webkit-scrollbar-thumb{background:#e3062e;border-radius:999px}

.phr-mobile-brand{
  position:relative;
  min-height:104px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px 52px 14px;
  border-bottom:1px solid #f0f0f0;
}
.phr-mobile-brand-link{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  text-decoration:none !important;
  color:#111 !important;
  min-width:0;
}
.phr-mobile-brand-logo{
  width:74px;
  height:74px;
  display:grid;
  place-items:center;
  flex:0 0 74px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(227,6,46,.11);
  box-shadow:0 12px 32px rgba(17,17,17,.08);
  overflow:hidden;
  position:relative;
}
.phr-mobile-brand-logo:after{
  content:"";
  position:absolute;
  inset:-40% auto -40% -55%;
  width:34%;
  transform:rotate(18deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.9),transparent);
  animation:phrMobileLogoShine 4.6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes phrMobileLogoShine{0%,64%{left:-55%}82%,100%{left:125%}}
.phr-mobile-brand-logo img{width:100%;height:100%;object-fit:contain;padding:5px;display:block}
.phr-mobile-brand-copy{display:grid;gap:1px;line-height:1.05;text-align:right}
.phr-mobile-brand-copy small{font-size:10px;font-weight:800;color:#8c8c8c !important;letter-spacing:.2px}
.phr-mobile-brand-copy strong{font-size:18px;font-weight:900;color:#111 !important;white-space:nowrap}
.phr-mobile-brand-copy strong b{color:#e3062e !important;font-weight:900}

.phr-mobile-panel-premium .phr-mobile-close,
body.phr-dark-mode .phr-mobile-panel-premium .phr-mobile-close{
  position:absolute !important;
  top:calc(var(--phr-adminbar) + 19px) !important;
  left:16px !important;
  width:40px !important;
  height:40px !important;
  display:grid !important;
  place-items:center !important;
  border:1px solid rgba(17,17,17,.08) !important;
  border-radius:13px !important;
  background:#f7f7f7 !important;
  color:#111111 !important;
  font-size:24px !important;
  font-weight:500 !important;
  line-height:1 !important;
  box-shadow:none !important;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,transform .2s ease,border-color .2s ease !important;
}
.phr-mobile-panel-premium .phr-mobile-close:hover{background:#111 !important;color:#fff !important;border-color:#111 !important;transform:rotate(4deg)}

.phr-mobile-menu-label{
  display:flex;
  align-items:center;
  gap:10px;
  padding:17px 4px 11px;
  color:#777 !important;
  font-size:10px;
  font-weight:800;
}
.phr-mobile-menu-label b{color:#777 !important;font-size:10px;font-weight:800;white-space:nowrap}
.phr-mobile-menu-label span{height:1px;flex:1;background:linear-gradient(90deg,transparent,#e6e6e6)}
.phr-mobile-menu-label span:last-child{background:linear-gradient(90deg,#e6e6e6,transparent)}

.phr-mobile-panel-premium .phr-mobile-menu,
.phr-mobile-panel-premium .menu{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
  display:flex !important;
  flex-direction:column !important;
  gap:7px !important;
}
.phr-mobile-panel-premium .phr-mobile-menu > li,
.phr-mobile-panel-premium .menu > li{margin:0 !important;padding:0 !important}
.phr-mobile-panel-premium .phr-mobile-menu a,
.phr-mobile-panel-premium .menu a,
body.phr-dark-mode .phr-mobile-panel-premium .phr-mobile-menu a,
body.phr-dark-mode .phr-mobile-panel-premium .menu a{
  position:relative;
  min-height:54px !important;
  display:flex !important;
  align-items:center !important;
  gap:11px !important;
  padding:0 16px 0 46px !important;
  border:1px solid #ededed !important;
  border-radius:16px !important;
  background:#fafafa !important;
  color:#111111 !important;
  text-decoration:none !important;
  font-size:15px !important;
  font-weight:800 !important;
  line-height:1.35 !important;
  box-shadow:0 5px 18px rgba(17,17,17,.025) !important;
  transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease,box-shadow .2s ease !important;
}
.phr-mobile-panel-premium .phr-mobile-menu > li > a:before,
.phr-mobile-panel-premium .menu > li > a:before{
  content:"";
  width:8px;
  height:8px;
  flex:0 0 8px;
  border-radius:50%;
  background:#e3062e;
  box-shadow:0 0 0 5px rgba(227,6,46,.08);
}
.phr-mobile-panel-premium .phr-mobile-menu > li > a:after,
.phr-mobile-panel-premium .menu > li > a:after{
  content:"←";
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  color:#b6b6b6 !important;
  font-size:16px;
  font-weight:900;
  transition:.2s ease;
}
.phr-mobile-panel-premium .phr-mobile-menu .current-menu-item > a,
.phr-mobile-panel-premium .menu .current-menu-item > a,
.phr-mobile-panel-premium .phr-mobile-menu a:hover,
.phr-mobile-panel-premium .menu a:hover,
body.phr-dark-mode .phr-mobile-panel-premium .phr-mobile-menu .current-menu-item > a,
body.phr-dark-mode .phr-mobile-panel-premium .menu .current-menu-item > a{
  background:#111111 !important;
  color:#ffffff !important;
  border-color:#111111 !important;
  box-shadow:0 13px 28px rgba(17,17,17,.13) !important;
  transform:translateX(-2px);
}
.phr-mobile-panel-premium .phr-mobile-menu .current-menu-item > a:after,
.phr-mobile-panel-premium .menu .current-menu-item > a:after,
.phr-mobile-panel-premium .phr-mobile-menu a:hover:after,
.phr-mobile-panel-premium .menu a:hover:after{color:#e3062e !important;left:13px}

.phr-mobile-panel-premium .sub-menu,
.phr-mobile-panel-premium .children,
body.phr-dark-mode .phr-mobile-panel-premium .sub-menu,
body.phr-dark-mode .phr-mobile-panel-premium .children{
  list-style:none !important;
  margin:7px 12px 2px 0 !important;
  padding:7px !important;
  background:#fff !important;
  border:1px solid #f0f0f0 !important;
  border-radius:15px !important;
}
.phr-mobile-panel-premium .sub-menu a,
.phr-mobile-panel-premium .children a{
  min-height:44px !important;
  padding:0 13px 0 38px !important;
  background:#fff !important;
  border:0 !important;
  border-radius:11px !important;
  box-shadow:none !important;
  font-size:13px !important;
  color:#343434 !important;
}
.phr-mobile-panel-premium .sub-menu a:before,
.phr-mobile-panel-premium .children a:before{content:none !important}

.phr-mobile-contacts{
  margin-top:16px;
  padding-top:15px;
  border-top:1px solid #eeeeee;
}
.phr-mobile-contact-title{display:flex;align-items:flex-end;justify-content:space-between;gap:8px;margin:0 3px 10px}
.phr-mobile-contact-title span{font-size:13px;font-weight:900;color:#111 !important}
.phr-mobile-contact-title small{font-size:9px;font-weight:700;color:#999 !important}
.phr-mobile-contact-grid{display:grid;gap:8px}
.phr-mobile-contact-card,
body.phr-dark-mode .phr-mobile-contact-card{
  min-height:66px;
  display:grid;
  grid-template-columns:44px minmax(0,1fr) 22px;
  align-items:center;
  gap:11px;
  padding:9px 12px;
  border:1px solid #ececec;
  border-radius:18px;
  background:#fff;
  text-decoration:none !important;
  color:#111 !important;
  box-shadow:0 7px 22px rgba(17,17,17,.035);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.phr-mobile-contact-card:hover{transform:translateY(-2px);box-shadow:0 13px 30px rgba(17,17,17,.08);border-color:#dedede}
.phr-mobile-contact-icon{
  width:44px;height:44px;border-radius:14px;display:grid;place-items:center;background:#111;color:#fff;
}
.phr-mobile-contact-icon svg{width:21px;height:21px;fill:currentColor;display:block}
.phr-mobile-contact-card.is-whatsapp .phr-mobile-contact-icon{background:#17a955}
.phr-mobile-contact-card > span:nth-child(2){min-width:0;display:grid;gap:1px;text-align:right}
.phr-mobile-contact-card small{font-size:10px;font-weight:700;color:#8b8b8b !important}
.phr-mobile-contact-card strong{font-size:14px;font-weight:900;color:#111 !important;direction:ltr;text-align:right;unicode-bidi:plaintext}
.phr-mobile-contact-card.is-whatsapp strong{color:#117c41 !important}
.phr-mobile-contact-arrow{font-size:16px;font-weight:900;color:#e3062e !important;text-align:center}

@media (max-width:420px){
  .phr-mobile-panel.phr-mobile-panel-premium{width:min(360px,94vw) !important;padding-right:13px !important;padding-left:13px !important;border-radius:22px 0 0 22px !important}
  .phr-mobile-brand{min-height:94px;padding-right:43px;padding-left:43px}
  .phr-mobile-brand-logo{width:64px;height:64px;flex-basis:64px;border-radius:19px}
  .phr-mobile-brand-copy strong{font-size:16px}
  .phr-mobile-panel-premium .phr-mobile-menu a,.phr-mobile-panel-premium .menu a{min-height:50px !important;font-size:14px !important;border-radius:14px !important}
  .phr-mobile-contact-card{min-height:62px;border-radius:16px}
}
@media (prefers-reduced-motion:reduce){
  .phr-mobile-brand-logo:after{animation:none !important}
  .phr-mobile-panel-premium *{transition:none !important}
}


/* v9.25.18 — Hide footer Explore + Contact columns on tablet and mobile.
   Contact remains available through the dedicated mobile drawer and floating WhatsApp widget. */
@media (max-width:1024px){
  #phr-site-footer .phr-footer-links-simple,
  #phr-site-footer .phr-footer-contact-simple{
    display:none!important;
  }
  #phr-site-footer .phr-footer-main{
    grid-template-columns:minmax(0,1fr)!important;
  }
  #phr-site-footer .phr-footer-brand-simple{
    grid-column:1/-1!important;
  }
}

/* v9.25.19 — Tech Show mobile heading: keep Arabic dots/kicker fully visible and title on a clean line. */
@media (max-width:640px){
  .phr-video-hub-tech_show .phr-video-hub-shell,
  .phr-video-hub-tech_show .phr-video-hub-head,
  .phr-video-hub-tech_show .phr-techshow-title,
  .phr-video-hub-tech_show .phr-techshow-title span{
    overflow:visible!important;
  }
  .phr-video-hub-tech_show .phr-techshow-head{
    width:100%;
    max-width:100%;
    padding:12px 0 6px!important;
    margin-bottom:28px!important;
  }
  .phr-video-hub-tech_show .phr-techshow-kicker{
    z-index:6;
    min-height:44px;
    margin:0 0 12px!important;
    padding:8px 17px 7px!important;
    line-height:1.65!important;
    font-family:'Tajawal',Tahoma,Arial,sans-serif!important;
    font-size:14px!important;
    white-space:nowrap;
    overflow:hidden!important;
  }
  .phr-video-hub-tech_show .phr-techshow-kicker i{
    flex:0 0 21px;
    width:21px;
    height:21px;
    line-height:21px;
  }
  .phr-video-hub-tech_show .phr-techshow-title{
    margin:0!important;
    padding:3px 0 10px!important;
    line-height:1.45!important;
    letter-spacing:0!important;
  }
  .phr-video-hub-tech_show .phr-techshow-title span{
    max-width:100%;
    padding:.10em 0 .16em!important;
    font-family:'Tajawal',Tahoma,Arial,sans-serif!important;
    font-size:min(var(--pv-title-size-m,38px),9.1vw)!important;
    line-height:1.42!important;
    letter-spacing:0!important;
    white-space:nowrap;
    vertical-align:top;
  }
  .phr-video-hub-tech_show .phr-techshow-title span:after{
    bottom:-2px!important;
    height:4px!important;
    width:min(58%,180px)!important;
  }
  .phr-video-hub-tech_show .phr-techshow-head p{
    margin-top:14px!important;
    line-height:1.9!important;
  }
}
@media (max-width:360px){
  .phr-video-hub-tech_show .phr-techshow-title span{
    font-size:min(var(--pv-title-size-m,38px),8.65vw)!important;
  }
  .phr-video-hub-tech_show .phr-techshow-kicker{
    font-size:13px!important;
    padding-inline:14px!important;
  }
}


/* ==========================================================================
   v9.25.21 — Cart + checkout responsive containment / no horizontal drifting
   ========================================================================== */
/* Keep every store route inside the viewport. Decorative layers may animate,
   but they must never create a horizontally scrollable document. */
.phr-store-route-main{
  width:100%;
  max-width:100%;
  min-width:0;
  overflow-x:hidden;
  overflow-x:clip;
}
.phr-store-route-main *,
.phr-store-route-main *::before,
.phr-store-route-main *::after{box-sizing:border-box}

.phr-store-checkout-shell,
.phr-store-checkout-shell.phr-checkout-premium{
  width:min(1220px,calc(100% - 28px));
  max-width:100%;
  min-width:0;
  margin-inline:auto;
  overflow-x:hidden!important;
  overflow-x:clip!important;
}
.phr-checkout-premium::before{
  left:0!important;
  right:0!important;
}
.phr-checkout-premium::after{
  max-width:72vw;
  pointer-events:none;
}

.phr-cart-layout,
.phr-checkout-grid,
.phr-cart-items,
.phr-checkout-main,
.phr-checkout-form,
.phr-checkout-panel,
.phr-checkout-fields,
.phr-checkout-fields-grid,
.phr-checkout-summary,
.phr-cart-summary,
.phr-checkout-products{
  width:100%;
  max-width:100%;
  min-width:0;
}
.phr-cart-layout>*,
.phr-checkout-grid>*,
.phr-checkout-main>*,
.phr-checkout-fields-grid>*,
.phr-checkout-panel-head>div,
.phr-checkout-summary-head>*,
.phr-payment-copy,
.phr-vodafone-number>div,
.phr-instapay-head>div,
.phr-instapay-linkbox{
  min-width:0;
  max-width:100%;
}

/* Long customer/product text and totals must wrap instead of widening the page. */
.phr-cart-item h3,
.phr-cart-item>div,
.phr-cart-item>b,
.phr-cart-summary,
.phr-checkout-summary,
.phr-checkout-panel-head h2,
.phr-checkout-panel-head p,
.phr-payment-copy b,
.phr-payment-copy small,
.phr-vodafone-number strong,
.phr-instapay-head strong,
.phr-checkout-line>b,
.phr-checkout-total strong{
  overflow-wrap:anywhere;
  word-break:normal;
}
.phr-checkout-fields-grid input,
.phr-checkout-fields-grid textarea,
.phr-checkout-fields-grid select,
.phr-vodafone-fields input,
.phr-instapay-proof input[type=file]{
  display:block;
  max-width:100%!important;
  min-width:0!important;
}

@media(max-width:980px){
  .phr-store-checkout-shell,
  .phr-store-checkout-shell.phr-checkout-premium{
    width:min(100% - 22px,820px);
  }
  .phr-cart-layout,
  .phr-checkout-grid,
  .phr-checkout-premium .phr-checkout-grid{
    grid-template-columns:minmax(0,1fr)!important;
  }
  .phr-cart-summary,
  .phr-checkout-summary,
  .phr-checkout-premium .phr-checkout-summary{
    position:static!important;
    top:auto!important;
  }
}

@media(max-width:700px){
  .phr-store-checkout-shell,
  .phr-store-checkout-shell.phr-checkout-premium{
    width:calc(100% - 16px)!important;
    max-width:calc(100% - 16px)!important;
    padding-top:88px;
    padding-bottom:68px;
  }
  .phr-store-checkout-shell::before,
  .phr-store-checkout-shell::after,
  .phr-checkout-premium::after{
    max-width:100%;
  }
  .phr-checkout-premium::before{
    inset:55px 0 -25px!important;
    border-radius:28px!important;
  }

  .phr-store-page-head{margin-bottom:20px}
  .phr-store-page-head h1{
    font-size:clamp(27px,8vw,34px)!important;
    line-height:1.3;
    overflow-wrap:anywhere;
  }

  .phr-checkout-hero{
    width:100%;
    max-width:100%;
    padding:20px 16px!important;
    gap:18px;
  }
  .phr-checkout-hero-copy{min-width:0}
  .phr-checkout-hero h1{
    font-size:clamp(29px,9vw,36px)!important;
    line-height:1.18;
  }
  .phr-checkout-progress{
    width:100%!important;
    max-width:100%!important;
    justify-content:center;
    overflow:hidden;
  }
  .phr-checkout-progress>div{
    min-width:0!important;
    flex:1 1 0;
  }
  .phr-checkout-progress>i{
    flex:0 1 18px;
    min-width:8px;
  }

  .phr-checkout-panel{
    padding:18px 14px!important;
    border-radius:22px!important;
  }
  .phr-checkout-panel-head{
    display:grid;
    grid-template-columns:42px minmax(0,1fr);
    gap:10px;
    margin-bottom:18px;
  }
  .phr-checkout-fields-grid,
  .phr-vodafone-fields,
  .phr-checkout-premium .phr-payment-methods,
  .phr-instapay-actions,
  .phr-checkout-trust-row{
    grid-template-columns:minmax(0,1fr)!important;
  }
  .phr-payment-card{
    width:100%;
    max-width:100%;
    min-width:0!important;
  }
  .phr-vodafone-number,
  .phr-instapay-head{
    flex-wrap:wrap;
  }
  .phr-vodafone-number strong{
    font-size:18px!important;
  }
  .phr-checkout-summary-head{
    grid-template-columns:40px minmax(0,1fr) auto!important;
    padding:17px 14px 13px!important;
  }
  .phr-checkout-summary-head>b{
    max-width:72px;
    white-space:normal;
    text-align:center;
  }
  .phr-checkout-products{padding-inline:13px!important}
  .phr-checkout-premium .phr-coupon-box{margin:13px!important}
  .phr-checkout-premium .phr-coupon-box>div:not(.phr-coupon-title){
    grid-template-columns:minmax(0,1fr) 68px!important;
  }
  .phr-checkout-totals{padding-inline:15px!important}
  .phr-checkout-submit{
    margin-inline:13px!important;
    width:calc(100% - 26px)!important;
  }
  .phr-checkout-secure-note{margin-inline:13px!important}

  /* Cart card becomes a deliberate compact mobile layout. */
  .phr-cart-item{
    width:100%;
    max-width:100%;
    min-width:0;
    grid-template-columns:64px minmax(0,1fr) auto!important;
    gap:10px!important;
    padding:11px!important;
    border-radius:18px!important;
  }
  .phr-cart-item>img{
    width:64px!important;
    height:64px!important;
    grid-column:1;
    grid-row:1/3;
  }
  .phr-cart-item>div:not(.phr-cart-item-qty){grid-column:2/4;min-width:0}
  .phr-cart-item h3{font-size:15px;line-height:1.45}
  .phr-cart-item-qty{grid-column:2!important;justify-self:start;max-width:128px}
  .phr-cart-item>b{grid-column:3!important;justify-self:end;max-width:100%;font-size:13px;text-align:left}
  .phr-cart-remove{grid-column:2/4!important;width:100%;margin-top:2px}
  .phr-cart-summary{padding:18px!important;border-radius:20px!important}
}

@media(max-width:420px){
  .phr-store-checkout-shell,
  .phr-store-checkout-shell.phr-checkout-premium{
    width:calc(100% - 12px)!important;
    max-width:calc(100% - 12px)!important;
  }
  .phr-checkout-hero{padding-inline:14px!important}
  .phr-checkout-eyebrow{font-size:10px;letter-spacing:.05em}
  .phr-checkout-progress{gap:3px!important;padding:7px 5px!important}
  .phr-checkout-progress>div{font-size:9px!important}
  .phr-checkout-progress>div b{width:31px!important;height:31px!important}
  .phr-checkout-panel{padding-inline:12px!important}
  .phr-checkout-panel-head{grid-template-columns:38px minmax(0,1fr)}
  .phr-checkout-panel-icon{width:38px!important;height:38px!important}
  .phr-checkout-summary-head{grid-template-columns:36px minmax(0,1fr)!important}
  .phr-checkout-summary-head>span{width:36px!important;height:36px!important}
  .phr-checkout-summary-head>b{grid-column:2;justify-self:start;max-width:100%}
  .phr-checkout-premium .phr-coupon-box>div:not(.phr-coupon-title){grid-template-columns:1fr!important}
  .phr-checkout-premium .phr-coupon-box button{min-height:43px}

  .phr-cart-item{
    grid-template-columns:58px minmax(0,1fr)!important;
  }
  .phr-cart-item>img{width:58px!important;height:58px!important}
  .phr-cart-item>div:not(.phr-cart-item-qty){grid-column:2!important}
  .phr-cart-item-qty{grid-column:2!important}
  .phr-cart-item>b{grid-column:2!important;justify-self:start!important;text-align:right!important}
  .phr-cart-remove{grid-column:1/3!important}
  .phr-cart-item-qty button{width:32px!important}
  .phr-cart-item-qty input{width:38px!important;min-width:0!important}
}


/* ==========================================================================
   v9.25.22 — Mobile hard-lock for cart / checkout horizontal viewport drift
   ========================================================================== */
/* The previous responsive pass is now in the actually enqueued stylesheet.
   This extra layer targets phone browsers specifically and prevents any child,
   native form control, decorative pseudo element, or long value from widening
   the document beyond the physical viewport. */
body.phr-cart-page,
body.phr-checkout-page,
body.woocommerce-cart,
body.woocommerce-checkout{
  width:100%!important;
  max-width:100%!important;
  overflow-x:hidden!important;
  overscroll-behavior-x:none;
}
@supports (overflow:clip){
  body.phr-cart-page,
  body.phr-checkout-page,
  body.woocommerce-cart,
  body.woocommerce-checkout{overflow-x:clip!important}
}
body.phr-cart-page .phr-store-route-main,
body.phr-checkout-page .phr-store-route-main{
  display:block;
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  margin:0!important;
  overflow-x:hidden!important;
}
@supports (overflow:clip){
  body.phr-cart-page .phr-store-route-main,
  body.phr-checkout-page .phr-store-route-main{overflow-x:clip!important}
}

@media(max-width:767px){
  body.phr-cart-page #phr-header,
  body.phr-checkout-page #phr-header,
  body.phr-cart-page #phr-site-footer,
  body.phr-checkout-page #phr-site-footer,
  body.phr-cart-page .phr-store-route-main,
  body.phr-checkout-page .phr-store-route-main{
    max-width:100%!important;
  }

  body.phr-cart-page .phr-store-checkout-shell,
  body.phr-checkout-page .phr-store-checkout-shell,
  body.phr-checkout-page .phr-store-checkout-shell.phr-checkout-premium{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    margin-inline:0!important;
    padding-left:8px!important;
    padding-right:8px!important;
    overflow-x:hidden!important;
  }
  @supports (overflow:clip){
    body.phr-cart-page .phr-store-checkout-shell,
    body.phr-checkout-page .phr-store-checkout-shell{overflow-x:clip!important}
  }

  body.phr-cart-page .phr-store-checkout-shell *,
  body.phr-checkout-page .phr-store-checkout-shell *,
  body.phr-cart-page .phr-store-checkout-shell *::before,
  body.phr-checkout-page .phr-store-checkout-shell *::before,
  body.phr-cart-page .phr-store-checkout-shell *::after,
  body.phr-checkout-page .phr-store-checkout-shell *::after{
    box-sizing:border-box;
    max-width:100%;
  }

  body.phr-cart-page .phr-cart-layout,
  body.phr-cart-page .phr-cart-items,
  body.phr-cart-page .phr-cart-summary,
  body.phr-checkout-page .phr-checkout-grid,
  body.phr-checkout-page .phr-checkout-main,
  body.phr-checkout-page .phr-checkout-form,
  body.phr-checkout-page .phr-checkout-panel,
  body.phr-checkout-page .phr-checkout-summary,
  body.phr-checkout-page .phr-checkout-products,
  body.phr-checkout-page .phr-payment-methods,
  body.phr-checkout-page .phr-payment-card,
  body.phr-checkout-page .phr-instapay-extra,
  body.phr-checkout-page .phr-vodafone-extra{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
  }

  /* A native control must shrink with its column instead of imposing its intrinsic width. */
  body.phr-checkout-page input,
  body.phr-checkout-page select,
  body.phr-checkout-page textarea,
  body.phr-checkout-page button,
  body.phr-cart-page input,
  body.phr-cart-page button{
    min-width:0!important;
    max-width:100%!important;
  }
  body.phr-checkout-page input[type="file"]{
    width:100%!important;
    font-size:12px!important;
    overflow:hidden;
  }
  body.phr-checkout-page input[type="file"]::file-selector-button{
    max-width:46%;
    white-space:normal;
  }

  /* Decorative layers stay visual only and can never extend the mobile canvas. */
  body.phr-cart-page .phr-store-checkout-shell::before,
  body.phr-cart-page .phr-store-checkout-shell::after,
  body.phr-checkout-page .phr-store-checkout-shell::before,
  body.phr-checkout-page .phr-store-checkout-shell::after,
  body.phr-cart-page .phr-cart-layout::before,
  body.phr-checkout-page .phr-checkout-grid::before,
  body.phr-checkout-page .phr-checkout-premium::before,
  body.phr-checkout-page .phr-checkout-premium::after{
    max-width:100%!important;
    pointer-events:none!important;
  }

  body.phr-cart-page .phr-cart-summary>div,
  body.phr-checkout-page .phr-checkout-subtotal,
  body.phr-checkout-page .phr-checkout-discount,
  body.phr-checkout-page .phr-checkout-total{
    min-width:0;
    gap:8px 12px;
    flex-wrap:wrap;
  }
  body.phr-cart-page .phr-cart-summary>div>*,
  body.phr-checkout-page .phr-checkout-subtotal>*,
  body.phr-checkout-page .phr-checkout-discount>*,
  body.phr-checkout-page .phr-checkout-total>*{
    min-width:0;
    overflow-wrap:anywhere;
  }

  body.phr-checkout-page .phr-vodafone-number,
  body.phr-checkout-page .phr-instapay-head,
  body.phr-checkout-page .phr-instapay-open,
  body.phr-checkout-page .phr-checkout-secure-note{
    min-width:0;
    max-width:100%;
    flex-wrap:wrap;
  }
  body.phr-checkout-page .phr-instapay-account{
    grid-template-columns:minmax(0,1fr)!important;
  }
  body.phr-checkout-page .phr-instapay-account button{
    justify-self:start;
  }
}

@media(max-width:480px){
  body.phr-cart-page .phr-store-checkout-shell,
  body.phr-checkout-page .phr-store-checkout-shell{
    padding-left:6px!important;
    padding-right:6px!important;
  }

  /* Checkout product rows: put the price below the copy on narrow phones so
     the image + title + a long price can never force a third wide column. */
  body.phr-checkout-page .phr-checkout-premium .phr-checkout-line{
    grid-template-columns:48px minmax(0,1fr)!important;
    gap:8px!important;
  }
  body.phr-checkout-page .phr-checkout-line img,
  body.phr-checkout-page .phr-checkout-item-placeholder{
    width:48px!important;
    height:48px!important;
  }
  body.phr-checkout-page .phr-checkout-line>b{
    grid-column:2!important;
    justify-self:start;
    white-space:normal!important;
    text-align:right;
  }
  body.phr-checkout-page .phr-checkout-item-copy strong{
    white-space:normal!important;
    overflow:visible!important;
    text-overflow:clip!important;
    overflow-wrap:anywhere;
  }

  body.phr-checkout-page .phr-checkout-summary-head{
    grid-template-columns:36px minmax(0,1fr)!important;
  }
  body.phr-checkout-page .phr-checkout-summary-head>b{
    grid-column:2!important;
    justify-self:start;
  }
  body.phr-checkout-page .phr-checkout-submit{
    gap:10px;
    white-space:normal!important;
  }

  /* Standard WooCommerce fallback, if the theme route is ever used. */
  body.woocommerce-cart .woocommerce,
  body.woocommerce-checkout .woocommerce,
  body.woocommerce-cart form,
  body.woocommerce-checkout form,
  body.woocommerce-cart table,
  body.woocommerce-checkout table{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
  }
  body.woocommerce-cart .woocommerce table.shop_table,
  body.woocommerce-checkout .woocommerce table.shop_table{
    table-layout:fixed;
  }
}


/* v9.25.26 — image advertising strip: multiple banner ads side by side */
.phr-platform-ad-banner-strip{display:grid;grid-auto-flow:column;gap:16px;margin:0 0 22px;padding:2px 1px 10px;overflow-x:auto;overflow-y:hidden;overscroll-behavior-inline:contain;scroll-snap-type:x proximity;scrollbar-width:thin;scrollbar-color:rgba(227,6,46,.34) transparent}
.phr-platform-ad-banner-strip.is-count-1{grid-auto-columns:100%}.phr-platform-ad-banner-strip.is-count-2{grid-auto-columns:calc((100% - 16px)/2)}.phr-platform-ad-banner-strip.is-count-3plus{grid-auto-columns:calc((100% - 32px)/3)}
.phr-platform-ad-banner-strip::-webkit-scrollbar{height:5px}.phr-platform-ad-banner-strip::-webkit-scrollbar-track{background:transparent}.phr-platform-ad-banner-strip::-webkit-scrollbar-thumb{border-radius:99px;background:linear-gradient(90deg,var(--phr-ads-dark,#120e10),var(--phr-ads-accent,#e3062e))}
.phr-platform-ad-banner{position:relative;display:block;min-width:0;overflow:hidden;border:1px solid var(--phr-ads-border,#f1d7de);border-radius:22px;background:#171013;text-decoration:none!important;color:#fff!important;box-shadow:0 15px 38px rgba(31,14,19,.09);scroll-snap-align:start;isolation:isolate}
.phr-platform-ad-banner-media{position:relative;aspect-ratio:16/6;min-height:155px;overflow:hidden;background:linear-gradient(135deg,#23171b,#e3062e)}
.phr-platform-ad-banner-media:after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(9,6,7,.02) 30%,rgba(9,6,7,.82) 100%);pointer-events:none}
.phr-platform-ad-banner-media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .45s ease,filter .45s ease}.phr-platform-ad-banner:hover .phr-platform-ad-banner-media img{transform:scale(1.035);filter:saturate(1.04)}
.phr-platform-ad-banner-placeholder{display:grid;place-items:center;width:100%;height:100%;min-height:155px;color:rgba(255,255,255,.72);font-size:48px;font-weight:900;letter-spacing:2px}
.phr-platform-ad-banner-badge{position:absolute;z-index:3;top:12px;right:12px;display:inline-flex;align-items:center;min-height:28px;padding:0 10px;border-radius:999px;background:rgba(227,6,46,.94);color:#fff;font-size:9px;font-weight:900;box-shadow:0 7px 18px rgba(227,6,46,.2)}
.phr-platform-ad-banner-overlay{position:absolute;z-index:3;right:0;left:0;bottom:0;display:flex;align-items:flex-end;justify-content:space-between;gap:12px;padding:18px 17px 15px;color:#fff}.phr-platform-ad-banner-copy{display:grid;min-width:0;gap:2px}.phr-platform-ad-banner-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#ffb4c1;font-size:9px;font-weight:800}.phr-platform-ad-banner-copy strong{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#fff;font-size:16px;font-weight:900;line-height:1.35;text-shadow:0 2px 12px rgba(0,0,0,.28)}
.phr-platform-ad-banner-overlay>b{display:inline-flex;align-items:center;gap:7px;flex:0 0 auto;padding:8px 10px;border:1px solid rgba(255,255,255,.15);border-radius:10px;background:rgba(255,255,255,.12);backdrop-filter:blur(8px);color:#fff;font-size:9px;font-weight:900;white-space:nowrap}.phr-platform-ad-banner-overlay>b i{font-style:normal;color:#ff3153}
@media(max-width:1000px){.phr-platform-ad-banner-strip.is-count-2,.phr-platform-ad-banner-strip.is-count-3plus{grid-auto-columns:calc((100% - 14px)/2);gap:14px}}
@media(max-width:620px){.phr-platform-ad-banner-strip,.phr-platform-ad-banner-strip.is-count-1,.phr-platform-ad-banner-strip.is-count-2,.phr-platform-ad-banner-strip.is-count-3plus{grid-auto-columns:min(86vw,360px);gap:11px;margin-bottom:18px;padding-bottom:8px}.phr-platform-ad-banner-strip.is-count-1{grid-auto-columns:100%}.phr-platform-ad-banner{border-radius:17px}.phr-platform-ad-banner-media{min-height:130px;aspect-ratio:16/7}.phr-platform-ad-banner-placeholder{min-height:130px;font-size:38px}.phr-platform-ad-banner-overlay{padding:15px 13px 12px}.phr-platform-ad-banner-copy strong{font-size:14px}.phr-platform-ad-banner-overlay>b{padding:7px 8px;font-size:8px}.phr-platform-ad-banner-badge{top:9px;right:9px;min-height:24px;padding:0 8px;font-size:8px}}
@media(prefers-reduced-motion:reduce){.phr-platform-ad-banner-media img{transition:none}}

/* v9.25.27 — paid consultation workflow */
.phr-consult-fields select{width:100%;height:50px;border:1px solid var(--phr-consult-border,#e4e4e7);background:#fbfbfc;color:#20171b;border-radius:14px;padding:0 14px;font:700 13px/1.7 inherit;outline:none;transition:border-color .18s,box-shadow .18s,background .18s}
.phr-consult-fields select:focus{background:#fff;border-color:rgba(227,6,46,.48);box-shadow:0 0 0 4px rgba(227,6,46,.065)}
.phr-consult-type-field>small{display:block;margin-top:8px;color:#8b7d82;font-size:10px;line-height:1.7}
.phr-consult-payment-host:empty{display:none}.phr-consult-payment-host{margin:0 0 22px}
.phr-consult-payment-box{border:1px solid #eadde1;border-radius:20px;background:#fff;overflow:hidden;box-shadow:0 16px 40px rgba(28,18,22,.06)}
.phr-consult-payment-box.is-approved,.phr-consult-payment-box.is-review{display:flex;align-items:flex-start;gap:13px;padding:18px}.phr-consult-payment-box.is-approved>span,.phr-consult-payment-box.is-review>span{width:42px;height:42px;border-radius:13px;display:grid;place-items:center;flex:0 0 42px;font-weight:900}.phr-consult-payment-box.is-approved>span{background:#eaf8f0;color:#13804a}.phr-consult-payment-box.is-review>span{background:#fff4df;color:#a86d00}.phr-consult-payment-box.is-approved strong,.phr-consult-payment-box.is-review strong{display:block;font-size:14px;color:#2a2024}.phr-consult-payment-box.is-approved p,.phr-consult-payment-box.is-review p{margin:5px 0 0;color:#796c71;line-height:1.75;font-size:11px}
.phr-consult-payment-head{padding:20px 20px 15px;background:linear-gradient(135deg,#171217,#360b14);color:#fff}.phr-consult-payment-head>span{font-size:9px;letter-spacing:1.4px;color:#ff8ca0;font-weight:900}.phr-consult-payment-head h3{margin:5px 0 7px;color:#fff;font-size:19px}.phr-consult-payment-head p{margin:0;color:#dfd2d6;font-size:11px}.phr-consult-payment-head p b{color:#fff}
.phr-consult-pay-methods{display:grid;grid-template-columns:1fr 1fr;gap:10px;padding:15px 15px 0}.phr-consult-pay-methods label{position:relative;display:block;cursor:pointer}.phr-consult-pay-methods input{position:absolute;opacity:0;pointer-events:none}.phr-consult-pay-methods label>span{display:block;min-height:92px;border:1px solid #e7dfe2;border-radius:15px;padding:13px;background:#fafafa;transition:.2s ease}.phr-consult-pay-methods input:checked+span{border-color:#d5001c;background:#fff5f7;box-shadow:0 0 0 3px rgba(213,0,28,.06)}.phr-consult-pay-methods b,.phr-consult-pay-methods strong{display:block}.phr-consult-pay-methods b{font-size:10px;color:#8e7d83}.phr-consult-pay-methods strong{font-size:13px;color:#281d22;margin-top:5px;word-break:break-word}.phr-consult-pay-methods a{display:inline-block;margin-top:8px;color:#d5001c;text-decoration:none;font-size:10px;font-weight:900}
.phr-consult-payment-form{padding:15px 15px 18px}.phr-consult-payment-form label{display:block;margin-bottom:11px}.phr-consult-payment-form label>span{display:block;margin-bottom:7px;color:#24191d;font-size:10px;font-weight:900}.phr-consult-payment-form input[type=text],.phr-consult-payment-form input[type=file]{width:100%;border:1px solid #e5dde0;background:#fbfbfc;border-radius:13px;padding:11px 12px;font:600 12px/1.7 inherit;box-sizing:border-box}.phr-consult-payment-form input[type=text]:focus{outline:none;border-color:#d5001c;box-shadow:0 0 0 3px rgba(213,0,28,.06)}.phr-consult-payment-form .is-proof small{display:block;color:#92858a;margin-top:6px;font-size:9px}.phr-consult-payment-form button{width:100%;min-height:48px;border:0;border-radius:13px;background:linear-gradient(135deg,#d5001c,#a80020);color:#fff;font:900 12px/1.4 inherit;cursor:pointer;box-shadow:0 10px 24px rgba(213,0,28,.17)}.phr-consult-payment-form button:disabled{opacity:.65;cursor:wait}.phr-consult-payment-response{margin-top:9px;font-size:10px;font-weight:800;color:#7c6c72}.phr-consult-payment-response.is-error{color:#a10e27;background:#fff0f3;padding:9px 10px;border-radius:10px}.phr-consult-payment-done{display:flex;gap:12px;align-items:flex-start;padding:18px}.phr-consult-payment-done>span{width:42px;height:42px;display:grid;place-items:center;border-radius:13px;background:#eaf8f0;color:#13804a;font-weight:900}.phr-consult-payment-done strong{display:block;color:#251b1f}.phr-consult-payment-done p{margin:5px 0 0;color:#766a6f;font-size:11px;line-height:1.75}
@media(max-width:640px){.phr-consult-pay-methods{grid-template-columns:1fr}.phr-consult-payment-head{padding:17px 15px}.phr-consult-payment-head h3{font-size:17px}.phr-consult-payment-form{padding:13px}.phr-consult-payment-box{border-radius:17px}}


/* v9.25.28 — consultation duration selector (pricing stays private) */
.phr-consult-duration-field[hidden]{display:none!important}
.phr-consult-duration-field{animation:phrConsultDurationIn .28s ease both}
.phr-consult-duration-field select{font-family:Tajawal,Arial,sans-serif!important}
.phr-consult-duration-field small{color:#8c7d83!important}
@keyframes phrConsultDurationIn{from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:none}}
@media(prefers-reduced-motion:reduce){.phr-consult-duration-field{animation:none}}

/* v9.25.29 — consultation WhatsApp field */
.phr-consult-fields label>small{display:block;margin-top:6px;color:var(--phr-consult-desc,#8f8185);font-size:10px;line-height:1.65}

/* v9.25.30/v9.25.32/v9.25.33 — product availability partner logos above the WhatsApp order bar */
.phr-product-order-partner-logos{display:flex;align-items:center;justify-content:flex-start;gap:14px;margin-top:24px;margin-bottom:-8px;padding:2px;flex-wrap:wrap}
.phr-product-order-partner-logo{position:relative;isolation:isolate;display:flex;align-items:center;justify-content:center;width:var(--phr-partner-logo-w,190px);height:var(--phr-partner-logo-h,90px);max-width:100%;padding:10px 14px;border:1.5px solid rgba(38,27,32,.12);border-radius:18px;background:linear-gradient(145deg,#fff 0%,#fffafa 100%);box-shadow:0 10px 25px rgba(35,24,29,.08),inset 0 1px 0 rgba(255,255,255,.95);overflow:hidden;transition:transform .28s cubic-bezier(.2,.75,.25,1),border-color .28s ease,box-shadow .28s ease,background .28s ease}
.phr-product-order-partner-logo::after{content:"";position:absolute;inset:0;border-radius:inherit;box-shadow:inset 0 0 0 1px rgba(255,255,255,.58);pointer-events:none;z-index:3}
.phr-product-order-partner-logo-shine{position:absolute;z-index:1;top:-45%;bottom:-45%;left:-65%;width:42%;background:linear-gradient(105deg,transparent 0%,rgba(255,255,255,.18) 25%,rgba(255,255,255,.88) 50%,rgba(255,255,255,.16) 74%,transparent 100%);transform:skewX(-18deg);opacity:0;pointer-events:none}
.phr-product-order-partner-logo img{position:relative;z-index:2;display:block;max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;filter:saturate(.98) contrast(1.02);transition:transform .28s ease,filter .28s ease}
@media(hover:hover) and (pointer:fine){.phr-product-order-partner-logo:hover{transform:translateY(-5px) scale(1.025);border-color:rgba(227,6,46,.48);background:linear-gradient(145deg,#fff 0%,#fff5f6 100%);box-shadow:0 18px 36px rgba(35,24,29,.14),0 7px 20px rgba(227,6,46,.12)}.phr-product-order-partner-logo:hover img{transform:scale(1.045);filter:saturate(1.08) contrast(1.04)}.phr-product-order-partner-logo:hover .phr-product-order-partner-logo-shine{opacity:1;animation:phrPartnerLogoShine .78s ease both}}
@keyframes phrPartnerLogoShine{from{left:-65%}to{left:125%}}
.phr-product-feature-whatsapp-number{display:inline-flex;align-items:center;gap:5px;margin-inline:4px;color:#159447!important;font-weight:950!important;text-decoration:none!important;direction:ltr;unicode-bidi:isolate;border-bottom:1px dashed rgba(21,148,71,.38);transition:color .18s ease,border-color .18s ease}
.phr-product-feature-whatsapp-number:hover{color:#0f7c3b!important;border-bottom-color:#0f7c3b}
.phr-product-feature-whatsapp-number span{font-size:.8em;line-height:1}
.phr-product-feature-call.is-whatsapp .phr-product-feature-call-icon svg{fill:none;stroke:#fff;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.phr-product-feature-call.is-whatsapp .phr-product-feature-call-action{background:linear-gradient(135deg,#e3062e,#ff3150);border-color:rgba(255,255,255,.12);box-shadow:0 8px 18px rgba(227,6,46,.2)}
@media(max-width:680px){.phr-product-order-partner-logos{gap:10px;margin-top:18px;margin-bottom:-6px}.phr-product-order-partner-logo{max-width:100%;padding:8px 10px;border-radius:15px}.phr-product-feature-whatsapp-number{gap:4px;margin-inline:2px}}

/* v9.25.36 — bank transfer detail inside consultation payment cards */
.phr-consult-pay-methods small{display:block;margin-top:5px;color:#7f7076;font-size:10px;line-height:1.6;word-break:break-word}

/* v9.25.37 — compact moving advertising widget */
/* v9.25.40 — RTL visual start: keep the first/single mini ad directly under the Arabic heading on the right. */
.phr-mini-ads{position:relative;width:100%;max-width:100%;overflow:hidden;padding:16px;border:1px solid color-mix(in srgb,var(--phr-mini-accent,#e3062e) 12%,#ddd);border-radius:calc(var(--phr-mini-radius,20px) + 4px);background:linear-gradient(135deg,var(--phr-mini-bg,#f6f6f6),#fff);font-family:'Tajawal',Tahoma,Arial,sans-serif;color:var(--phr-mini-title,#171113);box-shadow:0 10px 32px rgba(28,15,20,.055);isolation:isolate}.phr-mini-ads:before{content:"";position:absolute;inset:-60% auto auto -10%;width:220px;height:220px;border-radius:50%;background:radial-gradient(circle,color-mix(in srgb,var(--phr-mini-accent,#e3062e) 13%,transparent),transparent 68%);pointer-events:none;z-index:0}.phr-mini-ads *{box-sizing:border-box}.phr-mini-ads-head{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:16px;margin:0 0 12px}.phr-mini-ads-head>div:first-child{min-width:0}.phr-mini-ads-head span{display:block;margin-bottom:2px;color:var(--phr-mini-accent,#e3062e);font-size:9px;font-weight:900}.phr-mini-ads-head h3{margin:0;color:var(--phr-mini-title,#171113);font-size:18px;line-height:1.25;font-weight:900}.phr-mini-ads-arrows{display:flex;align-items:center;gap:6px;flex:0 0 auto}.phr-mini-ads-arrows.is-floating{position:absolute;z-index:7;top:9px;left:9px}.phr-mini-ads-arrows button{display:grid;place-items:center;width:34px;height:34px;padding:0;border:1px solid #eadfe2;border-radius:11px;background:#fff;color:#211619;font:900 20px/1 Arial;cursor:pointer;box-shadow:0 6px 15px rgba(27,12,17,.06);transition:transform .2s ease,border-color .2s ease,color .2s ease,background .2s ease}.phr-mini-ads-arrows button:hover{transform:translateY(-2px);border-color:var(--phr-mini-accent,#e3062e);background:var(--phr-mini-accent,#e3062e);color:#fff}.phr-mini-ads-viewport{position:relative;z-index:2;width:100%;max-width:100%;overflow-x:auto;overflow-y:hidden;direction:ltr;scroll-snap-type:x mandatory;scrollbar-width:none;-ms-overflow-style:none;overscroll-behavior-inline:contain;scroll-behavior:smooth}.phr-mini-ads-viewport::-webkit-scrollbar{display:none}.phr-mini-ads-viewport:focus-visible{outline:2px solid var(--phr-mini-accent,#e3062e);outline-offset:3px;border-radius:var(--phr-mini-radius,20px)}.phr-mini-ads-track{display:flex;align-items:stretch;justify-content:flex-end;gap:var(--phr-mini-gap,14px);width:max-content;min-width:100%}.phr-mini-ad-card{position:relative;direction:rtl;flex:0 0 min(var(--phr-mini-card-width,330px),calc(100vw - 52px));width:min(var(--phr-mini-card-width,330px),calc(100vw - 52px));min-height:var(--phr-mini-card-height,154px);display:grid;grid-template-columns:min(var(--phr-mini-image-width,112px),42%) minmax(0,1fr);overflow:hidden;scroll-snap-align:start;border:1px solid #eee4e6;border-radius:var(--phr-mini-radius,20px);background:var(--phr-mini-card-bg,#fff);box-shadow:0 10px 28px rgba(28,14,19,.065);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease}.phr-mini-ad-card:hover{transform:translateY(-3px);border-color:color-mix(in srgb,var(--phr-mini-accent,#e3062e) 42%,#eee);box-shadow:0 16px 35px rgba(28,14,19,.11)}.phr-mini-ad-card:after{content:"";position:absolute;inset:-50% auto -50% -35%;width:20%;transform:rotate(18deg);background:linear-gradient(90deg,transparent,rgba(255,255,255,.75),transparent);opacity:0;pointer-events:none}.phr-mini-ad-card:hover:after{animation:phrMiniAdsShine .8s ease}@keyframes phrMiniAdsShine{0%{left:-35%;opacity:0}25%{opacity:.7}100%{left:115%;opacity:0}}.phr-mini-ad-media{display:block;min-width:0;min-height:var(--phr-mini-card-height,154px);background:#f0ebed;overflow:hidden;text-decoration:none!important}.phr-mini-ad-media img{width:100%;height:100%;min-height:var(--phr-mini-card-height,154px);display:block;object-fit:cover;transition:transform .35s ease}.phr-mini-ad-card:hover .phr-mini-ad-media img{transform:scale(1.045)}.phr-mini-ad-media.is-placeholder{display:grid;place-items:center;background:linear-gradient(145deg,#181113,#e3062e);color:#fff;font-size:25px;font-weight:900}.phr-mini-ad-copy{position:relative;z-index:2;display:flex;flex-direction:column;justify-content:center;min-width:0;padding:14px 14px 13px}.phr-mini-ad-meta{display:flex;align-items:center;gap:7px;min-width:0;margin-bottom:5px}.phr-mini-ad-badge{display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;padding:4px 7px;border-radius:999px;background:var(--phr-mini-accent,#e3062e);color:#fff;font-size:8px;font-weight:900}.phr-mini-ad-meta small{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#99888d;font-size:8.5px;font-weight:800}.phr-mini-ad-copy h4{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin:0 0 4px;color:var(--phr-mini-title,#171113);font-size:14px;line-height:1.45;font-weight:900}.phr-mini-ad-copy p{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin:0;color:var(--phr-mini-text,#75676c);font-size:9.5px;line-height:1.65;font-weight:600}.phr-mini-ad-actions{display:flex;align-items:center;flex-wrap:wrap;gap:5px;margin-top:9px}.phr-mini-ad-actions a{display:inline-flex;align-items:center;justify-content:center;max-width:100%;padding:6px 8px;border:1px solid #eadfe2;border-radius:8px;background:#fff;color:#25191d!important;text-decoration:none!important;font-size:8.5px;font-weight:900;white-space:nowrap}.phr-mini-ad-actions a.is-primary{border-color:var(--phr-mini-accent,#e3062e);background:var(--phr-mini-accent,#e3062e);color:#fff!important}.phr-mini-ad-card.is-empty{grid-template-columns:1fr;min-width:min(440px,100%)}.phr-mini-ad-card.is-empty .phr-mini-ad-copy{min-height:138px}.phr-mini-ads-progress{position:relative;z-index:2;height:3px;margin-top:11px;overflow:hidden;border-radius:999px;background:#eadfe2}.phr-mini-ads-progress i{display:block;width:34%;height:100%;border-radius:inherit;background:linear-gradient(90deg,#171113,var(--phr-mini-accent,#e3062e));transform:translateX(0);transition:transform .35s ease,width .35s ease}
@media(max-width:767px){.phr-mini-ads{padding:11px;border-radius:18px}.phr-mini-ads-head{margin-bottom:9px}.phr-mini-ads-head h3{font-size:15px}.phr-mini-ads-arrows button{width:31px;height:31px;border-radius:10px}.phr-mini-ad-card{flex-basis:min(var(--phr-mini-card-width,278px),calc(100vw - 38px));width:min(var(--phr-mini-card-width,278px),calc(100vw - 38px));min-height:128px;grid-template-columns:min(92px,35%) minmax(0,1fr);border-radius:16px}.phr-mini-ad-media,.phr-mini-ad-media img{min-height:128px}.phr-mini-ad-copy{padding:11px 10px}.phr-mini-ad-copy h4{font-size:12px}.phr-mini-ad-copy p{font-size:8.5px}.phr-mini-ad-actions{margin-top:7px}.phr-mini-ad-actions a{font-size:8px;padding:5px 7px}}
@media(prefers-reduced-motion:reduce){.phr-mini-ad-card,.phr-mini-ad-media img,.phr-mini-ads-viewport{transition:none!important;scroll-behavior:auto!important}.phr-mini-ad-card:hover:after{animation:none!important}}
