/* =========================================================
   company_index.jsp ? unique styles (ci- prefix)
   Company website homepage look (not admin card stack).
   ========================================================= */

.ci-page-body {
  min-height: 100vh;
  background: #f7f5f9;
  color: #1a1520;
}

/* Public web top menu from homepage_header_new.jsp */
.ci-menu-root,
#menu_root {
  position: relative;
  z-index: 10050;
}

#menu_root nav,
#menu_root .ci-web-topnav,
.ci-web-topnav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10050 !important;
}

/* Mirror nav spacer for pages that load officeWeb_new.css */
.hhn-nav-spacer {
  display: block;
  width: 100%;
  height: 3.25rem;
  min-height: 3.25rem;
  padding: 0 !important;
  margin: 0;
  border: 0;
  flex-shrink: 0;
  pointer-events: none;
  visibility: hidden;
}

@media (max-width: 1023px) {
  .hhn-nav-spacer {
    height: 4.5rem;
    min-height: 4.5rem;
  }
}

@media (max-width: 479px) {
  .hhn-nav-spacer {
    height: 4.75rem;
    min-height: 4.75rem;
  }
}

.ci-site {
  width: 100%;
  padding-bottom: 5.5rem;
}

.ci-container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ---------- Full-bleed hero ---------- */
.ci-hero {
  position: relative;
  width: 100%;
  min-height: min(72vh, 34rem);
  background: linear-gradient(135deg, #2a0f3a 0%, #5b1a62 42%, #7c3aed 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .ci-hero {
    min-height: min(78vh, 40rem);
  }
}

.ci-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.ci-hero-glow-1 {
  width: 22rem;
  height: 22rem;
  top: -6rem;
  right: -4rem;
  background: rgba(225, 29, 72, 0.28);
}

.ci-hero-glow-2 {
  width: 18rem;
  height: 18rem;
  bottom: -5rem;
  left: -3rem;
  background: rgba(147, 51, 234, 0.35);
}

.ci-carousel {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  min-height: 100%;
}

.ci-carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.ci-carousel-inner .item {
  display: none;
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.ci-carousel-inner .item.active,
.ci-carousel-inner .item.ci-slide-active {
  display: block;
}

.ci-carousel-inner .item .fill {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ci-carousel-inner .item .fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 10, 40, 0.25) 0%,
    rgba(26, 10, 40, 0.45) 45%,
    rgba(26, 10, 40, 0.88) 100%
  );
}

.ci-carousel-inner .item > div:not(.fill) {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5.5rem;
  z-index: 3;
  padding: 0 1.25rem;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background: none;
}

@media (min-width: 768px) {
  .ci-carousel-inner .item > div:not(.fill) {
    left: max(1.5rem, calc((100% - 1120px) / 2));
    right: auto;
    margin: 0;
    text-align: left;
    bottom: 6.5rem;
    padding: 0;
  }
}

.ci-carousel-inner .item h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ci-carousel-inner .item a {
  color: #fce7f3;
  font-weight: 600;
  text-decoration: none;
}

.ci-carousel-inner .item a:hover {
  color: #fff;
  text-decoration: underline;
}

.ci-carousel-indicators {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.15rem;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ci-carousel-indicators li {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.ci-carousel-indicators li.active,
.ci-carousel-indicators li.ci-dot-active {
  background: #fff;
  width: 1.35rem;
  border-radius: 999px;
}

.ci-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ci-carousel-control:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.05);
}

.ci-carousel-control.ci-prev {
  left: 0.85rem;
}

.ci-carousel-control.ci-next {
  right: 0.85rem;
}

.ci-carousel--empty {
  display: block;
}

.ci-carousel-empty-msg {
  display: none;
}

.ci-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 2.5rem 0 3.25rem;
  background: linear-gradient(transparent, rgba(15, 8, 24, 0.82));
  pointer-events: none;
}

.ci-hero-content .ci-container {
  pointer-events: auto;
}

.ci-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ci-welcome-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.ci-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ci-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ci-hero-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #d0153f, #e11d48, #7c3aed);
  box-shadow: 0 10px 28px rgba(208, 21, 63, 0.35);
}

.ci-hero-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(208, 21, 63, 0.42);
}

.ci-hero-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ci-hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ---------- Website sections ---------- */
.ci-section {
  padding: 3.25rem 0;
}

@media (min-width: 768px) {
  .ci-section {
    padding: 4.25rem 0;
  }
}

.ci-section-alt {
  background: #fff;
}

.ci-section-soft {
  background: linear-gradient(180deg, #f7f5f9 0%, #efeaf7 100%);
}

.ci-section-dark {
  background: linear-gradient(135deg, #1a1024 0%, #2d1540 55%, #3b1760 100%);
  color: #e8e4ec;
}

.ci-section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.ci-section-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3aed;
}

.ci-section-dark .ci-section-label {
  color: #e9d5ff;
}

.ci-section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1a1520;
  letter-spacing: -0.02em;
  line-height: 1.2;
  border: none;
  padding: 0;
}

.ci-section-dark .ci-section-title {
  color: #fff;
}

.ci-section-lead {
  margin: 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.65;
}

.ci-section-dark .ci-section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.ci-about-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .ci-about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.ci-about-body {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
}

.ci-about-body p {
  margin: 0 0 1rem;
}

.ci-about-aside {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, #5b1a62 0%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(91, 26, 98, 0.28);
}

.ci-about-aside h3 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.ci-about-aside p {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.ci-about-aside-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.ci-about-aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.ci-about-aside-list i {
  margin-top: 0.15rem;
  color: #fda4af;
}

/* Map */
.ci-map-shell {
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid #e8e4ec;
  background: #fff;
  box-shadow: 0 16px 40px rgba(91, 26, 98, 0.1);
}

.ci-map-wrap {
  width: 100%;
  min-height: 16rem;
  background: #f1f5f9;
}

.ci-map-wrap iframe {
  width: 100% !important;
  max-width: 100%;
  height: 320px !important;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .ci-map-wrap iframe {
    height: 420px !important;
  }
}

/* Contact */
.ci-contact-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .ci-contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.ci-contact-block {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.ci-contact-block h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ci-contact-block h3 i {
  color: #f9a8d4;
}

.ci-contact-block address {
  font-style: normal;
}

.ci-contact-block a {
  color: #fce7f3;
  text-decoration: none;
}

.ci-contact-block a:hover {
  text-decoration: underline;
}

/* Feedback CTA band */
.ci-cta-band {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid #e8e4ec;
  box-shadow: 0 14px 36px rgba(91, 26, 98, 0.08);
}

@media (min-width: 768px) {
  .ci-cta-band {
    flex-direction: row;
    align-items: center;
    padding: 2rem 2.25rem;
  }
}

.ci-cta-band-copy h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1520;
}

.ci-cta-band-copy p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}

.ci-feedback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(135deg, #d0153f, #e11d48, #7c3aed);
  box-shadow: 0 8px 24px rgba(208, 21, 63, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ci-feedback-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(208, 21, 63, 0.36);
}

/* Site footer strip */
.ci-site-footer {
  padding: 1.25rem 0 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.8125rem;
}

/* Floating enquiry */
.ci-enquiry-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #5b1a62);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ci-enquiry-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 32px rgba(91, 26, 98, 0.4);
}

@media (max-width: 480px) {
  .ci-enquiry-btn {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    justify-content: center;
    font-size: 0;
    line-height: 0;
  }

  .ci-enquiry-btn i {
    font-size: 1.2rem;
    line-height: 1;
  }
}

/* ---------- Responsive polish: mobile / tablet / desktop ---------- */
html.ci-page-html,
body.ci-page-body {
  overflow-x: hidden;
  max-width: 100%;
}

body.ci-page-body.ci-nav-lock {
  overflow: hidden;
}

.ci-site {
  overflow-x: hidden;
  max-width: 100%;
}

.ci-container {
  width: min(1120px, calc(100% - 1.5rem));
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .ci-container {
    width: min(1120px, calc(100% - 2rem));
  }
}

@media (min-width: 1024px) {
  .ci-container {
    width: min(1120px, calc(100% - 2.5rem));
  }
}

/* Top nav ? page-local mobile drawer (does not change displaymenu source) */
.ci-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 2;
}

.ci-nav-toggle:hover,
.ci-nav-toggle:focus {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

@media (max-width: 1023px) {
  .ci-web-topnav .ci-nav-bar,
  #menu_root nav.ci-web-topnav > div {
    flex-wrap: wrap !important;
    align-items: center !important;
    height: auto !important;
    min-height: 3rem;
    padding: 0.55rem 0.85rem !important;
    gap: 0.35rem 0.75rem;
  }

  .ci-web-topnav .ci-nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .ci-web-topnav .ci-nav-brand-group {
    display: flex !important;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.5rem !important;
    order: 1;
  }

  .ci-web-topnav:not(.ci-nav-open) .ci-nav-brand-group > ul,
  .ci-web-topnav:not(.ci-nav-open) .ci-nav-secondary {
    display: none !important;
  }

  .ci-web-topnav.ci-nav-open .ci-nav-brand-group {
    flex-wrap: wrap;
    max-width: calc(100% - 3.25rem);
  }

  .ci-web-topnav.ci-nav-open .ci-nav-brand-group > ul,
  .ci-web-topnav.ci-nav-open .ci-nav-secondary {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    flex: 1 1 100%;
    gap: 0.15rem !important;
    margin: 0 !important;
    padding: 0.45rem 0 0.35rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ci-web-topnav.ci-nav-open .ci-nav-secondary {
    order: 5;
    max-width: 100%;
  }

  .ci-web-topnav.ci-nav-open li,
  .ci-web-topnav.ci-nav-open .dropdown {
    width: 100%;
  }

  .ci-web-topnav.ci-nav-open a,
  .ci-web-topnav.ci-nav-open button {
    width: 100%;
    justify-content: flex-start !important;
    text-align: left;
    padding: 0.65rem 0.35rem;
  }

  .ci-web-topnav.ci-nav-open .dropdown-menu {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0.15rem 0 0.35rem !important;
    box-shadow: none;
  }

  .ci-web-topnav.ci-nav-open .dropdown:hover > .dropdown-menu,
  .ci-web-topnav.ci-nav-open .dropdown.ci-dropdown-open > .dropdown-menu,
  .ci-web-topnav.ci-nav-open #signinDropdown:not(.hidden) {
    display: block !important;
  }
}

