/* 
Theme Name:		 Customify Child
Theme URI:		 http://mondaydigital.com/
Description:	 Customify Child is a child theme of Customify, created by ChildTheme-Generator.com
Author:			 Khalid - Monday Digital
Author URI:		 http://mondaydigital.com/
Template:		 customify
Version:		 1.0.0
Text Domain:	 customify-child
*/


/*
    Add your custom styles here
*/

/* ============================================================
   SALON 221 – HAIRCUTS SERVICE PAGE
   WordPress stylesheet — all selectors prefixed with .hs-
   to avoid conflicts with theme styles.
   ============================================================ */

/* ===== SCOPED RESET ===== */
/*
Source - https://stackoverflow.com/a/44543771
Posted by Yann39, modified by community. See post 'Timeline' for change history
Retrieved 2026-05-21, License - CC BY-SA 4.0
*/
a.dialog-close-button.dialog-lightbox-close-button {
    text-decoration: unset;
}
.grecaptcha-badge { 
    visibility: hidden !important;
}

.single.single-post [class~=customify-grid],
.single.single-post [class*=customify-grid-],
.single.single-post [class*=customify-grid_] {

  margin: 0 0em !important;
}
.hs-hero, .hs-why, .hs-pricing, .hs-specialists,
.hs-serving, .hs-reviews {
  box-sizing: border-box;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hs-hero *, .hs-why *, .hs-pricing *, .hs-specialists *,
.hs-serving *, .hs-reviews * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hs-hero img, .hs-why img, .hs-pricing img,
.hs-specialists img, .hs-serving img, .hs-reviews img {
  display: block;
  max-width: 100%;
}

.hs-hero a, .hs-why a, .hs-pricing a,
.hs-specialists a, .hs-serving a, .hs-reviews a {
  text-decoration: none;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --hs-purple:      #973EBB;
  --hs-black:       #111111;
  --hs-dark-bg:     #131211;
  --hs-white:       #ffffff;
  --hs-gray-bg:     #F5F2F8;
  --hs-card-bg:     #F7F7F7;
  --hs-inner-card:  #F6F6F6;
  --hs-star:        #FAAE4B;
  --hs-body-text:   #555555;
  --hs-price-label: #888888;
  --hs-divider:     #e5e5e5;
  --hs-container:   1296px;
  --hs-font-script: 'Great Vibes', cursive;
}

/* ===== CONTAINER ===== */
.hs-container {
  max-width: var(--hs-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* ===== UTILITY ===== */
.hs-purple  { color: var(--hs-purple); }
.hs-italic  { font-style: italic; }
.hs-script  { font-family: var(--hs-font-script); }

/* ===== SECTION HEADER ===== */
.hs-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.hs-section-header h2 {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--hs-black);
}

.hs-section-header p {
  font-size: 14px;
  color: var(--hs-body-text);
}

/* ===== BUTTONS ===== */
.hs-btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 5px;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  text-align: center;
  white-space: nowrap;
}

.hs-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hs-btn--purple {
  background: var(--hs-purple);
  color: #fff!important;
  border: 2px solid var(--hs-purple);
}

.hs-btn--dark {
  background: var(--hs-black);
  color: #fff;
  border: 2px solid var(--hs-black);
}

.hs-btn--outline {
  background: transparent;
  color: var(--hs-black);
  border: 1.5px solid var(--hs-black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 28px;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hs-hero {
  position: relative;
  min-height: 620px;
  background-color: #1a1918;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.hs-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.60);
  pointer-events: none;
}

.hs-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 720px;
  width: 100%;
}

.hs-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

.hs-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
}

.hs-breadcrumb .current {
  color: rgba(255, 255, 255, 0.9);
}

.hs-hero__content h1 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #fff;
}

.hs-hero__body {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin: 0 auto 42px;
}

.hs-hero__note {
  margin-top: 22px !important;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}


/* ============================================================
   WHY SECTION
   ============================================================ */
.hs-why {
  background: #fff;
}

.hs-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 900px;
  padding: 40px 0px;
}

