@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

[x-cloak] { display: none !important; }

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

body {
font-family: 'Poppins', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.material-symbols-outlined {
font-family: 'Material Symbols Outlined';
font-weight: normal;
font-style: normal;
font-size: 24px;
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Glass Morphism */
.glass-morphism {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Scrollbar Hiding */
.hide-scrollbar::-webkit-scrollbar {
display: none;
}

.hide-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-track {
background: #f9f9f9;
}

::-webkit-scrollbar-thumb {
background: #ff5b00;
border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
background: #a83900;
}

/* Transitions */
.transition-fast {
transition: all 0.2s ease;
}

.transition-smooth {
transition: all 0.3s ease;
}

/* Buttons */
.btn {
padding: 12px 24px;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
cursor: pointer;
border: none;
font-family: 'Poppins', sans-serif;
}

.btn-primary {
background-color: #ff5b00;
color: #ffffff;
}

.btn-primary:hover {
background-color: #a83900;
box-shadow: 0 4px 12px rgba(255, 91, 0, 0.3);
}

.btn-primary:active {
transform: scale(0.98);
}

.btn-secondary {
background-color: #eeeeee;
color: #212121;
border: 1px solid #E0E0E0;
}

.btn-secondary:hover {
background-color: #e2dfde;
}

/* Cards */
.card {
background: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
border: 1px solid #E0E0E0;
transition: all 0.3s ease;
}

.card:hover {
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
transform: translateY(-4px);
}

/* Stars & Ratings */
.star-filled {
color: #ff5b00;
}

.star-empty {
color: #E0E0E0;
}

/* Rating Bars */
.rating-bar {
background: #E0E0E0;
border-radius: 4px;
height: 8px;
overflow: hidden;
}

.rating-bar-fill {
background: linear-gradient(90deg, #ff5b00, #a83900);
height: 100%;
transition: width 0.3s ease;
}

/* Forms */
input,
textarea,
select {
font-family: 'Poppins', sans-serif;
font-size: 16px;
}

input:focus,
textarea:focus,
select:focus {
outline: none;
border-color: #ff5b00;
box-shadow: 0 0 0 3px rgba(255, 91, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes slideIn {
from {
opacity: 0;
transform: translateX(-20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

.fade-in {
animation: fadeIn 0.3s ease-out;
}

.slide-in {
animation: slideIn 0.3s ease-out;
}

/* ===== TYPOGRAPHY SCALE ===== */
.text-display-lg  { font-size: 48px; line-height: 56px; font-weight: 800; letter-spacing: -0.5px; }
.text-headline-lg { font-size: 32px; line-height: 40px; font-weight: 700; }
.text-headline-md { font-size: 24px; line-height: 32px; font-weight: 700; }
.text-headline-sm { font-size: 20px; line-height: 28px; font-weight: 600; }
.text-body-lg     { font-size: 18px; line-height: 28px; font-weight: 400; }
.text-body-md     { font-size: 16px; line-height: 24px; font-weight: 400; }
.text-body-sm     { font-size: 14px; line-height: 20px; font-weight: 400; }
.text-label-lg    { font-size: 14px; line-height: 20px; font-weight: 600; }
.text-label-md    { font-size: 14px; line-height: 20px; font-weight: 500; }
.text-label-sm    { font-size: 12px; line-height: 16px; font-weight: 500; }

/* font-* shorthand classes (used with x-data etc) */
.font-display-lg  { font-size: 48px; line-height: 56px; font-weight: 800; letter-spacing: -0.5px; }
.font-headline-lg { font-size: 32px; line-height: 40px; font-weight: 700; }
.font-headline-md { font-size: 24px; line-height: 32px; font-weight: 700; }
.font-headline-sm { font-size: 20px; line-height: 28px; font-weight: 600; }
.font-body-lg     { font-size: 18px; line-height: 28px; }
.font-body-md     { font-size: 16px; line-height: 24px; }
.font-label-md    { font-size: 14px; line-height: 20px; font-weight: 500; }
.font-label-sm    { font-size: 12px; line-height: 16px; font-weight: 500; }

/* Mobile */
@media (max-width: 768px) {
	.text-display-lg,
	.font-display-lg  { font-size: 32px; line-height: 40px; }
	.text-headline-lg,
	.font-headline-lg { font-size: 24px; line-height: 32px; }
	.text-headline-md,
	.font-headline-md { font-size: 20px; line-height: 28px; }
	.text-body-lg,
	.font-body-lg     { font-size: 16px; line-height: 26px; }
}

/* Utility Classes */
.line-clamp-2 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

.line-clamp-3 {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}

.text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

/* Loading States */
.loading {
pointer-events: none;
opacity: 0.6;
}

.loading::after {
content: '';
display: inline-block;
width: 14px;
height: 14px;
margin-left: 8px;
border: 2px solid #ff5b00;
border-radius: 50%;
border-top-color: transparent;
animation: spin 0.6s linear infinite;
}

@keyframes spin {
to {
transform: rotate(360deg);
}
}

/* ===== CONTAINER STANDARD — semua section pakai ini ===== */
.komores-container {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

@media (max-width: 767px) {
	.komores-container {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* Logo size constraint — all paths */
#site-header .custom-logo-link img,
#site-header .custom-logo-link,
#site-header .custom-logo {
	display: block;
	height: 36px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
}

/* Admin bar offset for sticky header */
.admin-bar #site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar #site-header {
		top: 46px;
	}
}

/* ===== PROSE / WP CONTENT ===== */
.prose h1, .entry-content h1, .policy-content h1 {
	font-size: 32px; line-height: 40px; font-weight: 700;
	color: #212121; margin-top: 2rem; margin-bottom: 1rem;
}
.prose h2, .entry-content h2, .policy-content h2 {
	font-size: 24px; line-height: 32px; font-weight: 700;
	color: #212121; margin-top: 1.75rem; margin-bottom: 0.875rem;
}
.prose h3, .entry-content h3, .policy-content h3 {
	font-size: 20px; line-height: 28px; font-weight: 600;
	color: #212121; margin-top: 1.5rem; margin-bottom: 0.75rem;
}
.prose h4, .entry-content h4, .policy-content h4 {
	font-size: 16px; line-height: 24px; font-weight: 600;
	color: #212121; margin-top: 1.25rem; margin-bottom: 0.5rem;
}
.prose p, .entry-content p, .policy-content p {
	font-size: 16px; line-height: 26px; color: #5f5e5e;
	margin-bottom: 1.25rem;
}
.prose ul, .entry-content ul, .policy-content ul,
.prose ol, .entry-content ol, .policy-content ol {
	padding-left: 1.5rem; margin-bottom: 1.25rem;
}
.prose ul, .entry-content ul, .policy-content ul { list-style-type: disc; }
.prose ol, .entry-content ol, .policy-content ol { list-style-type: decimal; }
.prose li, .entry-content li, .policy-content li {
	font-size: 16px; line-height: 26px; color: #5f5e5e; margin-bottom: 0.375rem;
}
.prose a, .entry-content a, .policy-content a {
	color: #FF5B00; text-decoration: underline;
}
.prose a:hover, .entry-content a:hover, .policy-content a:hover { color: #a83900; }
.prose strong, .entry-content strong, .policy-content strong { font-weight: 700; color: #212121; }
.prose blockquote, .entry-content blockquote, .policy-content blockquote {
	border-left: 4px solid #FF5B00; padding: 1rem 1.5rem;
	background: #f9f9f9; color: #5f5e5e; font-style: italic;
	margin: 1.5rem 0; border-radius: 0 8px 8px 0;
}
.prose img, .entry-content img, .policy-content img {
	border-radius: 8px; max-width: 100%; height: auto; margin: 1rem 0;
}

/* ===== PRINT STYLES ===== */
/* Print Styles */
@media print {
body {
background: white;
}

.no-print {
display: none !important;
}
}
