/*
Theme Name: ARIA5 Beauty
Theme URI: https://aria5.com
Author: ARIA5
Author URI: https://aria5.com
Description: Clean beauty website template for ARIA5 ready-made websites.
Version: 1.0.0
Text Domain: aria5-beauty
*/

/* ===== BEAUTY VARIABLES ===== */

:root {
  --beauty-bg: #fbf6f2;
  --beauty-surface: #ffffff;
  --beauty-surface-soft: #f1e4da;
  --beauty-text: #2b2421;
  --beauty-muted: #7d6f68;
  --beauty-accent: #d7b99f;
  --beauty-accent-dark: #a8755d;
  --beauty-border: rgba(43, 36, 33, 0.12);
  --beauty-shadow: 0 22px 60px rgba(65, 45, 32, 0.12);
  --beauty-radius: 26px;
  --beauty-container: 1180px;
}


/* ===== ARIA5 RESPONSIVE RULE =====
Desktop: default styles.
Tablet/small desktop: usually max-width 1100px / 900px.
Normal mobile: 321px–700/760px, keep card grids in 2 columns where readable.
Ultra-small only: max-width 320px may switch grids to 1 column.
Do NOT use 360/375/390/420px as "tiny phone" breakpoints for card grids.
===== ARIA5 RESPONSIVE RULE END ===== */

/* ===== BEAUTY BASE ===== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--beauty-bg);
  color: var(--beauty-text);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ===== BEAUTY LAYOUT ===== */

.beauty-container {
  width: min(100% - 40px, var(--beauty-container));
  margin-inline: auto;
}

.beauty-main {
  min-height: 70vh;
}

/* ===== BEAUTY BUTTONS ===== */

.beauty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.beauty-btn-primary {
  background: var(--beauty-accent);
  color: var(--beauty-text);
  box-shadow: 0 12px 28px rgba(168, 117, 93, 0.18);
}

.beauty-btn-primary:hover {
  background: var(--beauty-accent-dark);
  color: #fff;
}

.beauty-btn-outline {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--beauty-border);
  color: var(--beauty-text);
}

.beauty-btn-outline:hover {
  background: #fff;
  border-color: rgba(43, 36, 33, 0.24);
}

/* ===== BEAUTY HEADER ===== */

.beauty-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 242, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.beauty-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.beauty-logo-img {
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.beauty-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.beauty-brand-name {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.beauty-brand-tagline {
  margin-top: 5px;
  font-size: 11px;
  color: var(--beauty-muted);
  letter-spacing: 0.04em;
}

.beauty-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.beauty-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beauty-nav-list a {
  font-size: 14px;
  color: var(--beauty-text);
  transition: 0.2s ease;
}

.beauty-nav-list a:hover {
  color: var(--beauty-accent-dark);
}

.beauty-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.beauty-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--beauty-border);
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  cursor: pointer;
}

.beauty-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--beauty-text);
  border-radius: 20px;
}
/* ===== BEAUTY HEADER SEARCH START ===== */

.beauty-header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 170px;
  height: 42px;
  overflow: hidden;
  border: 1px solid var(--beauty-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.beauty-header-search input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 42px 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--beauty-text);
  font-size: 13px;
  line-height: 1;
}

.beauty-header-search input::placeholder {
  color: var(--beauty-muted);
}

.beauty-header-search button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--beauty-accent);
  color: #2b2421;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.beauty-header-search-mobile {
  display: none;
}

/* tablet/header compact */
@media (max-width: 1100px) {
  .beauty-header-search-desktop {
    width: 135px;
  }
}

/* mobile menu search */
@media (max-width: 900px) {
  .beauty-header-search-desktop {
    display: none;
  }

  .beauty-header-search-mobile {
    display: flex;
    width: 100%;
    height: 46px;
    margin-top: 18px;
  }

  .beauty-header-search-mobile input {
    font-size: 15px;
  }
}

/* ===== BEAUTY HEADER SEARCH END ===== */
/* ===== BEAUTY FOOTER ===== */

.beauty-site-footer {
  margin-top: 0;
  padding: 44px 0 28px;
  background: #f4e8df;
  border-top: 1px solid var(--beauty-border);
}

.beauty-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.beauty-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.beauty-footer-name {
  font-family: Georgia, serif;
  font-size: 24px;
}

.beauty-footer-text {
  color: var(--beauty-muted);
  font-size: 14px;
}

.beauty-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.beauty-footer-links a {
  font-size: 14px;
  color: var(--beauty-text);
}

.beauty-footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--beauty-border);
  color: var(--beauty-muted);
  font-size: 13px;
}

/* ===== BEAUTY RESPONSIVE ===== */

@media (max-width: 900px) {
  .beauty-header-inner {
    min-height: 68px;
  }

  .beauty-menu-toggle {
    display: inline-block;
  }

  .beauty-nav {
    position: fixed;
    inset-inline: 20px;
    top: 82px;
    display: none;
    padding: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--beauty-border);
    border-radius: 24px;
    box-shadow: var(--beauty-shadow);
  }

  body.beauty-menu-open .beauty-nav {
    display: block;
  }

  .beauty-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .beauty-nav-list li {
    border-bottom: 1px solid var(--beauty-border);
  }

  .beauty-nav-list li:last-child {
    border-bottom: 0;
  }

  .beauty-nav-list a {
    display: block;
    padding: 13px 0;
    font-size: 16px;
  }

  .beauty-header-actions .beauty-btn-outline {
    display: none;
  }

  .beauty-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .beauty-container {
    width: min(100% - 24px, var(--beauty-container));
  }

  .beauty-brand {
    min-width: auto;
  }

  .beauty-logo-img {
    max-width: 126px;
  }

  .beauty-brand-name {
    font-size: 21px;
  }

  .beauty-header-actions .beauty-btn-primary {
    display: none;
  }
}

/* ===== BEAUTY HOME HERO START ===== */

.beauty-home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(215, 185, 159, 0.30), transparent 34%),
    linear-gradient(90deg, #fbf6f2 0%, #f7eee8 48%, #efe0d6 100%);
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-home-hero-inner {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 58px;
  padding-block: 38px 54px;
}

.beauty-home-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.beauty-home-hero-label {
  margin-bottom: 18px;
  color: var(--beauty-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beauty-home-hero-title {
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 5.6vw, 84px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #46372f;
}

.beauty-home-hero-subtitle {
  max-width: 500px;
  margin: 26px 0 0;
  color: var(--beauty-muted);
  font-size: 19px;
  line-height: 1.75;
}

.beauty-home-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.beauty-home-hero-media {
  position: relative;
  width: 100%;
  max-width: 570px;
  height: 500px;
  justify-self: end;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--beauty-shadow);
  background: var(--beauty-surface-soft);
}

.beauty-home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.beauty-home-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 246, 242, 0.18), transparent 42%),
    linear-gradient(180deg, transparent 58%, rgba(43, 36, 33, 0.08));
  pointer-events: none;
}

/* ===== BEAUTY HOME HERO END ===== */


/* ===== BEAUTY HOME RESPONSIVE START ===== */

@media (max-width: 1100px) {
  .beauty-home-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 42px;
    min-height: 560px;
    padding-block: 34px 48px;
  }

  .beauty-home-hero-title {
    font-size: clamp(50px, 5vw, 72px);
  }

  .beauty-home-hero-media {
    height: 460px;
    max-width: 520px;
  }
}

@media (max-width: 900px) {
  .beauty-home-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 42px;
  }

  .beauty-home-hero-content {
    max-width: 720px;
  }

  .beauty-home-hero-title {
    max-width: 680px;
    font-size: clamp(50px, 8vw, 70px);
  }

  .beauty-home-hero-subtitle {
    max-width: 620px;
  }

  .beauty-home-hero-media {
    height: 460px;
    max-width: 100%;
    justify-self: stretch;
    border-radius: 30px;
  }
}

