/*
Theme Name: Shalom Hospital
Theme URI: https://narvatech.com
Author: NarvaTech Private Limited
Author URI: https://iavinashsinha.com
Description: A premium multispeciality hospital WordPress theme for Shalom Hospital
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shalom-hospital
Tags: healthcare, hospital, medical, custom-background, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, threaded-comments, translation-ready, block-styles, wide-blocks, full-site-editing
*/

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
	/* Brand Colors */
	--sh-color-primary:        #0F766E;
	--sh-color-primary-dark:   #0D6460;
	--sh-color-primary-light:  #14B8A6;
	--sh-color-secondary:      #14B8A6;
	--sh-color-secondary-dark: #0F9E8C;
	--sh-color-accent:         #F59E0B;
	--sh-color-accent-dark:    #D97706;
	--sh-color-accent-light:   #FCD34D;

	/* Neutral / Surface Colors */
	--sh-color-bg:             #F8FAFC;
	--sh-color-surface:        #FFFFFF;
	--sh-color-border:         #E2E8F0;
	--sh-color-border-light:   #F1F5F9;

	/* Text Colors */
	--sh-color-text:           #111827;
	--sh-color-text-muted:     #6B7280;
	--sh-color-text-light:     #9CA3AF;
	--sh-color-text-inverse:   #FFFFFF;

	/* Status Colors */
	--sh-color-success:        #10B981;
	--sh-color-warning:        #F59E0B;
	--sh-color-error:          #EF4444;
	--sh-color-info:           #3B82F6;

	/* Typography */
	--sh-font-heading:         'Poppins', 'Segoe UI', system-ui, sans-serif;
	--sh-font-body:            'Inter', 'Segoe UI', system-ui, sans-serif;
	--sh-font-mono:            'Fira Code', 'Consolas', 'Monaco', monospace;

	/* Font Sizes */
	--sh-text-xs:    0.75rem;    /* 12px */
	--sh-text-sm:    0.875rem;   /* 14px */
	--sh-text-base:  1rem;       /* 16px */
	--sh-text-lg:    1.125rem;   /* 18px */
	--sh-text-xl:    1.25rem;    /* 20px */
	--sh-text-2xl:   1.5rem;     /* 24px */
	--sh-text-3xl:   1.875rem;   /* 30px */
	--sh-text-4xl:   2.25rem;    /* 36px */
	--sh-text-5xl:   3rem;       /* 48px */
	--sh-text-6xl:   3.75rem;    /* 60px */

	/* Font Weights */
	--sh-font-normal:    400;
	--sh-font-medium:    500;
	--sh-font-semibold:  600;
	--sh-font-bold:      700;
	--sh-font-extrabold: 800;

	/* Line Heights */
	--sh-leading-tight:  1.25;
	--sh-leading-snug:   1.375;
	--sh-leading-normal: 1.5;
	--sh-leading-relaxed: 1.625;
	--sh-leading-loose:  2;

	/* Letter Spacing */
	--sh-tracking-tight:  -0.025em;
	--sh-tracking-normal: 0em;
	--sh-tracking-wide:   0.025em;
	--sh-tracking-wider:  0.05em;
	--sh-tracking-widest: 0.1em;

	/* Border Radius */
	--sh-radius-sm:   8px;
	--sh-radius-md:   12px;
	--sh-radius-lg:   16px;
	--sh-radius-xl:   20px;
	--sh-radius-card: 24px;
	--sh-radius-hero: 32px;
	--sh-radius-full: 999px;

	/* Spacing Scale */
	--sh-space-1:  0.25rem;   /* 4px */
	--sh-space-2:  0.5rem;    /* 8px */
	--sh-space-3:  0.75rem;   /* 12px */
	--sh-space-4:  1rem;      /* 16px */
	--sh-space-5:  1.25rem;   /* 20px */
	--sh-space-6:  1.5rem;    /* 24px */
	--sh-space-8:  2rem;      /* 32px */
	--sh-space-10: 2.5rem;    /* 40px */
	--sh-space-12: 3rem;      /* 48px */
	--sh-space-16: 4rem;      /* 64px */
	--sh-space-20: 5rem;      /* 80px */
	--sh-space-24: 6rem;      /* 96px */
	--sh-space-32: 8rem;      /* 128px */

	/* Shadows */
	--sh-shadow-xs:  0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--sh-shadow-sm:  0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
	--sh-shadow-md:  0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	--sh-shadow-lg:  0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--sh-shadow-xl:  0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	--sh-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--sh-shadow-card: 0 4px 24px rgba(15, 118, 110, 0.08);
	--sh-shadow-card-hover: 0 12px 40px rgba(15, 118, 110, 0.15);

	/* Transitions */
	--sh-transition-fast:   150ms ease;
	--sh-transition-base:   250ms ease;
	--sh-transition-slow:   400ms ease;
	--sh-transition-bounce: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

	/* Z-index Scale */
	--sh-z-behind:   -1;
	--sh-z-base:      0;
	--sh-z-raised:    1;
	--sh-z-dropdown:  100;
	--sh-z-sticky:    200;
	--sh-z-overlay:   300;
	--sh-z-modal:     400;
	--sh-z-toast:     500;

	/* Layout */
	--sh-content-width: 1200px;
	--sh-wide-width:    1440px;
	--sh-header-height: 80px;
}

