/**
 * RJ4 Medspa — Global styles (2026-07-14 experiential redesign)
 *
 * Implements docs/10-design-system.md and the header/footer specs in
 * docs/11-ui-components.md §1–2. Editorial serif display + Inter UI,
 * squared buttons, hairline rules, light footer. All values from tokens.css.
 */

/* =========================================================
   Base
   ========================================================= */

body {
	font-family: var(--font-sans);
	font-size: var(--text-body);
	font-weight: 400;
	line-height: var(--leading-body);
	color: var(--color-body);
	background-color: var(--color-porcelain);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-heading);
	margin: 0 0 var(--space-sm);
}

h1 {
	font-family: var(--font-serif);
	font-size: var(--text-display);
	font-weight: 500;
	line-height: var(--leading-display);
}

h2 {
	font-family: var(--font-serif);
	font-size: var(--text-h2);
	font-weight: 500;
	line-height: var(--leading-h2);
}

h3 {
	font-family: var(--font-serif);
	font-size: var(--text-h3);
	font-weight: 500;
	line-height: var(--leading-h3);
}

h4 {
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 600;
	line-height: var(--leading-h4);
}

/* Signature type move: italicised emphasis inside serif headings */
h1 em, h2 em, h3 em, .accent-em {
	font-style: italic;
	font-weight: 500;
}

p {
	margin: 0 0 var(--space-sm);
}

a {
	color: var(--color-deep-olive);
	text-decoration: none;
	transition: color var(--duration-fast) var(--ease-default);
}

a:hover {
	color: var(--color-sage-green);
}

/* Neutralise Hello Elementor reset.css off-brand pink (#c36 / #CC3366).
   The parent theme styles bare buttons and links with a pink border/text and
   a pink background on :hover/:focus — which turns the mobile menu toggle,
   submenu carets, hero arrows, and gallery controls magenta when tapped. Our
   component styles (.btn, .gallery-filter__btn…) override where they set their
   own colours; these rules reset the bare-element defaults, matching the
   parent's :hover/:focus specificity and winning on load order. */
button:not(.btn),
[type='button']:not(.btn),
[type='reset']:not(.btn),
[type='submit']:not(.btn),
button:not(.btn):hover,
button:not(.btn):focus,
[type='button']:not(.btn):hover,
[type='button']:not(.btn):focus,
[type='submit']:not(.btn):hover,
[type='submit']:not(.btn):focus,
[type='reset']:not(.btn):hover,
[type='reset']:not(.btn):focus {
	background-color: transparent;
	border-color: transparent;
	color: inherit;
}

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

.text-large { font-size: var(--text-body-lg); }
.text-center { text-align: center; }
.text-muted {
	color: var(--color-muted);
	font-size: var(--text-caption);
	line-height: var(--leading-caption);
}

/* Eyebrow label — structural motif (docs/11 §3). Deep olive, not sage:
   sage measures 3.55:1 on light grounds and fails AA at this size
   (docs/12 §5); dark-surface contexts override to light tints. */
.eyebrow {
	display: block;
	font-family: var(--font-sans);
	font-size: var(--text-label);
	font-weight: 600;
	letter-spacing: var(--tracking-label);
	text-transform: uppercase;
	color: var(--color-deep-olive);
	margin-bottom: var(--space-sm);
}

/* =========================================================
   Layout utilities
   ========================================================= */

.rj4-container {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.section {
	padding-block: var(--space-2xl);
	background-color: var(--color-porcelain);
}

.section--alt {
	background-color: var(--color-section-alt-bg);
}

@media (min-width: 1024px) {
	.section {
		padding-block: var(--space-3xl);
	}
}

/* Scroll reveal (fx.js adds .is-inview; motion removed under reduced-motion) */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity var(--duration-slow) var(--ease-drift),
		transform var(--duration-slow) var(--ease-drift);
}

.reveal.is-inview {
	opacity: 1;
	transform: none;
}

/* Accessibility helpers */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: var(--space-sm);
	z-index: 2000;
	padding: var(--space-xs) var(--space-sm);
	background: var(--color-deep-olive);
	color: var(--color-white);
	border-radius: var(--radius-sm);
	transition: top var(--duration-fast) var(--ease-default);
}