@media (max-width: 560px) {
  .beauty-home-hero-inner {
    gap: 20px;
    padding-block: 24px 26px;
  }

  .beauty-home-hero-label {
    margin-bottom: 12px;
    font-size: 13px;
    letter-spacing: 0.14em;
  }

  .beauty-home-hero-title {
    font-size: clamp(32px, 8vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .beauty-home-hero-subtitle {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.5;
  }

  .beauty-home-hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .beauty-home-hero-actions .beauty-btn {
    width: 100%;
    min-height: 42px;
    padding: 10px 8px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.15;
    text-align: center;
  }

  .beauty-home-hero-media {
    height: 360px;
    border-radius: 28px;
  }

  .beauty-home-hero-media img {
    object-position: center top;
  }
}

/* ===== BEAUTY HOME RESPONSIVE END ===== */
/* ===== BEAUTY HOME SERVICES START ===== */

.beauty-home-services {
  padding: 54px 0 64px;
  background: #fbf6f2;
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.beauty-section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #46372f;
}

.beauty-section-subtitle {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--beauty-muted);
  font-size: 17px;
  line-height: 1.7;
}

.beauty-section-head-btn {
  flex-shrink: 0;
}

.beauty-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.beauty-service-card {
  overflow: hidden;
  border: 1px solid var(--beauty-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 46px rgba(65, 45, 32, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.beauty-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 117, 93, 0.28);
  box-shadow: 0 24px 62px rgba(65, 45, 32, 0.13);
}

.beauty-service-card-image {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: var(--beauty-surface-soft);
}

.beauty-service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.beauty-service-card:hover .beauty-service-card-image img {
  transform: scale(1.04);
}

.beauty-service-card-content {
  padding: 22px 22px 24px;
}

.beauty-service-card-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.14;
  font-weight: 500;
  color: #46372f;
}

.beauty-service-card-text {
  min-height: 58px;
  margin: 12px 0 0;
  color: var(--beauty-muted);
  font-size: 15px;
  line-height: 1.55;
}

.beauty-service-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--beauty-accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.beauty-service-card-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.beauty-service-card-link:hover::after {
  transform: translateX(3px);
}

/* ===== BEAUTY HOME SERVICES END ===== */


/* ===== BEAUTY HOME SERVICES RESPONSIVE START ===== */

@media (max-width: 1100px) {
  .beauty-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beauty-service-card-image {
    height: 260px;
  }
}

@media (max-width: 760px) {
  .beauty-home-services {
    padding: 38px 0 44px;
  }

  .beauty-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .beauty-section-title {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.05;
  }

  .beauty-section-subtitle {
    max-width: 100%;
    margin-top: 6px;
    font-size: 17px;
    line-height: 1.45;
  }

  .beauty-section-head-btn {
    display: none;
  }

  .beauty-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .beauty-service-card {
    border-radius: 18px;
  }

  .beauty-service-card-image {
    height: 160px;
  }

  .beauty-service-card-content {
    padding: 14px 14px 16px;
  }

  .beauty-service-card-title {
    font-size: 22px;
    line-height: 1.12;
  }

  .beauty-service-card-text {
    min-height: auto;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.45;
  }

  .beauty-service-card-link {
    margin-top: 14px;
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .beauty-services-grid {
    gap: 12px;
  }

  .beauty-service-card-image {
    height: 145px;
  }

  .beauty-service-card-content {
    padding: 12px 12px 14px;
  }

  .beauty-service-card-title {
    font-size: 20px;
  }

  .beauty-service-card-text {
    font-size: 14px;
  }

  .beauty-service-card-link {
    font-size: 13px;
  }
}

/* ===== BEAUTY HOME SERVICES RESPONSIVE END ===== */

/* ===== BEAUTY HOME PROMO START ===== */

.beauty-home-promo {
  padding: 42px 0 64px;
  background: #fbf6f2;
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-promo-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 52px 58px;
  border-radius: 34px;
  border: 1px solid var(--beauty-border);
  background:
    radial-gradient(circle at 82% 30%, rgba(215, 185, 159, 0.28), transparent 32%),
    linear-gradient(135deg, #f5e6dc 0%, #efe0d6 100%);
  background-size: cover;
  background-position: center right;
  box-shadow: 0 24px 70px rgba(65, 45, 32, 0.12);
  isolation: isolate;
}

.beauty-promo-card-has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 246, 242, 0.92) 0%, rgba(251, 246, 242, 0.72) 42%, rgba(251, 246, 242, 0.08) 100%),
    linear-gradient(90deg, rgba(120, 78, 55, 0.04) 0%, rgba(120, 78, 55, 0.08) 55%, rgba(120, 78, 55, 0.16) 100%);
  pointer-events: none;
}