/* ==========================================================================
   Modern CSS Reset
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	tab-size: 4;
}

body {
	font-family: var(--sh-font-body);
	font-size: var(--sh-text-base);
	font-weight: var(--sh-font-normal);
	line-height: var(--sh-leading-relaxed);
	color: var(--sh-color-text);
	background-color: var(--sh-color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
}

/* Heading defaults */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--sh-font-heading);
	font-weight: var(--sh-font-bold);
	line-height: var(--sh-leading-tight);
	color: var(--sh-color-text);
	letter-spacing: var(--sh-tracking-tight);
}

h1 { font-size: var(--sh-text-5xl); }
h2 { font-size: var(--sh-text-4xl); }
h3 { font-size: var(--sh-text-3xl); }
h4 { font-size: var(--sh-text-2xl); }
h5 { font-size: var(--sh-text-xl); }
h6 { font-size: var(--sh-text-lg); }

/* Media defaults */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Form element inheritance */
input,
button,
textarea,
select {
	font: inherit;
}

/* Paragraph and text */
p {
	color: var(--sh-color-text-muted);
	line-height: var(--sh-leading-relaxed);
}

/* Link defaults */
a {
	color: var(--sh-color-primary);
	text-decoration: none;
	transition: color var(--sh-transition-fast);
}

a:hover {
	color: var(--sh-color-primary-dark);
	text-decoration: underline;
}

a:focus-visible {
	outline: 2px solid var(--sh-color-primary);
	outline-offset: 2px;
	border-radius: 2px;
}

/* List resets */
ul,
ol {
	list-style: none;
}

/* Table defaults */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* HR */
hr {
	border: none;
	border-top: 1px solid var(--sh-color-border);
	margin: var(--sh-space-8) 0;
}

/* Blockquote */
blockquote {
	border-left: 4px solid var(--sh-color-primary);
	padding-left: var(--sh-space-6);
	margin: var(--sh-space-6) 0;
	font-style: italic;
	color: var(--sh-color-text-muted);
}

/* Code */
code,
pre {
	font-family: var(--sh-font-mono);
	font-size: 0.875em;
}

pre {
	background: var(--sh-color-border-light);
	padding: var(--sh-space-4);
	border-radius: var(--sh-radius-md);
	overflow-x: auto;
}

code {
	background: var(--sh-color-border-light);
	padding: 0.125em 0.375em;
	border-radius: 4px;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

.sh-container {
	width: 100%;
	max-width: var(--sh-content-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--sh-space-6);
	padding-right: var(--sh-space-6);
}

.sh-container--wide {
	max-width: var(--sh-wide-width);
}

.sh-container--narrow {
	max-width: 800px;
}

/* ==========================================================================
   Button System
   ========================================================================== */

.sh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sh-space-2);
	padding: 0.75rem 1.75rem;
	font-family: var(--sh-font-heading);
	font-size: var(--sh-text-sm);
	font-weight: var(--sh-font-semibold);
	line-height: 1;
	letter-spacing: var(--sh-tracking-wide);
	border: 2px solid transparent;
	border-radius: var(--sh-radius-full);
	cursor: pointer;
	text-decoration: none;
	transition: all var(--sh-transition-base);
	white-space: nowrap;
	user-select: none;
	-webkit-user-select: none;
}

.sh-btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.sh-btn:active {
	transform: translateY(0);
}

.sh-btn:focus-visible {
	outline: 2px solid var(--sh-color-primary);
	outline-offset: 3px;
}

/* Primary button */
.sh-btn--primary {
	background-color: var(--sh-color-primary);
	border-color: var(--sh-color-primary);
	color: #ffffff;
}

.sh-btn--primary:hover {
	background-color: var(--sh-color-primary-dark);
	border-color: var(--sh-color-primary-dark);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(15, 118, 110, 0.35);
}

/* Secondary button */
.sh-btn--secondary {
	background-color: var(--sh-color-secondary);
	border-color: var(--sh-color-secondary);
	color: #ffffff;
}

.sh-btn--secondary:hover {
	background-color: var(--sh-color-secondary-dark);
	border-color: var(--sh-color-secondary-dark);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
}

/* Accent button */
.sh-btn--accent {
	background-color: var(--sh-color-accent);
	border-color: var(--sh-color-accent);
	color: #ffffff;
}