.skip-link:focus {
	top: var(--space-sm);
	color: var(--color-white);
}

:focus-visible {
	outline: 2px solid var(--color-sage-green);
	outline-offset: 2px;
}

/* =========================================================
   Buttons — squared, uppercase, letterspaced (docs/10 §8 redesign)
   ========================================================= */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-xs);
	min-height: 48px;
	padding: 14px 36px;
	border-radius: var(--radius-btn);
	font-family: var(--font-sans);
	font-size: var(--text-label);
	font-weight: 600;
	letter-spacing: var(--tracking-btn);
	text-transform: uppercase;
	line-height: 1.4;
	cursor: pointer;
	text-align: center;
	transition:
		background-color var(--duration-fast) var(--ease-default),
		color var(--duration-fast) var(--ease-default),
		border-color var(--duration-fast) var(--ease-default),
		transform var(--duration-fast) var(--ease-default);
}

.btn:active {
	transform: scale(0.97);
}

.btn--primary {
	background-color: var(--color-btn-primary-bg);
	color: var(--color-btn-primary-text);
	border: 1px solid var(--color-btn-primary-bg);
}

/* :focus grouped with :hover so keyboard/after-click focus keeps the button's
   own colour — this also out-specifies Hello Elementor reset.css's
   `button:focus{background:#c36}` (0,1,1), which single-class .btn--* (0,1,0)
   would otherwise lose to, surfacing a pink flash on focus. */
.btn--primary:hover,
.btn--primary:focus {
	background-color: var(--color-btn-primary-hover);
	border-color: var(--color-btn-primary-hover);
	color: var(--color-btn-primary-text);
}

.btn--primary:disabled,
.btn--primary[aria-disabled='true'] {
	background-color: var(--color-muted);
	border-color: var(--color-muted);
	cursor: not-allowed;
}

.btn--secondary {
	background-color: transparent;
	color: var(--color-btn-secondary-text);
	border: 1px solid var(--color-btn-secondary-border);
}

.btn--secondary:hover,
.btn--secondary:focus {
	background-color: var(--color-btn-secondary-hover-bg);
	color: var(--color-btn-secondary-hover-text);
}

/* Ghost variant for dark/photo surfaces */
.btn--on-dark {
	border: 1px solid rgba(255, 255, 255, 0.75);
	color: var(--color-white);
	background: transparent;
}

.btn--on-dark:hover,
.btn--on-dark:focus {
	background-color: var(--color-white);
	border-color: var(--color-white);
	color: var(--color-heading);
}

/* Underlined uppercase text link — the redesign's quiet CTA */
.text-link {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: var(--text-label);
	font-weight: 600;
	letter-spacing: var(--tracking-label);
	text-transform: uppercase;
	color: var(--color-heading);
	padding-bottom: 6px;
	position: relative;
}

.text-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 100%;
	background: var(--color-heading);
	transform-origin: left;
	transition: transform var(--duration-default) var(--ease-default);
}

.text-link:hover {
	color: var(--color-deep-olive);
}

.text-link:hover::after {
	transform: scaleX(0.55);
}

/* =========================================================
   Cards (used sparingly post-redesign; menu rows carry lists)
   ========================================================= */

.card {
	background-color: var(--color-card-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	padding: var(--space-lg);
	transition: box-shadow var(--duration-default) var(--ease-default);
}

.card:hover {
	box-shadow: var(--shadow-hover);
}

/* =========================================================
   Forms — squared fields, hairline borders
   ========================================================= */

.form-field {
	margin-bottom: var(--space-sm);
}

.form-field label {
	display: block;
	margin-bottom: var(--space-xs);
	color: var(--color-heading);
	font-weight: 600;
	font-size: var(--text-label);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.form-field input[type='text'],
.form-field input[type='email'],
.form-field input[type='tel'],
.form-field input[type='date'],
.form-field input[type='search'],
.form-field select,
.form-field textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px var(--space-sm);
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-btn);
	font-family: var(--font-sans);
	font-size: var(--text-body);
	color: var(--color-body);
	transition: border-color var(--duration-fast) var(--ease-default);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--color-sage-green);
	outline: none;
}

