:root {
    --brand-aqua: #3cb7be;
    --brand-aqua-dark: #24767a;
    --brand-violet: #552690;
    --brand-violet-dark: #421b72;
    --brand-violet-soft: #c6aee8;
    --brand-violet-light: #d8c0f2;
    --brand-violet-muted: #b49ad9;
    --brand-yellow: #f8a813;
    /* Compatibility aliases for the existing component styles. */
    --brand-turquoise: var(--brand-aqua);
    --brand-turquoise-dark: var(--brand-aqua-dark);
    --brand-pink: var(--brand-violet);
    --brand-pink-dark: var(--brand-violet-dark);
    --brand-lilac: var(--brand-violet-soft);
    --brand-lilac-light: var(--brand-violet-light);
    --brand-orange: var(--brand-yellow);
    --ink: #2d2440;
    --ink-soft: #5b5367;
    --surface: #ffffff;
    --surface-soft: #f8f4fc;
    --surface-aqua: #eff8f8;
    --surface-footer: #f8f6fa;
    --border: #e3d5f1;
    --shadow-sm: 0 8px 24px rgba(45, 36, 64, 0.08);
    --shadow-md: 0 18px 50px rgba(45, 36, 64, 0.13);
    --radius-sm: 12px;
    --radius-md: 22px;
    --container: 1180px;
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: var(--surface);
    color: var(--ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: var(--brand-turquoise-dark);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--brand-pink);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(85, 38, 144, 0.34);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
}

p {
    color: var(--ink-soft);
}

img {
    height: auto;
}

.container,
.header.header5 .container {
    width: calc(100% - 40px) !important;
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}

.narrow-container {
    max-width: 840px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.wrapper,
.inner-wrapper,
#main {
    background: var(--surface) !important;
}

.eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--brand-pink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.refresh-section {
    padding: 82px 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading h2,
.home-intro h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

.section-heading p {
    margin: 0;
    font-size: 18px;
}

/* Header */
.top-bar {
    position: relative;
    padding: 7px 0;
    background: linear-gradient(90deg, #fcfafe 0%, #f2fbfb 55%, #fcfafe 100%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(45, 36, 64, 0.04);
}

.top-bar::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-turquoise), var(--brand-pink), var(--brand-orange));
    content: "";
}

.top-bar-inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.top-contact a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
}

.top-contact a:hover {
    color: var(--brand-violet-dark);
}

.top-contact-icon {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    background: rgba(216, 192, 242, 0.55);
    border: 1px solid var(--brand-violet-soft);
    border-radius: 50%;
    color: var(--brand-violet);
    font-size: 17px;
}

.top-contact-copy {
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1.1;
}

.top-contact-copy small {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.04em;
}

.top-contact-copy strong {
    color: var(--brand-violet);
    font-size: 14px;
    font-weight: 800;
}

.top-contact-mobile-label {
    display: none;
}

.top-social-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-social-label {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.top-social-group .header-social {
    display: flex;
    float: none;
    align-items: center;
    gap: 6px;
    width: auto;
    margin: 0;
}

.top-social-group .header-social li {
    margin: 0;
    padding: 0;
}

.top-social-group .header-social a {
    display: grid;
    width: 32px;
    min-width: 32px;
    height: 32px;
    padding: 0;
    float: none;
    place-items: center;
    background: #fff;
    border: 1px solid var(--brand-violet-light);
    border-radius: 50%;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1 !important;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.top-social-group .header-social a:hover,
.top-social-group .header-social a:focus {
    transform: translateY(-2px);
    border-color: transparent;
    color: #fff;
}

.top-social-group .header-social .social-facebook:hover,
.top-social-group .header-social .social-facebook:focus {
    background: #1877f2;
}

.top-social-group .header-social .social-instagram:hover,
.top-social-group .header-social .social-instagram:focus {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.top-social-group .header-social .social-tiktok:hover,
.top-social-group .header-social .social-tiktok:focus {
    background: #111;
}

.top-social-group .header-social .social-youtube:hover,
.top-social-group .header-social .social-youtube:focus {
    background: #ff0033;
}

.top-social-group .header-social img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 180ms ease, opacity 180ms ease;
}

.top-social-group .header-social .social-tiktok:hover img,
.top-social-group .header-social .social-tiktok:focus img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

#header-wrapper {
    position: relative;
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 5px 18px rgba(45, 36, 64, 0.06);
}

.header {
    min-height: 0;
    padding: 10px 0;
    background: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

#logo {
    position: static;
    float: none;
    flex: 0 0 auto;
    width: 238px;
    margin: 0;
}

#logo a,
#logo a img {
    display: block;
}