.sh-btn--accent:hover {
	background-color: var(--sh-color-accent-dark);
	border-color: var(--sh-color-accent-dark);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

/* Outline button */
.sh-btn--outline {
	background-color: transparent;
	border-color: var(--sh-color-primary);
	color: var(--sh-color-primary);
}

.sh-btn--outline:hover {
	background-color: var(--sh-color-primary);
	color: #ffffff;
}

/* Ghost button */
.sh-btn--ghost {
	background-color: transparent;
	border-color: transparent;
	color: var(--sh-color-primary);
}

.sh-btn--ghost:hover {
	background-color: rgba(15, 118, 110, 0.08);
	color: var(--sh-color-primary-dark);
}

/* Button sizes */
.sh-btn--sm {
	padding: 0.5rem 1.25rem;
	font-size: var(--sh-text-xs);
}

.sh-btn--lg {
	padding: 1rem 2.5rem;
	font-size: var(--sh-text-base);
}

.sh-btn--xl {
	padding: 1.125rem 3rem;
	font-size: var(--sh-text-lg);
}

/* White variant (on dark backgrounds) */
.sh-btn--white {
	background-color: #ffffff;
	border-color: #ffffff;
	color: var(--sh-color-primary);
}

.sh-btn--white:hover {
	background-color: var(--sh-color-bg);
	color: var(--sh-color-primary-dark);
}

/* Emergency button */
.sh-btn--emergency {
	background-color: #EF4444;
	border-color: #EF4444;
	color: #ffffff;
}

.sh-btn--emergency:hover {
	background-color: #DC2626;
	border-color: #DC2626;
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35);
}

/* ==========================================================================
   Card System
   ========================================================================== */

.sh-card {
	background-color: var(--sh-color-surface);
	border-radius: var(--sh-radius-card);
	box-shadow: var(--sh-shadow-card);
	overflow: hidden;
	transition: box-shadow var(--sh-transition-base), transform var(--sh-transition-base);
}

.sh-card:hover {
	box-shadow: var(--sh-shadow-card-hover);
	transform: translateY(-4px);
}

.sh-card__body {
	padding: var(--sh-space-6);
}

.sh-card__image {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.sh-card__tag {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	background-color: rgba(15, 118, 110, 0.08);
	color: var(--sh-color-primary);
	font-size: var(--sh-text-xs);
	font-weight: var(--sh-font-semibold);
	border-radius: var(--sh-radius-full);
	letter-spacing: var(--sh-tracking-wide);
	text-transform: uppercase;
	margin-bottom: var(--sh-space-3);
}

/* ==========================================================================
   Section Utilities
   ========================================================================== */

.sh-section {
	padding: var(--sh-space-20) 0;
}

.sh-section--sm {
	padding: var(--sh-space-12) 0;
}

.sh-section--lg {
	padding: var(--sh-space-32) 0;
}

.sh-section--primary {
	background-color: var(--sh-color-primary);
	color: #ffffff;
}

.sh-section--light {
	background-color: var(--sh-color-border-light);
}

.sh-section__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto var(--sh-space-12);
}

.sh-section__tag {
	display: inline-flex;
	align-items: center;
	gap: var(--sh-space-2);
	padding: 0.375rem 1rem;
	background-color: rgba(15, 118, 110, 0.08);
	color: var(--sh-color-primary);
	font-size: var(--sh-text-sm);
	font-weight: var(--sh-font-semibold);
	border-radius: var(--sh-radius-full);
	letter-spacing: var(--sh-tracking-wider);
	text-transform: uppercase;
	margin-bottom: var(--sh-space-4);
}

.sh-section__title {
	font-family: var(--sh-font-heading);
	font-size: var(--sh-text-4xl);
	font-weight: var(--sh-font-bold);
	color: var(--sh-color-text);
	margin-bottom: var(--sh-space-4);
	line-height: var(--sh-leading-tight);
}

.sh-section__subtitle {
	font-size: var(--sh-text-lg);
	color: var(--sh-color-text-muted);
	line-height: var(--sh-leading-relaxed);
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.sh-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--sh-z-sticky);
	height: var(--sh-header-height);
	background-color: transparent;
	transition: background-color var(--sh-transition-base), box-shadow var(--sh-transition-base);
}

.sh-header.scrolled,
.sh-header--solid {
	background-color: var(--sh-color-surface);
	box-shadow: var(--sh-shadow-md);
}

.sh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: var(--sh-space-8);
}

.sh-header__logo {
	flex-shrink: 0;
}

.sh-header__logo img {
	height: 48px;
	width: auto;
}

.sh-header__nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.sh-header__actions {
	display: flex;
	align-items: center;
	gap: var(--sh-space-3);
	flex-shrink: 0;
}

/* Navigation */
.sh-nav__menu {
	display: flex;
	align-items: center;
	gap: var(--sh-space-1);
	list-style: none;
}

.sh-nav__menu > li > a {
	display: flex;
	align-items: center;
	gap: var(--sh-space-1);
	padding: var(--sh-space-2) var(--sh-space-4);
	font-family: var(--sh-font-heading);
	font-size: var(--sh-text-sm);
	font-weight: var(--sh-font-medium);
	color: var(--sh-color-text);
	border-radius: var(--sh-radius-full);
	transition: all var(--sh-transition-fast);
	text-decoration: none;
}