.form-field ::placeholder {
	color: var(--color-muted);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
	border-color: var(--color-error);
}

.form-field .field-error {
	color: var(--color-error);
	font-size: var(--text-caption);
	margin-top: var(--space-xs);
}

.form-success {
	color: var(--color-success);
}

/* =========================================================
   Topbar (redesign, docs/11 §1)
   ========================================================= */

.topbar {
	background: var(--color-ink);
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	letter-spacing: 0.04em;
}

/* Full-bleed: span the viewport with a wide inset, not the 1320 container */
.topbar__inner {
	max-width: none;
	padding-inline: var(--gutter-wide);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	min-height: 42px;
}

.topbar a {
	color: rgba(255, 255, 255, 0.82);
	transition: color var(--duration-fast) var(--ease-default);
}

.topbar a:hover {
	color: var(--color-white);
}

.topbar__addr {
	display: none;
}

.topbar__center {
	display: none;
	letter-spacing: var(--tracking-label);
	text-transform: uppercase;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
}

/* Right-side utility links (phone · FAQ · Gift Cards) */
.topbar__utils {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	margin-left: auto;
}

.topbar__utils a + a {
	padding-left: var(--space-sm);
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
	.topbar__addr {
		display: block;
	}

	.topbar__utils {
		margin-left: 0;
	}
}

@media (min-width: 900px) {
	.topbar__center {
		display: block;
	}
}

/* Mobile: only the utility links show, centered */
@media (max-width: 639px) {
	.topbar__inner {
		justify-content: center;
	}
}

/* =========================================================
   Header (docs/11 §1) — transparent over hero, solid on scroll
   ========================================================= */

.site-header {
	/* Neutralize Hello Elementor's parent-theme layout on .site-header
	   (it sets display:flex + max-width:1140 + auto margins). */
	display: block;
	width: 100%;
	max-width: none;
	margin-inline: 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: var(--color-porcelain);
	border-bottom: 1px solid var(--color-hairline);
	transition: background-color var(--duration-default) var(--ease-default),
		box-shadow var(--duration-default) var(--ease-default),
		border-color var(--duration-default) var(--ease-default);
}

.site-header.is-scrolled {
	box-shadow: var(--shadow-header);
}

/* Transparent variant while at the top of a page with a full-bleed hero */
.has-hero .site-header:not(.is-scrolled):not(.nav-open *) {
	background-color: transparent;
	border-bottom-color: rgba(255, 255, 255, 0.18);
}

.has-hero .site-header:not(.is-scrolled) .site-nav a,
.has-hero .site-header:not(.is-scrolled) .site-header__brand {
	color: var(--color-white);
}

.has-hero .site-header:not(.is-scrolled) .custom-logo {
	filter: brightness(0) invert(1);
}

.has-hero .site-header:not(.is-scrolled) .btn--book {
	border-color: rgba(255, 255, 255, 0.75);
	color: var(--color-white);
	background: transparent;
}

.has-hero .site-header:not(.is-scrolled) .btn--book:hover {
	background: var(--color-white);
	color: var(--color-heading);
}

.has-hero .site-header:not(.is-scrolled) .nav-toggle__bar {
	background-color: var(--color-white);
}

/* Full-bleed header: nav spans the viewport (logo hard-left, actions
   hard-right) with a wide inset, per the redesign feedback. */
.site-header__inner {
	max-width: none;
	padding-inline: var(--gutter-wide);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-lg);
	min-height: 88px;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 0.9rem + 1.5vw, 1.625rem);
	font-weight: 600;
	color: var(--color-heading);
	letter-spacing: 0.01em;
}

.site-header__brand:hover {
	color: var(--color-deep-olive);
}

/* WP renders the logo as .custom-logo-link > .custom-logo (outside the
   __brand wrapper) — cap it here or the header inflates and the hero
   pull-up misaligns. */