@media (min-width: 1024px) {
  .ci-web-topnav.ci-nav-open .ci-nav-brand-group > ul,
  .ci-web-topnav.ci-nav-open .ci-nav-secondary {
    display: flex !important;
  }

  body.ci-page-body.ci-nav-lock {
    overflow: auto;
  }
}

/* Hero / carousel */
@media (max-width: 767px) {
  .ci-hero {
    min-height: min(68vh, 30rem);
  }

  .ci-hero-content {
    padding: 1.35rem 0 2.15rem;
  }

  .ci-welcome-title {
    font-size: clamp(1.45rem, 7vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .ci-hero-kicker {
    font-size: 0.68rem;
    padding: 0.3rem 0.65rem;
  }

  .ci-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ci-hero-btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .ci-carousel-inner .item > div:not(.fill) {
    bottom: 7.5rem;
    padding: 0 1rem;
    max-width: 100%;
  }

  .ci-carousel-control {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.15rem;
  }

  .ci-carousel-control.ci-prev {
    left: 0.5rem;
  }

  .ci-carousel-control.ci-next {
    right: 0.5rem;
  }

  .ci-carousel-indicators {
    bottom: 0.75rem;
  }
}

@media (max-width: 479px) {
  .ci-carousel-inner .item > div:not(.fill) {
    display: none;
  }

  .ci-hero {
    min-height: 26.5rem;
  }

  .ci-hero-glow-1,
  .ci-hero-glow-2 {
    width: 14rem;
    height: 14rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ci-hero {
    min-height: min(70vh, 36rem);
  }

  .ci-hero-content {
    padding: 2rem 0 2.75rem;
  }
}

/* Sections */
@media (max-width: 639px) {
  .ci-section {
    padding: 2.35rem 0;
  }

  .ci-section-head {
    margin-bottom: 1.25rem;
  }

  .ci-about-aside {
    padding: 1.25rem;
    border-radius: 1rem;
  }

  .ci-contact-block {
    padding: 1.15rem 1rem;
  }

  .ci-cta-band {
    padding: 1.35rem 1.15rem;
    border-radius: 1rem;
  }

  .ci-feedback-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .ci-map-wrap {
    min-height: 14rem;
  }

  .ci-map-wrap iframe {
    height: 260px !important;
  }

  .ci-popup {
    padding: 0.65rem;
    align-items: flex-end;
  }

  .ci-popup-content {
    width: 100%;
    max-height: min(92vh, 38rem);
    border-radius: 1rem 1rem 0.5rem 0.5rem;
  }

  .ci-site {
    padding-bottom: 4.5rem;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .ci-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ci-contact-grid .ci-contact-block:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ci-about-grid {
    gap: 1.5rem;
  }

  .ci-section {
    padding: 3.5rem 0;
  }
}

/* Popups */
.ci-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 13, 19, 0.55);
  backdrop-filter: blur(4px);
}

.ci-popup.ci-popup-open {
  display: flex;
}

.ci-popup-content {
  position: relative;
  width: min(100%, 26rem);
  max-height: min(90vh, 40rem);
  overflow-y: auto;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e8e4ec;
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 24px 60px rgba(15, 13, 19, 0.25);
  text-align: left;
  animation: ciSlideUp 0.35s ease;
}

@media (min-width: 640px) {
  .ci-popup-content {
    padding: 1.75rem 1.5rem 1.5rem;
  }
}

.ci-popup-close {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
}

.ci-popup-close:hover {
  color: #0f172a;
}

.ci-popup-title {
  margin: 0.25rem 0 1rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #5b1a62;
}

.ci-interest-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.ci-interest-btn {
  border: none;
  background: linear-gradient(135deg, #2563eb, #5b1a62);
  color: #fff;
  padding: 0.65rem 1.1rem;
  border-radius: 0.65rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ci-interest-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.ci-enquiry-field-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9rem;
}

.ci-enquiry-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #334155;
  margin-bottom: 0.4rem;
}

.ci-enquiry-input,
.ci-enquiry-textarea,
.ci-enquiry-input-group select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #e8e4ec;
  border-radius: 0.65rem;
  font-size: 0.875rem;
  color: #0e0e0f;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ci-enquiry-input:focus,
.ci-enquiry-textarea:focus,
.ci-enquiry-input-group select:focus {
  outline: none;
  border-color: #5b1a62;
  box-shadow: 0 0 0 2px rgba(91, 26, 98, 0.2);
}

.ci-enquiry-textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.ci-enquiry-input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ci-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #334155;
  cursor: pointer;
}

.ci-enquiry-checkbox {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.ci-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #d0153f, #e11d48, #7c3aed);
  box-shadow: 0 8px 24px rgba(208, 21, 63, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ci-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(208, 21, 63, 0.36);
}

@keyframes ciSlideUp {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   footer.jsp ? unique ft- prefix (do not reuse for other pages)
   Attractive multi-column site footer ? Hi5 brand purple theme
   ========================================================================== */

.ft-shell {
  width: 100%;
  margin-top: 2.5rem;
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  color: #d8d2e0;
  position: relative;
}

.ft-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #5b1a62 0%, #d0153f 45%, #7c3aed 100%);
}

.ft-main {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(124, 58, 237, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(208, 21, 63, 0.14), transparent 50%),
    linear-gradient(180deg, #1c1228 0%, #120b1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-main-inner {
  padding: 2.75rem 0 2rem;
}

.ft-container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.15rem;
}

@media (min-width: 640px) {
  .ft-container {
    padding: 0 1.75rem;
  }
}

.ft-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .ft-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 2.05fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.ft-brand-kicker {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.ft-brand-text {
  margin: 0 0 1.15rem;
  max-width: 18rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.ft-views-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e9d5ff;
  font-size: 0.8125rem;
  font-weight: 600;
}

.ft-views-pill i {
  color: #f9a8d4;
  font-size: 0.75rem;
}

.ft-cols {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .ft-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 1.75rem;
  }
}

.ft-col {
  position: relative;
  min-width: 0;
}

@media (min-width: 640px) {
  .ft-col + .ft-col {
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.ft-heading {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5d0fe;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ft-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, rgba(91, 26, 98, 0.85), rgba(208, 21, 63, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.ft-body {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  word-break: break-word;
}

.ft-body-gap {
  margin-top: 0.35rem;
}

.ft-body a {
  color: #fce7f3;
  text-decoration: none;
  transition: color 0.15s ease;
}

.ft-body a:hover {
  color: #fff;
  text-decoration: underline;
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}

.ft-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1rem 0 1.15rem;
  text-align: center;
}

@media (min-width: 768px) {
  .ft-bottom-inner {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
  }
}

.ft-logo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  border-radius: 0.65rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ft-logo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.ft-logo-btn:focus {
  outline: 2px solid rgba(249, 168, 212, 0.65);
  outline-offset: 3px;
}

.ft-logo-img {
  display: block;
  height: 2rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
}

@media (min-width: 640px) {
  .ft-logo-img {
    height: 2.15rem;
  }
}

.ft-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 768px) {
  .ft-meta {
    justify-content: flex-end;
  }
}

.ft-dot {
  display: none;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

@media (min-width: 480px) {
  .ft-dot {
    display: inline-block;
  }
}

.ft-copy {
  color: rgba(255, 255, 255, 0.78);
}

.ft-credit a {
  color: #f9a8d4;
  text-decoration: none;
  font-weight: 600;
}

.ft-credit a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   login.jsp ? shell spacing under company web menu + footer (lg- / login-)
   ========================================================================== */

body.login-page-body .login-page {
  flex: 1;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 2rem 0 2.5rem;
}

@media (min-width: 768px) {
  body.login-page-body .login-page {
    padding: 2.75rem 0 3rem;
  }
}

body.login-page-body .login-page-inner {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

/* ==========================================================================
   web_holiday.jsp ? unique wh- prefix (public holidays list)
   Compact page header + clean light theme
   ========================================================================== */

.wh-shell {
  width: 100%;
  min-height: 40vh;
  background: #f4f5f7;
  color: #1a1520;
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

.wh-container {
  width: min(920px, calc(100% - 1.5rem));
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .wh-container {
    width: min(920px, calc(100% - 2rem));
  }
}

/* Compact page header ? not a tall marketing hero */
.wh-pagehead {
  padding: 0.85rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.wh-pagehead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.5rem;
}

.wh-pagehead-copy {
  min-width: 0;
}

.wh-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #111827;
  border: none;
  padding: 0;
}

.wh-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: #5b1a62;
  color: #fff;
  font-size: 0.8rem;
}

.wh-year {
  font-weight: 700;
  color: #5b1a62;
  font-size: 0.95em;
}

.wh-lead {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #6b7280;
}

.wh-section {
  padding: 1rem 0 2rem;
}

@media (min-width: 768px) {
  .wh-section {
    padding: 1.15rem 0 2.5rem;
  }
}

.wh-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
  padding: 0.75rem;
  min-height: 8rem;
}

@media (min-width: 640px) {
  .wh-panel {
    padding: 1rem;
  }
}

.wh-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.wh-empty i {
  color: #5b1a62;
  font-size: 1.05rem;
}

.wh-list {
  display: grid;
  gap: 0.75rem;
}

.wh-month-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.wh-month-head {
  padding: 0.55rem 0.85rem;
  background: #faf8fc;
  border-bottom: 1px solid #eee8f3;
}

.wh-month-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  color: #43124a;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wh-month-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 0.4rem;
  background: #5b1a62;
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.wh-month-body {
  padding: 0;
}

.wh-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wh-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 260px;
}

.wh-table thead th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f9fafb;
  padding: 0.5rem 0.85rem;
  border-bottom: 1px solid #eee8f3;
}

.wh-table td {
  padding: 0.6rem 0.85rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: top;
}

.wh-table tbody tr:nth-child(even) td {
  background: #fcfcfd;
}

.wh-table tbody tr:last-child td {
  border-bottom: none;
}

.wh-table tbody tr:hover td {
  background: #f8f5fa;
}

.wh-date {
  width: 40%;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

.wh-reason {
  color: #4b5563;
  word-break: break-word;
}

@media (max-width: 479px) {
  .wh-pagehead {
    padding: 0.7rem 0;
  }

  .wh-title {
    font-size: 1.1rem;
  }

  .wh-table thead th,
  .wh-table td {
    padding: 0.55rem 0.7rem;
  }

  .wh-date {
    width: 36%;
    white-space: normal;
  }
}

/* ==========================================================================
   noticeboardlist_web.jsp ? unique nb- prefix (compact public notice list)
   ========================================================================== */

.nb-shell {
  width: 100%;
  min-height: 40vh;
  background: #f4f5f7;
  color: #1a1520;
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

.nb-container {
  width: min(960px, calc(100% - 1.5rem));
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .nb-container {
    width: min(960px, calc(100% - 2rem));
  }
}

.nb-pagehead {
  padding: 0.85rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.nb-pagehead-inner {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}

.nb-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #111827;
  border: none;
  padding: 0;
}

.nb-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: #5b1a62;
  color: #fff;
  font-size: 0.8rem;
}

.nb-lead {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #6b7280;
}

.nb-section {
  padding: 1rem 0 2rem;
}

@media (min-width: 768px) {
  .nb-section {
    padding: 1.15rem 0 2.5rem;
  }
}

.nb-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
  padding: 0.85rem;
  min-height: 8rem;
}

@media (min-width: 640px) {
  .nb-panel {
    padding: 1rem;
  }
}

.nb-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.nb-empty i {
  color: #5b1a62;
}

.nb-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .nb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.nb-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  min-width: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.nb-card:hover {
  border-color: #ddd6e5;
  box-shadow: 0 8px 20px rgba(91, 26, 98, 0.06);
}

.nb-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.35;
  word-break: break-word;
}

.nb-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
}