.sh-nav__menu > li > a:hover,
.sh-nav__menu > li.current-menu-item > a,
.sh-nav__menu > li.current-menu-ancestor > a {
	color: var(--sh-color-primary);
	background-color: rgba(15, 118, 110, 0.06);
	text-decoration: none;
}

/* Dropdown */
.sh-nav__menu li.menu-item-has-children {
	position: relative;
}

.sh-nav__menu li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	margin-left: var(--sh-space-1);
	transition: transform var(--sh-transition-fast);
}

.sh-nav__menu li.menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
}

.sh-nav__dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	background-color: var(--sh-color-surface);
	border-radius: var(--sh-radius-lg);
	box-shadow: var(--sh-shadow-xl);
	border: 1px solid var(--sh-color-border);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all var(--sh-transition-base);
	z-index: var(--sh-z-dropdown);
	list-style: none;
	padding: var(--sh-space-2) 0;
}

.sh-nav__menu li.menu-item-has-children:hover .sh-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sh-nav__dropdown li a {
	display: block;
	padding: var(--sh-space-3) var(--sh-space-5);
	font-size: var(--sh-text-sm);
	color: var(--sh-color-text);
	transition: all var(--sh-transition-fast);
	text-decoration: none;
}

.sh-nav__dropdown li a:hover {
	color: var(--sh-color-primary);
	background-color: rgba(15, 118, 110, 0.05);
	padding-left: calc(var(--sh-space-5) + 4px);
	text-decoration: none;
}

/* Hamburger */
.sh-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	gap: 5px;
}

.sh-hamburger__line {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--sh-color-text);
	border-radius: 2px;
	transition: all var(--sh-transition-base);
	transform-origin: center;
}

.sh-hamburger.is-active .sh-hamburger__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.sh-hamburger.is-active .sh-hamburger__line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.sh-hamburger.is-active .sh-hamburger__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Search toggle */
.sh-search-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--sh-color-text);
	border-radius: var(--sh-radius-full);
	transition: all var(--sh-transition-fast);
}

.sh-search-toggle:hover {
	background-color: rgba(15, 118, 110, 0.08);
	color: var(--sh-color-primary);
}

/* ==========================================================================
   Emergency Banner
   ========================================================================== */

.sh-emergency-banner {
	background-color: var(--sh-color-primary);
	color: #ffffff;
	text-align: center;
	padding: var(--sh-space-2) var(--sh-space-4);
	font-size: var(--sh-text-sm);
	font-weight: var(--sh-font-medium);
}

.sh-emergency-banner a {
	color: var(--sh-color-accent);
	font-weight: var(--sh-font-bold);
}

.sh-emergency-banner a:hover {
	color: var(--sh-color-accent-light);
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

.sh-mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 320px;
	max-width: 90vw;
	background-color: var(--sh-color-surface);
	box-shadow: var(--sh-shadow-2xl);
	z-index: var(--sh-z-modal);
	transform: translateX(100%);
	transition: transform var(--sh-transition-slow);
	overflow-y: auto;
	padding: var(--sh-space-6);
}

.sh-mobile-menu.is-open {
	transform: translateX(0);
}

.sh-mobile-menu__overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: calc(var(--sh-z-modal) - 1);
	opacity: 0;
	visibility: hidden;
	transition: all var(--sh-transition-base);
}

.sh-mobile-menu__overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.sh-mobile-menu__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: none;
	border: 1px solid var(--sh-color-border);
	border-radius: var(--sh-radius-full);
	cursor: pointer;
	margin-left: auto;
	margin-bottom: var(--sh-space-6);
	color: var(--sh-color-text);
	transition: all var(--sh-transition-fast);
}

.sh-mobile-menu__close:hover {
	background-color: var(--sh-color-error);
	border-color: var(--sh-color-error);
	color: #ffffff;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.sh-footer {
	background-color: #111827;
	color: rgba(255, 255, 255, 0.8);
}

.sh-footer__top {
	padding: var(--sh-space-20) 0 var(--sh-space-12);
}

.sh-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: var(--sh-space-12);
}

.sh-footer__heading {
	font-family: var(--sh-font-heading);
	font-size: var(--sh-text-base);
	font-weight: var(--sh-font-semibold);
	color: #ffffff;
	margin-bottom: var(--sh-space-5);
	position: relative;
	padding-bottom: var(--sh-space-3);
}

.sh-footer__heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 32px;
	height: 2px;
	background-color: var(--sh-color-secondary);
	border-radius: 2px;
}

.sh-footer__description {
	font-size: var(--sh-text-sm);
	color: rgba(255, 255, 255, 0.6);
	line-height: var(--sh-leading-relaxed);
	margin-bottom: var(--sh-space-6);
}

.sh-footer__links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--sh-space-3);
}

.sh-footer__links a {
	font-size: var(--sh-text-sm);
	color: rgba(255, 255, 255, 0.65);
	display: flex;
	align-items: center;
	gap: var(--sh-space-2);
	transition: color var(--sh-transition-fast);
	text-decoration: none;
}