.hs-why__text {
  padding: 90px 70px 90px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hs-why__heading {
  font-size: clamp(26px, 2.8vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 20px;
  color: var(--hs-black);
}

.hs-why__heading .hs-script {
  font-family: var(--hs-font-script);
  font-size: clamp(34px, 3.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  display: inline;
}

.hs-why__intro {
  font-size: 14px;
  color: var(--hs-body-text);
  line-height: 1.75;
  margin-bottom: 50px;
  max-width: 480px;
}

.hs-features {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 52px;
}

.hs-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.hs-pricing__row.hs-pricing__row--reverse {
    padding-bottom: 90px;
}
.hs-feature__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.hs-feature__content h3 {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--hs-black);
}

.hs-feature__content p {
  font-size: 14px;
  color: var(--hs-body-text);
  line-height: 1.7;
}

.hs-why__image {
  overflow: hidden;
}

.hs-why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* ============================================================
   PRICING SECTION
   ============================================================ */
.hs-pricing {
  background: var(--hs-dark-bg);
  color: #fff;
}

.hs-pricing__header {
  max-width: var(--hs-container);
  margin: 0 auto;
  padding: 96px 48px 64px;
  text-align: center;
}

.hs-pricing__header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: #fff;
}

.hs-pricing__header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
}

.hs-pricing__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  padding-bottom: 48px;
}

.hs-pricing__photo {
  overflow: hidden;
  position: relative;
}

.hs-pricing__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hs-pricing__card {
  background: #ffffff;
  color: var(--hs-black);
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hs-pricing__card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 36px;
  color: var(--hs-black);
}

.hs-price-list {
  width: 100%;
  margin-bottom: 44px;
}

.hs-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--hs-divider);
}

.hs-price-item:first-child {
  border-top: 1px solid var(--hs-divider);
}

.hs-price-item .service {
  font-size: 16px;
  font-weight: 400;
  color: var(--hs-price-label);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hs-price-item .price {
  font-size: 17px;
  font-weight: 700;
  color: var(--hs-black);
}


/* ============================================================
   SPECIALISTS SECTION
   ============================================================ */
.hs-specialists {
  background: #fff;
  padding: 96px 0 100px;
}

.hs-specialists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hs-specialist-card {
  background: var(--hs-card-bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hs-specialist-card__photo {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: #d0c8c8;
}

.hs-specialist-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.hs-specialist-card:hover .hs-specialist-card__photo img {
  transform: scale(1.04);
}

.hs-specialist-card__info {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--hs-inner-card);
}

.hs-specialist-card__info h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--hs-black);
  margin-bottom: 6px;
}

.hs-specialist-title {
  font-size: 15px;
  color: var(--hs-body-text);
  margin-bottom: 20px;
}


/* ============================================================
   SERVING AREAS SECTION
   ============================================================ */
.hs-serving {
  background: #fff;
  padding: 96px 0 100px;
}

.hs-serving__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hs-serving__map {
  border-radius: 4px;
  overflow: hidden;
  background: #c8dde8;
  min-height: 480px;
  display: flex;
  align-items: stretch;
}

.hs-serving__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hs-serving__text h2 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--hs-black);
}

.hs-serving__text > p {
  font-size: 14px;
  color: var(--hs-body-text);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hs-areas-grid {
  display: flex;
  flex-direction: column;
}

.hs-areas-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--hs-divider);
}

.hs-areas-row:first-child {
  border-top: 1px solid var(--hs-divider);
}

.hs-area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--hs-black);
  padding: 14px 0;
}

.hs-pin-icon {
  flex-shrink: 0;
}


/* ============================================================
   CUSTOMER REVIEWS SECTION
   ============================================================ */
.hs-reviews {
  background: var(--hs-gray-bg);
  padding: 96px 0 100px;
}

.hs-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.hs-review-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.hs-stars {
  font-size: 20px;
  color: var(--hs-star);
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.hs-review-quote {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--hs-black);
  margin-bottom: 16px;
}

.hs-review-body {
  font-size: 15px;
  color: var(--hs-body-text);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
}

.hs-review-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
  margin-top: auto;
}

.hs-reviewer-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--hs-black);
  margin-bottom: 4px;
}

.hs-review-date {
  font-size: 14px;
  color: #aaaaaa;
}

.hs-google-logo svg {
  display: block;
}

.hs-reviews__cta {
  text-align: center;
}
.single.single-post .customify-container, .archive .customify-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0;
}

.single.single-post main#main, .archive main#main {
    padding: 0 !important;
}