.beauty-promo-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.beauty-promo-label {
  margin-bottom: 14px;
  color: var(--beauty-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beauty-promo-title {
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #46372f;
}

.beauty-promo-text {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--beauty-muted);
  font-size: 17px;
  line-height: 1.7;
}

.beauty-promo-btn {
  margin-top: 28px;
}

/* ===== BEAUTY HOME PROMO END ===== */


/* ===== BEAUTY HOME PROMO RESPONSIVE START ===== */

@media (max-width: 900px) {
  .beauty-home-promo {
    padding: 20px 0 58px;
  }

  .beauty-promo-card {
    min-height: 360px;
    padding: 42px;
    background-position: center right;
    border-radius: 32px;
  }

  .beauty-promo-card-has-image::before {
    background:
      linear-gradient(90deg, rgba(251, 246, 242, 0.95) 0%, rgba(251, 246, 242, 0.80) 58%, rgba(251, 246, 242, 0.18) 100%),
      linear-gradient(90deg, rgba(120, 78, 55, 0.04) 0%, rgba(120, 78, 55, 0.08) 60%, rgba(120, 78, 55, 0.14) 100%);
  }

  .beauty-promo-content {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .beauty-home-promo {
    padding: 28px 0 50px;
  }

  .beauty-promo-card {
    min-height: 420px;
    align-items: flex-start;
    padding: 30px 24px;
    border-radius: 30px;
    background-position: center bottom;
  }

  .beauty-promo-card-has-image::before {
    background:
      linear-gradient(180deg, rgba(251, 246, 242, 0.96) 0%, rgba(251, 246, 242, 0.82) 45%, rgba(251, 246, 242, 0.22) 100%),
      linear-gradient(180deg, rgba(120, 78, 55, 0.04) 0%, rgba(120, 78, 55, 0.08) 70%, rgba(120, 78, 55, 0.14) 100%);
  }

  .beauty-promo-label {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .beauty-promo-title {
    font-size: clamp(32px, 9vw, 42px);
  }

  .beauty-promo-text {
    font-size: 16px;
  }

  .beauty-promo-btn {
    width: 100%;
  }
}

/* ===== BEAUTY HOME PROMO RESPONSIVE END ===== */

/* ===== BEAUTY HOME GALLERY START ===== */

.beauty-home-gallery {
  padding: 58px 0 72px;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 185, 159, 0.16), transparent 30%),
    #fbf6f2;
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.beauty-gallery-item {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--beauty-surface-soft);
  box-shadow: 0 18px 48px rgba(65, 45, 32, 0.08);
  isolation: isolate;
}

.beauty-gallery-item:nth-child(1) {
  grid-column: span 4;
}

.beauty-gallery-item:nth-child(2) {
  grid-column: span 4;
}

.beauty-gallery-item:nth-child(3) {
  grid-column: span 4;
}

.beauty-gallery-item:nth-child(4) {
  grid-column: span 3;
}

.beauty-gallery-item:nth-child(5) {
  grid-column: span 5;
}

.beauty-gallery-item:nth-child(6) {
  grid-column: span 4;
}

.beauty-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.beauty-gallery-item:hover img {
  transform: scale(1.05);
}

.beauty-gallery-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  z-index: 2;
  padding: 15px 16px;
  border-radius: 20px;
  background: rgba(251, 246, 242, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(43, 36, 33, 0.10);
}

.beauty-gallery-category {
  display: block;
  margin-bottom: 5px;
  color: var(--beauty-accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.beauty-gallery-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 500;
  color: #46372f;
}

/* ===== BEAUTY HOME GALLERY END ===== */


/* ===== BEAUTY HOME GALLERY RESPONSIVE START ===== */

@media (max-width: 1100px) {
  .beauty-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beauty-gallery-item,
  .beauty-gallery-item:nth-child(1),
  .beauty-gallery-item:nth-child(2),
  .beauty-gallery-item:nth-child(3),
  .beauty-gallery-item:nth-child(4),
  .beauty-gallery-item:nth-child(5),
  .beauty-gallery-item:nth-child(6) {
    grid-column: auto;
  }

  .beauty-gallery-item {
    height: 320px;
  }
}

@media (max-width: 760px) {
  .beauty-home-gallery {
    padding: 38px 0 46px;
  }

  .beauty-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .beauty-gallery-item {
    height: 210px;
    border-radius: 18px;
  }

  .beauty-gallery-overlay {
    inset: auto 8px 8px 8px;
    padding: 10px 11px;
    border-radius: 15px;
  }

  .beauty-gallery-category {
    margin-bottom: 4px;
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .beauty-gallery-title {
    font-size: 17px;
    line-height: 1.12;
  }
}

@media (max-width: 320px) {
  .beauty-gallery-grid {
    gap: 12px;
  }

  .beauty-gallery-item {
    height: 185px;
  }

  .beauty-gallery-overlay {
    inset: auto 7px 7px 7px;
    padding: 9px 10px;
  }

  .beauty-gallery-title {
    font-size: 16px;
  }
}

/* ===== BEAUTY HOME GALLERY RESPONSIVE END ===== */

/* ===== BEAUTY STICKY HEADER FIX START ===== */

.beauty-site-header,
.beauty-header,
header.beauty-site-header,
header.beauty-header {
  position: sticky;
  top: 0;
  z-index: 9990;
}

body.admin-bar .beauty-site-header,
body.admin-bar .beauty-header,
body.admin-bar header.beauty-site-header,
body.admin-bar header.beauty-header {
  top: 32px;
}

/* ===== BEAUTY STICKY HEADER FIX END ===== */

/* ===== BEAUTY HOME TRUST START ===== */

.beauty-home-trust {
  padding: 68px 0 76px;
  background: linear-gradient(180deg, #fbf6f2 0%, #f4e8df 100%);
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.beauty-trust-content {
  position: sticky;
  top: 120px;
}

.beauty-trust-label {
  margin-bottom: 16px;
  color: var(--beauty-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beauty-trust-title {
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #46372f;
}

.beauty-trust-subtitle {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--beauty-muted);
  font-size: 17px;
  line-height: 1.72;
}

.beauty-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.beauty-trust-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--beauty-border);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 48px rgba(65, 45, 32, 0.08);
}

.beauty-trust-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(215, 185, 159, 0.22);
}

.beauty-trust-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #f3e3d8;
  color: var(--beauty-accent-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.beauty-trust-card-title {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 500;
  color: #46372f;
}

.beauty-trust-card-text {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--beauty-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .beauty-trust-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .beauty-trust-content {
    position: static;
  }
}

@media (max-width: 760px) {
  .beauty-home-trust {
    padding: 38px 0 46px;
  }

  .beauty-trust-layout {
    gap: 24px;
  }

  .beauty-trust-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .beauty-trust-subtitle {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.55;
  }

  .beauty-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .beauty-trust-card {
    min-height: 210px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .beauty-trust-number {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    font-size: 13px;
  }

  .beauty-trust-card-title {
    font-size: 21px;
    line-height: 1.12;
  }

  .beauty-trust-card-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 320px) {
  .beauty-trust-grid {
    gap: 12px;
  }

  .beauty-trust-card {
    min-height: 195px;
    padding: 16px 14px;
  }

  .beauty-trust-card-title {
    font-size: 19px;
  }

  .beauty-trust-card-text {
    font-size: 13px;
  }
}

/* ===== BEAUTY HOME TRUST END ===== */


/* ===== BEAUTY HOME TRUST MOBILE APP FIX START ===== */

@media (max-width: 760px) {
  .beauty-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .beauty-trust-card {
    min-height: 210px;
    padding: 18px 16px;
    border-radius: 20px;
  }
}

@media (max-width: 320px) {
  .beauty-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .beauty-trust-card {
    min-height: 195px;
    padding: 16px 14px;
  }
}

/* ===== BEAUTY HOME TRUST MOBILE APP FIX END ===== */


/* ===== BEAUTY HOME REVIEWS START ===== */

.beauty-home-reviews {
  padding: 70px 0 76px;
  background:
    radial-gradient(circle at 86% 18%, rgba(215, 185, 159, 0.18), transparent 30%),
    #fbf6f2;
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-reviews-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.beauty-reviews-label {
  margin-bottom: 14px;
  color: var(--beauty-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beauty-reviews-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #46372f;
}

.beauty-reviews-subtitle {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--beauty-muted);
  font-size: 17px;
  line-height: 1.7;
}

.beauty-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.beauty-review-card {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--beauty-border);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(65, 45, 32, 0.08);
}

.beauty-review-card::before {
  content: "“";
  position: absolute;
  right: 22px;
  top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 105px;
  line-height: 1;
  color: rgba(215, 185, 159, 0.22);
  pointer-events: none;
}

.beauty-review-rating {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: var(--beauty-accent-dark);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.beauty-review-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5f5049;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.42;
  font-weight: 500;
}

.beauty-review-author {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--beauty-border);
}

.beauty-review-name {
  margin: 0;
  color: #46372f;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.beauty-review-service {
  display: block;
  margin-top: 5px;
  color: var(--beauty-muted);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .beauty-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .beauty-home-reviews {
    padding: 46px 0 50px;
  }

  .beauty-reviews-head {
    margin-bottom: 20px;
  }

  .beauty-reviews-label {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .beauty-reviews-title {
    font-size: 34px;
    line-height: 1;
  }

  .beauty-reviews-subtitle {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .beauty-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .beauty-review-card {
    min-height: 155px;
    padding: 11px;
    border-radius: 17px;
  }

  .beauty-review-card::before {
    right: 8px;
    top: 3px;
    font-size: 46px;
  }

  .beauty-review-rating {
    margin-bottom: 8px;
    font-size: 8px;
    letter-spacing: 0.03em;
  }

  .beauty-review-text {
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .beauty-review-author {
    margin-top: 9px;
    padding-top: 8px;
  }

  .beauty-review-name {
    font-size: 10px;
    line-height: 1.2;
  }

  .beauty-review-service {
    margin-top: 2px;
    font-size: 8px;
    line-height: 1.2;
  }
}

@media (max-width: 320px) {
  .beauty-reviews-grid {
    grid-template-columns: 1fr;
  }

  .beauty-review-text {
    font-size: 12px;
  }

  .beauty-review-service {
    font-size: 10px;
  }
}

/* ===== BEAUTY HOME REVIEWS END ===== */

/* ===== BEAUTY HOME FINAL CTA START ===== */

.beauty-home-final-cta {
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 50% 10%, rgba(215, 185, 159, 0.22), transparent 32%),
    linear-gradient(180deg, #fbf6f2 0%, #f4e8df 100%);
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-final-cta-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 68px 72px;
  text-align: center;
  border-radius: 38px;
  border: 1px solid var(--beauty-border);
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 185, 159, 0.28), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(215, 185, 159, 0.20), transparent 28%),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 24px 70px rgba(65, 45, 32, 0.12);
}

.beauty-final-cta-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(215, 185, 159, 0.20);
}

.beauty-final-cta-card::after {
  content: "";
  position: absolute;
  left: -64px;
  bottom: -64px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(215, 185, 159, 0.16);
}

.beauty-final-cta-label,
.beauty-final-cta-title,
.beauty-final-cta-text,
.beauty-final-cta-btn,
.beauty-final-cta-note {
  position: relative;
  z-index: 2;
}

.beauty-final-cta-label {
  margin-bottom: 16px;
  color: var(--beauty-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beauty-final-cta-title {
  max-width: 820px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.8vw, 70px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #46372f;
}

.beauty-final-cta-text {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--beauty-muted);
  font-size: 18px;
  line-height: 1.75;
}

.beauty-final-cta-btn {
  margin-top: 34px;
}

.beauty-final-cta-note {
  margin: 18px 0 0;
  color: var(--beauty-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ===== BEAUTY HOME FINAL CTA END ===== */


/* ===== BEAUTY HOME FINAL CTA RESPONSIVE START ===== */

@media (max-width: 760px) {
  .beauty-home-final-cta {
    padding: 56px 0 62px;
  }

  .beauty-final-cta-card {
    padding: 48px 28px;
    border-radius: 30px;
  }

  .beauty-final-cta-text {
    font-size: 16px;
  }

  .beauty-final-cta-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .beauty-home-final-cta {
    padding: 48px 0 56px;
  }

  .beauty-final-cta-card {
    padding: 42px 22px;
    border-radius: 28px;
  }

  .beauty-final-cta-label {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .beauty-final-cta-title {
    font-size: clamp(34px, 9vw, 46px);
  }

  .beauty-final-cta-note {
    font-size: 13px;
  }
}

/* ===== BEAUTY HOME FINAL CTA RESPONSIVE END ===== */

/* ===== BEAUTY FOOTER START ===== */

.beauty-site-footer {
  padding: 54px 0 28px;
  background: #f4e8df;
  border-top: 1px solid var(--beauty-border);
}

.beauty-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.65fr) minmax(180px, 0.65fr);
  gap: 48px;
  padding-bottom: 34px;
}

.beauty-footer-brand {
  max-width: 420px;
}

.beauty-footer-logo {
  display: inline-flex;
  flex-direction: column;
  color: #46372f;
}

.beauty-footer-logo span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #46372f;
}

.beauty-footer-logo small {
  margin-top: 6px;
  color: var(--beauty-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beauty-footer-text {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--beauty-muted);
  font-size: 15px;
  line-height: 1.7;
}

.beauty-footer-heading {
  margin: 0 0 16px;
  color: var(--beauty-accent-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beauty-footer-menu {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beauty-footer-menu li {
  margin: 0;
  padding: 0;
}

.beauty-footer-menu a,
.beauty-footer-links a {
  color: #5f5049;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.beauty-footer-menu a:hover,
.beauty-footer-links a:hover {
  color: var(--beauty-accent-dark);
}

.beauty-footer-links {
  display: grid;
  gap: 10px;
}

.beauty-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  border-top: 1px solid var(--beauty-border);
  text-align: center;
}

.beauty-footer-bottom p {
  margin: 0;
  color: var(--beauty-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ===== BEAUTY FOOTER END ===== */


/* ===== BEAUTY FLOATING WHATSAPP START ===== */

.beauty-floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 22px 0 14px;
  border-radius: 999px;
  background: #d8b899;
  color: #2f251f;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(65, 45, 32, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.beauty-floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #cda987;
  color: #2f251f;
  box-shadow: 0 22px 54px rgba(65, 45, 32, 0.28);
}

.beauty-floating-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.beauty-floating-whatsapp-icon svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.beauty-floating-whatsapp-icon svg path {
  fill: currentColor;
}

/* ===== BEAUTY FLOATING WHATSAPP END ===== */


/* ===== BEAUTY FOOTER RESPONSIVE START ===== */

@media (max-width: 900px) {
  .beauty-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .beauty-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .beauty-site-footer {
    padding: 30px 0 24px;
    text-align: center;
  }

  .beauty-footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 22px;
    justify-items: center;
  }

  .beauty-footer-brand {
    max-width: 100%;
  }

  .beauty-footer-logo {
    align-items: center;
  }

  .beauty-footer-logo span {
    font-size: 28px;
  }

  .beauty-footer-logo small {
    font-size: 11px;
  }

  .beauty-footer-text {
    max-width: 320px;
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .beauty-footer-heading {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .beauty-footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .beauty-footer-menu a,
  .beauty-footer-links a {
    font-size: 14px;
    line-height: 1.2;
  }

  .beauty-footer-links {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .beauty-footer-bottom {
    justify-content: center;
    padding-top: 18px;
    text-align: center;
  }

  .beauty-footer-bottom p {
    width: 100%;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
  }

  .beauty-floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .beauty-floating-whatsapp-text {
    display: none;
  }

  .beauty-floating-whatsapp-icon {
    width: 34px;
    height: 34px;
  }
}

/* ===== BEAUTY FOOTER RESPONSIVE END ===== */

/* ===== BEAUTY BACK TO TOP START ===== */

.beauty-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 9998;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--beauty-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #46372f;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(65, 45, 32, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.beauty-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.beauty-back-to-top:hover {
  background: #f4e8df;
}

/* ===== BEAUTY BACK TO TOP END ===== */


/* ===== BEAUTY BACK TO TOP RESPONSIVE START ===== */

@media (max-width: 560px) {
  .beauty-back-to-top {
    right: 16px;
    bottom: 84px;
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
}

/* ===== BEAUTY BACK TO TOP RESPONSIVE END ===== */

/* ===== BEAUTY SERVICES PAGE START ===== */

.beauty-services-page-hero {
  padding: 48px 0 42px;
  background:
    radial-gradient(circle at 18% 20%, rgba(215, 185, 159, 0.20), transparent 30%),
    linear-gradient(180deg, #fbf6f2 0%, #f7eee8 100%);
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-services-page-hero-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 42px;
  align-items: center;
  padding: 52px 58px;
  border-radius: 38px;
  border: 1px solid var(--beauty-border);
  background:
    radial-gradient(circle at 90% 18%, rgba(215, 185, 159, 0.24), transparent 28%),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 24px 70px rgba(65, 45, 32, 0.10);
}

.beauty-services-page-hero-inner::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(215, 185, 159, 0.20);
}

.beauty-services-page-hero-content,
.beauty-services-page-hero-image {
  position: relative;
  z-index: 2;
}

.beauty-services-page-label {
  margin-bottom: 16px;
  color: var(--beauty-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beauty-services-page-title {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #46372f;
}

.beauty-services-page-subtitle {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--beauty-muted);
  font-size: 17px;
  line-height: 1.72;
}

.beauty-services-page-hero-image {
  overflow: hidden;
  height: 330px;
  border-radius: 30px;
  background: var(--beauty-surface-soft);
  box-shadow: 0 18px 46px rgba(65, 45, 32, 0.12);
}

.beauty-services-page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== BEAUTY SERVICES PAGE HERO END ===== */


/* ===== BEAUTY SERVICES PAGE LIST START ===== */

.beauty-services-page-list {
  padding: 52px 0 68px;
  background: #fbf6f2;
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-services-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.beauty-services-page-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--beauty-border);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(65, 45, 32, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.beauty-services-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 117, 93, 0.28);
  box-shadow: 0 22px 56px rgba(65, 45, 32, 0.13);
}

.beauty-services-page-card-image {
  height: 210px;
  overflow: hidden;
  background: var(--beauty-surface-soft);
}

.beauty-services-page-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.beauty-services-page-card:hover .beauty-services-page-card-image img {
  transform: scale(1.04);
}

.beauty-services-page-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.beauty-services-page-card-category {
  margin-bottom: 10px;
  color: var(--beauty-accent-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.beauty-services-page-card-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #46372f;
}

.beauty-services-page-card-text {
  margin: 13px 0 0;
  color: var(--beauty-muted);
  font-size: 14px;
  line-height: 1.65;
}

.beauty-services-page-card-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 20px;
}

.beauty-services-page-meta-item {
  min-width: 0;
  padding: 11px 13px;
  border-radius: 15px;
  background: #f4e8df;
  border: 1px solid var(--beauty-border);
}

.beauty-services-page-meta-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--beauty-muted);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.beauty-services-page-meta-item strong {
  display: block;
  color: #46372f;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}

.beauty-services-page-card-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 12px 16px;
  font-size: 13px;
}

/* ===== BEAUTY SERVICES PAGE LIST END ===== */


/* ===== BEAUTY SERVICES PAGE CTA START ===== */

.beauty-services-page-cta {
  padding: 60px 0 70px;
  background:
    radial-gradient(circle at 84% 18%, rgba(215, 185, 159, 0.20), transparent 30%),
    linear-gradient(180deg, #fbf6f2 0%, #f4e8df 100%);
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-services-page-cta-card {
  position: relative;
  overflow: hidden;
  padding: 50px 56px;
  border-radius: 34px;
  border: 1px solid var(--beauty-border);
  background:
    radial-gradient(circle at 90% 20%, rgba(215, 185, 159, 0.24), transparent 30%),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 22px 62px rgba(65, 45, 32, 0.10);
}

.beauty-services-page-cta-card::before {
  content: "";
  position: absolute;
  right: -64px;
  top: -64px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: rgba(215, 185, 159, 0.20);
}

.beauty-services-page-cta-label,
.beauty-services-page-cta-title,
.beauty-services-page-cta-text,
.beauty-services-page-cta-btn {
  position: relative;
  z-index: 2;
}

.beauty-services-page-cta-label {
  margin-bottom: 14px;
  color: var(--beauty-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beauty-services-page-cta-title {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #46372f;
}

.beauty-services-page-cta-text {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--beauty-muted);
  font-size: 16px;
  line-height: 1.72;
}

.beauty-services-page-cta-btn {
  margin-top: 26px;
}

/* ===== BEAUTY SERVICES PAGE CTA END ===== */


/* ===== BEAUTY SERVICES PAGE RESPONSIVE START ===== */

@media (max-width: 1180px) {
  .beauty-services-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beauty-services-page-card-image {
    height: 250px;
  }

  .beauty-services-page-card-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .beauty-services-page-hero {
    padding: 44px 0 38px;
  }

  .beauty-services-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 44px 34px;
    border-radius: 32px;
  }

  .beauty-services-page-hero-image {
    height: 320px;
  }

  .beauty-services-page-list {
    padding: 50px 0 62px;
  }

  .beauty-services-page-card {
    border-radius: 28px;
  }

  .beauty-services-page-card-content {
    padding: 28px;
  }

  .beauty-services-page-card-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .beauty-services-page-hero {
    padding: 36px 0 32px;
  }

  .beauty-services-page-hero-inner {
    padding: 34px 22px;
    border-radius: 28px;
  }

  .beauty-services-page-label,
  .beauty-services-page-card-category,
  .beauty-services-page-cta-label {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .beauty-services-page-title {
    font-size: clamp(38px, 10vw, 50px);
  }

  .beauty-services-page-subtitle {
    font-size: 16px;
  }

  .beauty-services-page-hero-image {
    height: 260px;
    border-radius: 24px;
  }

  .beauty-services-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .beauty-services-page-card-image {
    height: 250px;
  }

  .beauty-services-page-card-content {
    padding: 25px;
  }

  .beauty-services-page-card-title {
    font-size: 30px;
  }

  .beauty-services-page-card-meta {
    grid-template-columns: 1fr;
  }

  .beauty-services-page-cta {
    padding: 50px 0 56px;
  }

  .beauty-services-page-cta-card {
    padding: 40px 24px;
    border-radius: 30px;
  }

  .beauty-services-page-cta-title {
    font-size: clamp(34px, 9vw, 46px);
  }

  .beauty-services-page-cta-text {
    font-size: 16px;
  }

  .beauty-services-page-cta-btn {
    width: 100%;
  }
}
/* ===== BEAUTY SERVICES BUTTON ALIGN FIX START ===== */

.beauty-services-page-card-content {
  display: flex;
  flex-direction: column;
}

.beauty-services-page-card-text {
  min-height: 70px;
}

.beauty-services-page-card-meta {
  margin-top: auto;
}

.beauty-services-page-card-btn,
.beauty-services-page-card-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

/* ===== BEAUTY SERVICES BUTTON ALIGN FIX END ===== */
/* ===== BEAUTY SERVICES PAGE RESPONSIVE END ===== */
/* ===== BEAUTY SERVICES CTA WHATSAPP START ===== */

.beauty-services-page-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.beauty-services-page-cta-content,
.beauty-services-page-cta-actions {
  position: relative;
  z-index: 2;
}

.beauty-services-page-cta-actions {
  display: flex;
  justify-content: flex-end;
}

.beauty-services-page-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 210px;
  padding: 18px 30px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.beauty-services-page-cta-whatsapp:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(37, 211, 102, 0.36);
}

.beauty-services-page-cta-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.beauty-services-page-cta-whatsapp-icon svg,
.beauty-services-page-cta-whatsapp-icon svg path {
  fill: #ffffff;
}
/* ===== BEAUTY SERVICES CTA WHATSAPP END ===== */
@media (max-width: 700px) {
  .beauty-services-page-cta-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .beauty-services-page-cta-actions {
    justify-content: stretch;
  }

  .beauty-services-page-cta-whatsapp {
    width: 100%;
  }

  .beauty-services-page-card-text {
    min-height: auto;
  }
}
/* ===== BEAUTY SERVICES CARD FINAL ALIGNMENT START ===== */

.beauty-services-page-card {
  height: 100%;
}

.beauty-services-page-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.beauty-services-page-card-title {
  min-height: 64px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.beauty-services-page-card-text {
  min-height: 88px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.beauty-services-page-card-meta {
  margin-top: auto;
}

.beauty-services-page-card-btn {
  width: 100%;
  min-height: 46px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .beauty-services-page-card-title,
  .beauty-services-page-card-text {
    min-height: auto;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }
}

/* ===== BEAUTY SERVICES CARD FINAL ALIGNMENT END ===== */

/* ===== GALLERY FILTER START ===== */

.beauty-gallery-filter {
  padding: 30px 0;
  background: #fbf6f2;
}

.beauty-gallery-filter-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.beauty-gallery-filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--beauty-border);
  background: rgba(255,255,255,0.7);
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.beauty-gallery-filter-btn.is-active {
  background: var(--beauty-accent);
}

/* ===== GALLERY FILTER END ===== */


/* ===== GALLERY HERO START ===== */

.beauty-gallery-page-hero {
  padding: 60px 0 30px;
}

.beauty-gallery-page-hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.beauty-gallery-page-hero-content {
  flex: 1;
  max-width: 520px;
}

.beauty-gallery-page-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a67c52;
  margin-bottom: 12px;
}

.beauty-gallery-page-title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.beauty-gallery-page-subtitle {
  font-size: 16px;
  color: #6b5f58;
}

.beauty-gallery-page-hero-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.beauty-gallery-page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .beauty-gallery-page-hero-inner {
    flex-direction: column;
  }

  .beauty-gallery-page-hero-content {
    max-width: 100%;
  }
}

/* ===== GALLERY HERO END ===== */


/* ===== GALLERY PAGE GRID START ===== */

.beauty-gallery-page-grid {
  padding: 30px 0 20px;
}

/* ===== GALLERY PAGE GRID END ===== */


/* ===== GALLERY CTA START ===== */

.beauty-gallery-page-cta {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #fbf6f2 0%, #f4e8df 100%);
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-gallery-page-cta-card {
  position: relative;
  overflow: hidden;
  padding: 60px 60px;
  text-align: center;
  border-radius: 36px;
  border: 1px solid var(--beauty-border);
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 185, 159, 0.28), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(215, 185, 159, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 60px rgba(65, 45, 32, 0.12);
}

.beauty-gallery-page-cta-label {
  margin-bottom: 14px;
  color: var(--beauty-accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beauty-gallery-page-cta-title {
  max-width: 760px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #46372f;
}

.beauty-gallery-page-cta-text {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--beauty-muted);
  font-size: 16px;
  line-height: 1.7;
}

.beauty-gallery-page-cta-btn {
  margin-top: 26px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 760px) {
  .beauty-gallery-page-cta {
    padding: 50px 0 60px;
  }

  .beauty-gallery-page-cta-card {
    padding: 40px 24px;
    border-radius: 28px;
  }

  .beauty-gallery-page-cta-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .beauty-gallery-page-cta-title {
    font-size: clamp(30px, 8vw, 42px);
  }
}

/* ===== GALLERY CTA END ===== */

/* ===== BOOKING FLOW UI START ===== */

.beauty-booking-section {
  padding: 80px 20px;
}


.beauty-booking-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.beauty-booking-head h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.beauty-booking-head p {
  color: #7d6f68;
}

/* ===== PROGRESS ===== */

.booking-progress {
  display: flex;
  gap: 10px;
  margin: 30px 0;
}

.booking-progress-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.booking-progress-step.active {
  background: #d7b99f;
  color: #fff;
}

/* ===== STEPS ===== */

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.booking-step h2 {
  margin-bottom: 20px;
}

/* ===== FORM ===== */

.beauty-booking-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
}

.beauty-booking-form input,
.beauty-booking-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-top: 5px;
}

/* ===== BUTTONS ===== */

.booking-next,
#book-btn {
  background: #d7b99f;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 10px;
}

.booking-back {
  background: #eee;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
}

.booking-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* ===== SUMMARY ===== */

.booking-summary {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
}

.booking-summary p {
  margin-bottom: 8px;
}

/* ===== MESSAGE ===== */

.beauty-booking-message {
  margin-top: 20px;
  font-weight: 500;
  color: #2b2421;
}

/* ===== MOBILE ===== */

@media (max-width: 600px) {
  .beauty-booking-card {
    padding: 20px;
  }

  .booking-actions {
    flex-direction: column;
  }

  .booking-next,
  .booking-back,
  #book-btn {
    width: 100%;
  }
}

/* ===== BOOKING INNER WIDTH FIX START ===== */

.beauty-booking-form {
  max-width: 620px;
}

.booking-summary {
  max-width: 620px;
}

/* ===== BOOKING INNER WIDTH FIX END ===== */
/* ===== BOOKING FRAMED BOX FIX START ===== */

.beauty-booking-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  display: block;
  background: #ffffff;
  border: 1px solid rgba(215, 185, 159, 0.35);
  box-shadow: 0 24px 70px rgba(65, 45, 32, 0.12);
}

.beauty-booking-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 28px;
}

.beauty-booking-form {
  max-width: 520px;
  margin: 0 auto;
}

.booking-progress {
  justify-content: center;
}

.booking-step h2 {
  text-align: center;
}

.booking-summary {
  max-width: 520px;
  margin: 0 auto;
}

/* ===== BOOKING FRAMED BOX FIX END ===== */

/* ===== CUSTOM SELECT ARROW START ===== */

.beauty-booking-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%237d6f68' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;

  padding-right: 40px;
}

/* ===== CUSTOM SELECT ARROW END ===== */

/* ===== BOOKING MOBILE WIDTH FIX START ===== */

@media (max-width: 600px) {
  .beauty-booking-section {
    padding: 28px 12px;
  }

  .beauty-booking-card {
    max-width: none;
    width: 100%;
    padding: 28px 18px;
    border-radius: 0;
    box-shadow: none;
  }

  .beauty-booking-form {
    max-width: none;
    width: 100%;
  }

  .booking-summary {
    max-width: none;
    width: 100%;
  }

  .beauty-booking-form input,
  .beauty-booking-form select {
    width: 100%;
  }
}

/* ===== BOOKING MOBILE WIDTH FIX END ===== */

/* ===== BOOKING FLOW UI END ===== */

/* ===== BEAUTY ABOUT PAGE LAYOUT START ===== */

.beauty-about-hero {
  padding: 48px 0 42px;
}

.beauty-about-hero-inner {
  grid-template-columns: minmax(0, 1.12fr) minmax(240px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.beauty-about-hero-content {
  min-width: 0;
}

.beauty-about-hero-image {
  justify-self: end;
  width: 100%;
  max-width: 360px;
  height: 300px;
}

.beauty-about-hero-image img {
  object-fit: cover;
  object-position: center top;
}

.beauty-about-middle {
  padding: 56px 0 70px;
  background:
    radial-gradient(circle at 14% 16%, rgba(215, 185, 159, 0.18), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(215, 185, 159, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf6f2 0%, #f4e8df 100%);
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-about-section-stack {
  display: grid;
  gap: 28px;
}

.beauty-about-section,
.beauty-about-section-card,
.beauty-about-owner-layout {
  min-width: 0;
}

.beauty-about-middle-card,
.beauty-about-owner-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--beauty-border);
  background:
    radial-gradient(circle at 88% 16%, rgba(215, 185, 159, 0.20), transparent 30%),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 50px rgba(65, 45, 32, 0.09);
}

.beauty-about-middle-card {
  padding: 38px;
}

.beauty-about-kicker {
  margin-bottom: 14px;
  color: var(--beauty-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beauty-about-card-title {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #46372f;
  overflow-wrap: anywhere;
}

.beauty-about-card-text {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--beauty-muted);
  font-size: 16px;
  line-height: 1.72;
}

.beauty-about-philosophy-card {
  padding: 58px 64px;
  text-align: center;
}

.beauty-about-philosophy-title {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1.02;
}

.beauty-about-philosophy-text {
  max-width: 760px;
  margin: 20px auto 0;
}

.beauty-about-why-panel {
  padding: 42px;
  background:
    radial-gradient(circle at 92% 12%, rgba(215, 185, 159, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 252, 249, 0.86) 0%, rgba(246, 234, 224, 0.82) 100%);
}

.beauty-about-why-head {
  max-width: 760px;
  margin: 0 0 26px;
}

.beauty-about-why-title {
  font-size: clamp(36px, 3.5vw, 54px);
  letter-spacing: -0.035em;
}

.beauty-about-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.beauty-about-why-card {
  position: relative;
  min-width: 0;
  min-height: 150px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(168, 117, 93, 0.16);
  background: linear-gradient(145deg, rgba(255, 253, 250, 0.90) 0%, rgba(244, 231, 221, 0.72) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.beauty-about-why-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(215, 185, 159, 0.14);
}

.beauty-about-why-number,
.beauty-about-why-card-title,
.beauty-about-why-card-text {
  position: relative;
  z-index: 2;
}

.beauty-about-why-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #efe0d5;
  color: #8d5f49;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.beauty-about-why-card-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #46372f;
  overflow-wrap: anywhere;
}

.beauty-about-why-card-text {
  margin: 7px 0 0;
  color: var(--beauty-muted);
  font-size: 13px;
  line-height: 1.46;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.beauty-about-owner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.beauty-about-owner-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  background:
    radial-gradient(circle at 12% 88%, rgba(215, 185, 159, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.72);
}

.beauty-about-owner-title {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--beauty-accent-dark);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.beauty-about-owner-text {
  display: block;
  overflow: visible;
}

.beauty-about-owner-image-card {
  min-height: 390px;
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 185, 159, 0.26), transparent 34%),
    linear-gradient(145deg, #f6e9df 0%, #ffffff 100%);
  isolation: isolate;
}

.beauty-about-owner-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(43, 36, 33, 0.10) 100%);
  pointer-events: none;
}

.beauty-about-owner-image-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center top;
}

.beauty-about-owner-placeholder {
  position: relative;
  z-index: 2;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.beauty-about-owner-placeholder-mark {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(168, 117, 93, 0.28);
  background: rgba(255, 255, 255, 0.42);
}

.beauty-about-owner-placeholder-name {
  max-width: 330px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #46372f;
  overflow-wrap: anywhere;
}

.beauty-about-owner-placeholder-title {
  max-width: 330px;
  margin: 12px 0 0;
  color: var(--beauty-muted);
  font-size: 16px;
  line-height: 1.55;
}

.beauty-about-owner-detail {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 48px);
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(246, 232, 222, 0.76);
  box-shadow: 0 14px 34px rgba(65, 45, 32, 0.14);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.beauty-about-owner-detail span {
  color: #8d5f49;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.beauty-about-owner-detail strong {
  min-width: 0;
  color: #46372f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .beauty-about-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 0.56fr);
    gap: 24px;
    padding: 40px 34px;
  }

  .beauty-about-hero-image {
    max-width: 260px;
    height: 250px;
  }

  .beauty-about-middle {
    padding: 44px 0 56px;
  }

  .beauty-about-section-stack {
    gap: 22px;
  }

  .beauty-about-philosophy-card,
  .beauty-about-why-panel {
    padding: 36px 34px;
  }

  .beauty-about-philosophy-title {
    font-size: clamp(36px, 5.6vw, 54px);
  }

  .beauty-about-owner-layout {
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .beauty-about-hero {
    padding: 34px 0 30px;
  }

  .beauty-about-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 34vw);
    gap: 14px;
    padding: 26px 20px;
    border-radius: 26px;
  }

  .beauty-about-hero-title {
    font-size: clamp(30px, 8.8vw, 44px);
    line-height: 1;
  }

  .beauty-about-hero-subtitle {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.42;
  }

  .beauty-about-hero-image {
    max-width: none;
    height: clamp(150px, 38vw, 210px);
    border-radius: 20px;
  }

  .beauty-about-middle {
    padding: 34px 0 44px;
  }

  .beauty-about-section-stack {
    gap: 16px;
  }

  .beauty-about-middle-card,
  .beauty-about-owner-image-card {
    border-radius: 22px;
  }

  .beauty-about-middle-card,
  .beauty-about-philosophy-card,
  .beauty-about-why-panel {
    padding: 24px 20px;
  }

  .beauty-about-kicker {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .beauty-about-card-title,
  .beauty-about-why-title {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.025em;
  }

  .beauty-about-card-text,
  .beauty-about-owner-title {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.52;
  }

  .beauty-about-why-head {
    margin-bottom: 16px;
  }

  .beauty-about-why-grid {
    gap: 10px;
  }

  .beauty-about-why-card {
    min-height: 0;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    padding: 12px;
    border-radius: 16px;
  }

  .beauty-about-why-number {
    width: 30px;
    height: 30px;
    border-radius: 11px;
    font-size: 10px;
  }

  .beauty-about-why-card-title {
    font-size: 15px;
    line-height: 1.08;
  }

  .beauty-about-why-card-text {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.30;
  }

  .beauty-about-owner-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .beauty-about-owner-copy-card {
    min-height: 0;
  }

  .beauty-about-owner-image-card,
  .beauty-about-owner-image-card img,
  .beauty-about-owner-placeholder {
    min-height: 320px;
  }

  .beauty-about-owner-placeholder {
    padding: 24px 20px;
  }

  .beauty-about-owner-detail {
    top: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
    gap: 8px;
    padding: 9px 12px;
  }

  .beauty-about-owner-detail span {
    font-size: 8px;
    letter-spacing: 0.09em;
  }

  .beauty-about-owner-detail strong {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .beauty-about-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(92px, 32vw);
    gap: 10px;
    padding: 22px 16px;
  }

  .beauty-about-hero-title {
    font-size: clamp(26px, 8.4vw, 36px);
  }

  .beauty-about-hero-label {
    margin-bottom: 9px;
    font-size: 9px;
    letter-spacing: 0.10em;
  }

  .beauty-about-hero-subtitle {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.34;
  }

  .beauty-about-hero-image {
    height: clamp(120px, 36vw, 160px);
    border-radius: 16px;
  }

  .beauty-about-middle-card,
  .beauty-about-philosophy-card,
  .beauty-about-why-panel {
    padding: 20px 16px;
  }

  .beauty-about-card-title,
  .beauty-about-why-title {
    font-size: clamp(25px, 7.8vw, 32px);
  }

  .beauty-about-why-grid {
    gap: 8px;
  }

  .beauty-about-why-card {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 10px;
  }

  .beauty-about-why-number {
    width: 26px;
    height: 26px;
    border-radius: 9px;
    font-size: 9px;
  }
}

@media (max-width: 320px) {
  .beauty-about-hero-inner {
    grid-template-columns: 1fr;
  }

  .beauty-about-hero-image {
    justify-self: start;
    width: min(190px, 100%);
  }

  .beauty-about-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BEAUTY ABOUT PAGE LAYOUT END ===== */

/* ===== ABOUT HERO MOBILE SIDE IMAGE FIX START ===== */

.beauty-about-hero-inner {
  display: grid;
}

@media (max-width: 700px) {
  .beauty-about-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    align-items: center;
    gap: 14px;
  }

  .beauty-about-hero-image {
    display: block;
    width: 120px;
    height: 170px;
    justify-self: end;
  }

  .beauty-about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

/* ===== ABOUT HERO MOBILE SIDE IMAGE FIX END ===== */

/* ===== ABOUT HERO MOBILE IMAGE HEIGHT FIX START ===== */

@media (max-width: 700px) {

  .beauty-about-hero-inner {
    align-items: stretch;
  }

  .beauty-about-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .beauty-about-hero-image {
    width: 120px;
    height: 100%;
    min-height: 260px;
    align-self: stretch;
  }

  .beauty-about-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    object-position: center top;
  }
}

/* ===== ABOUT HERO MOBILE IMAGE HEIGHT FIX END ===== */
/* ===== ABOUT OWNER MOBILE TWO COLUMNS FIX START ===== */

@media (max-width: 700px) and (min-width: 321px) {
  .beauty-about-owner-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 12px;
    align-items: stretch;
  }

  .beauty-about-owner-copy-card {
    min-height: 0;
    padding: 22px 16px;
  }

  .beauty-about-owner-copy-card .beauty-about-card-title {
    font-size: clamp(23px, 5.8vw, 31px);
    line-height: 1.05;
  }

  .beauty-about-owner-title {
    font-size: 13px;
    line-height: 1.35;
  }

  .beauty-about-owner-text {
    font-size: 12.5px;
    line-height: 1.38;
  }

  .beauty-about-owner-image-card {
    min-height: 100%;
    height: auto;
  }

  .beauty-about-owner-image-card img {
    width: 100%;
    height: 100%;
    min-height: 315px;
    object-fit: cover;
    object-position: center top;
  }

  .beauty-about-owner-detail {
    top: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    padding: 7px 9px;
    gap: 5px;
  }

  .beauty-about-owner-detail span {
    font-size: 7px;
  }

  .beauty-about-owner-detail strong {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .beauty-about-owner-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT OWNER MOBILE TWO COLUMNS FIX END ===== */

/* ===== BEAUTY MASTERS PAGE START ===== */

.beauty-masters-page {
  background: #fbf6f2;
}

.beauty-masters-hero {
  padding: 32px 0 18px;
}

.beauty-masters-hero-card,
.beauty-masters-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--beauty-border);
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 185, 159, 0.24), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(215, 185, 159, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 250, 0.88) 0%, rgba(246, 234, 224, 0.78) 100%);
  box-shadow: 0 24px 70px rgba(65, 45, 32, 0.10);
}

.beauty-masters-hero-card {
  min-height: 260px;
  padding: 54px 62px;
  border-radius: 36px;
  text-align: center;
}

.beauty-masters-hero-card::before,
.beauty-masters-cta-card::before {
  content: "";
  position: absolute;
  top: -66px;
  right: -66px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: rgba(215, 185, 159, 0.18);
}

.beauty-masters-hero-card::after,
.beauty-masters-cta-card::after {
  content: "";
  position: absolute;
  left: -58px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(215, 185, 159, 0.12);
}

.beauty-masters-label,
.beauty-masters-hero-title,
.beauty-masters-hero-text,
.beauty-masters-cta-title,
.beauty-masters-cta-text,
.beauty-masters-cta-btn {
  position: relative;
  z-index: 2;
}

.beauty-masters-label {
  margin-bottom: 14px;
  color: var(--beauty-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beauty-masters-hero-title,
.beauty-masters-cta-title {
  max-width: 850px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
  color: #46372f;
  overflow-wrap: anywhere;
}

.beauty-masters-hero-text,
.beauty-masters-cta-text {
  max-width: 740px;
  margin: 20px auto 0;
  color: var(--beauty-muted);
  font-size: 17px;
  line-height: 1.72;
}

.beauty-masters-list {
  padding: 22px 0 36px;
  background:
    radial-gradient(circle at 16% 10%, rgba(215, 185, 159, 0.16), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(215, 185, 159, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf6f2 0%, #f4e8df 100%);
}

.beauty-masters-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.beauty-masters-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(43, 36, 33, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(65, 45, 32, 0.09);
}

.beauty-masters-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 185, 159, 0.24), transparent 34%),
    linear-gradient(145deg, #f6e9df 0%, #ffffff 100%);
}

.beauty-masters-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.beauty-masters-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent 0%, rgba(43, 36, 33, 0.11) 100%);
  pointer-events: none;
}

.beauty-masters-card-media.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.beauty-masters-photo-placeholder {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(168, 117, 93, 0.28);
  background: rgba(255, 255, 255, 0.42);
}

.beauty-masters-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  max-width: calc(100% - 32px);
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(246, 232, 222, 0.84);
  color: #704d3d;
  box-shadow: 0 14px 34px rgba(65, 45, 32, 0.14);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  overflow-wrap: anywhere;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.beauty-masters-card-content {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.beauty-masters-card-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
  color: #46372f;
  overflow-wrap: anywhere;
}

.beauty-masters-card-role {
  margin: 8px 0 0;
  color: var(--beauty-accent-dark);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.beauty-masters-card-text {
  margin: 14px 0 0;
  color: var(--beauty-muted);
  font-size: 14px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.beauty-masters-card-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.beauty-masters-card-chip {
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(168, 117, 93, 0.14);
  background: #f3e7de;
  color: #705246;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.beauty-masters-card-btn {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 12px 16px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.beauty-masters-card-specialties + .beauty-masters-card-btn {
  margin-top: 20px;
}

.beauty-masters-card-text + .beauty-masters-card-btn,
.beauty-masters-card-role + .beauty-masters-card-btn,
.beauty-masters-card-name + .beauty-masters-card-btn {
  margin-top: 20px;
}

.beauty-masters-cta {
  padding: 68px 0 78px;
  background:
    radial-gradient(circle at 50% 10%, rgba(215, 185, 159, 0.18), transparent 32%),
    linear-gradient(180deg, #f4e8df 0%, #fbf6f2 100%);
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-masters-cta-card {
  padding: 64px 70px;
  border-radius: 38px;
  text-align: center;
}

.beauty-masters-cta-title {
  max-width: 820px;
}

.beauty-masters-cta-btn {
  min-height: 48px;
  margin-top: 32px;
  padding-inline: 30px;
}

@media (max-width: 900px) {
  .beauty-masters-hero {
    padding: 40px 0 20px;
  }

  .beauty-masters-hero-card {
    min-height: 230px;
    padding: 44px 40px;
    border-radius: 32px;
  }

  .beauty-masters-hero-title,
  .beauty-masters-cta-title {
    font-size: 46px;
  }

  .beauty-masters-list {
    padding: 24px 0 56px;
  }

  .beauty-masters-grid {
    gap: 18px;
  }

  .beauty-masters-card-content {
    padding: 20px;
  }

  .beauty-masters-card-name {
    font-size: 28px;
  }

  .beauty-masters-cta {
    padding: 56px 0 64px;
  }

  .beauty-masters-cta-card {
    padding: 50px 42px;
    border-radius: 32px;
  }
}

@media (max-width: 700px) {
  .beauty-masters-hero {
    padding: 32px 0 14px;
  }

  .beauty-masters-hero-card {
    min-height: 0;
    padding: 30px 20px;
    border-radius: 26px;
  }

  .beauty-masters-label {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .beauty-masters-hero-title,
  .beauty-masters-cta-title {
    font-size: 36px;
    line-height: 1.06;
  }

  .beauty-masters-hero-text,
  .beauty-masters-cta-text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.52;
  }

  .beauty-masters-list {
  padding: 14px 0 28px;
  }

  .beauty-masters-grid {
    gap: 12px;
  }

  .beauty-masters-card {
    border-radius: 22px;
  }

  .beauty-masters-card-media {
    aspect-ratio: 4 / 4.5;
  }

  .beauty-masters-card-badge {
    top: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    padding: 7px 9px;
    font-size: 10px;
  }

  .beauty-masters-card-content {
    padding: 13px;
  }

  .beauty-masters-card-name {
    font-size: 22px;
    line-height: 1.08;
  }

  .beauty-masters-card-role {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.28;
  }

  .beauty-masters-card-text {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.38;
  }

  .beauty-masters-card-specialties {
    gap: 6px;
    margin-top: 12px;
  }

  .beauty-masters-card-chip {
    padding: 6px 8px;
    font-size: 10px;
  }

  .beauty-masters-card-btn {
    min-height: 42px;
    padding: 10px 10px;
    font-size: 12px;
  }

  .beauty-masters-card-specialties + .beauty-masters-card-btn,
  .beauty-masters-card-text + .beauty-masters-card-btn,
  .beauty-masters-card-role + .beauty-masters-card-btn,
  .beauty-masters-card-name + .beauty-masters-card-btn {
    margin-top: 14px;
  }

  .beauty-masters-cta {
    padding: 44px 0 54px;
  }

  .beauty-masters-cta-card {
    padding: 42px 22px;
    border-radius: 28px;
  }

  .beauty-masters-cta-btn {
    width: 100%;
    margin-top: 24px;
  }
}

@media (max-width: 320px) {
  .beauty-masters-hero-card {
    padding: 26px 16px;
  }

  .beauty-masters-hero-title,
  .beauty-masters-cta-title {
    font-size: 30px;
  }

  .beauty-masters-grid {
    gap: 8px;
  }

  .beauty-masters-card {
    border-radius: 18px;
  }

  .beauty-masters-card-content {
    padding: 10px;
  }

  .beauty-masters-card-name {
    font-size: 19px;
  }

  .beauty-masters-card-role,
  .beauty-masters-card-text {
    font-size: 11px;
  }

  .beauty-masters-card-chip {
    font-size: 9px;
  }

  .beauty-masters-card-btn {
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .beauty-masters-grid {
    grid-template-columns: 1fr;
  }

  .beauty-masters-card-media {
    aspect-ratio: 16 / 11;
  }

  .beauty-masters-card-content {
    padding: 16px;
  }

  .beauty-masters-card-name {
    font-size: 24px;
  }

  .beauty-masters-card-role {
    font-size: 13px;
  }

  .beauty-masters-card-text {
    font-size: 13px;
    line-height: 1.46;
  }

  .beauty-masters-card-chip {
    font-size: 11px;
  }

  .beauty-masters-card-btn {
    font-size: 13px;
  }
}

/* ===== BEAUTY MASTERS PAGE END ===== */
/* ===== MASTERS CARD IMAGE HEIGHT FIX START ===== */

.beauty-masters-card-media {
  aspect-ratio: 4 / 5.2;
}

@media (max-width: 700px) {
  .beauty-masters-card-media {
    aspect-ratio: 4 / 5.6;
  }
}

/* ===== MASTERS CARD IMAGE HEIGHT FIX END ===== */

/* ===== BEAUTY MASTERS CTA START ===== */

.beauty-masters-cta {
  padding: 24px 0 42px;
  background:
    radial-gradient(circle at 50% 10%, rgba(215, 185, 159, 0.18), transparent 32%),
    linear-gradient(180deg, #f4e8df 0%, #fbf6f2 100%);
  border-bottom: 1px solid var(--beauty-border);
}

.beauty-masters-cta-card {
  position: relative;
  overflow: hidden;
  padding: 64px 70px;
  border-radius: 38px;
  text-align: center;
  border: 1px solid var(--beauty-border);
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 185, 159, 0.24), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(215, 185, 159, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 250, 0.88) 0%, rgba(246, 234, 224, 0.78) 100%);
  box-shadow: 0 24px 70px rgba(65, 45, 32, 0.10);
}

.beauty-masters-cta-card::before {
  content: "";
  position: absolute;
  top: -66px;
  right: -66px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: rgba(215, 185, 159, 0.18);
}

.beauty-masters-cta-card::after {
  content: "";
  position: absolute;
  left: -58px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(215, 185, 159, 0.12);
}

.beauty-masters-cta-title,
.beauty-masters-cta-text,
.beauty-masters-cta-btn {
  position: relative;
  z-index: 2;
}

.beauty-masters-cta-title {
  max-width: 820px;
}

.beauty-masters-cta-btn {
  min-height: 48px;
  margin-top: 32px;
  padding-inline: 30px;
}

@media (max-width: 900px) {
  .beauty-masters-cta {
    padding: 26px 0 64px;
  }

  .beauty-masters-cta-card {
    padding: 50px 42px;
    border-radius: 32px;
  }
}

@media (max-width: 700px) {
  .beauty-masters-cta {
    padding: 18px 0 54px;
  }

  .beauty-masters-cta-card {
    padding: 42px 22px;
    border-radius: 28px;
  }

  .beauty-masters-cta-btn {
    width: 100%;
    margin-top: 24px;
  }
}

@media (max-width: 320px) {
  .beauty-masters-cta-card {
    padding: 34px 18px;
  }
}

/* ===== BEAUTY MASTERS CTA END ===== */


/* ===== ARIA5 ULTRA SMALL GRID RULE START ===== */

@media (max-width: 320px) {
  .beauty-services-page-grid,
  .beauty-services-grid,
  .beauty-gallery-grid,
  .beauty-trust-grid,
  .beauty-reviews-grid,
  .beauty-masters-grid,
  .beauty-about-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ARIA5 ULTRA SMALL GRID RULE END ===== */

/* ===== DEV MODE BAR START ===== */

.aria5-dev-bar {
position: relative;
z-index: 1;
  padding: 10px 16px;
  background: #d7b99f;
  color: #2b2421;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(43,36,33,0.12);
}

/* ===== DEV MODE BAR END ===== */

/* ===== BOOKING CONTAINER FIX START ===== */

.beauty-booking-section .beauty-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== BOOKING CONTAINER FIX END ===== */

/* ===== BEAUTY PACKAGES PAGE START ===== */

.beauty-packages-page {
  background: #fbf6f2;
}

.beauty-packages-hero {
  padding: 70px 0 42px;
}

.beauty-packages-hero-card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--beauty-border);
  box-shadow: 0 24px 70px rgba(65, 45, 32, 0.1);
}

.beauty-packages-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.beauty-packages-hero-image {
  height: 520px;
  overflow: hidden;
  border-radius: 30px;
}

.beauty-packages-hero-image img,
.beauty-package-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.beauty-packages-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
  color: #46372f;
}

.beauty-packages-subtitle {
  max-width: 520px;
  margin: 22px 0 0;
  color: #6f625c;
  font-size: 18px;
  line-height: 1.65;
}

.beauty-packages-list {
  padding: 34px 0 56px;
}

.beauty-packages-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.beauty-package-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--beauty-border);
  background: #fff;
  box-shadow: 0 24px 70px rgba(65, 45, 32, 0.12);
}

.beauty-package-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.beauty-package-content {
  position: relative;
  z-index: 2;
  width: 52%;
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    90deg,
    rgba(255, 250, 247, 0.98) 0%,
    rgba(255, 250, 247, 0.92) 82%,
    rgba(255, 250, 247, 0) 100%
  );
}

.beauty-package-badge,
.beauty-packages-label {
    margin-bottom: 10px;
    padding: 7px 10px;
    font-size: 9px;

    background: rgba(255, 248, 244, 0.96);
    backdrop-filter: blur(6px);

    color: var(--beauty-accent-dark);

    border: 1px solid rgba(168, 117, 93, 0.12);

    box-shadow: 0 6px 16px rgba(65, 45, 32, 0.06);
}

.beauty-package-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #46372f;
}

.beauty-package-description {
  margin: 16px 0 22px;
  color: #5f5049;
  font-size: 14px;
  line-height: 1.55;
}

.beauty-package-meta {
  display: grid;
  gap: 10px;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid rgba(168, 117, 93, 0.22);
  background: rgba(255, 246, 241, 0.72);
}

.beauty-package-meta-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--beauty-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beauty-package-meta-item strong {
  color: #46372f;
  font-size: 16px;
  font-weight: 800;
}

.beauty-package-btn {
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  justify-content: center;
}

.beauty-packages-cta {
  padding: 24px 0 82px;
}

.beauty-packages-cta-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  text-align: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--beauty-border);
  box-shadow: 0 22px 64px rgba(65, 45, 32, 0.09);
}

.beauty-packages-cta-card .beauty-packages-label {
  margin-left: auto;
  margin-right: auto;
}

.beauty-packages-cta-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #46372f;
}