.nb-card-meta i {
  color: #5b1a62;
}

.nb-card-summary {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #4b5563;
  word-break: break-word;
  flex: 1;
}

.nb-card-actions {
  margin-top: 0.25rem;
  padding-top: 0.65rem;
  border-top: 1px solid #f3f4f6;
}

.nb-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border: none;
  border-radius: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: #5b1a62;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nb-view-btn:hover {
  background: #43124a;
  transform: translateY(-1px);
}

.nb-view-btn:focus {
  outline: 2px solid rgba(91, 26, 98, 0.35);
  outline-offset: 2px;
}

@media (max-width: 479px) {
  .nb-pagehead {
    padding: 0.7rem 0;
  }

  .nb-title {
    font-size: 1.1rem;
  }

  .nb-card {
    padding: 0.85rem;
  }
}

/* ==========================================================================
   newsandawardslist_web.jsp ? unique naw- prefix (compact news & awards list)
   ========================================================================== */

.naw-shell {
  width: 100%;
  min-height: 40vh;
  background: #f4f5f7;
  color: #1a1520;
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

.naw-container {
  width: min(960px, calc(100% - 1.5rem));
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .naw-container {
    width: min(960px, calc(100% - 2rem));
  }
}

.naw-pagehead {
  padding: 0.85rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.naw-pagehead-inner {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}

.naw-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #111827;
  border: none;
  padding: 0;
}

.naw-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: #5b1a62;
  color: #fff;
  font-size: 0.8rem;
}

.naw-lead {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #6b7280;
}

.naw-section {
  padding: 1rem 0 2rem;
}

@media (min-width: 768px) {
  .naw-section {
    padding: 1.15rem 0 2.5rem;
  }
}

.naw-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
  padding: 0.85rem;
  min-height: 8rem;
}

@media (min-width: 640px) {
  .naw-panel {
    padding: 1rem;
  }
}

.naw-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.naw-empty i {
  color: #5b1a62;
}

.naw-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .naw-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.naw-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  min-width: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.naw-card:hover {
  border-color: #ddd6e5;
  box-shadow: 0 8px 20px rgba(91, 26, 98, 0.06);
}

.naw-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.35;
  word-break: break-word;
}

.naw-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
}

.naw-card-meta i {
  color: #5b1a62;
}

.naw-card-summary {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #4b5563;
  word-break: break-word;
  flex: 1;
}

.naw-card-actions {
  margin-top: 0.25rem;
  padding-top: 0.65rem;
  border-top: 1px solid #f3f4f6;
}

.naw-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border: none;
  border-radius: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: #5b1a62;
  transition: background 0.15s ease, transform 0.15s ease;
}

.naw-view-btn:hover {
  background: #43124a;
  transform: translateY(-1px);
}

.naw-view-btn:focus {
  outline: 2px solid rgba(91, 26, 98, 0.35);
  outline-offset: 2px;
}

@media (max-width: 479px) {
  .naw-pagehead {
    padding: 0.7rem 0;
  }

  .naw-title {
    font-size: 1.1rem;
  }

  .naw-card {
    padding: 0.85rem;
  }
}

/* ==========================================================================
   rules_and_regulations_web.jsp ? unique rr- prefix
   ========================================================================== */

.rr-shell {
  width: 100%;
  min-height: 40vh;
  background: #f4f5f7;
  color: #1a1520;
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

.rr-container {
  width: min(920px, calc(100% - 1.5rem));
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .rr-container {
    width: min(920px, calc(100% - 2rem));
  }
}

.rr-pagehead {
  padding: 0.85rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.rr-pagehead-inner {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}

.rr-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #111827;
  border: none;
  padding: 0;
}

.rr-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: #5b1a62;
  color: #fff;
  font-size: 0.8rem;
}

.rr-lead {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #6b7280;
}

.rr-section {
  padding: 1rem 0 2rem;
}

@media (min-width: 768px) {
  .rr-section {
    padding: 1.15rem 0 2.5rem;
  }
}

.rr-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
  padding: 0.85rem 1rem 1rem;
  min-height: 8rem;
}

@media (min-width: 640px) {
  .rr-panel {
    padding: 1rem 1.15rem 1.15rem;
  }
}

.rr-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.rr-empty i {
  color: #5b1a62;
}

.rr-rules-wrap {
  display: grid;
  gap: 0.85rem;
}

.rr-group {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.rr-group-title {
  margin: 0;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #43124a;
  background: #faf8fc;
  border-bottom: 1px solid #eee8f3;
  letter-spacing: 0.01em;
}

.rr-group-body {
  padding: 0.75rem 0.9rem 0.9rem;
}

.rr-rule-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.rr-rule-item {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
  padding: 0.45rem 0.5rem;
  border-radius: 0.5rem;
  background: #f9fafb;
}

.rr-rule-no {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #5b1a62;
  line-height: 1.5;
}

.rr-rule-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #374151;
  word-break: break-word;
}

.rr-no-sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ca3af;
  padding: 0.35rem 0.15rem;
}

@media (max-width: 479px) {
  .rr-pagehead {
    padding: 0.7rem 0;
  }

  .rr-title {
    font-size: 1.1rem;
  }

  .rr-rule-item {
    grid-template-columns: 1.5rem minmax(0, 1fr);
  }
}

/* ==========================================================================
   web_company_policies.jsp ? unique wcp- prefix
   ========================================================================== */

.wcp-shell {
  width: 100%;
  min-height: 40vh;
  background: #f4f5f7;
  color: #1a1520;
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

.wcp-container {
  width: min(920px, calc(100% - 1.5rem));
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .wcp-container {
    width: min(920px, calc(100% - 2rem));
  }
}

.wcp-pagehead {
  padding: 0.85rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.wcp-pagehead-inner {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}

.wcp-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #111827;
  border: none;
  padding: 0;
}

.wcp-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: #5b1a62;
  color: #fff;
  font-size: 0.8rem;
}

.wcp-lead {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #6b7280;
}

.wcp-section {
  padding: 1rem 0 2rem;
}

@media (min-width: 768px) {
  .wcp-section {
    padding: 1.15rem 0 2.5rem;
  }
}

.wcp-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
  padding: 0.85rem 1rem 1rem;
  min-height: 8rem;
}

@media (min-width: 640px) {
  .wcp-panel {
    padding: 1rem 1.15rem 1.15rem;
  }
}

.wcp-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.wcp-empty i {
  color: #5b1a62;
}

.wcp-list {
  display: grid;
  gap: 0.75rem;
}

.wcp-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.wcp-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: #faf8fc;
  border-bottom: 1px solid #eee8f3;
}

.wcp-card-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #43124a;
  line-height: 1.35;
  word-break: break-word;
}

.wcp-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  cursor: pointer;
  color: #5b1a62;
  font-size: 1.15rem;
}

.wcp-toggle i {
  cursor: pointer;
  padding: 0.25rem 0.4rem;
}

.wcp-toggle:hover,
.wcp-toggle i:hover {
  color: #43124a;
}

.wcp-card-body {
  padding: 0.85rem 0.95rem 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #374151;
  word-break: break-word;
}

.wcp-card-body p {
  margin: 0 0 0.65rem;
}

.wcp-card-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 479px) {
  .wcp-pagehead {
    padding: 0.7rem 0;
  }

  .wcp-title {
    font-size: 1.1rem;
  }

  .wcp-card-head {
    padding: 0.65rem 0.75rem;
  }
}

/* ==========================================================================
   web_working_hours.jsp ? unique wwh- prefix
   ========================================================================== */

.wwh-shell {
  width: 100%;
  min-height: 40vh;
  background: #f4f5f7;
  color: #1a1520;
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

.wwh-container {
  width: min(720px, calc(100% - 1.5rem));
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .wwh-container {
    width: min(720px, calc(100% - 2rem));
  }
}

.wwh-pagehead {
  padding: 0.85rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.wwh-pagehead-inner {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}

.wwh-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #111827;
  border: none;
  padding: 0;
}

.wwh-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: #5b1a62;
  color: #fff;
  font-size: 0.8rem;
}

.wwh-lead {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #6b7280;
}

.wwh-section {
  padding: 1rem 0 2rem;
}

@media (min-width: 768px) {
  .wwh-section {
    padding: 1.15rem 0 2.5rem;
  }
}

.wwh-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
  padding: 0.85rem;
  min-height: 8rem;
}

@media (min-width: 640px) {
  .wwh-panel {
    padding: 1rem;
  }
}

.wwh-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.wwh-empty i {
  color: #5b1a62;
}

.wwh-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wwh-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
  margin: 0;
}

.wwh-table thead th {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7280;
  background: #faf8fc;
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid #eee8f3;
}

.wwh-table td {
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
  text-align: center;
}

.wwh-table tbody tr:nth-child(even) td {
  background: #fcfcfd;
}

.wwh-table tbody tr:last-child td {
  border-bottom: none;
}

.wwh-table tbody tr:hover td {
  background: #f8f5fa;
}

.wwh-day {
  font-weight: 800;
  color: #43124a;
  width: 36%;
}

.wwh-time {
  color: #374151;
  font-weight: 600;
}

.wwh-time i {
  color: #5b1a62;
  margin-right: 0.25rem;
}

@media (max-width: 479px) {
  .wwh-pagehead {
    padding: 0.7rem 0;
  }

  .wwh-title {
    font-size: 1.1rem;
  }

  .wwh-table td,
  .wwh-table thead th {
    padding: 0.6rem 0.65rem;
  }
}