#logo a img {
    position: static !important;
    top: auto !important;
    width: 100%;
    max-width: 238px;
}

#menu-container {
    float: none;
    flex: 1 1 auto;
    width: auto;
}

#main-menu {
    float: none;
    width: 100%;
}

#main-menu > ul.menu {
    display: flex;
    float: none;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    margin: 0;
}

#main-menu > ul.menu > li {
    position: relative;
    float: none;
    margin: 0;
}

#header-wrapper #main-menu > ul.menu > li > a {
    display: block;
    padding: 22px 11px !important;
    border: 0;
    color: var(--ink) !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

#header-wrapper #main-menu > ul.menu > li > a:hover,
#header-wrapper #main-menu > ul.menu > li.current_page_item > a {
    color: var(--brand-pink) !important;
}

#main-menu > ul.menu > li.current_page_item::after {
    position: absolute;
    right: 10px;
    bottom: 4px;
    left: 10px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand-pink);
    content: "";
}

#main-menu > ul.menu > li::before {
    display: none !important;
}

#main-menu ul li.menu-item-simple-parent ul.sub-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    display: none;
    width: 250px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

#main-menu ul li.menu-item-simple-parent:hover > ul.sub-menu,
#main-menu ul li.menu-item-simple-parent:focus-within > ul.sub-menu {
    display: block;
}

#main-menu ul li.menu-item-simple-parent ul.sub-menu li,
#main-menu ul li.menu-item-simple-parent ul.sub-menu li a {
    float: none;
    width: 100%;
}

#main-menu ul li.menu-item-simple-parent ul.sub-menu li a {
    display: block;
    padding: 11px 12px;
    border: 0;
    border-radius: 8px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
    text-transform: none;
}

#main-menu ul li.menu-item-simple-parent ul.sub-menu li a:hover {
    background: var(--brand-lilac-light);
    color: var(--brand-pink);
}

.dt-menu-expand {
    display: none;
}

.dt-menu-toggle {
    display: none;
}

.is-sticky #header-wrapper {
    box-shadow: 0 10px 30px rgba(45, 36, 64, 0.12);
}

/* Buttons */
.refresh-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.refresh-button:hover {
    transform: translateY(-2px);
}

.refresh-button-primary {
    background: var(--brand-pink);
    color: #fff;
    box-shadow: 0 10px 24px rgba(85, 38, 144, 0.22);
}

.refresh-button-primary:hover,
.refresh-button-primary:focus {
    background: var(--brand-pink-dark);
    color: #fff;
}

.refresh-button-secondary {
    background: #fff;
    border-color: var(--brand-turquoise);
    color: var(--brand-turquoise-dark);
}

.refresh-button-secondary:hover,
.refresh-button-secondary:focus {
    background: #eff9fa;
    color: var(--brand-turquoise-dark);
}

.refresh-button-light {
    background: #fff;
    color: var(--brand-pink);
    box-shadow: var(--shadow-sm);
}

/* Home */
.home-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 82px;
    background:
        radial-gradient(circle at 88% 15%, rgba(248, 168, 19, 0.2), transparent 25%),
        radial-gradient(circle at 8% 90%, rgba(60, 183, 190, 0.18), transparent 28%),
        linear-gradient(135deg, #f7f1fc 0%, #eff9fa 100%);
}

.home-hero::after {
    position: absolute;
    right: -120px;
    bottom: -170px;
    width: 420px;
    height: 420px;
    border: 70px solid rgba(198, 174, 232, 0.2);
    border-radius: 50%;
    content: "";
}

.home-hero-slider {
    position: relative;
    z-index: 1;
}

.hero-slide { display: none; }

.hero-slide.is-active {
    display: block;
    animation: hero-slide-in 0.55s ease both;
}