.sh-footer__links a:hover {
	color: var(--sh-color-secondary);
	text-decoration: none;
}

.sh-footer__links a::before {
	content: '›';
	color: var(--sh-color-secondary);
	font-size: 1.125rem;
	line-height: 1;
}

/* Social Links */
.sh-social-links {
	display: flex;
	gap: var(--sh-space-3);
}

.sh-social-links__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--sh-radius-full);
	background-color: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
	font-size: var(--sh-text-sm);
	transition: all var(--sh-transition-fast);
	text-decoration: none;
}

.sh-social-links__item:hover {
	background-color: var(--sh-color-primary);
	color: #ffffff;
	transform: translateY(-2px);
	text-decoration: none;
}

/* Contact Info */
.sh-footer__contact {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--sh-space-4);
}

.sh-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: var(--sh-space-3);
	font-size: var(--sh-text-sm);
	color: rgba(255, 255, 255, 0.65);
}

.sh-footer__contact-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: var(--sh-radius-full);
	background-color: rgba(20, 184, 166, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sh-color-secondary);
	margin-top: -2px;
}

.sh-footer__contact-item a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color var(--sh-transition-fast);
}

.sh-footer__contact-item a:hover {
	color: var(--sh-color-secondary);
}

/* Footer Bottom */
.sh-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: var(--sh-space-6) 0;
}

.sh-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sh-space-4);
	flex-wrap: wrap;
}

.sh-footer__copyright {
	font-size: var(--sh-text-sm);
	color: rgba(255, 255, 255, 0.5);
}

.sh-footer__copyright a {
	color: var(--sh-color-secondary);
	text-decoration: none;
}

.sh-back-to-top {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: var(--sh-color-primary);
	color: #ffffff;
	border-radius: var(--sh-radius-full);
	text-decoration: none;
	transition: all var(--sh-transition-base);
	box-shadow: var(--sh-shadow-md);
}

.sh-back-to-top:hover {
	background-color: var(--sh-color-secondary);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: var(--sh-shadow-lg);
	text-decoration: none;
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */

.sh-whatsapp-float {
	position: fixed;
	bottom: var(--sh-space-6);
	right: var(--sh-space-6);
	z-index: var(--sh-z-toast);
}

.sh-whatsapp-float__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background-color: #25D366;
	color: #ffffff;
	border-radius: var(--sh-radius-full);
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	text-decoration: none;
	transition: all var(--sh-transition-base);
	animation: sh-pulse 2s infinite;
}

.sh-whatsapp-float__btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
	color: #ffffff;
	text-decoration: none;
}

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

@keyframes sh-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
	70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.sh-breadcrumbs {
	padding: var(--sh-space-4) 0;
	background-color: var(--sh-color-border-light);
}

.sh-breadcrumbs__list {
	display: flex;
	align-items: center;
	gap: var(--sh-space-2);
	list-style: none;
	flex-wrap: wrap;
}

.sh-breadcrumbs__item {
	display: flex;
	align-items: center;
	gap: var(--sh-space-2);
	font-size: var(--sh-text-sm);
	color: var(--sh-color-text-muted);
}

.sh-breadcrumbs__item:not(:last-child)::after {
	content: '/';
	color: var(--sh-color-text-light);
}

.sh-breadcrumbs__item a {
	color: var(--sh-color-primary);
	text-decoration: none;
}

.sh-breadcrumbs__item a:hover {
	text-decoration: underline;
}

.sh-breadcrumbs__item.active {
	color: var(--sh-color-text);
	font-weight: var(--sh-font-medium);
}

/* ==========================================================================
   Page Header / Hero Banner
   ========================================================================== */

.sh-page-hero {
	background: linear-gradient(135deg, var(--sh-color-primary) 0%, var(--sh-color-secondary) 100%);
	padding: calc(var(--sh-space-32) + var(--sh-header-height)) 0 var(--sh-space-20);
	color: #ffffff;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.sh-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sh-page-hero__content {
	position: relative;
}

.sh-page-hero__title {
	font-size: var(--sh-text-5xl);
	font-weight: var(--sh-font-extrabold);
	color: #ffffff;
	margin-bottom: var(--sh-space-4);
}

.sh-page-hero__subtitle {
	font-size: var(--sh-text-xl);
	color: rgba(255, 255, 255, 0.85);
	max-width: 600px;
	margin: 0 auto;
}

/* ==========================================================================
   Post / Blog Styles
   ========================================================================== */

.sh-post {
	background-color: var(--sh-color-surface);
	border-radius: var(--sh-radius-card);
	overflow: hidden;
	box-shadow: var(--sh-shadow-card);
	transition: all var(--sh-transition-base);
}

.sh-post:hover {
	box-shadow: var(--sh-shadow-card-hover);
	transform: translateY(-4px);
}