/* ==========================================================================
   Shared public page shell (pw-*) ? heading/theme matches verify_work_hours_sheet
   Used by holidays, notice board, news/awards, policies, rules, working hours
   ========================================================================== */

.pw-shell {
  width: 100%;
  min-height: 40vh;
  background: #f3f4f6;
  color: #1f2937;
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

.pw-wrap {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.75rem 0 1.75rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .pw-wrap {
    width: min(72rem, calc(100% - 2rem));
  }
}

.pw-header {
  border-radius: 0.75rem;
  background: linear-gradient(90deg, #5b1a62 0%, #43124a 100%);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0.75rem;
}

@media (min-width: 640px) {
  .pw-header {
    padding: 0.5rem 1rem;
  }
}

.pw-header-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.pw-header-left {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.5rem;
}

.pw-header-icon {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.875rem;
}

.pw-header-text {
  min-width: 0;
}

.pw-title {
  margin: 0;
  padding: 0 !important;
  border: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff !important;
  letter-spacing: 0;
}

.pw-title .wh-year,
.pw-header .wh-year {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 0.95em;
}

.pw-lead {
  display: none;
  margin: 0.1rem 0 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 640px) {
  .pw-lead {
    display: block;
  }
}

.pw-section {
  margin: 0;
  padding: 0;
}

.pw-section > .wh-panel,
.pw-section > .nb-panel,
.pw-section > .naw-panel,
.pw-section > .rr-panel,
.pw-section > .wcp-panel,
.pw-section > .wwh-panel,
.pw-section > .wcal-panel,
.pw-section > .wal-panel,
.pw-section > .cs-panel {
  border-radius: 0.75rem;
  border-color: #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   web_calendar.jsp ? unique wcal- prefix (public FullCalendar page)
   Themes FullCalendar to match Hi5 brand; does not alter fullcalendar.css
   ========================================================================== */

.wcal-panel {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 0.75rem;
  min-height: 12rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
  .wcal-panel {
    padding: 1rem 1.15rem 1.15rem;
  }
}

.wcal-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-radius: 0.65rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
}

.wcal-calendar {
  width: 100%;
  min-width: 0;
}

.wcal-panel .fc {
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  color: #1f2937;
}

.wcal-panel .fc-header-title h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #43124a;
  margin: 0.15rem 0;
}

@media (min-width: 640px) {
  .wcal-panel .fc-header-title h2 {
    font-size: 1.25rem;
  }
}

.wcal-panel .fc-header td {
  padding-bottom: 0.35rem;
}

.wcal-panel .fc-button {
  height: auto;
  line-height: 1.35;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.5rem !important;
  box-shadow: none;
  text-shadow: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #374151;
}

.wcal-panel .fc-state-default {
  background-image: none;
  background-color: #fff;
  border-color: #e5e7eb;
  color: #374151;
  box-shadow: none;
  text-shadow: none;
}

.wcal-panel .fc-state-hover,
.wcal-panel .fc-state-down {
  background: #f8f5fa !important;
  border-color: #d8c6de !important;
  color: #5b1a62 !important;
}

.wcal-panel .fc-state-active,
.wcal-panel .fc-state-active.fc-state-hover {
  background: #5b1a62 !important;
  border-color: #5b1a62 !important;
  color: #fff !important;
}

.wcal-panel .fc-state-disabled {
  opacity: 0.45;
  cursor: default;
}

.wcal-panel .fc-border-separate th,
.wcal-panel .fc-border-separate td {
  border-color: #eef0f3;
}

.wcal-panel .fc-widget-header {
  background: #f8f5fa;
  color: #5b1a62;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.45rem 0;
}

.wcal-panel .fc-day-number {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  padding: 0.35rem 0.45rem 0 0;
}

.wcal-panel .fc-state-highlight {
  background: #f3eef5;
}

.wcal-panel .fc-today .fc-day-number {
  color: #5b1a62;
  font-weight: 800;
}

.wcal-panel .fc-event {
  border: none;
  background: #5b1a62;
  color: #fff;
  border-radius: 0.35rem;
  font-size: 0.72rem;
  padding: 0.1rem 0.25rem;
}

.wcal-panel .fc-event-inner {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wcal-panel .fc-grid .fc-day-content {
  min-height: 2.5rem;
}

@media (max-width: 639px) {
  .wcal-panel .fc-header-left,
  .wcal-panel .fc-header-center,
  .wcal-panel .fc-header-right {
    display: block;
    width: 100%;
    text-align: center;
  }

  .wcal-panel .fc-header-left {
    margin-bottom: 0.35rem;
  }

  .wcal-panel .fc-header-right {
    margin-top: 0.35rem;
  }

  .wcal-panel .fc-button {
    padding: 0.3rem 0.5rem;
    font-size: 0.7rem;
  }

  .wcal-panel .fc-header-title h2 {
    font-size: 0.95rem;
  }

  .wcal-panel .fc-widget-header {
    font-size: 0.65rem;
  }

  .wcal-panel .fc-day-number {
    font-size: 0.72rem;
  }

  .wcal-calendar {
    min-width: 17.5rem;
  }
}

/* ==========================================================================
   web_album.jsp ? unique wal- prefix (public gallery / albums)
   ========================================================================== */

.wal-panel {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 0.85rem;
  min-height: 8rem;
}

@media (min-width: 640px) {
  .wal-panel {
    padding: 1rem;
  }
}

.wal-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.wal-empty i {
  color: #5b1a62;
}

.wal-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .wal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .wal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.wal-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wal-card:hover {
  border-color: #ddd6e5;
  box-shadow: 0 8px 20px rgba(91, 26, 98, 0.06);
}

.wal-card-head {
  background: linear-gradient(90deg, #5b1a62 0%, #43124a 100%);
  color: #fff;
  padding: 0.65rem 0.85rem;
}

.wal-card-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  word-break: break-word;
  text-align: left;
}

.wal-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0.75rem;
  padding: 0.85rem;
  align-items: start;
}

@media (max-width: 379px) {
  .wal-card-body {
    grid-template-columns: 1fr;
  }
}

.wal-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  background: #f8f5fa;
  border-radius: 0.55rem;
  padding: 0.45rem;
  border: 1px solid #eee8f3;
}

.wal-card-img {
  display: block;
  width: 100%;
  max-width: 9rem;
  height: auto;
  max-height: 7.5rem;
  object-fit: contain;
  border-radius: 0.35rem;
  margin: 0 auto;
}

.wal-card-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wal-stats {
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.wal-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0.55rem;
  border-radius: 0.45rem;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
}

.wal-stat dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6b7280;
}

.wal-stat dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: #43124a;
}

.wal-card-actions {
  margin-top: 0.15rem;
}

.wal-view-btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #5b1a62 0%, #43124a 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.wal-view-btn:hover {
  opacity: 0.92;
}

.wal-view-btn:focus {
  outline: 2px solid rgba(91, 26, 98, 0.35);
  outline-offset: 2px;
}

/* wal-album default image visibility (append-only) */
.wal-card-media {
  min-height: 7.5rem;
}

.wal-card-img {
  min-height: 4.5rem;
  background: #fff;
}

/* ==========================================================================
   select_services_for_appointment.jsp ? unique ssa- prefix
   Themes staff/service booking cards; keeps .book-btn / .services-box hooks
   ========================================================================== */

.ssa-shell {
  padding-bottom: 0.5rem;
}

.ssa-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ssa-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px dashed #d1d5db;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ssa-empty i {
  color: #5b1a62;
}

.ssa-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .ssa-card {
    flex-direction: row;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.15rem 1.25rem;
  }
}

.ssa-profile {
  width: 100%;
  text-align: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .ssa-profile {
    width: 11.5rem;
  }
}

.ssa-photo-wrap {
  display: flex;
  justify-content: center;
}

.ssa-photo {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 3px solid #5b1a62;
  background: #f8f5fa;
}

.ssa-profile-name {
  margin-top: 0.65rem;
  padding: 0.4rem 0.55rem;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #5b1a62 0%, #43124a 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  word-break: break-word;
}

.ssa-profile-info {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  line-height: 1.35;
  word-break: break-word;
}

.ssa-services {
  flex: 1;
  min-width: 0;
  background: #f8f5fa;
  border-left: 4px solid #5b1a62;
  border-radius: 0.65rem;
  padding: 0.9rem 1rem;
}

.ssa-services-title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #43124a;
}

.ssa-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 1rem;
}

.ssa-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid #eee8f3;
  font-size: 0.875rem;
  color: #1f2937;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ssa-service-item:hover {
  border-color: #d8c6de;
  background: #fcfafd;
}

.ssa-service-item input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 1rem;
  height: 1rem;
  accent-color: #5b1a62;
  flex-shrink: 0;
  cursor: pointer;
}

.ssa-service-item span {
  line-height: 1.4;
  word-break: break-word;
}

.ssa-book-btn.book-btn,
.ssa-shell .book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border: none;
  border-radius: 0.55rem;
  background: linear-gradient(90deg, #5b1a62 0%, #43124a 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease;
  box-shadow: 0 1px 2px rgba(67, 18, 74, 0.2);
}

.ssa-book-btn.book-btn:hover,
.ssa-shell .book-btn:hover {
  opacity: 0.92;
  background: linear-gradient(90deg, #5b1a62 0%, #43124a 100%);
}

.ssa-book-btn.book-btn:focus,
.ssa-shell .book-btn:focus {
  outline: 2px solid rgba(91, 26, 98, 0.35);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .ssa-services {
    border-left: none;
    border-top: 4px solid #5b1a62;
  }

  .ssa-book-btn.book-btn,
  .ssa-shell .book-btn {
    width: 100%;
  }
}

/* ==========================================================================
   product_category_web.jsp ? unique pcw- prefix (public product category)
   Themes sidebar + product grid; shared IDs/classes left intact for officeWeb.js
   ========================================================================== */

.pcw-panel {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 0.85rem;
  min-height: 12rem;
}

@media (min-width: 640px) {
  .pcw-panel {
    padding: 1rem;
  }
}

.pcw-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .pcw-layout {
    grid-template-columns: 14rem minmax(0, 1fr);
    align-items: start;
  }
}

.pcw-side {
  background: #f8f5fa;
  border: 1px solid #eee8f3;
  border-radius: 0.65rem;
  padding: 0.75rem;
  min-width: 0;
}

.pcw-side-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5b1a62;
  margin-bottom: 0.55rem;
  padding: 0 0.25rem;
}