@keyframes hero-slide-in {
    from { opacity: 0; transform: translateX(18px); }
    to { opacity: 1; transform: translateX(0); }
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: clamp(42px, 7vw, 90px);
}

.home-hero-content h1,
.home-hero-content h2 {
    max-width: 650px;
    margin: 0 0 24px;
    color: var(--ink);
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.04;
}

.home-hero-content p {
    max-width: 590px;
    margin: 0 0 32px;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-hero-visual {
    position: relative;
    padding: 18px 18px 36px;
}

.hero-image-frame {
    overflow: hidden;
    aspect-ratio: 602 / 417;
    padding: 12px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    transform: rotate(1.5deg);
}

.hero-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 23px;
    object-fit: cover;
    object-position: center;
}

.hero-note {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    min-width: 245px;
    flex-direction: column;
    padding: 16px 20px;
    background: #fff;
    border-left: 4px solid var(--brand-turquoise);
    border-radius: 13px;
    box-shadow: var(--shadow-sm);
}

.hero-note strong {
    color: var(--ink);
}

.hero-note span {
    color: var(--ink-soft);
    font-size: 14px;
}

.hero-slider-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(85, 38, 144, 0.18);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    font-size: 25px;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-slider-prev { left: 18px; }
.hero-slider-next { right: 18px; }

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
    color: #fff;
    background: var(--brand-pink);
}

/* Reserve space for the previous arrow while the hero keeps its two-column
   layout. The shared container only has a 20px gutter in this range. */
@media (min-width: 961px) and (max-width: 1360px) {
    .home-hero-content {
        padding-left: 56px;
    }
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 20px;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(85, 38, 144, 0.28);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-slider-dot.is-active {
    width: 28px;
    border-radius: 8px;
    background: var(--brand-pink);
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide.is-active { animation: none; }
}

.home-intro {
    text-align: center;
}

.home-intro .intro-copy {
    max-width: 780px;
    margin: 0 auto;
}

.home-intro .intro-copy p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.75;
}

.home-services {
    background: var(--surface-soft);
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card-image {
    display: grid;
    width: 106px;
    height: 106px;
    margin-bottom: 22px;
    place-items: center;
    background: var(--brand-lilac-light);
    border-radius: 50%;
}

.service-card-image img {
    width: 82px;
    max-height: 82px;
    object-fit: contain;
}

.service-card-kicker {
    margin-bottom: 8px;
    color: var(--brand-pink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 0 0 14px;
    font-size: 23px;
    line-height: 1.25;
}

.service-card h3 a {
    color: var(--ink);
}

.service-card p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.65;
}

.service-card-link {
    margin-top: auto;
    color: var(--brand-turquoise-dark);
    font-weight: 800;
}

.home-values {
    padding-top: 56px;
    padding-bottom: 56px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    background: var(--brand-lilac-light);
    border-radius: 50%;
    color: var(--brand-pink);
}

.value-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 17px;
}

.value-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.home-cta {
    padding: 58px 0;
    background: var(--surface-aqua);
    border-top: 1px solid rgba(60, 183, 190, 0.24);
}

.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.home-cta h2 {
    color: var(--brand-violet-dark);
}

.home-cta h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 40px);
}

.home-cta p {
    margin: 0;
    color: var(--brand-aqua-dark);
    font-size: 17px;
}

.home-cta .refresh-button-light {
    background: var(--brand-violet);
    color: #fff;
    box-shadow: 0 10px 24px rgba(85, 38, 144, 0.16);
}

.home-cta .refresh-button-light:hover,
.home-cta .refresh-button-light:focus {
    background: var(--brand-violet-dark);
    color: #fff;
}

/* Internal pages */
.page-hero,
#main > .parallax.full-width-bg {
    padding: 58px 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(60, 183, 190, 0.2), transparent 25%),
        linear-gradient(135deg, var(--brand-lilac-light), #eff9fa) !important;
}

.compact-page-hero {
    padding-top: 46px;
    padding-bottom: 46px;
}

.page-hero h1,
.main-title h1 {
    margin: 0 0 10px;
    color: var(--brand-pink-dark);
    font-size: clamp(36px, 5vw, 52px) !important;
    font-weight: 750;
    line-height: 1.08;
    text-transform: none;
}

.page-hero p {
    max-width: 650px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 18px;
}