.site-header .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-header .custom-logo,
.site-header__brand img {
	max-height: 52px;
	width: auto;
	transition: filter var(--duration-default) var(--ease-default);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

/* --- Primary navigation (desktop) --- */

.site-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav {
	display: none;
}

@media (min-width: 1024px) {
	.site-nav {
		display: block;
	}

	.site-nav > ul {
		display: flex;
		align-items: center;
		gap: var(--space-md);
	}

	.site-nav a {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: var(--space-xs) 2px;
		color: var(--color-heading);
		font-weight: 600;
		font-size: var(--text-label);
		letter-spacing: var(--tracking-label);
		text-transform: uppercase;
		transition: color var(--duration-fast) var(--ease-default),
			opacity var(--duration-fast) var(--ease-default);
	}

	.site-nav a:hover,
	.site-nav .current-menu-item > a,
	.site-nav .current-menu-ancestor > a {
		color: var(--color-deep-olive);
	}

	.has-hero .site-header:not(.is-scrolled) .site-nav a:hover {
		color: var(--color-white);
		opacity: 0.75;
	}

	.site-nav .menu-item-has-children {
		position: relative;
	}

	.site-nav .menu-item-has-children > a::after {
		content: '';
		width: 6px;
		height: 6px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg) translateY(-2px);
	}

	.site-nav .sub-menu {
		position: absolute;
		top: 100%;
		left: 50%;
		translate: -50% 0;
		min-width: 300px;
		padding: var(--space-sm) 0;
		background: var(--color-porcelain);
		border: 1px solid var(--color-hairline);
		box-shadow: var(--shadow-card);
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		transition:
			opacity var(--duration-default) var(--ease-default),
			transform var(--duration-default) var(--ease-default),
			visibility 0s linear var(--duration-default);
	}

	.site-nav .menu-item-has-children:hover > .sub-menu,
	.site-nav .menu-item-has-children:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		transition-delay: 0s;
	}

	.site-nav .sub-menu a {
		display: block;
		padding: 10px var(--space-md);
		font-weight: 500;
		font-size: 12px;
		letter-spacing: 0.12em;
		white-space: nowrap;
		color: var(--color-body);
	}

	.site-nav .sub-menu a:hover {
		background-color: var(--color-ivory);
		color: var(--color-deep-olive);
	}

	/* Dropdown always reads on light panel even under transparent header */
	.has-hero .site-header:not(.is-scrolled) .site-nav .sub-menu a {
		color: var(--color-body);
	}

	.has-hero .site-header:not(.is-scrolled) .site-nav .sub-menu a:hover {
		color: var(--color-deep-olive);
		opacity: 1;
	}
}

/* --- Mobile navigation --- */

.nav-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: none;
	border: none;
	cursor: pointer;
}

.nav-toggle__bar {
	display: block;
	width: 100%;
	height: 1.5px;
	background-color: var(--color-heading);
	transition: transform var(--duration-default) var(--ease-default),
		opacity var(--duration-default) var(--ease-default),
		background-color var(--duration-default) var(--ease-default);
}

.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-open .nav-toggle__bar { background-color: var(--color-heading); }

@media (min-width: 1024px) {
	.nav-toggle {
		display: none;
	}
}

.mobile-nav {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999;
	overflow-y: auto;
	background-color: var(--color-porcelain);
	padding: 120px var(--gutter) var(--space-2xl);
}

.nav-open .mobile-nav {
	display: block;
}

.nav-open {
	overflow: hidden;
}

/* Keep the header solid while the mobile panel is open */
.nav-open .site-header {
	background-color: var(--color-porcelain) !important;
}

.nav-open .site-header .site-nav a,
.nav-open .site-header .site-header__brand {
	color: var(--color-heading);
}

.nav-open .site-header .custom-logo {
	filter: none !important;
}

@media (min-width: 1024px) {
	.mobile-nav,
	.nav-open .mobile-nav {
		display: none;
	}
}

.mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav > ul > li {
	border-bottom: 1px solid var(--color-hairline);
}

.mobile-nav a {
	display: block;
	padding: var(--space-sm) 0;
	color: var(--color-heading);
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 500;
}

.mobile-nav .menu-item-has-children {
	position: relative;
}

.submenu-toggle {
	position: absolute;
	top: 10px;
	right: 0;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
}

.submenu-toggle::after {
	content: '';
	width: 9px;
	height: 9px;
	border-right: 1.5px solid var(--color-heading);
	border-bottom: 1.5px solid var(--color-heading);
	transform: rotate(45deg);
	transition: transform var(--duration-default) var(--ease-default);
}