.sh-post__thumbnail {
	display: block;
	aspect-ratio: 3/2;
	overflow: hidden;
}

.sh-post__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--sh-transition-slow);
}

.sh-post:hover .sh-post__thumbnail img {
	transform: scale(1.05);
}

.sh-post__body {
	padding: var(--sh-space-6);
}

.sh-post__meta {
	display: flex;
	align-items: center;
	gap: var(--sh-space-4);
	font-size: var(--sh-text-xs);
	color: var(--sh-color-text-muted);
	margin-bottom: var(--sh-space-3);
	flex-wrap: wrap;
}

.sh-post__meta-item {
	display: flex;
	align-items: center;
	gap: var(--sh-space-1);
}

.sh-post__category {
	display: inline-flex;
	padding: 0.25rem 0.75rem;
	background-color: rgba(15, 118, 110, 0.08);
	color: var(--sh-color-primary);
	font-size: var(--sh-text-xs);
	font-weight: var(--sh-font-semibold);
	border-radius: var(--sh-radius-full);
	text-decoration: none;
	transition: all var(--sh-transition-fast);
}

.sh-post__category:hover {
	background-color: var(--sh-color-primary);
	color: #ffffff;
}

.sh-post__title {
	font-size: var(--sh-text-xl);
	font-weight: var(--sh-font-bold);
	margin-bottom: var(--sh-space-3);
	line-height: var(--sh-leading-snug);
}

.sh-post__title a {
	color: var(--sh-color-text);
	text-decoration: none;
	transition: color var(--sh-transition-fast);
}

.sh-post__title a:hover {
	color: var(--sh-color-primary);
}

.sh-post__excerpt {
	font-size: var(--sh-text-sm);
	color: var(--sh-color-text-muted);
	line-height: var(--sh-leading-relaxed);
	margin-bottom: var(--sh-space-5);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sh-post__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Single Post */
.sh-single-post__header {
	margin-bottom: var(--sh-space-8);
}

.sh-single-post__thumbnail {
	border-radius: var(--sh-radius-hero);
	overflow: hidden;
	margin-bottom: var(--sh-space-8);
	aspect-ratio: 16/7;
}

.sh-single-post__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sh-single-post__content {
	font-size: var(--sh-text-lg);
	line-height: var(--sh-leading-relaxed);
	color: var(--sh-color-text);
}

.sh-single-post__content h2,
.sh-single-post__content h3,
.sh-single-post__content h4 {
	margin-top: var(--sh-space-8);
	margin-bottom: var(--sh-space-4);
}

.sh-single-post__content p {
	color: var(--sh-color-text);
	margin-bottom: var(--sh-space-5);
}

.sh-single-post__content ul,
.sh-single-post__content ol {
	padding-left: var(--sh-space-6);
	margin-bottom: var(--sh-space-5);
	list-style: revert;
}

.sh-single-post__content li {
	margin-bottom: var(--sh-space-2);
	color: var(--sh-color-text);
}

/* Tags */
.sh-tags {
	display: flex;
	gap: var(--sh-space-2);
	flex-wrap: wrap;
	margin-top: var(--sh-space-8);
	padding-top: var(--sh-space-8);
	border-top: 1px solid var(--sh-color-border);
}

.sh-tag {
	display: inline-flex;
	padding: 0.375rem 1rem;
	border: 1px solid var(--sh-color-border);
	border-radius: var(--sh-radius-full);
	font-size: var(--sh-text-xs);
	color: var(--sh-color-text-muted);
	text-decoration: none;
	transition: all var(--sh-transition-fast);
}

.sh-tag:hover {
	border-color: var(--sh-color-primary);
	color: var(--sh-color-primary);
	background-color: rgba(15, 118, 110, 0.05);
	text-decoration: none;
}

/* Author Box */
.sh-author-box {
	background-color: var(--sh-color-border-light);
	border-radius: var(--sh-radius-card);
	padding: var(--sh-space-8);
	display: flex;
	gap: var(--sh-space-6);
	align-items: flex-start;
	margin-top: var(--sh-space-12);
}

.sh-author-box__avatar {
	width: 80px;
	height: 80px;
	border-radius: var(--sh-radius-full);
	overflow: hidden;
	flex-shrink: 0;
}

.sh-author-box__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sh-author-box__name {
	font-size: var(--sh-text-lg);
	font-weight: var(--sh-font-bold);
	color: var(--sh-color-text);
	margin-bottom: var(--sh-space-2);
}

.sh-author-box__bio {
	font-size: var(--sh-text-sm);
	color: var(--sh-color-text-muted);
	line-height: var(--sh-leading-relaxed);
}

/* ==========================================================================
   Archive / Grid
   ========================================================================== */

.sh-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sh-space-8);
}

.sh-archive-header {
	margin-bottom: var(--sh-space-12);
}

.sh-archive-title {
	font-size: var(--sh-text-4xl);
	font-weight: var(--sh-font-bold);
	margin-bottom: var(--sh-space-4);
}