.main-title {
    float: none;
    width: 100%;
    padding: 0;
}

.main-title h1 {
    float: none;
}

.main-title p {
    clear: both;
}

.internal-page .full-width-section {
    padding: 56px 0 72px;
}

.article-content {
    overflow: hidden;
    padding: clamp(26px, 5vw, 58px) !important;
    background: #fff !important;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

.article-content .featured-intro {
    position: relative;
    margin: 0 0 38px;
    padding: clamp(24px, 4vw, 38px);
    background: linear-gradient(135deg, #f7f1fc 0%, #eff9fa 100%);
    border: 1px solid rgba(85, 38, 144, 0.16);
    border-left: 5px solid var(--brand-pink);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: 0 12px 30px rgba(45, 36, 64, 0.08);
}

.article-content .featured-intro p {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    color: var(--ink);
}

.article-content .featured-intro p:last-child {
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(85, 38, 144, 0.18);
    font-weight: 600;
}

.chakra-elixirs-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: center;
    gap: 32px;
    margin-bottom: 30px;
}

.article-content .chakra-elixirs-heading h2 {
    margin: 0 0 15px;
    color: var(--brand-pink) !important;
}

.article-content .chakra-elixirs-heading img {
    display: block;
    width: 100%;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.article-content .chakra-list-title {
    margin: 0 0 18px;
    font-size: 23px;
}

.chakra-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.chakra-item {
    padding: 18px 20px;
    background: #fff;
    border-left: 5px solid var(--chakra-color);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: 0 5px 18px rgba(45, 36, 64, 0.06);
}

.article-content .chakra-item h4 {
    margin: 0 0 7px;
    color: var(--ink);
    font-size: 17px;
}

.article-content .chakra-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.chakra-root { --chakra-color: #d83b36; }
.chakra-sacral { --chakra-color: #ed8124; }
.chakra-solar { --chakra-color: #e4b91e; }
.chakra-heart { --chakra-color: #42a66a; }
.chakra-throat { --chakra-color: #369fc2; }
.chakra-eye { --chakra-color: #4b5baa; }
.chakra-crown { --chakra-color: #8d53a6; }

.article-content .chakra-elixirs-closing {
    margin: 22px 0 0;
    padding: 18px 20px;
    background: #eff9fa;
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-weight: 600;
}

@media (max-width: 767px) {
    .chakra-elixirs-heading,
    .chakra-list {
        grid-template-columns: 1fr;
    }

    .chakra-elixirs-heading img {
        max-width: 330px;
        margin: 0 auto;
    }
}

.article-content::after {
    display: block;
    clear: both;
    content: "";
}

.article-content p,
.article-content li,
.grey1 p,
.grey1 li {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

.article-content h3,
.article-content p > span[style*="font-size"] {
    color: var(--ink) !important;
    font-weight: 700;
}

.internal-page .article-content h2 {
    color: var(--brand-pink) !important;
}

.article-content p > span[style*="font-size"] {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 21px !important;
}

.article-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
}

.article-content .service-feature-image {
    max-width: 1000px;
    margin: 0 auto 42px;
    padding: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.article-content .service-feature-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-md) - 8px);
}

.article-content .facial-care-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    align-items: start;
    gap: clamp(28px, 5vw, 58px);
}

.article-content .facial-treatments-image {
    width: 100%;
    margin: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(85, 38, 144, 0.16);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.article-content .facial-treatments-image img {
    display: block;
    width: 100%;
    height: auto;
}

.facial-image-lightbox {
    position: relative;
    display: block;
    cursor: pointer;
}

.facial-image-lightbox span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 11px;
    color: #fff;
    background: rgba(66, 27, 114, 0.9);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .article-content .facial-care-layout {
        grid-template-columns: 1fr;
    }

    .article-content .facial-treatments-image {
        max-width: 480px;
        margin: 0 auto;
    }
}

.article-content > p:first-child img {
    display: block;
    max-width: 900px;
    margin: 0 auto 32px !important;
}

.article-gallery {
    padding-left: 0 !important;
}

.facial-treatment-gallery {
    clear: both;
    margin-top: 52px;
    padding-top: 44px;
    border-top: 1px solid var(--border);
}

.facial-treatment-gallery .gallery-heading {
    margin-bottom: 24px;
}

.facial-treatment-gallery .gallery-card {
    margin: 0;
}

@media (max-width: 560px) {
    .facial-treatment-gallery {
        margin-top: 38px;
        padding-top: 34px;
    }
}

blockquote.type1 {
    padding: 18px 22px;
    background: var(--brand-lilac-light);
    border-color: var(--brand-pink) !important;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Products and video cards */
.media-main,
.products-main,
.gallery-main {
    background: var(--surface-soft);
}

/* Photo gallery */
.gallery-section {
    padding: 64px 0 80px;
}

.gallery-group + .gallery-group {
    margin-top: 68px;
    padding-top: 62px;
    border-top: 1px solid var(--border);
}

.gallery-heading {
    max-width: 700px;
    margin-bottom: 28px;
}

.gallery-heading h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: clamp(25px, 3vw, 34px);
}

.gallery-heading p {
    margin: 0;
    font-size: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.gallery-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gallery-card:hover {
    border-color: rgba(85, 38, 144, 0.28);
    box-shadow: 0 18px 42px rgba(45, 36, 64, 0.13);
    transform: translateY(-4px);
}

.gallery-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--brand-lilac-light);
}

.gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform-origin: center top;
    transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.045);
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #fff;
    background: rgba(45, 36, 64, 0.48);
    font-size: 25px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-image:hover .gallery-zoom,
.gallery-image:focus .gallery-zoom {
    opacity: 1;
}

.gallery-card-body {
    padding: 18px 20px 20px;
}

.gallery-card-body h3 {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .gallery-section {
        padding: 45px 0 60px;
    }

    .gallery-group + .gallery-group {
        margin-top: 48px;
        padding-top: 44px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.media-section {
    padding: 64px 0 76px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.media-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.media-card:hover,
.products-grid .product-card:hover {
    border-color: rgba(85, 38, 144, 0.28);
    box-shadow: 0 18px 42px rgba(45, 36, 64, 0.13);
    transform: translateY(-4px) !important;
}

.media-card-body {
    padding: 22px 24px 25px;
}

.media-card-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--brand-pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.media-card-kicker i {
    margin-right: 6px;
}

.media-card-body h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.3;
}

.media-card-body p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.store-section {
    padding: 64px 0 76px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.store-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.store-card:hover {
    border-color: rgba(85, 38, 144, 0.28);
    box-shadow: 0 20px 46px rgba(45, 36, 64, 0.14);
    transform: translateY(-5px);
}

.store-card .video-embed {
    order: -1;
}

.store-card-body {
    flex: 1;
    padding: 27px 28px 23px;
}

.store-card-content h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(20px, 2.2vw, 25px);
    line-height: 1.25;
}

.store-card-content p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
    white-space: pre-line;
}

.store-card-actions {
    padding: 20px 28px 27px;
    border-top: 1px solid var(--border);
}

.store-card-actions .refresh-button {
    width: 100%;
}

.buyer-stories-section {
    padding: 70px 0 80px;
    background: #fff;
    border-top: 1px solid var(--border);
}

.buyer-stories-section .section-heading {
    text-align: center;
}

.buyer-story-card {
    display: flex;
    flex-direction: column;
}

.buyer-story-card .video-embed {
    order: -1;
}

.products-main .full-width-section {
    padding: 56px 0 20px;
}

.products-content {
    background: transparent !important;
}

.products-content #primary {
    float: none;
    width: 100%;
}

.products-grid {
    display: grid !important;
    height: auto !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.products-grid .product-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: flex;
    width: auto !important;
    max-height: none !important;
    flex-direction: column;
    margin: 0 !important;
    overflow: hidden;
    transform: none !important;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card-body {
    min-height: 0;
    flex: 1;
    padding: 25px 26px 22px;
    background: #fff;
    border: 0;
}

.product-card .portfolio-title h5 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.product-card .portfolio-title p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
}

.product-card .video-embed {
    order: -1;
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #34304e, #14131c);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.youtube-load {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    background: #211f31;
    border: 0;
    cursor: pointer;
}

.youtube-load > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: opacity 180ms ease, transform 300ms ease;
}

.youtube-load:hover > img {
    opacity: 0.95;
    transform: scale(1.025);
}

.youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    transform: translate(-50%, -50%);
    background: var(--brand-pink);
    border: 4px solid rgba(255, 255, 255, 0.86);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.youtube-play i {
    margin-left: 4px;
}

.product-card-actions {
    padding: 22px 24px 26px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.product-action {
    float: none;
    min-height: 46px;
}

.testimonials-content {
    padding-top: 30px;
}

.compact-heading {
    margin-bottom: 34px;
}

.compact-heading h2 {
    margin-bottom: 0;
}

.testimonial-video-card .product-card-body {
    min-height: 0;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.55fr);
    gap: 28px;
    align-items: stretch;
}

.contact-card,
.contact-map-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-map-card {
    position: relative;
    background: linear-gradient(135deg, var(--brand-lilac-light), #eff9fa);
}

.contact-card {
    padding: clamp(28px, 4vw, 46px);
}

.contact-card h2 {
    margin: 0 0 14px;
    font-size: 36px;
}

.contact-card > p {
    margin: 0 0 28px;
}

.contact-details-list {
    margin: 0 0 30px;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
}

.contact-detail-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    background: var(--brand-lilac-light);
    border-radius: 50%;
    color: var(--brand-pink);
}

.contact-details-list strong,
.contact-details-list li > div > span,
.contact-details-list li > div > a {
    display: block;
}

.contact-details-list strong {
    color: var(--ink);
    font-size: 14px;
}

.contact-details-list li > div > span,
.contact-details-list li > div > a {
    color: var(--ink-soft);
    font-size: 14px;
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 570px;
    border: 0;
}

.map-link {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    color: var(--brand-pink);
    font-size: 14px;
    font-weight: 750;
}

.map-link:hover {
    background: var(--brand-pink);
    color: #fff;
}

.contact-whatsapp {
    width: 100%;
}

.form-message {
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    color: #fff;
}

.form-message-success {
    background: #397f59;
}

.form-message-error {
    background: #a84352;
}

/* Footer */
.site-footer {
    color: var(--ink-soft);
    background: var(--surface-footer);
    border-top: 3px solid var(--brand-violet-muted);
}

.footer-main {
    padding: 62px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 0.7fr;
    gap: 42px;
}

.footer-brand img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 18px;
}

.footer-brand p {
    max-width: 300px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 14px;
    text-align: center;
}

.footer-column h3 {
    margin: 8px 0 22px;
    color: var(--brand-violet-dark);
    font-size: 18px;
}

.footer-contact-list {
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--ink-soft);
    font-size: 18px;
}

.footer-contact-list i {
    width: 22px;
    margin-top: 5px;
    color: var(--brand-aqua-dark);
    text-align: center;
}

.footer-contact-list a {
    color: var(--ink);
}

.footer-contact-list a:hover {
    color: var(--brand-violet);
}

.footer-social {
    display: grid;
    grid-template-columns: repeat(2, 42px);
    gap: 8px;
    width: max-content;
    margin: 0;
}

.footer-social li {
    float: none;
    margin: 0;
}

.footer-social a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--brand-violet-soft);
    border-radius: 50%;
    color: var(--brand-violet);
    background: var(--brand-violet-light);
}