/* ============================================================
   RESPONSIVE – Tablet (≤ 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .hs-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hs-why__text {
    padding: 64px 48px 64px 64px;
  }

  .hs-pricing__card {
    padding: 48px 52px;
  }
}


/* ============================================================
   RESPONSIVE – Small Laptop / Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {

  .hs-why__grid {
    grid-template-columns: 1fr;
  }

  .hs-why__text {
    padding: 64px 40px;
  }

  .hs-why__image {
    min-height: 420px;
    order: -1;
  }

  .hs-pricing__row {
    grid-template-columns: 1fr;
  }

  .hs-pricing__photo {
    min-height: 320px;
  }

  .hs-pricing__row--reverse .hs-pricing__card {
    order: 0;
  }
  .hs-pricing__row--reverse .hs-pricing__photo {
    order: 1;
  }

  .hs-pricing__card {
    padding: 48px 40px;
  }

  .hs-specialists__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hs-serving__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hs-serving__map {
    min-height: 360px;
  }

  .hs-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   RESPONSIVE – Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .hs-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hs-hero {
    min-height: 520px;
    padding: 100px 20px 60px;
  }

  .hs-why__text {
    padding: 48px 20px;
  }

  .hs-why__heading {
    font-size: 30px;
  }

  .hs-why__heading .hs-script {
    font-size: 38px;
  }

  .hs-pricing__header {
    padding: 64px 20px 40px;
  }

  .hs-pricing__card {
    padding: 40px 24px;
  }

  .hs-pricing__header p {
    font-size: 15px;
  }

  .hs-specialists__grid {
    grid-template-columns: 1fr;
  }

  .hs-serving {
    padding: 64px 0 72px;
  }

  .hs-areas-row {
    grid-template-columns: 1fr;
  }

  .hs-reviews__grid {
    grid-template-columns: 1fr;
  }

  .hs-reviews {
    padding: 64px 0 72px;
  }

  .hs-section-header {
    margin-bottom: 40px;
  }

  .hs-specialists {
    padding: 64px 0 72px;
  }

  .hs-pricing__photo {
    min-height: 260px;
  }
}


/* FAQs - Added by N.Sakib-Monday Digital - Start */
.sp-faq-mdjhd {
    padding: 120px 0;
    background-color: #F8FAFD;
}