.sh-archive-description {
	font-size: var(--sh-text-lg);
	color: var(--sh-color-text-muted);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.sh-pagination {
	display: flex;
	justify-content: center;
	margin-top: var(--sh-space-12);
}

.sh-pagination .page-numbers {
	display: flex;
	align-items: center;
	gap: var(--sh-space-2);
	flex-wrap: wrap;
}

.sh-pagination .page-numbers a,
.sh-pagination .page-numbers span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--sh-radius-full);
	font-size: var(--sh-text-sm);
	font-weight: var(--sh-font-medium);
	text-decoration: none;
	transition: all var(--sh-transition-fast);
	border: 1px solid var(--sh-color-border);
	color: var(--sh-color-text);
}

.sh-pagination .page-numbers a:hover {
	border-color: var(--sh-color-primary);
	color: var(--sh-color-primary);
	background-color: rgba(15, 118, 110, 0.05);
	text-decoration: none;
}

.sh-pagination .page-numbers .current {
	background-color: var(--sh-color-primary);
	border-color: var(--sh-color-primary);
	color: #ffffff;
}

.sh-pagination .page-numbers .dots {
	width: auto;
	padding: 0 var(--sh-space-2);
	border: none;
	color: var(--sh-color-text-muted);
}

/* ==========================================================================
   Search
   ========================================================================== */

.sh-search-form {
	display: flex;
	gap: var(--sh-space-3);
}

.sh-search-form__input {
	flex: 1;
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--sh-color-border);
	border-radius: var(--sh-radius-full);
	font-size: var(--sh-text-sm);
	color: var(--sh-color-text);
	background-color: var(--sh-color-surface);
	outline: none;
	transition: border-color var(--sh-transition-fast);
}

.sh-search-form__input:focus {
	border-color: var(--sh-color-primary);
	box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.sh-404 {
	text-align: center;
	padding: var(--sh-space-32) 0;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.sh-404__number {
	font-size: 8rem;
	font-weight: var(--sh-font-extrabold);
	color: var(--sh-color-primary);
	line-height: 1;
	opacity: 0.15;
	margin-bottom: var(--sh-space-4);
	display: block;
}

.sh-404__title {
	font-size: var(--sh-text-4xl);
	font-weight: var(--sh-font-bold);
	margin-bottom: var(--sh-space-4);
}

.sh-404__text {
	font-size: var(--sh-text-lg);
	color: var(--sh-color-text-muted);
	max-width: 500px;
	margin: 0 auto var(--sh-space-8);
}

.sh-404__actions {
	display: flex;
	gap: var(--sh-space-4);
	justify-content: center;
	flex-wrap: wrap;
}

/* ==========================================================================
   Comments
   ========================================================================== */

.sh-comments {
	margin-top: var(--sh-space-12);
	padding-top: var(--sh-space-12);
	border-top: 1px solid var(--sh-color-border);
}

.sh-comments__title {
	font-size: var(--sh-text-2xl);
	font-weight: var(--sh-font-bold);
	margin-bottom: var(--sh-space-8);
}

.sh-comment {
	padding: var(--sh-space-6);
	background-color: var(--sh-color-surface);
	border-radius: var(--sh-radius-lg);
	margin-bottom: var(--sh-space-5);
}

.sh-comment .children {
	padding-left: var(--sh-space-8);
	margin-top: var(--sh-space-5);
}

.sh-comment__header {
	display: flex;
	align-items: center;
	gap: var(--sh-space-4);
	margin-bottom: var(--sh-space-4);
}

.sh-comment__avatar img {
	width: 48px;
	height: 48px;
	border-radius: var(--sh-radius-full);
}

.sh-comment__author {
	font-weight: var(--sh-font-semibold);
	color: var(--sh-color-text);
	display: block;
}

.sh-comment__date {
	font-size: var(--sh-text-xs);
	color: var(--sh-color-text-muted);
}

.sh-comment__body p {
	font-size: var(--sh-text-sm);
	color: var(--sh-color-text);
}

.sh-comment__reply a {
	font-size: var(--sh-text-xs);
	color: var(--sh-color-primary);
	font-weight: var(--sh-font-medium);
	text-decoration: none;
}

/* Comment Form */
.sh-comment-form {
	margin-top: var(--sh-space-12);
}

.sh-comment-form .comment-form-comment label,
.sh-comment-form .comment-form-author label,
.sh-comment-form .comment-form-email label,
.sh-comment-form .comment-form-url label {
	display: block;
	font-size: var(--sh-text-sm);
	font-weight: var(--sh-font-medium);
	color: var(--sh-color-text);
	margin-bottom: var(--sh-space-2);
}

.sh-comment-form input[type="text"],
.sh-comment-form input[type="email"],
.sh-comment-form input[type="url"],
.sh-comment-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--sh-color-border);
	border-radius: var(--sh-radius-md);
	font-size: var(--sh-text-sm);
	color: var(--sh-color-text);
	background-color: var(--sh-color-surface);
	outline: none;
	transition: border-color var(--sh-transition-fast);
}