.footer-social a:hover {
    background: var(--brand-violet);
    border-color: var(--brand-violet);
    color: #fff;
}

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0);
}

.footer-social a:hover img {
    filter: brightness(0) invert(1);
}

.footer-bottom {
    padding: 19px 0;
    background: #eee8f4;
    border-top: 1px solid var(--brand-violet-soft);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--brand-violet);
    font-size: 13px;
    font-weight: 700;
}

.whatsapp-float,
.flotantewhats {
    position: fixed;
    z-index: 999;
    right: 22px;
    bottom: 22px;
    left: auto;
    display: block;
    width: 64px !important;
    height: 64px;
    border-radius: 50%;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
    transition: transform 180ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
}

.whatsapp-float img {
    display: block;
    width: 100%;
}

/* Shared legacy component cleanup */
.banner .MobilTitulo {
    color: var(--brand-violet) !important;
}

.intro-text.type1 {
    background-color: var(--brand-violet) !important;
}

.intro-text.type1 h2 {
    color: #fff;
}

.loader-wrapper {
    background: rgba(255, 255, 255, 0.96);
}

.portfolio-detail {
    border-color: var(--border);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    border-color: var(--border);
    border-radius: 10px;
    color: var(--ink);
    font-size: 16px;
}

@media (max-width: 1120px) {
    #header-wrapper #main-menu > ul.menu > li > a {
        padding-right: 8px !important;
        padding-left: 8px !important;
        font-size: 12px;
    }

    #logo,
    #logo a img {
        max-width: 205px;
    }

    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    }
}