.beauty-packages-cta-text {
  max-width: 520px;
  margin: 16px auto 0;
  color: #6f625c;
  font-size: 16px;
  line-height: 1.65;
}

.beauty-packages-cta-btn {
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .beauty-packages-hero-card {
    grid-template-columns: 1fr;
  }

  .beauty-packages-hero-image {
    height: 440px;
  }

  .beauty-packages-grid {
    grid-template-columns: 1fr;
  }

  .beauty-package-content {
    width: 44%;
  }
}

@media (max-width: 700px) {
  .beauty-packages-hero {
    padding: 42px 0 24px;
  }

  .beauty-packages-hero-card {
    padding: 18px;
    border-radius: 26px;
  }

  .beauty-packages-title {
    font-size: 38px;
  }

  .beauty-packages-subtitle {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .beauty-packages-hero-image {
    height: 300px;
    border-radius: 22px;
  }

  .beauty-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .beauty-package-card {
    min-height: 340px;
    border-radius: 22px;
  }

  .beauty-package-content {
    width: 100%;
    min-height: 340px;
    padding: 16px;
    justify-content: flex-end;
    background: linear-gradient(
      180deg,
      rgba(255, 250, 247, 0) 0%,
      rgba(255, 250, 247, 0.9) 46%,
      rgba(255, 250, 247, 0.98) 100%
    );
  }

  .beauty-package-badge,
  .beauty-packages-label {
    margin-bottom: 10px;
    padding: 7px 10px;
    font-size: 9px;
  }

  .beauty-package-title {
    font-size: 20px;
  }

  .beauty-package-description {
    margin: 9px 0 12px;
    font-size: 10px;
    line-height: 1.4;
  }

  .beauty-package-meta {
    gap: 6px;
    padding: 10px;
    border-radius: 14px;
  }

  .beauty-package-meta-item span {
    font-size: 8px;
  }

  .beauty-package-meta-item strong {
    font-size: 11px;
  }

  .beauty-package-btn {
    min-height: 38px;
    margin-top: 12px;
    font-size: 10px;
  }

  .beauty-packages-cta-card {
    padding: 26px 18px;
    border-radius: 24px;
  }
}

@media (max-width: 320px) {
  .beauty-packages-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BEAUTY PACKAGES PAGE END ===== */
/* ===== MOBILE PACKAGES REDESIGN START ===== */

@media (max-width: 700px) {

    .beauty-packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .beauty-package-card {
        display: flex;
        flex-direction: column;
        min-height: auto;
        border-radius: 22px;
        overflow: hidden;
        background: #fff;
    }

    .beauty-package-image {
        position: relative;
        inset: auto;
        width: 100%;
        height: 170px;
        overflow: hidden;
    }

    .beauty-package-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .beauty-package-content {
        position: relative;
        inset: auto;

        width: 100%;
        min-height: auto;

        padding: 14px;

        display: flex;
        flex-direction: column;

        background: #fff;
    }

    .beauty-package-badge {
        position: absolute;
        top: -38px;
        left: 12px;

        padding: 6px 10px;

        border-radius: 999px;

        background: rgba(255, 248, 244, 0.96);

        border: 1px solid rgba(168, 117, 93, 0.14);

        color: var(--beauty-accent-dark);

        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.4px;
        text-transform: uppercase;

        backdrop-filter: blur(6px);

        box-shadow: 0 6px 16px rgba(65, 45, 32, 0.08);
    }

    .beauty-package-title {
        font-size: 20px;
        line-height: 1.05;

        margin: 4px 0 10px;
    }

    .beauty-package-description {
        font-size: 11px;
        line-height: 1.5;

        color: #7b6d66;

        margin-bottom: 14px;

        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .beauty-package-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;

        margin-top: auto;
    }

    .beauty-package-meta-item {
        padding: 10px 12px;
        border-radius: 14px;
    }

    .beauty-package-meta-item span {
        font-size: 8px;
        letter-spacing: 1.3px;
    }

    .beauty-package-meta-item strong {
        font-size: 12px;
    }

    .beauty-package-btn {
        width: 100%;
        min-height: 40px;

        margin-top: 12px;

        font-size: 11px;

        justify-content: center;
    }
}

/* ===== MOBILE PACKAGES REDESIGN END ===== */
/* ===== TOP ACCOUNT BAR ACCOUNT LINK START ===== */

.aria5-account-bar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.aria5-account-link {
  color: #2b2421;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.aria5-account-link:hover {
  color: #ffffff;
}

/* ===== TOP ACCOUNT BAR ACCOUNT LINK END ===== */

/* ===== TOP UTILITY BAR FIX START ===== */

.aria5-dev-bar.aria5-account-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  min-height: 46px;
  padding: 8px 24px;
}

.aria5-account-link {
  color: #2b2421 !important;
  font-size: 14px;
  font-weight: 800;
}

.aria5-account-link:hover {
  color: #6f4b3b !important;
}

.aria5-account-bar .beauty-header-search {
  width: 220px;
  height: 38px;
  background: rgba(255,255,255,0.55);
}

@media (max-width: 700px) {
  .aria5-dev-bar.aria5-account-bar {
    gap: 12px;
    padding: 8px 12px;
  }

  .aria5-account-bar .beauty-header-search {
    width: 160px;
  }

  .aria5-account-link {
    font-size: 13px;
  }
}

/* ===== TOP UTILITY BAR FIX END ===== */

/* ===== TOP BAR FINAL POLISH START ===== */

.aria5-account-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aria5-account-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8d5f49;
  font-size: 20px;
  line-height: 1;
  padding-bottom: 5px;
}