.sh-comment-form input:focus,
.sh-comment-form textarea:focus {
	border-color: var(--sh-color-primary);
	box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.sh-comment-form textarea {
	min-height: 150px;
	resize: vertical;
}

.sh-comment-form .form-submit {
	margin-top: var(--sh-space-5);
}

.sh-comment-form .submit {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 2rem;
	background-color: var(--sh-color-primary);
	color: #ffffff;
	border: none;
	border-radius: var(--sh-radius-full);
	font-family: var(--sh-font-heading);
	font-size: var(--sh-text-sm);
	font-weight: var(--sh-font-semibold);
	cursor: pointer;
	transition: all var(--sh-transition-base);
}

.sh-comment-form .submit:hover {
	background-color: var(--sh-color-primary-dark);
	transform: translateY(-1px);
}

/* ==========================================================================
   Sidebar / Widgets
   ========================================================================== */

.sh-sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--sh-space-8);
}

.sh-widget {
	background-color: var(--sh-color-surface);
	border-radius: var(--sh-radius-card);
	padding: var(--sh-space-6);
	box-shadow: var(--sh-shadow-card);
}

.sh-widget__title {
	font-family: var(--sh-font-heading);
	font-size: var(--sh-text-lg);
	font-weight: var(--sh-font-bold);
	color: var(--sh-color-text);
	margin-bottom: var(--sh-space-5);
	padding-bottom: var(--sh-space-4);
	border-bottom: 2px solid var(--sh-color-primary);
}

/* Skip to content */
.skip-to-content {
	position: absolute;
	top: -100%;
	left: var(--sh-space-4);
	z-index: calc(var(--sh-z-sticky) + 10);
	padding: var(--sh-space-3) var(--sh-space-6);
	background-color: var(--sh-color-primary);
	color: #ffffff;
	border-radius: var(--sh-radius-md);
	font-weight: var(--sh-font-semibold);
	text-decoration: none;
	transition: top var(--sh-transition-fast);
}

.skip-to-content:focus {
	top: var(--sh-space-4);
	color: #ffffff;
	text-decoration: none;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1280px) {
	.sh-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--sh-space-8);
	}
}

@media (max-width: 1024px) {
	:root {
		--sh-header-height: 72px;
	}

	h1 { font-size: var(--sh-text-4xl); }
	h2 { font-size: var(--sh-text-3xl); }
	h3 { font-size: var(--sh-text-2xl); }

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

	.sh-header__nav {
		display: none;
	}

	.sh-hamburger {
		display: flex;
	}
}

@media (max-width: 768px) {
	:root {
		--sh-header-height: 64px;
	}

	h1 { font-size: var(--sh-text-3xl); }
	h2 { font-size: var(--sh-text-2xl); }
	h3 { font-size: var(--sh-text-xl); }

	.sh-section { padding: var(--sh-space-12) 0; }
	.sh-section--lg { padding: var(--sh-space-16) 0; }

	.sh-posts-grid {
		grid-template-columns: 1fr;
	}

	.sh-footer__grid {
		grid-template-columns: 1fr;
		gap: var(--sh-space-8);
	}

	.sh-footer__top {
		padding: var(--sh-space-12) 0 var(--sh-space-8);
	}

	.sh-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.sh-page-hero__title {
		font-size: var(--sh-text-3xl);
	}

	.sh-404__number {
		font-size: 5rem;
	}

	.sh-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.sh-container {
		padding-left: var(--sh-space-4);
		padding-right: var(--sh-space-4);
	}
}

@media (max-width: 480px) {
	.sh-btn--xl {
		padding: 0.875rem 2rem;
		font-size: var(--sh-text-base);
	}

	.sh-section__title {
		font-size: var(--sh-text-3xl);
	}
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

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

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

/* Screen reader only utility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* ==========================================================================
   WordPress Core Classes
   ========================================================================== */

.alignleft {
	float: left;
	margin-right: var(--sh-space-6);
	margin-bottom: var(--sh-space-4);
}

.alignright {
	float: right;
	margin-left: var(--sh-space-6);
	margin-bottom: var(--sh-space-4);
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--sh-space-4);
}

.alignwide {
	margin-left: calc(-1 * var(--sh-space-8));
	margin-right: calc(-1 * var(--sh-space-8));
}

.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.wp-block-image img {
	border-radius: var(--sh-radius-lg);
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: var(--sh-text-sm);
	color: var(--sh-color-text-muted);
	text-align: center;
	margin-top: var(--sh-space-2);
}

.sticky {
	position: relative;
}

.bypostauthor {
	background-color: rgba(15, 118, 110, 0.03);
}

/* Gallery */
.gallery {
	display: grid;
	gap: var(--sh-space-3);
	margin-bottom: var(--sh-space-6);
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-columns-6 { grid-template-columns: repeat(6, 1fr); }

.gallery-item img {
	border-radius: var(--sh-radius-sm);
	width: 100%;
	height: auto;
}