@media (max-width: 960px) {
    .header-inner {
        display: block;
    }

    #header-wrapper .header-inner #logo {
        float: none !important;
        width: 215px;
        max-width: 215px;
        margin: 0 auto 10px !important;
    }

    #logo a img {
        max-width: 215px;
    }

    #menu-container {
        width: 100%;
    }

    .dt-menu-toggle {
        position: relative;
        z-index: 2;
        display: flex !important;
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        background: var(--brand-turquoise);
        border: 0;
        border-radius: 9px;
        color: var(--ink);
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .dt-menu-toggle-icon {
        display: block;
        flex: 0 0 22px;
        width: 22px;
        height: 16px;
        margin: 0;
        align-self: center;
        background: linear-gradient(to bottom, currentColor 0 2px, transparent 2px 7px, currentColor 7px 9px, transparent 9px 14px, currentColor 14px 16px);
    }

    .dt-menu-toggle-icon::before,
    .dt-menu-toggle-icon::after {
        display: none;
    }

    #main-menu > ul.menu {
        display: none;
        width: 100%;
        padding: 8px 0;
        background: #fff;
        border: 1px solid var(--border);
        border-top: 0;
        border-radius: 0 0 10px 10px;
    }

    #main-menu > ul.menu.menu-toggle-open {
        margin-top: 40px;
    }

    #main-menu > ul.menu > li {
        display: block;
        float: none !important;
        position: relative;
        width: 100%;
    }

    #header-wrapper #main-menu > ul.menu > li > a {
        padding: 13px 16px !important;
        border: 0;
        border-bottom: 1px solid var(--border);
        font-size: 13px;
    }

    #main-menu > ul.menu > li.current_page_item::after {
        display: none;
    }

    #main-menu ul li.menu-item-simple-parent ul.sub-menu {
        position: static;
        float: none !important;
        clear: both;
        width: 100%;
        padding: 0 0 6px 14px;
        background: var(--surface-soft);
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    #main-menu ul li.menu-item-simple-parent:hover > ul.sub-menu,
    #main-menu ul li.menu-item-simple-parent:focus-within > ul.sub-menu {
        display: none;
    }

    #main-menu ul li.menu-item-simple-parent.submenu-open > ul.sub-menu {
        display: block;
    }

    #main-menu ul li.menu-item-simple-parent ul.sub-menu li {
        display: block;
        float: none !important;
        clear: both;
        position: relative;
    }

    #main-menu ul li.menu-item-simple-parent ul.sub-menu li a {
        position: relative;
        z-index: 1;
        padding: 10px 14px;
        font-size: 13px;
    }

    #main-menu .has-submenu > a:first-child {
        padding-right: 44px !important;
    }

    #main-menu .dt-menu-expand {
        position: absolute;
        top: 6px;
        right: 8px;
        display: grid;
        width: 30px;
        height: 28px;
        padding: 0 0 2px;
        align-items: center;
        justify-content: center;
        place-items: center;
        border: 0;
        background: var(--brand-lilac-light);
        border-radius: 8px;
        color: var(--brand-pink);
        font-size: 16px;
        font-family: Arial, sans-serif;
        font-weight: 700;
        line-height: 1;
        text-align: center;
    }

    .sticky-wrapper {
        height: auto !important;
    }

    .is-sticky #header-wrapper {
        position: static !important;
    }

    .home-hero {
        padding: 58px 0 66px;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-content {
        max-width: 700px;
        text-align: center;
    }

    .home-hero-content p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .home-hero-visual {
        width: min(100%, 650px);
        margin: 0 auto;
    }

    .service-card-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .service-card-grid {
        max-width: 680px;
        margin: 0 auto;
    }

    .values-grid {
        max-width: 720px;
    }

    .home-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .container,
    .header.header5 .container {
        width: calc(100% - 32px) !important;
        max-width: none;
    }

    body {
        font-size: 16px;
    }

    .top-bar {
        padding: 7px 0;
    }

    .top-bar-inner {
        min-height: 36px;
        gap: 10px;
    }

    .top-contact-copy small,
    .top-social-label {
        display: none;
    }

    .top-contact-copy {
        gap: 0;
    }

    .top-contact-copy strong {
        font-size: 13px;
    }

    .top-contact-mobile-label {
        display: inline;
    }

    .top-social-group {
        gap: 0;
    }

    .top-social-group .header-social {
        gap: 4px;
    }

    .top-social-group .header-social a {
        width: 30px;
        min-width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .header {
        padding: 8px 0 10px;
    }

    #header-wrapper .header-inner #logo {
        width: 185px;
        max-width: 185px;
        margin-bottom: 7px;
    }

    #logo a img {
        max-width: 185px;
    }

    .refresh-section {
        padding: 60px 0;
    }

    .home-hero {
        padding: 48px 0 58px;
    }

    .home-hero-grid {
        gap: 34px;
    }

    .home-hero-content h1,
    .home-hero-content h2 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .home-hero-content p {
        font-size: 17px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .refresh-button {
        width: 100%;
    }

    .home-hero-visual {
        padding: 8px 4px 34px;
    }

    .hero-image-frame {
        padding: 7px;
        border-radius: 22px;
    }

    .hero-image-frame img {
        border-radius: 16px;
    }

    .hero-note {
        right: 10px;
        min-width: 215px;
        padding: 12px 15px;
    }

    .hero-slider-arrow {
        top: auto;
        bottom: -5px;
        width: 38px;
        height: 38px;
        font-size: 21px;
        transform: none;
    }

    .hero-slider-prev { left: 20px; }
    .hero-slider-next { right: 20px; }

    .home-intro {
        text-align: left;
    }

    .home-intro .eyebrow,
    .home-intro h2 {
        text-align: center;
    }

    .home-intro .intro-copy p {
        font-size: 16px;
        line-height: 1.7;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .service-card {
        align-items: center;
        padding: 26px;
        text-align: center;
    }

    .service-card-image {
        margin-right: auto;
        margin-left: auto;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .home-values {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .home-cta {
        padding: 52px 0;
    }

    .home-cta .refresh-button {
        width: 100%;
    }

    .page-hero,
    #main > .parallax.full-width-bg {
        padding: 42px 0;
        text-align: center;
    }

    .page-hero h1,
    .main-title h1 {
        font-size: 36px !important;
    }

    .page-hero p {
        font-size: 16px;
    }

    .internal-page .full-width-section {
        padding: 38px 0 54px;
    }

    .article-content {
        padding: 26px 20px !important;
    }

    .article-content img[style*="float"] {
        display: block;
        float: none !important;
        width: auto !important;
        max-width: 100%;
        margin: 24px auto !important;
    }

    .article-content.article-2 img {
        width: 100% !important;
        height: auto;
    }

    .products-main .full-width-section {
        padding: 40px 0 10px;
    }

    .media-section {
        padding: 42px 0 54px;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .media-card-body {
        padding: 20px 20px 22px;
    }

    .store-section,
    .buyer-stories-section {
        padding: 44px 0 56px;
    }

    .store-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .store-card-body {
        padding: 22px 21px 18px;
    }

    .store-card-actions {
        padding: 18px 21px 23px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-card-body {
        min-height: 0;
        padding: 22px 20px 16px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .contact-map-card iframe {
        min-height: 360px;
    }

    .footer-main {
        padding: 50px 0 38px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand img {
        width: 160px;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .footer-contact-list br {
        display: none;
    }

    .footer-column h3 {
        margin-bottom: 15px;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-social {
        grid-template-columns: repeat(4, 42px);
        margin-right: auto;
        margin-left: auto;
    }

    .footer-bottom-inner {
        align-items: center;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .whatsapp-float,
    .flotantewhats {
        right: 14px;
        bottom: 14px;
        width: 56px !important;
        height: 56px;
    }

    .whatsapp-float {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate {
        opacity: 1 !important;
    }
}