.pcw-category-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 28rem;
  overflow-y: auto;
}

.pcw-shell .calable {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid #eee8f3;
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  word-break: break-word;
}

.pcw-shell .calable:hover {
  border-color: #d8c6de;
  background: #fcfafd;
  color: #5b1a62;
}

.pcw-shell .calable.pcw-cat-active {
  background: linear-gradient(90deg, #5b1a62 0%, #43124a 100%);
  border-color: #5b1a62;
  color: #fff;
}

.pcw-main {
  min-width: 0;
}

.pcw-empty,
.pcw-shell .noRecordClass {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 1.25rem 1rem;
  border-radius: 0.65rem;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.pcw-empty i {
  color: #5b1a62;
}

.pcw-no-search {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 0.65rem;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  color: #6b7280;
}

.pcw-no-search h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #4b5563;
}

.pcw-sortbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem 0.85rem;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.85rem;
  border-radius: 0.55rem;
  background: #f8f5fa;
  border: 1px solid #eee8f3;
  text-align: right;
}

.pcw-quantity {
  margin-right: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  text-align: left;
}

.pcw-sort-label {
  font-size: 0.8rem;
  color: #6b7280;
}

.pcw-sort-option {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
}

.pcw-sort-option input {
  accent-color: #5b1a62;
  cursor: pointer;
}

.pcw-product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .pcw-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .pcw-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .pcw-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pcw-shell #categoryNameList > li {
  margin: 0;
  min-width: 0;
}

.pcw-shell #categoryNameList figure {
  position: relative;
  margin: 0;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pcw-shell #categoryNameList figure:hover {
  border-color: #ddd6e5;
  box-shadow: 0 8px 20px rgba(91, 26, 98, 0.08);
}

.pcw-shell #categoryNameList figure > a {
  display: block;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.pcw-shell #categoryNameList .portfolio-images {
  display: block;
  width: 100%;
  height: 10rem;
  object-fit: contain;
  background: #f8f5fa;
  border-radius: 0.5rem;
  border: 1px solid #eee8f3;
}

.pcw-shell #categoryNameList .fa-heart {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #eee8f3;
  color: #9ca3af;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.pcw-shell #categoryNameList .fa-heart:hover {
  color: #dc2626;
}

.pcw-shell #categoryNameList .price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.pcw-shell #categoryNameList .prdName {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pcw-shell #categoryNameList .FProdRate {
  font-size: 0.9rem;
  font-weight: 700;
  color: #5b1a62;
  text-align: left;
}

.pcw-shell #categoryNameList .disc_price_cls {
  color: #5b1a62;
  font-weight: 800;
  margin-right: 0.35rem;
}

.pcw-shell #categoryNameList .prd_priceCls {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.35rem;
}

.pcw-shell #categoryNameList .dis_perAmtCls {
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (max-width: 899px) {
  .pcw-category-list {
    flex-direction: row;
    flex-wrap: wrap;
    max-height: none;
  }

  .pcw-shell .calable {
    flex: 1 1 auto;
  }

  .pcw-sortbar {
    justify-content: flex-start;
  }

  .pcw-quantity {
    width: 100%;
    margin-right: 0;
  }
}

/* ==========================================================================
   view_product.jsp ? unique vwp- prefix (public product detail)
   Themes layout; shared IDs left intact for officeWeb.js
   ========================================================================== */

.vwp-panel {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 0.85rem;
  min-height: 12rem;
}

@media (min-width: 640px) {
  .vwp-panel {
    padding: 1.15rem;
  }
}

.vwp-layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .vwp-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: start;
  }
}

.vwp-media {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vwp-main-image {
  position: relative;
  background: #f8f5fa;
  border: 1px solid #eee8f3;
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
}

.vwp-photo,
.vwp-shell #photo1 {
  display: block;
  width: 100%;
  max-width: 28rem;
  height: auto;
  max-height: 24rem;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0.5rem;
  background: #fff;
}

.vwp-zoom-hint {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #5b1a62;
}

.vwp-thumbs {
  position: relative;
  padding: 0.35rem 2rem;
  min-height: 4.5rem;
}

.vwp-thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.vwp-shell #viewThumImg1 img,
.vwp-shell #viewThumImg1 .img-thumbnail {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 0.45rem;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}

.vwp-thumb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #5b1a62;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.vwp-thumb-prev { left: 0; }
.vwp-thumb-next { right: 0; }

.vwp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.vwp-btn {
  flex: 1 1 10rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.vwp-btn:hover { opacity: 0.92; }

.vwp-btn-cart,
.vwp-shell #cart_btn_id {
  background: #f59e0b;
  color: #fff;
}

.vwp-btn-buy,
.vwp-shell #buy_btn_id {
  background: linear-gradient(90deg, #5b1a62 0%, #43124a 100%);
  color: #fff;
}

.vwp-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.vwp-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.vwp-wish {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f8f5fa;
  border: 1px solid #eee8f3;
  cursor: pointer;
  text-decoration: none;
}

.vwp-wish #wish,
.vwp-shell #wish {
  font-size: 1.1rem;
  color: #A18484;
}

.vwp-product-name,
.vwp-shell #productName {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  color: #111827;
  word-break: break-word;
}

@media (min-width: 640px) {
  .vwp-product-name,
  .vwp-shell #productName {
    font-size: 1.35rem;
  }
}

.vwp-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
}

.vwp-rating-avg {
  font-size: 0.875rem;
  font-weight: 700;
  color: #43124a;
}

.vwp-rating-meta {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 600;
}

.vwp-price-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vwp-price,
.vwp-shell #productPrice,
.vwp-shell #promoCodePrice {
  color: #5b1a62;
  font-weight: 800;
}

.vwp-price-det,
.vwp-shell #productPriceDet {
  font-size: 0.85rem;
  color: #6b7280;
}

.vwp-notify {
  padding: 0.75rem;
  border-radius: 0.55rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.vwp-notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.vwp-input,
.vwp-shell #email {
  flex: 1 1 12rem;
  min-height: 2.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.45rem;
  font-size: 0.875rem;
}

.vwp-btn-notify,
.vwp-shell .color {
  min-height: 2.4rem;
  padding: 0.45rem 0.9rem;
  border: none;
  border-radius: 0.45rem;
  background: #5b1a62;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.vwp-turn-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vwp-btn-secondary,
.vwp-shell #prodTrunDivId .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.4rem 0.85rem;
  border: none;
  border-radius: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
}

.vwp-shell #prodTrunDivId .btn-info {
  background: #0ea5e9;
}

.vwp-shell #prodTrunDivId .btn-primary {
  background: #5b1a62;
}

.vwp-stock {
  font-size: 0.875rem;
  font-weight: 700;
  color: #059669;
}

.vwp-options {
  font-size: 0.875rem;
  color: #374151;
}

.vwp-options input[type="radio"] {
  accent-color: #5b1a62;
  margin-right: 0.25rem;
}

.vwp-block {
  margin: 0;
}

.vwp-block-title {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #43124a;
}

.vwp-desc,
.vwp-features,
.vwp-specs {
  display: block;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #4b5563;
}

.vwp-review-action {
  display: flex;
  justify-content: flex-end;
}

.vwp-btn-review,
.vwp-shell .vwp-btn-review {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  border: none;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, #5b1a62 0%, #43124a 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.vwp-3d-wrap {
  margin-top: 0.85rem;
}

.vwp-3d-inner {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.vwp-shell .flipbook {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 36rem;
  margin: 0 auto;
}

.vwp-shell #turn1,
.vwp-shell #turn2,
.vwp-shell #turn3,
.vwp-shell #turn4 {
  min-height: 10rem;
  border-radius: 0.45rem;
  background-size: cover;
  background-position: center;
  background-color: #f8f5fa;
  border: 1px solid #eee8f3;
}

/* Shared class used when 3D mode is active */
.vwp-shell .cartAndBuyDivId {
  margin-top: 0.5rem;
}

@media (max-width: 899px) {
  .vwp-actions {
    position: sticky;
    bottom: 0.5rem;
    z-index: 5;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.5rem;
    border-radius: 0.65rem;
    border: 1px solid #eee8f3;
    box-shadow: 0 -4px 16px rgba(17, 24, 39, 0.06);
  }
}

/* ==========================================================================
   view_product.jsp ? Flipkart/Amazon-style shop skin (vwp-shop)
   Append-only; does not modify earlier vwp-* rules
   ========================================================================== */

.vwp-shop {
  background: #f1f3f6;
}

.vwp-shop-wrap {
  width: min(1180px, calc(100% - 1.25rem));
  margin: 0 auto;
  padding: 0.75rem 0 2rem;
  box-sizing: border-box;
}

.vwp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: #878787;
}

.vwp-breadcrumb a {
  color: #2874f0;
  text-decoration: none;
  font-weight: 600;
}

.vwp-breadcrumb a:hover {
  text-decoration: underline;
}

.vwp-bc-sep {
  color: #c2c2c2;
}

.vwp-bc-current {
  color: #212121;
  font-weight: 600;
  max-width: 16rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vwp-shop-card {
  background: #fff;
  border-radius: 0.35rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  min-height: 20rem;
}

@media (min-width: 900px) {
  .vwp-shop-card {
    padding: 1.25rem 1.5rem 1.5rem;
  }
}

.vwp-shop-layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .vwp-shop-layout {
    grid-template-columns: minmax(0, 26rem) minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
  }
}

/* Sticky gallery column */
.vwp-gallery {
  min-width: 0;
}

@media (min-width: 960px) {
  .vwp-gallery {
    position: sticky;
    top: 5rem;
  }
}

.vwp-gallery-inner {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .vwp-gallery-inner {
    grid-template-columns: 4.25rem minmax(0, 1fr);
    align-items: stretch;
  }
}

.vwp-thumbs-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  order: 2;
}

@media (min-width: 640px) {
  .vwp-thumbs-rail {
    order: 0;
  }
}

.vwp-thumb-stack {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.45rem;
  max-width: 100%;
  overflow-x: auto;
  padding: 0.15rem;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
  .vwp-thumb-stack {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 22rem;
  }
}

.vwp-shell.vwp-shop #viewThumImg1 span {
  display: contents;
}