.aria5-account-bar .beauty-header-search button {
  right: 4px;
  top: 4px;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.aria5-account-bar .beauty-header-search input {
  padding-right: 42px;
}

@media (max-width: 900px) {
  .aria5-account-bar .beauty-header-search {
    display: none;
  }

  .aria5-dev-bar.aria5-account-bar {
    min-height: 38px;
    padding: 7px 12px;
  }
}

/* ===== TOP BAR FINAL POLISH END ===== */
/* ===== TOP BAR MOBILE ACCOUNT FIX START ===== */

@media (max-width: 900px) {

  .aria5-account-icon {
    width: 12px;
    height: 12px;
    font-size: 10px;
    padding-bottom: 3px;
  }

  .aria5-dev-bar.aria5-account-bar {
    justify-content: flex-end;
    min-height: 34px;
    padding: 0px 14px 0px 10px;
    gap: 10px;
  }

  .aria5-account-link {
    padding: 0;
    font-size: 13px;
    line-height: 1;
  }
}

/* ===== TOP BAR MOBILE ACCOUNT FIX END ===== */
/* ===== TOP BAR RIGHT ALIGN FIX START ===== */

.aria5-dev-bar.aria5-account-bar {
  justify-content: flex-end;
  padding-right: calc((100vw - var(--beauty-container)) / 2);
  gap: 18px;
}

.aria5-account-link {
  order: 1;
}

.aria5-account-bar .beauty-header-search {
  order: 2;
}

@media (max-width: 1180px) {
  .aria5-dev-bar.aria5-account-bar {
    padding-right: 24px;
  }
}

@media (max-width: 900px) {
  .aria5-dev-bar.aria5-account-bar {
    justify-content: flex-end;
    padding-right: 14px;
  }
}

/* ===== TOP BAR RIGHT ALIGN FIX END ===== */

/* ===== CLIENT ACCOUNT CARD UI START ===== */

.aria5-client-account {
  width: min(100% - 40px, 760px);
  margin: 70px auto 80px;
  padding: 52px;
  border-radius: 36px;
  border: 1px solid var(--beauty-border);
  background: rgba(255,255,255,0.72);
  box-shadow: var(--beauty-shadow);
}

.aria5-client-account h1 {
  margin: 0 0 28px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 500;
  color: #46372f;
}

.aria5-client-account__appointment-label {
  display: block;
  margin-bottom: 12px;
  color: var(--beauty-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aria5-client-account__appointment-box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border-radius: 26px;
  background: #f4e8df;
  border: 1px solid var(--beauty-border);
}

.aria5-client-account__appointment-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(43,36,33,0.08);
}

.aria5-client-account__appointment-item small {
  display: block;
  margin-bottom: 6px;
  color: var(--beauty-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aria5-client-account__appointment-item strong {
  color: #2b2421;
  font-size: 15px;
  line-height: 1.3;
}

.aria5-client-account__logout {
  display: inline-flex;
  margin-top: 24px;
  color: var(--beauty-accent-dark);
  font-weight: 800;
}

@media (max-width: 700px) {
  .aria5-client-account {
    width: min(100% - 24px, 760px);
    margin: 34px auto 46px;
    padding: 28px 18px;
    border-radius: 28px;
  }

  .aria5-client-account__appointment-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
  }
}

/* ===== CLIENT ACCOUNT CARD UI END ===== */

/* ===== GOOGLE LOGIN BUTTON UI START ===== */

.aria5-client-account__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 54px;
  padding: 0 26px;

  border-radius: 999px;
  border: 1px solid rgba(43,36,33,0.12);

  background: #ffffff;
  color: #2b2421;

  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  box-shadow: 0 14px 34px rgba(65,45,32,0.08);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.aria5-client-account__login::before {
  content: "";

  width: 20px;
  height: 20px;

  flex-shrink: 0;

  background-image: url("https://www.gstatic.com/firebasejs/ui/2.0.0/images/auth/google.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.aria5-client-account__login:hover {
  transform: translateY(-2px);

  border-color: rgba(168,117,93,0.24);

  background: #fffaf7;

  box-shadow: 0 18px 42px rgba(65,45,32,0.12);
}

/* ===== MOBILE ===== */

@media (max-width: 700px) {

  .aria5-client-account__login {
    width: 100%;

    min-height: 50px;

    padding: 0 18px;

    font-size: 14px;
  }
}

/* ===== GOOGLE LOGIN BUTTON UI END ===== */