.sp-faq-main-mdjhd {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.sp-faq-lb-mdjhd {
    max-width: 432px;
}

.sp-faq-title-mdjhd {
    padding-top: 20px;
    font-weight: 400;
}

.sp-faq-cb-mdjhd {
    width: 100%;
}

.sp-faq-cbi-mdjhd {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sp-faq-db-mdjhd {
    border-radius: 24px;
    border: 1px solid #EBEBEB;
    background-color: #FFFFFF;
}

.sp-faq-dtb-mdjhd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 36px 32px;
    cursor: pointer;
}

.sp-faq-dmi-mdjhd {
    display: none;
}

.sp-faq-dt-mdjhd {
    font-family: 'Onest', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.24px;
    color: #000000;
    max-width: 90%;
}

.sp-faq-dd-mdjhd {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    padding: 0 32px 36px 32px;
    max-width: 95%;
    margin-top: -16px;
	margin-bottom: 0;
}

.sp-faq-di-mdjhd {
        max-width: 20px;
        width: 100%;
        height: 100%;
    }


/* =========================
   TEAM MEMBERS - HIDDEN
========================= */

body:not(.team-expanded) .st_card_4_mdkhd,
body:not(.team-expanded) .st_card_5_mdkhd,
body:not(.team-expanded) .st_card_6_mdkhd,
body:not(.team-expanded) .st_card_7_mdkhd,
body:not(.team-expanded) .st_card_8_mdkhd,
body:not(.team-expanded) .st_card_9_mdkhd,
body:not(.team-expanded) .st_card_10_mdkhd,
body:not(.team-expanded) .st_card_11_mdkhd{
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateY(24px);
    pointer-events: none;
    transition:
        opacity .7s ease,
        transform .7s ease,
        max-height .7s ease,
        visibility .7s ease;
}

/* =========================
   TEAM MEMBERS - REVEAL
========================= */

body.team-expanded .st_card_4_mdkhd,
body.team-expanded .st_card_5_mdkhd,
body.team-expanded .st_card_6_mdkhd,
body.team-expanded .st_card_7_mdkhd,
body.team-expanded .st_card_8_mdkhd,
body.team-expanded .st_card_9_mdkhd,
body.team-expanded .st_card_10_mdkhd,
body.team-expanded .st_card_11_mdkhd{
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    overflow: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* =========================
   STAGGER EFFECT
========================= */

body.team-expanded .st_card_4_mdkhd{
    transition-delay: .10s;
}

body.team-expanded .st_card_5_mdkhd{
    transition-delay: .20s;
}

body.team-expanded .st_card_6_mdkhd{
    transition-delay: .30s;
}

body.team-expanded .st_card_7_mdkhd{
    transition-delay: .40s;
}

body.team-expanded .st_card_8_mdkhd{
    transition-delay: .50s;
}

body.team-expanded .st_card_9_mdkhd{
    transition-delay: .60s;
}

body.team-expanded .st_card_10_mdkhd{
    transition-delay: .70s;
}

body.team-expanded .st_card_11_mdkhd{
    transition-delay: .80s;
}

/* =========================
   SEE MORE BUTTON
========================= */

#team-seemore{
    transition:
        opacity .8s ease,
        transform .8s ease,
        max-height .8s ease,
        margin .8s ease,
        padding .8s ease;
}

body.team-expanded #team-seemore{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}


@media (max-width: 1024px) {
    .sp-faq-mdjhd {
        padding: 100px 0;
    }

    .sp-faq-cb-mdjhd {

    }

    .sp-faq-dtb-mdjhd {
        padding: 32px 28px;
    }

    .sp-faq-dd-mdjhd {

        padding: 0 28px 32px 28px;
    }

    .sp-faq-di-mdjhd {
        max-width: 18px;
    }
}

@media (max-width: 992px) {
    .sp-faq-mdjhd {
        padding: 80px 0;
    }

    .sp-faq-main-mdjhd {
        flex-direction: column;
    }

    .sp-faq-lb-mdjhd {
        max-width: 100%;
    }

    .sp-faq-title-mdjhd .block-mdjhd {
        display: inline;
    }

    .sp-faq-cb-mdjhd {
        max-width: 100%;
    }

    .sp-faq-dd-mdjhd {
        max-width: 85%;
    }

    .sp-faq-dtb-mdjhd {
        padding: 28px 24px;
    }

    .sp-faq-db-mdjhd {
        border-radius: 20px;
    }

    .sp-faq-dd-mdjhd {
        padding: 0 24px 28px 24px;
        margin-top: -12px;
    }

    .sp-faq-cbi-mdjhd {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .sp-faq-mdjhd {
        padding: 60px 0;
    }

    .sp-faq-title-mdjhd {
        padding-top: 16px;
    }

    .sp-faq-main-mdjhd {
        gap: 24px;
    }

    .sp-faq-db-mdjhd {
        border-radius: 16px;
    }

    .sp-faq-dtb-mdjhd {
        padding: 24px 20px;
    }

    .sp-faq-dd-mdjhd {
        padding: 0 20px 24px 20px;
        margin-top: -8px;
        font-size: 16px;
    }

    .sp-faq-di-mdjhd {
        max-width: 16px;
    }

    .sp-faq-dt-mdjhd {
        font-size: 20px;
    }

    .sp-faq-cbi-mdjhd {
        gap: 16px;
    }
}
/* FAQs - Added by N.Sakib-Monday Digital - End */




    .s221-faq,
    .s221-faq *,
    .s221-faq *::before,
    .s221-faq *::after { box-sizing: border-box !important; }

    .s221-faq {
      max-width: 880px !important;
      margin: 56px auto !important;
      padding: 0 20px !important;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
      color: #3a3a40 !important;
      line-height: 1.6 !important;
      background: transparent !important;
    }

    .s221-faq__head {
      text-align: center !important;
      margin: 0 0 36px !important;
    }
    .s221-faq__eyebrow {
      display: inline-block !important;
      font-size: 12px !important;
      font-weight: 600 !important;
      letter-spacing: 2.5px !important;
      text-transform: uppercase !important;
      color: #8e6f4d !important;
      margin-bottom: 14px !important;
      background: transparent !important;
    }
    .s221-faq .s221-faq__title {
      font-family: "Playfair Display", Georgia, "Times New Roman", serif !important;
      font-size: clamp(28px, 4vw, 40px) !important;
      font-weight: 700 !important;
      line-height: 1.15 !important;
      color: #1a1a1d !important;
      margin: 0 0 14px !important;
      letter-spacing: -0.3px !important;
      text-align: center !important;
    }
    .s221-faq__sub {
      font-size: 16px !important;
      color: #6b6b73 !important;
      margin: 0 !important;
    }
    .s221-faq__sub a {
      color: #8e6f4d !important;
      font-weight: 600 !important;
      text-decoration: none !important;
      border-bottom: 1px solid currentColor !important;
    }
    .s221-faq__sub a:hover { color: #1a1a1d !important; }

    .s221-faq__list {
      display: flex !important;
      flex-direction: column !important;
      gap: 12px !important;
      list-style: none !important;
      padding: 0 !important;
      margin: 0 !important;
    }

    .s221-faq__item {
      background: #ffffff !important;
      border: 1px solid #e6dccb !important;
      border-radius: 14px !important;
      overflow: hidden !important;
      transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
      padding: 0 !important;
      margin: 0 !important;
      list-style: none !important;
    }
    .s221-faq__item:hover { border-color: #d4c7ad !important; }
    .s221-faq__item.is-open {
      border-color: #b89368 !important;
      box-shadow: 0 8px 28px rgba(20, 18, 14, 0.08) !important;
    }

    /* Question row — div, not button, so theme styles can't reach it */
    .s221-faq .s221-faq__q {
      all: unset;
      width: 100% !important;
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 20px !important;
      padding: 20px 24px !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      cursor: pointer !important;
      text-align: left !important;
      color: #1a1a1d !important;
      font-family: inherit !important;
      font-size: 17px !important;
      font-weight: 600 !important;
      line-height: 1.4 !important;
      text-transform: none !important;
      letter-spacing: 0 !important;
      box-shadow: none !important;
      outline: none !important;
      -webkit-tap-highlight-color: transparent !important;
      transition: background-color 0.2s ease !important;
      box-sizing: border-box !important;
    }
    .s221-faq .s221-faq__q:hover { background: #faf7f2 !important; }

    /* Keep focus outline ONLY for keyboard users, never on mouse click */
    .s221-faq .s221-faq__q:focus { outline: none !important; box-shadow: none !important; }
    .s221-faq .s221-faq__q:focus-visible {
      outline: 2px solid #b89368 !important;
      outline-offset: -2px !important;
    }

    .s221-faq__q-text {
      flex: 1 1 auto !important;
      color: inherit !important;
      background: transparent !important;
      text-align: left !important;
    }

    .s221-faq__icon {
      flex: 0 0 28px !important;
      width: 28px !important;
      height: 28px !important;
      position: relative !important;
      border-radius: 50% !important;
      background: #faf7f2 !important;
      border: 1px solid #e6dccb !important;
      transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.3s ease !important;
      display: inline-block !important;
    }
    .s221-faq__icon::before,
    .s221-faq__icon::after {
      content: "" !important;
      position: absolute !important;
      top: 50% !important;
      left: 50% !important;
      width: 12px !important;
      height: 2px !important;
      background: #1a1a1d !important;
      border-radius: 2px !important;
      transform: translate(-50%, -50%) !important;
      transition: transform 0.3s ease, background-color 0.25s ease !important;
    }
    .s221-faq__icon::after {
      transform: translate(-50%, -50%) rotate(90deg) !important;
    }
    .s221-faq__item.is-open .s221-faq__icon {
      background: #b89368 !important;
      border-color: #b89368 !important;
      transform: rotate(180deg) !important;
    }
    .s221-faq__item.is-open .s221-faq__icon::before,
    .s221-faq__item.is-open .s221-faq__icon::after {
      background: #ffffff !important;
    }
    .s221-faq__item.is-open .s221-faq__icon::after {
      transform: translate(-50%, -50%) rotate(0deg) !important;
    }

    /* Panel — DO NOT use !important on display so jQuery slideDown can override */
    .s221-faq__a {
      display: none;
      overflow: hidden !important;
      background: transparent !important;
    }
    .s221-faq__a-inner {
      padding: 18px 24px 22px !important;
      border-top: 1px solid #e6dccb !important;
      background: transparent !important;
    }
    .s221-faq__a-inner p {
      margin: 0 !important;
      font-size: 15.5px !important;
      color: #6b6b73 !important;
      line-height: 1.7 !important;
      text-align: left !important;
      background: transparent !important;
    }

    @media (max-width: 600px) {
      .s221-faq { margin: 36px auto !important; }
      .s221-faq .s221-faq__q { padding: 16px 18px !important; font-size: 16px !important; gap: 14px !important; }
      .s221-faq__a-inner { padding: 14px 18px 18px !important; }
      .s221-faq__a-inner p { font-size: 15px !important; }
    }


  