.vwp-shell.vwp-shop #viewThumImg1 img,
.vwp-shell.vwp-shop .vwp-thumb-img {
  width: 3.5rem !important;
  height: 3.5rem !important;
  object-fit: contain !important;
  border-radius: 0.25rem;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  padding: 0.15rem;
  flex-shrink: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vwp-shell.vwp-shop #viewThumImg1 img:hover,
.vwp-shell.vwp-shop .vwp-thumb-img:hover,
.vwp-shell.vwp-shop .vwp-thumb-active {
  border-color: #5b1a62 !important;
  box-shadow: 0 0 0 1px #5b1a62;
}

.vwp-rail-nav {
  display: none;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #212121;
  text-decoration: none;
}

@media (min-width: 640px) {
  .vwp-rail-nav {
    display: inline-flex;
  }
}

.vwp-stage {
  position: relative;
  border: 1px solid #f0f0f0;
  border-radius: 0.25rem;
  background: #fff;
  min-height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.vwp-shell.vwp-shop #photo1,
.vwp-hero-img {
  width: 100% !important;
  max-width: 22rem;
  height: auto !important;
  max-height: 22rem;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border: none !important;
  box-shadow: none !important;
  background: transparent;
}

.vwp-zoom-badge {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e0e0e0;
  font-size: 0.7rem;
  font-weight: 700;
  color: #878787;
}

/* CTA ? Flipkart-like dual buttons */
.vwp-cta-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.vwp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.7rem 0.75rem;
  border: none;
  border-radius: 0.2rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: filter 0.15s ease, transform 0.1s ease;
}

.vwp-cta:hover {
  filter: brightness(1.05);
}

.vwp-cta:active {
  transform: translateY(1px);
}

.vwp-shell.vwp-shop #cart_btn_id,
.vwp-cta-cart {
  background: #ff9f00 !important;
  color: #fff !important;
}

.vwp-shell.vwp-shop #buy_btn_id,
.vwp-cta-buy {
  background: #fb641b !important;
  color: #fff !important;
}

/* Buy box */
.vwp-buybox {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.vwp-shell.vwp-shop .vwp-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.vwp-shell.vwp-shop #productName,
.vwp-shell.vwp-shop .vwp-product-name {
  margin: 0;
  flex: 1;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #212121;
  letter-spacing: 0;
}

@media (min-width: 640px) {
  .vwp-shell.vwp-shop #productName {
    font-size: 1.4rem;
  }
}

.vwp-shell.vwp-shop .vwp-wish {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.vwp-shell.vwp-shop #wish {
  color: #c2c2c2;
  font-size: 1.15rem;
}

.vwp-price-card {
  padding: 0.35rem 0 0.15rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.85rem;
}

.vwp-shell.vwp-shop .vwp-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.vwp-shell.vwp-shop #productPrice,
.vwp-shell.vwp-shop #promoCodePrice,
.vwp-shell.vwp-shop .vwp-price {
  color: #212121;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.2;
}

.vwp-shell.vwp-shop #productPrice strike,
.vwp-shell.vwp-shop #promoCodePrice strike,
.vwp-shell.vwp-shop #productPrice b,
.vwp-shell.vwp-shop #promoCodePrice b {
  vertical-align: baseline;
}

.vwp-shell.vwp-shop #productPriceDet {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #388e3c;
}

.vwp-option-card {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.vwp-shell.vwp-shop #changeForField > div {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: #212121;
}

.vwp-shell.vwp-shop #changeForField input.prodPrice {
  accent-color: #5b1a62;
  margin: 0 0.35rem 0 0.75rem;
  transform: scale(1.1);
}

.vwp-shell.vwp-shop .vwp-block {
  padding: 0.65rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.vwp-shell.vwp-shop .vwp-block-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #212121;
}

.vwp-shell.vwp-shop .vwp-desc,
.vwp-shell.vwp-shop .vwp-features,
.vwp-shell.vwp-shop .vwp-specs {
  color: #212121;
  font-size: 0.9rem;
  line-height: 1.6;
}

.vwp-shell.vwp-shop #productFeature > div {
  position: relative;
  padding-left: 1rem;
  margin: 0.25rem 0;
}

.vwp-shell.vwp-shop #productFeature > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #878787;
}

.vwp-shell.vwp-shop #speciHead .hideShow {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 0.25rem;
  padding: 0.75rem 0.85rem;
  margin-top: 0.35rem;
}

.vwp-shell.vwp-shop #speciHead [id^="subDetail"] {
  padding-left: 0 !important;
  font-weight: 700;
  color: #878787;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.vwp-shell.vwp-shop #speciHead [id^="spec_id_"] {
  padding-left: 0 !important;
  font-size: 0.9rem;
  font-weight: 500;
  color: #212121;
  margin: 0.2rem 0;
}

.vwp-shell.vwp-shop .vwp-btn-review {
  background: #fff !important;
  color: #5b1a62 !important;
  border: 1px solid #d8c6de !important;
  border-radius: 0.2rem;
  box-shadow: none;
  font-weight: 700;
}

.vwp-shell.vwp-shop .vwp-btn-review:hover {
  background: #f8f5fa !important;
}

.vwp-shell.vwp-shop .vwp-stock {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 0.2rem;
  background: #fff3e0;
  color: #e65100;
  font-size: 0.85rem;
}

.vwp-shell.vwp-shop .vwp-notify {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 0.25rem;
}

.vwp-shell.vwp-shop .vwp-soldout {
  font-size: 1.1rem;
  font-weight: 800;
  color: #c62828;
  margin-bottom: 0.35rem;
}

/* Recently viewed ? Amazon-like strip */
#recentlyViewedDivId.vwp-recent,
.vwp-recent {
  width: min(1180px, calc(100% - 1.25rem)) !important;
  margin: 1rem auto 1.5rem !important;
  background: #fff;
  border-radius: 0.35rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  padding: 0.85rem 1rem 1.15rem;
  box-sizing: border-box;
}

.vwp-recent .recentlyHead {
  border-bottom: none;
  padding: 0.35rem 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #212121;
}

.vwp-recent .slide {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 0.25rem;
  padding: 0.65rem;
  text-align: center;
  transition: box-shadow 0.15s ease;
}

.vwp-recent .slide:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vwp-recent .recentlyImage {
  width: 100%;
  height: 9rem !important;
  object-fit: contain;
  background: #fafafa;
  border-radius: 0.2rem;
}