.submenu-toggle[aria-expanded='true']::after {
	transform: rotate(-135deg);
}

.mobile-nav .sub-menu {
	display: none;
	padding-left: var(--space-sm);
	padding-bottom: var(--space-xs);
}

.mobile-nav .sub-menu.is-open {
	display: block;
}

.mobile-nav .sub-menu a {
	font-family: var(--font-sans);
	font-size: var(--text-caption);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-body);
	padding: 10px 0;
}

.site-header .btn--book {
	min-height: 42px;
	padding: 10px 26px;
}

@media (max-width: 479px) {
	.site-header .btn--book {
		padding-inline: var(--space-sm);
	}
}

/* =========================================================
   Footer — light, centered brand, hairline rules (redesign)
   ========================================================= */

.site-footer {
	/* Neutralize Hello Elementor's parent-theme layout on .site-footer
	   (display:flex + max-width:1140 + auto margins). */
	display: block;
	width: 100%;
	max-width: none;
	margin-inline: 0;
	background-color: var(--color-footer-bg);
	color: var(--color-footer-text);
	/* Extra bottom clearance so the fixed WhatsApp float (56px @ bottom:24px)
	   never overlaps the legal bar's bottom-right links. */
	padding-block: var(--space-xl) 96px;
}

/* Full-bleed footer: columns span the viewport with a wide inset (redesign) */
.site-footer > .rj4-container {
	max-width: none;
	padding-inline: var(--gutter-wide);
}

.site-footer__brandmark {
	text-align: center;
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid var(--color-hairline);
	margin-bottom: var(--space-xl);
}

.site-footer__brandmark img {
	max-height: 72px;
	width: auto;
}

.site-footer__brandmark .site-footer__brand {
	font-family: var(--font-serif);
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--color-heading);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
	padding-bottom: var(--space-xl);
}

@media (min-width: 640px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.site-footer__heading {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--color-heading);
	margin-bottom: var(--space-sm);
}

.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer li {
	margin-bottom: 10px;
}

.site-footer a {
	color: var(--color-body);
	font-size: var(--text-caption);
}

.site-footer a:hover {
	color: var(--color-deep-olive);
}

.site-footer__contact p {
	margin-bottom: var(--space-xs);
	font-size: var(--text-caption);
	line-height: var(--leading-caption);
	color: var(--color-body);
}

.site-footer__social {
	display: flex;
	gap: var(--space-sm);
	margin-top: var(--space-sm);
	font-size: var(--text-caption);
}

.site-footer__social a {
	color: var(--color-heading);
	font-weight: 600;
}

.site-footer__bottom {
	border-top: 1px solid var(--color-hairline);
	padding-top: var(--space-md);
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	justify-content: space-between;
	font-size: 12px;
	color: var(--color-muted);
}

.site-footer__legal {
	display: flex;
	gap: var(--space-md);
}

/* =========================================================
   WhatsApp floating button (docs/11 §15)
   ========================================================= */

.whatsapp-float {
	position: fixed;
	right: var(--space-md);
	bottom: var(--space-md);
	z-index: 1100;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: var(--radius-full);
	background-color: var(--color-deep-olive);
	color: var(--color-white);
	box-shadow: var(--shadow-card);
	transition: background-color var(--duration-fast) var(--ease-default),
		box-shadow var(--duration-default) var(--ease-default);
	animation: rj4-pulse 3s var(--ease-default) infinite;
}

.whatsapp-float:hover {
	background-color: var(--color-hover-bg);
	color: var(--color-white);
	box-shadow: var(--shadow-hover);
}

.whatsapp-float svg {
	width: 28px;
	height: 28px;
}

@keyframes rj4-pulse {
	0%, 100% { box-shadow: var(--shadow-card), 0 0 0 0 rgba(74, 83, 61, 0.35); }
	50% { box-shadow: var(--shadow-card), 0 0 0 10px rgba(74, 83, 61, 0); }
}

/* =========================================================
   Reduced motion (docs/12 §5)
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.whatsapp-float {
		animation: none;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