.vwp-recent .recentPrdName,
.vwp-recent .prdName {
  width: 100% !important;
  margin-top: 0.45rem;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: #212121 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vwp-recent .FProdRate,
.vwp-recent .recentPrice {
  color: #212121 !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
}

@media (max-width: 639px) {
  .vwp-cta-bar {
    position: sticky;
    bottom: 0;
    z-index: 20;
    background: #fff;
    padding: 0.55rem 0.15rem;
    margin: 0.5rem -0.15rem 0;
    border-top: 1px solid #f0f0f0;
  }

  .vwp-cta {
    min-height: 2.75rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   customer_survey.jsp ? unique cs- prefix (public survey list)
   ========================================================================== */

.cs-panel {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 0.85rem 0.75rem 1rem;
  min-height: 10rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .cs-panel {
    padding: 1rem 1.15rem 1.25rem;
  }
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .cs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .cs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.cs-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 1.25rem 1rem;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.cs-empty i {
  color: #5b1a62;
  font-size: 1.1rem;
}

.cs-card {
  display: flex;
  flex-direction: column;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 0.65rem;
  overflow: hidden;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.cs-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(91, 26, 98, 0.08);
}

.cs-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  padding: 0.85rem 0.9rem 0.65rem;
  border-bottom: 1px dashed #e5e7eb;
  background: #fff;
}

.cs-card-title {
  margin: 0;
  flex: 1 1 10rem;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1f2937;
}

.cs-status {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.cs-status-pending {
  background: #fef3c7;
  color: #92400e;
}

.cs-status-done {
  background: #d1fae5;
  color: #065f46;
}

.cs-status-other {
  background: #f3f4f6;
  color: #4b5563;
}

.cs-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem 0.95rem;
  background: #fff;
  flex: 1 1 auto;
}

.cs-meta-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.cs-meta-table td {
  padding: 0.35rem 0;
  vertical-align: top;
  font-size: 0.85rem;
  color: #374151;
  border: 0;
  word-break: break-word;
}

.cs-meta-table td:first-child {
  width: 38%;
  padding-right: 0.5rem;
}

.cs-meta-label {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.8rem;
}

.cs-card-actions {
  display: flex;
  justify-content: center;
  padding-top: 0.15rem;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.35rem;
  padding: 0.45rem 1.15rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cs-btn-primary {
  background: #5b1a62;
  color: #fff;
  border-color: #5b1a62;
}

.cs-btn-primary:hover {
  background: #43124a;
  border-color: #43124a;
}

.cs-btn-primary:focus {
  outline: 2px solid rgba(91, 26, 98, 0.35);
  outline-offset: 2px;
}

.cs-btn-done {
  background: #f3f4f6;
  color: #065f46;
  border-color: #d1d5db;
  cursor: default;
}

@media (max-width: 639px) {
  .cs-card-title {
    font-size: 0.9rem;
  }

  .cs-btn {
    width: 100%;
    min-height: 2.6rem;
  }
}

/* ==========================================================================
   customer_service_request.jsp ? unique csr- prefix
   ========================================================================== */

.csr-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1rem 1.15rem;
}

.csr-profile--empty {
  justify-content: center;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 5rem;
}

.csr-avatar {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid #e8e4ec;
  background: #f8fafc;
  flex-shrink: 0;
}

.csr-profile-text {
  min-width: 0;
}

.csr-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #5b1a62;
  line-height: 1.3;
}

.csr-mobile {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #4b5563;
}

.csr-mobile i {
  margin-right: 0.25rem;
  color: #5b1a62;
}

.csr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.csr-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 0.65rem;
  border: 1px solid transparent;
  font-size: 0.8125rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.csr-chip:focus {
  outline: 2px solid rgba(91, 26, 98, 0.3);
  outline-offset: 2px;
}

.csr-chip-pending {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.csr-chip-pending.is-active,
.csr-chip-pending:hover {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.csr-chip-complete {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

.csr-chip-complete.is-active,
.csr-chip-complete:hover {
  background: #059669;
  color: #fff;
  border-color: #059669;
}

.csr-chip-cancel {
  background: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}

.csr-chip-cancel.is-active,
.csr-chip-cancel:hover {
  background: #ea580c;
  color: #fff;
  border-color: #ea580c;
}

.csr-chip-create {
  background: linear-gradient(135deg, #5b1a62, #7c3aed);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(91, 26, 98, 0.22);
}

.csr-chip-create:hover {
  filter: brightness(1.05);
}

.csr-chip-invoice {
  background: #fff;
  color: #5b1a62;
  border-color: #e8e4ec;
}

.csr-chip-invoice:hover {
  background: #f8f5fa;
  border-color: #5b1a62;
}

.csr-panel {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.csr-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  background: linear-gradient(180deg, #faf8fb 0%, #fff 100%);
}

.csr-panel-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #5b1a62;
}

.csr-updated {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

.csr-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.csr-table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.csr-table thead th {
  text-align: left;
  padding: 0.7rem 0.85rem;
  background: #f5f0f7;
  color: #43124a;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 1px solid #e8e4ec;
}

.csr-table tbody td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
  vertical-align: middle;
}

.csr-table tbody tr:hover {
  background: #faf8fb;
}

.csr-num {
  color: #6b7280;
  font-weight: 600;
  width: 3rem;
}

.csr-svc-no {
  color: #5b1a62;
  font-weight: 700;
}

.csr-status {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.csr-status-pending {
  background: #fef3c7;
  color: #b45309;
}

.csr-status-done {
  background: #d1fae5;
  color: #047857;
}

.csr-status-cancel {
  background: #fee2e2;
  color: #b91c1c;
}

.csr-status-other {
  background: #f3f4f6;
  color: #4b5563;
}

.csr-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 8rem;
  padding: 1.25rem 1rem;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.csr-empty i {
  color: #5b1a62;
  font-size: 1.1rem;
}

@media (max-width: 639px) {
  .csr-actions {
    gap: 0.4rem;
  }

  .csr-chip {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 0;
  }

  .csr-chip-create,
  .csr-chip-invoice {
    flex: 1 1 100%;
  }

  .csr-panel-head {
    padding: 0.75rem 0.85rem;
  }

  .csr-name {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   web_customer_profile.jsp ? unique wcpf- prefix
   ========================================================================== */

.wcpf-shell .hideStudent {
  display: none;
}

.wcpf-shell .showStudent {
  display: inline;
}

.wcpf-shell .editIcon,
.wcpf-shell .addIcon,
.wcpf-shell .uploadIcon,
.wcpf-shell .downloadIcon,
.wcpf-shell .saveIcon,
.wcpf-shell .closeIcon {
  cursor: pointer;
  margin-left: 0.4rem;
  color: #5b1a62;
  font-size: 0.9rem;
  vertical-align: middle;
}

.wcpf-shell .editIcon:hover,
.wcpf-shell .addIcon:hover,
.wcpf-shell .uploadIcon:hover,
.wcpf-shell .downloadIcon:hover,
.wcpf-shell .saveIcon:hover {
  color: #d0153f;
}

.wcpf-wrap {
  width: min(64rem, calc(100% - 1.5rem));
  gap: 0.65rem;
}

.wcpf-pagehead {
  padding: 0.65rem 1rem;
}

.wcpf-main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

.wcpf-card {
  background: #fff;
  border: 1px solid #ebe4ef;
  border-radius: 0.85rem;
  box-shadow: 0 1px 2px rgba(91, 26, 98, 0.04);
  padding: 0.95rem 1.1rem 1.05rem;
}

/* Identity strip ? photo + change link, no empty whitespace */
.wcpf-identity {
  padding: 0.85rem 1.1rem;
  background:
    linear-gradient(135deg, rgba(91, 26, 98, 0.06) 0%, rgba(208, 21, 63, 0.04) 48%, #fff 100%);
  border-color: #e8e0ee;
}

.wcpf-identity-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wcpf-photo-wrap {
  flex-shrink: 0;
}

.wcpf-photo {
  width: 4.75rem;
  height: 4.75rem;
  object-fit: cover;
  border-radius: 0.85rem;
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(91, 26, 98, 0.18);
  background: #f3f0f5;
  display: block;
}

.wcpf-identity-meta {
  min-width: 0;
  flex: 1;
}

.wcpf-identity-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5b1a62;
}

.wcpf-identity-hint {
  margin: 0.2rem 0 0.55rem;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.35;
}

.wcpf-upload a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #dccfe3;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5b1a62;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.wcpf-upload a:hover {
  color: #fff;
  background: #5b1a62;
  border-color: #5b1a62;
  text-decoration: none;
}

.wcpf-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #f0ebf3;
}

.wcpf-section-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #5b1a62;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 0;
  border-bottom: none;
}

.wcpf-section-title i {
  color: #7c3aed;
  font-size: 0.95rem;
}

.wcpf-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wcpf-fields--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem 1.25rem;
}

@media (min-width: 768px) {
  .wcpf-fields--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.wcpf-row {
  display: grid;
  grid-template-columns: minmax(6.5rem, 34%) 1fr;
  gap: 0.4rem 0.75rem;
  align-items: center;
  padding: 0.5rem 0.35rem;
  border-radius: 0.45rem;
  border-bottom: none;
}

.wcpf-row:nth-child(odd) {
  background: #fbfafc;
}

.wcpf-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.01em;
  padding-top: 0;
}

.wcpf-value {
  font-size: 0.875rem;
  color: #1f2937;
  font-weight: 600;
  min-width: 0;
  word-break: break-word;
  line-height: 1.4;
}

.wcpf-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 960px) {
  .wcpf-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.wcpf-doc-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 0.55rem;
}

.wcpf-doc-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}

.wcpf-doc-actions .addIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #5b1a62;
  color: #fff !important;
  margin-left: 0;
  font-size: 0.85rem;
}

.wcpf-doc-actions .addIcon:hover {
  background: #43124a;
  color: #fff !important;
}

.wcpf-doc-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.wcpf-doc-list table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.wcpf-doc-list td {
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid #f3f4f6;
}

.wcpf-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  margin-top: 0.25rem;
  border: 1px dashed #e5e7eb;
  border-radius: 0.65rem;
  background: #fafafa;
  color: #6b7280;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.85rem 0.75rem;
}

.wcpf-empty:empty {
  display: none;
}

.wcpf-submit-slot {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0ebf3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.wcpf-submit-slot .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  min-height: 2.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 0.65rem;
  border: none;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(91, 26, 98, 0.12);
}

.wcpf-submit-slot .btn-primary {
  background: linear-gradient(135deg, #5b1a62, #7c3aed);
  color: #fff;
}

.wcpf-submit-slot .btn-success {
  background: #059669;
  color: #fff;
}

.wcpf-submit-slot .btn:hover {
  filter: brightness(1.05);
}

/* Inline edit controls injected by officeWeb */
.wcpf-shell .inpBorder,
.wcpf-shell .school_staff_proflie_inpBorder,
.wcpf-shell .DateOfBirth,
.wcpf-shell .form-control,
.wcpf-shell .school_student_profile_single_edit {
  width: 100%;
  max-width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.8125rem;
  background: #fff;
}

.wcpf-shell .input-group {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  max-width: 100%;
  width: 100%;
}

.wcpf-shell .input-group .col-xs-6,
.wcpf-shell .input-group .col-lg-6,
.wcpf-shell .personVal .col-xs-6,
.wcpf-shell .contactVal .col-xs-6 {
  width: 100%;
  max-width: 100%;
  padding: 0;
  float: none;
}

.wcpf-shell .singleBtn,
.wcpf-shell .btn-success.fa-check {
  min-width: 2.15rem;
  min-height: 2.15rem;
  border-radius: 0.5rem;
  border: none;
  background: #059669;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

/* Keep datepicker above cards */
.wcpf-shell .ui-datepicker {
  z-index: 1200 !important;
}

/* jQuery UI datepicker ? polish for profile DOB edit (CSS was missing on header_new pages) */
.wcpf-shell .ui-datepicker,
body > .ui-datepicker {
  width: 17.5rem;
  padding: 0.55rem;
  border: 1px solid #e8e4ec !important;
  border-radius: 0.75rem;
  background: #fff !important;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
  font-family: inherit;
  font-size: 0.8125rem;
  color: #1f2937;
  z-index: 1300 !important;
}

.wcpf-shell .ui-datepicker .ui-datepicker-header,
body > .ui-datepicker .ui-datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.35rem 0.25rem 0.55rem;
  border: none;
  background: transparent;
  color: #5b1a62;
  font-weight: 700;
}

.wcpf-shell .ui-datepicker .ui-datepicker-prev,
.wcpf-shell .ui-datepicker .ui-datepicker-next,
body > .ui-datepicker .ui-datepicker-prev,
body > .ui-datepicker .ui-datepicker-next {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: #f5f0f7;
  cursor: pointer;
}

.wcpf-shell .ui-datepicker .ui-datepicker-prev span,
.wcpf-shell .ui-datepicker .ui-datepicker-next span,
body > .ui-datepicker .ui-datepicker-prev span,
body > .ui-datepicker .ui-datepicker-next span {
  display: none;
}

.wcpf-shell .ui-datepicker .ui-datepicker-prev:before,
body > .ui-datepicker .ui-datepicker-prev:before {
  content: "\f053";
  font-family: FontAwesome;
  font-size: 0.75rem;
  color: #5b1a62;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.wcpf-shell .ui-datepicker .ui-datepicker-next:before,
body > .ui-datepicker .ui-datepicker-next:before {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 0.75rem;
  color: #5b1a62;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.wcpf-shell .ui-datepicker .ui-datepicker-title,
body > .ui-datepicker .ui-datepicker-title {
  margin: 0;
  line-height: 1.75rem;
  flex: 1;
  text-align: center;
}

.wcpf-shell .ui-datepicker .ui-datepicker-title select,
body > .ui-datepicker .ui-datepicker-title select {
  margin: 0 0.15rem;
  padding: 0.2rem 0.35rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.4rem;
  background: #fff;
  font-size: 0.75rem;
  color: #43124a;
  font-weight: 650;
}

.wcpf-shell .ui-datepicker table,
body > .ui-datepicker table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.wcpf-shell .ui-datepicker th,
body > .ui-datepicker th {
  padding: 0.35rem 0;
  color: #6b7280;
  font-weight: 700;
  border: none;
  background: transparent;
}

.wcpf-shell .ui-datepicker td,
body > .ui-datepicker td {
  padding: 0.1rem;
  border: none;
}

.wcpf-shell .ui-datepicker td span,
.wcpf-shell .ui-datepicker td a,
body > .ui-datepicker td span,
body > .ui-datepicker td a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  margin: 0 auto;
  border-radius: 0.45rem;
  border: none;
  text-align: center;
  text-decoration: none;
  color: #1f2937;
  background: transparent;
}

.wcpf-shell .ui-datepicker td a:hover,
body > .ui-datepicker td a:hover {
  background: #f5f0f7;
  color: #5b1a62;
}

.wcpf-shell .ui-datepicker .ui-state-active,
.wcpf-shell .ui-datepicker .ui-state-highlight,
body > .ui-datepicker .ui-state-active,
body > .ui-datepicker .ui-state-highlight {
  background: #5b1a62 !important;
  color: #fff !important;
  font-weight: 700;
}

.wcpf-shell .ui-datepicker .ui-state-disabled span,
body > .ui-datepicker .ui-state-disabled span {
  color: #d1d5db;
}

/* Safety: never show inline calendar on the DOB display cell (only popup on edit input) */
#dob > .ui-datepicker-inline,
#dob.ui-datepicker-inline,
#dob > .ui-datepicker {
  display: none !important;
}

/* Modals */
body.wcpf-modal-lock {
  overflow: hidden;
}

.wcpf-modal.wcpf-modal-open,
.wcpf-modal.modal.wcpf-modal-open {
  display: flex !important;
  position: fixed;
  inset: 0;
  z-index: 1050;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.45);
  overflow-y: auto;
}

.wcpf-modal-dialog {
  width: min(42rem, 100%);
  margin: auto;
}

.wcpf-modal-content {
  background: #fff;
  border-radius: 0.85rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  border: 1px solid #e8e4ec;
}

.wcpf-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(90deg, #5b1a62 0%, #43124a 100%);
  color: #fff;
}

.wcpf-modal-title,
.wcpf-modal-header .headTitle,
.wcpf-modal-header .head_title,
.wcpf-modal-header .modal-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
  text-align: left;
}

.wcpf-modal-close {
  order: 2;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
  padding: 0 0.25rem;
}

.wcpf-modal-close:hover {
  opacity: 1;
}

.wcpf-modal-body {
  padding: 1rem 1.1rem 1.15rem;
  max-height: min(70vh, 36rem);
  overflow-y: auto;
}

.wcpf-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem 0.75rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 640px) {
  .wcpf-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

.wcpf-form-label,
.wcpf-form .control-label {
  font-size: 0.8125rem;
  font-weight: 650;
  color: #4b5563;
}

.wcpf-input,
.wcpf-form .form-control,
.wcpf-file {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.55rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.8125rem;
  color: #1f2937;
  background: #fff;
  box-sizing: border-box;
}

.wcpf-input:focus,
.wcpf-form .form-control:focus {
  outline: none;
  border-color: #5b1a62;
  box-shadow: 0 0 0 2px rgba(91, 26, 98, 0.18);
}

.wcpf-pin-group {
  display: flex;
  gap: 0.4rem;
  width: 100%;
}

.wcpf-pin-group .wcpf-input,
.wcpf-pin-group .form-control {
  flex: 1;
}

.wcpf-pin-btn {
  flex-shrink: 0;
  min-width: 2.5rem;
  border: none;
  border-radius: 0.55rem;
  background: #059669;
  color: #fff;
  cursor: pointer;
}

.wcpf-readonly {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  padding: 0.45rem 0.65rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 0.55rem;
  font-size: 0.8125rem;
  color: #374151;
}

.wcpf-hint {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: #6b7280;
}

.wcpf-icon-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding-top: 0.35rem;
}

.wcpf-icon-actions .uploadIcon,
.wcpf-icon-actions .saveIcon,
.wcpf-icon-actions .closeIcon {
  font-size: 1.35rem;
  margin-left: 0;
}

.wcpf-form-actions {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}

@media (max-width: 767px) {
  .wcpf-identity-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .wcpf-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding: 0.55rem 0.4rem;
  }

  .wcpf-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .wcpf-card {
    padding: 0.8rem 0.85rem 0.9rem;
  }

  .wcpf-submit-slot .btn {
    width: 100%;
  }

  .wcpf-modal-body {
    padding: 0.85rem;
  }
}

/* ========== customer_amc_request.jsp (camc-) ========== */

.camc-header-lead {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.3;
}

.camc-list-block {
  display: block;
}

.camc-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.camc-card-profile {
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, #faf8fb 0%, #fff 100%);
  border-bottom: 1px solid #f3f4f6;
}

.camc-card-toolbar {
  display: flex;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
}

.camc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
}

.camc-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 0.65rem;
  border: 1px solid transparent;
  font-size: 0.8125rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.camc-chip:focus {
  outline: 2px solid rgba(91, 26, 98, 0.3);
  outline-offset: 2px;
}

.camc-chip-active {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

.camc-chip-active.is-active,
.camc-chip-active:hover {
  background: #059669;
  color: #fff;
  border-color: #059669;
  box-shadow: 0 1px 2px rgba(5, 150, 105, 0.25);
}

.camc-chip-expired {
  background: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}

.camc-chip-expired.is-active,
.camc-chip-expired:hover {
  background: #ea580c;
  color: #fff;
  border-color: #ea580c;
  box-shadow: 0 1px 2px rgba(234, 88, 12, 0.25);
}

.camc-chip-create {
  margin-left: auto;
  background: #5b1a62;
  border-color: #5b1a62;
  color: #fff;
}

.camc-chip-create:hover {
  background: #43124a;
  border-color: #43124a;
  color: #fff;
  box-shadow: 0 1px 2px rgba(91, 26, 98, 0.3);
}

.camc-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.camc-profile--empty {
  justify-content: center;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 3.5rem;
}

.camc-avatar {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid #e8e4ec;
  background: #f8fafc;
  flex-shrink: 0;
}

.camc-profile-text {
  min-width: 0;
}

.camc-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #5b1a62;
  line-height: 1.3;
}

.camc-mobile {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #4b5563;
}

.camc-mobile i {
  margin-right: 0.25rem;
  color: #5b1a62;
}

.camc-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid #f3f4f6;
  background: linear-gradient(180deg, #faf8fb 0%, #fff 100%);
}

.camc-panel-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #5b1a62;
}

.camc-empty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 1.15rem 1.25rem;
  padding: 1.75rem 1rem;
  color: #6b7280;
  font-size: 0.875rem;
  background: #faf8fb;
  border-radius: 0.55rem;
  border: 1px dashed #e8e4ec;
}

.camc-table-host {
  padding: 0.35rem 0 0.85rem;
}

.camc-product-block {
  padding: 0.65rem 1.15rem 0.85rem;
}

.camc-product-block + .camc-product-block {
  border-top: 1px solid #f3f4f6;
  margin-top: 0.25rem;
}

.camc-product-title,
.camc-table-host .headTitles {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: #f5f0f7;
  color: #5b1a62;
  font-size: 0.8125rem;
  font-weight: 700;
}

.camc-product-title i {
  color: #5b1a62;
  opacity: 0.85;
}

.camc-table-wrap,
.camc-table-host .center-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.55rem;
  border: 1px solid #f3f4f6;
}

.camc-table,
.camc-table-host .table {
  width: 100%;
  min-width: 48rem;
  margin: 0 !important;
  border-collapse: collapse;
  font-size: 0.8125rem;
  background: #fff;
}

.camc-table th,
.camc-table td,
.camc-table-host .table th,
.camc-table-host .table td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid #f3f4f6;
}

.camc-table thead th,
.camc-table .tableHeadClass th,
.camc-table-host .tableHeadClass th,
.camc-table-host .table thead th,
.camc-table-host .table tr.tableHeadClass th {
  background: #f5f0f7;
  color: #43124a;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 1px solid #e8e4ec;
}

.camc-table tbody tr:hover,
.camc-table-host .table-hover tbody tr:hover,
.camc-table-host .table tr:hover {
  background: #faf8fb;
}

.camc-num {
  color: #6b7280;
  font-weight: 600;
  width: 3rem;
}

.camc-amc-no {
  color: #5b1a62;
  font-weight: 700;
}

.camc-cell-edit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.camc-cell-value {
  color: #374151;
}

.camc-table-host .editIcon {
  margin-left: 0;
  color: #5b1a62;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.camc-table-host .editIcon:hover {
  opacity: 1;
}

.camc-table-host .hideInfo {
  display: none;
}

.camc-cost-btn,
.camc-table-host .btn,
.camc-table-host .btn-success,
.camc-table-host .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  min-height: 2.15rem;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
}

.camc-cost-btn,
.camc-table-host .btn-success {
  background: #059669;
  color: #fff;
}

.camc-cost-btn:hover,
.camc-table-host .btn-success:hover {
  background: #047857;
}

.camc-table-host .btn-primary {
  background: #5b1a62;
  color: #fff;
}

.camc-table-host .inpBorder,
.camc-table-host .form-control,
.camc-table-host .dateClass,
.camc-table-host .amc_master_cls,
.camc-table-host .searchNamecls {
  width: 100%;
  max-width: 12rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid #d1d5db;
  border-radius: 0.45rem;
  font-size: 0.8125rem;
  background: #fff;
}

.camc-table-host .input-group {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.camc-table-host .fee_Lis_btn,
.camc-table-host .staffInfoUpdate {
  background: #059669;
  color: #fff;
  border: none;
  border-radius: 0.45rem;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
}

.camc-create-modal {
  margin-top: 0;
}

.camc-create-modal.is-open,
.camc-create-modal[style*="display: block"] {
  display: block;
}

.camc-create-panel .camc-form {
  padding: 1rem 1.15rem 1.25rem;
}

.camc-create-profile {
  padding: 0 1.15rem;
  margin-bottom: 0.25rem;
}

.camc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.camc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.camc-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
}

.camc-input,
.camc-form .form-control {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.55rem;
  font-size: 0.875rem;
  color: #111827;
  background: #fff;
  box-sizing: border-box;
}

.camc-input:focus,
.camc-form .form-control:focus {
  outline: none;
  border-color: #5b1a62;
  box-shadow: 0 0 0 3px rgba(91, 26, 98, 0.12);
}

.camc-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.camc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.15rem;
  border-radius: 0.55rem;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.camc-btn-primary {
  background: #5b1a62;
  color: #fff;
}

.camc-btn-primary:hover {
  background: #43124a;
}

.camc-btn-secondary {
  background: #059669;
  color: #fff;
}

.camc-btn-secondary:hover {
  background: #047857;
}

.camc-form label.error {
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 500;
}

#customerAmcRequestPageRoot .ui-datepicker {
  z-index: 10050 !important;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .camc-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .camc-chip,
  .camc-chip-create {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .camc-form-grid {
    grid-template-columns: 1fr;
  }

  .camc-form-actions .camc-btn {
    width: 100%;
    justify-content: center;
  }

  .camc-profile {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .camc-card-profile,
  .camc-card-toolbar,
  .camc-panel-head,
  .camc-product-block {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}


