/* ============================================================
   DESIGN DAPUR EQUIPMENT — Main Stylesheet
   Tema warna: #D32F2F • Modern • Responsive
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
	--primary: #d32f2f;
	--primary-600: #b71c1c;
	--primary-700: #a01717;
	--primary-400: #ef5350;
	--primary-300: #ff8a80;
	--primary-tint: rgba(211, 47, 47, 0.08);
	--primary-tint-2: rgba(211, 47, 47, 0.14);
	--wa: #25d366;
	--wa-dark: #128c7e;
	--ink: #101828;
	--ink-2: #344054;
	--muted: #667085;
	--line: #e6e8ec;
	--bg: #ffffff;
	--bg-soft: #f6f7f9;
	--bg-dark: #0f1318;
	--bg-dark-2: #161c24;
	--success: #0e9f6e;
	--white: #ffffff;
	--radius: 18px;
	--radius-sm: 12px;
	--radius-lg: 26px;
	--shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05), 0 4px 12px rgba(16, 24, 40, 0.06);
	--shadow-md: 0 8px 24px rgba(16, 24, 40, 0.10);
	--shadow-lg: 0 24px 60px rgba(16, 24, 40, 0.16);
	--shadow-primary: 0 10px 28px rgba(211, 47, 47, 0.32);
	--font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
	--font-head: "Sora", "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
	--container: 1200px;
	--header-h: 76px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink-2);
	background: var(--bg);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--primary-600);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	color: var(--ink);
	line-height: 1.2;
	margin: 0 0 0.5em;
	font-weight: 700;
	letter-spacing: -0.02em;
}

p {
	margin: 0 0 1em;
}

button {
	font-family: inherit;
	cursor: pointer;
}

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

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 99999;
	width: auto;
	height: auto;
	padding: 12px 20px;
	background: var(--primary);
	color: #fff;
	clip: auto;
	border-radius: 8px;
}

/* ---------- Layout ---------- */
.dde-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

.dde-main {
	min-height: 60vh;
}

.dde-section {
	padding: 92px 0;
}

.dde-section--products {
	background: var(--bg);
}

.dde-section--services {
	background: var(--bg-soft);
}

.dde-section--about {
	background: var(--bg);
}

.dde-section--contact {
	background: var(--bg-soft);
}

.dde-section--cta {
	padding: 40px 0 92px;
	background: var(--bg-soft);
}

/* Section head */
.dde-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 48px;
}

.dde-section-head--center {
	justify-content: center;
	text-align: center;
}

.dde-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 12px;
}

.dde-eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	border-radius: 2px;
	background: var(--primary);
}

.dde-section-head--center .dde-eyebrow::after {
	content: "";
	width: 26px;
	height: 2px;
	border-radius: 2px;
	background: var(--primary);
}

.dde-section-title {
	font-size: clamp(28px, 4vw, 42px);
	margin-bottom: 12px;
}

.dde-section-sub {
	font-size: 17px;
	color: var(--muted);
	max-width: 620px;
	margin: 0;
}

.dde-section-head--center .dde-section-sub {
	margin: 0 auto;
}

/* ---------- Buttons ---------- */
.dde-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	border: 2px solid transparent;
	transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.dde-btn:hover {
	transform: translateY(-2px);
}

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

.dde-btn-primary {
	background: var(--primary);
	color: #fff;
	box-shadow: var(--shadow-primary);
}

.dde-btn-primary:hover {
	background: var(--primary-600);
	color: #fff;
	box-shadow: 0 14px 34px rgba(211, 47, 47, 0.42);
}

.dde-btn-ghost {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(6px);
}

.dde-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	border-color: #fff;
}

.dde-btn-wa {
	background: var(--wa);
	color: #fff;
	box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}

.dde-btn-wa:hover {
	background: var(--wa-dark);
	color: #fff;
}

.dde-btn-outline {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}

.dde-btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: var(--primary-tint);
}

.dde-btn-light {
	background: #fff;
	color: var(--primary-600);
	box-shadow: var(--shadow-md);
}

.dde-btn-light:hover {
	background: var(--primary-tint);
	color: var(--primary-600);
}

.dde-btn-sm {
	padding: 10px 18px;
	font-size: 14px;
}

.dde-btn-lg {
	padding: 17px 32px;
	font-size: 16px;
}

.dde-btn-block {
	width: 100%;
}

/* ---------- Topbar ---------- */
.dde-topbar {
	background: var(--bg-dark);
	color: rgba(255, 255, 255, 0.85);
	font-size: 13.5px;
}

.dde-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 40px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.dde-topbar-left,
.dde-topbar-right {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.dde-topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 60vw;
}

a.dde-topbar-item:hover {
	color: var(--primary-300);
}

/* ---------- Header / Nav ---------- */
.dde-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.dde-header.is-scrolled {
	border-bottom-color: var(--line);
	box-shadow: 0 8px 30px rgba(16, 24, 40, 0.08);
}

.dde-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--header-h);
}

/* Logo */
.dde-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.dde-logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 6px 16px rgba(211, 47, 47, 0.35);
}

.dde-logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.dde-logo-text strong {
	font-family: var(--font-head);
	font-size: 19px;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.02em;
}

.dde-logo-text small {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
}

.dde-logo img {
	max-height: 52px;
	width: auto;
}

/* Custom logo (via WP customizer / upload) */
.dde-logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.dde-logo .custom-logo-link img.custom-logo {
	display: block;
	max-height: 64px;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* Nav */
.dde-nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.dde-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dde-menu > li {
	position: relative;
}

.dde-menu a {
	display: block;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--ink-2);
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease;
}

.dde-menu a:hover {
	color: var(--primary);
	background: var(--primary-tint);
}

.dde-menu .current-menu-item > a,
.dde-menu .current_page_item > a {
	color: var(--primary);
}

/* Dropdown */
.dde-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-md);
	list-style: none;
	margin: 0;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
	z-index: 50;
}

.dde-menu > li:hover > .sub-menu,
.dde-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dde-menu .sub-menu a {
	padding: 9px 12px;
	font-weight: 500;
}

/* Mobile nav toggle */
.dde-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	color: var(--ink);
}

.dde-nav-close {
	display: none;
}

.dde-nav-cta {
	display: flex;
	align-items: center;
}

/* ============ HERO ============ */
.dde-hero {
	position: relative;
	background: var(--bg-dark);
	color: #fff;
	overflow: hidden;
	padding: 96px 0 110px;
}

/* Slider background */
.dde-hero-slides {
	position: absolute;
	inset: 0;
}

.dde-hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
	opacity: 0;
	transition: opacity 1.4s ease;
}

.dde-hero-slide.is-active {
	opacity: 1;
	animation: dde-kenburns 7.5s ease-out forwards;
}

@keyframes dde-kenburns {
	from { transform: scale(1); }
	to { transform: scale(1.09); }
}

.dde-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(9, 12, 16, 0.92) 0%, rgba(9, 12, 16, 0.66) 42%, rgba(9, 12, 16, 0.28) 100%),
		linear-gradient(180deg, rgba(9, 12, 16, 0.35) 0%, rgba(9, 12, 16, 0.55) 100%);
}

.dde-hero-caption {
	position: absolute;
	left: 24px;
	bottom: 26px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	max-width: min(420px, calc(100% - 48px));
	padding: 9px 16px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(9, 12, 16, 0.55);
	backdrop-filter: blur(8px);
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.dde-hero-caption-icon {
	display: inline-flex;
	color: var(--primary-300);
	flex-shrink: 0;
}

.dde-hero-caption-text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dde-hero-caption-text.is-anim {
	animation: dde-caption-in 0.55s ease;
}

@keyframes dde-caption-in {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

.dde-hero-dots {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	gap: 10px;
}

.dde-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.35);
	transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.dde-hero-dot:hover {
	background: rgba(255, 255, 255, 0.6);
}

.dde-hero-dot.is-active {
	width: 30px;
	background: var(--primary-400);
}

.dde-hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(900px 480px at 85% -10%, rgba(211, 47, 47, 0.38), transparent 60%),
		radial-gradient(700px 420px at -10% 110%, rgba(211, 47, 47, 0.22), transparent 60%),
		linear-gradient(160deg, #141a22 0%, #0d1117 100%);
}

.dde-hero-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(1000px 600px at 50% 30%, #000 20%, transparent 75%);
}

.dde-hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 760px);
	align-items: center;
}

.dde-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 26px;
	backdrop-filter: blur(6px);
}

.dde-hero-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--primary-400);
	box-shadow: 0 0 0 4px rgba(239, 83, 80, 0.25);
	animation: dde-pulse 2.2s infinite;
}

@keyframes dde-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(239, 83, 80, 0.45); }
	50% { box-shadow: 0 0 0 7px rgba(239, 83, 80, 0); }
}

.dde-hero-title {
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.03em;
	line-height: 1.06;
	margin-bottom: 18px;
}

.dde-hero-sub {
	font-family: var(--font-head);
	font-size: clamp(17px, 2vw, 21px);
	font-weight: 600;
	color: var(--primary-300);
	margin-bottom: 14px;
}

.dde-hero-desc {
	font-size: 16.5px;
	color: rgba(255, 255, 255, 0.72);
	max-width: 520px;
	margin-bottom: 30px;
}

.dde-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 42px;
}

.dde-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 26px;
}

.dde-hero-stat {
	padding-right: 26px;
	margin-right: 26px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.dde-hero-stat:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: 0;
}

.dde-hero-stat strong {
	display: block;
	font-family: var(--font-head);
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
}

.dde-hero-stat span {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.6);
}


/* ============ PRODUCT CARDS ============ */
.dde-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.dde-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.dde-card-media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	padding: 0;
	border: 0;
	background: var(--bg-soft);
	overflow: hidden;
}

.dde-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.dde-card:hover .dde-card-media img {
	transform: scale(1.07);
}

.dde-card-ph {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.dde-card-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 6px 13px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	box-shadow: var(--shadow-sm);
}

.dde-card-badge--baru {
	background: var(--primary);
}

.dde-card-badge--bekas {
	background: var(--ink);
}

.dde-card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 20px 20px 22px;
}

.dde-card-title {
	font-size: 17px;
	margin-bottom: 8px;
	line-height: 1.3;
}

.dde-card-excerpt {
	font-size: 14px;
	color: var(--muted);
	margin: 0 0 16px;
	flex: 1;
}

.dde-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.dde-card-price {
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 800;
	color: var(--primary-600);
}

.dde-card-price--ask {
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
	background: var(--bg-soft);
	padding: 5px 12px;
	border-radius: 999px;
}

.dde-card-actions {
	display: flex;
	gap: 10px;
}

.dde-card-actions .dde-btn {
	flex: 1;
}

/* ============ SLIDER ============ */
.dde-slider {
	position: relative;
}

.dde-slider-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 8px 4px 28px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.dde-slider-track::-webkit-scrollbar {
	display: none;
}

.dde-slider-track .dde-card {
	flex: 0 0 calc((100% - 48px) / 3);
	scroll-snap-align: start;
}

.dde-slider-nav {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.dde-slider-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.dde-slider-btn:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
	transform: translateY(-2px);
}

.dde-slider-btn:disabled {
	opacity: 0.35;
	cursor: default;
	transform: none;
}

/* ============ SERVICES ============ */
.dde-services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.dde-service {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 26px;
	display: flex;
	flex-direction: column;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	overflow: hidden;
}

.dde-service::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--primary-400));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.dde-service:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}

.dde-service:hover::before {
	transform: scaleX(1);
}

/* Foto layanan (bleed ke tepi kartu; kartu punya padding 30px 26px & overflow hidden). */
.dde-service-media {
	position: relative;
	display: block;
	width: auto;
	margin: -30px -26px 22px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--bg-soft);
}

.dde-service-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.dde-service:hover .dde-service-media img {
	transform: scale(1.07);
}

.dde-service-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 24, 40, 0) 62%, rgba(16, 24, 40, 0.42) 100%);
}

.dde-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: var(--primary-tint);
	color: var(--primary);
	margin-bottom: 20px;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.dde-service-icon .dashicons {
	width: 28px;
	height: 28px;
	font-size: 28px;
}

.dde-service:hover .dde-service-icon {
	background: var(--primary);
	color: #fff;
	transform: rotate(-6deg) scale(1.06);
}

.dde-service-title {
	font-size: 17.5px;
	margin-bottom: 10px;
}

.dde-service-desc {
	font-size: 14.5px;
	color: var(--muted);
	flex: 1;
	margin-bottom: 18px;
}

.dde-service-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary);
}

.dde-service-link svg {
	transition: transform 0.2s ease;
}

.dde-service-link:hover svg {
	transform: translateX(4px);
}

/* ============ ABOUT ============ */
.dde-about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 64px;
	align-items: center;
}

.dde-about-text {
	font-size: 17px;
	color: var(--muted);
	margin-bottom: 28px;
}

.dde-about-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 20px;
}

.dde-about-list li {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.dde-about-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: var(--primary-tint);
	color: var(--primary);
}

.dde-about-list strong {
	display: block;
	font-family: var(--font-head);
	font-size: 15.5px;
	color: var(--ink);
	margin-bottom: 2px;
}

.dde-about-list span {
	font-size: 14.5px;
	color: var(--muted);
}

.dde-about-visual {
	position: relative;
}

.dde-about-card {
	background: linear-gradient(155deg, #1a222c 0%, #0f1318 100%);
	border-radius: var(--radius-lg);
	padding: 38px 34px;
	color: #fff;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.dde-about-card::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(211, 47, 47, 0.5), transparent 70%);
}

.dde-about-card-top {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 28px;
}

.dde-about-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--primary-300);
	flex-shrink: 0;
}

.dde-about-card-top strong {
	display: block;
	font-family: var(--font-head);
	font-size: 17px;
}

.dde-about-card-top span {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.6);
}

.dde-about-card-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 28px;
}

.dde-about-card-stats div {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 14px;
	padding: 16px 10px;
	text-align: center;
}

.dde-about-card-stats strong {
	display: block;
	font-family: var(--font-head);
	font-size: 22px;
	color: #fff;
}

.dde-about-card-stats span {
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.6);
}

/* ============ CONTACT ============ */
.dde-contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 32px;
	align-items: stretch;
}

.dde-contact-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dde-contact-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px 22px;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.dde-contact-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: var(--primary);
}

.dde-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 15px;
	background: var(--primary-tint);
	color: var(--primary);
}

.dde-contact-icon--wa {
	background: rgba(37, 211, 102, 0.12);
	color: var(--wa-dark);
}

.dde-contact-card strong {
	display: block;
	font-family: var(--font-head);
	font-size: 15px;
	color: var(--ink);
	margin-bottom: 2px;
}

.dde-contact-card span {
	font-size: 14.5px;
	color: var(--muted);
}

.dde-contact-note {
	background: var(--bg-dark);
	border-radius: var(--radius);
	padding: 22px 24px;
	color: rgba(255, 255, 255, 0.8);
	flex: 1;
}

.dde-contact-note strong {
	font-family: var(--font-head);
	color: #fff;
	display: block;
	margin-bottom: 6px;
}

.dde-contact-note p {
	margin: 0;
	font-size: 14.5px;
}

.dde-map {
	min-height: 420px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	background: #e9ebef;
	box-shadow: var(--shadow-sm);
}

.dde-map iframe {
	display: block;
	min-width: 0;
}

/* Perbaikan mobile: kartu kontak berisi email panjang (string tanpa spasi) dan
   peta (iframe) yang bisa memaksa kolom grid lebih lebar dari layar kecil.
   min-width:0 memungkinkan item menyusut; overflow-wrap membuat email terpecah. */
.dde-contact-grid > * {
	min-width: 0;
}

.dde-contact-card > div {
	min-width: 0;
	flex: 1;
}

.dde-contact-card span {
	overflow-wrap: anywhere;
}

.dde-map-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	height: 100%;
	min-height: 420px;
	color: var(--muted);
	padding: 40px;
}

.dde-map-empty p {
	margin: 0;
}

/* ============ CTA BANNER ============ */
.dde-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 52px 56px;
	border-radius: var(--radius-lg);
	background: linear-gradient(115deg, var(--primary-600) 0%, var(--primary) 55%, #e64a3d 100%);
	color: #fff;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.dde-cta::before {
	content: "";
	position: absolute;
	top: -70px;
	right: 10%;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.09);
}

.dde-cta::after {
	content: "";
	position: absolute;
	bottom: -100px;
	left: 5%;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.08);
}

.dde-cta h2 {
	color: #fff;
	font-size: clamp(24px, 3vw, 34px);
	margin-bottom: 8px;
}

.dde-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 16px;
}

.dde-cta .dde-btn {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}

/* ============ MODAL PRODUK ============ */
.dde-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.dde-modal.is-open {
	display: flex;
}

.dde-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 12, 16, 0.72);
	backdrop-filter: blur(6px);
	animation: dde-fade 0.25s ease;
}

.dde-modal-dialog {
	position: relative;
	width: 100%;
	max-width: 960px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	animation: dde-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dde-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes dde-pop {
	from { opacity: 0; transform: translateY(24px) scale(0.97); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.dde-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dde-modal-close:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
	transform: rotate(90deg);
}

.dde-modal-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.dde-modal-gallery {
	padding: 24px;
}

.dde-modal-main {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--bg-soft);
	margin-bottom: 12px;
}

.dde-modal-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dde-modal-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.dde-modal-thumb {
	position: relative;
	aspect-ratio: 1;
	border-radius: 10px;
	overflow: hidden;
	border: 2px solid var(--line);
	padding: 0;
	background: var(--bg-soft);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.dde-modal-thumb:hover {
	transform: translateY(-2px);
}

.dde-modal-thumb.is-active {
	border-color: var(--primary);
}

.dde-modal-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dde-modal-info {
	padding: 40px 36px 36px 12px;
	display: flex;
	flex-direction: column;
}

.dde-modal-title {
	font-size: clamp(22px, 3vw, 30px);
	margin-bottom: 10px;
}

.dde-modal-price {
	font-family: var(--font-head);
	font-size: 24px;
	font-weight: 800;
	color: var(--primary-600);
	margin-bottom: 18px;
}

.dde-modal-price--ask {
	font-size: 16px;
	color: var(--muted);
	font-family: var(--font-body);
	font-weight: 600;
}

.dde-modal-desc {
	font-size: 15px;
	color: var(--ink-2);
	margin-bottom: 22px;
	white-space: pre-line;
}

.dde-modal-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 24px;
}

.dde-modal-meta-item {
	background: var(--bg-soft);
	border-radius: var(--radius-sm);
	padding: 12px 10px;
	text-align: center;
}

.dde-modal-meta-item span {
	display: block;
	font-size: 11.5px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 2px;
}

.dde-modal-meta-item strong {
	font-size: 13.5px;
	font-family: var(--font-head);
	color: var(--ink);
}

.dde-modal-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: auto;
}

/* ============ FOOTER ============ */
.dde-footer {
	background: var(--bg-dark);
	color: rgba(255, 255, 255, 0.72);
}

.dde-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
	gap: 48px;
	padding-top: 72px;
	padding-bottom: 56px;
}

.dde-logo--footer .dde-logo-text strong {
	color: #fff;
}

.dde-logo--footer .dde-logo-text small {
	color: rgba(255, 255, 255, 0.5);
}

.dde-footer-desc {
	font-size: 14.5px;
	line-height: 1.7;
	margin: 18px 0 22px;
	max-width: 320px;
}

.dde-footer-title {
	color: #fff;
	font-size: 16px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}

.dde-footer-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34px;
	height: 3px;
	border-radius: 3px;
	background: var(--primary);
}

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

.dde-footer-menu a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14.5px;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.dde-footer-menu a:hover {
	color: var(--primary-300);
	padding-left: 4px;
}

.dde-footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.dde-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14.5px;
}

.dde-footer-contact svg {
	flex-shrink: 0;
	margin-top: 3px;
	color: var(--primary-400);
}

.dde-footer-contact a {
	color: rgba(255, 255, 255, 0.72);
}

.dde-footer-contact a:hover {
	color: var(--primary-300);
}

.dde-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
	text-align: center;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.45);
}

.dde-footer-bottom p {
	margin: 0;
}

/* ============ WHATSAPP FLOAT ============ */
.dde-wa-float {
	position: fixed;
	right: 26px;
	bottom: 26px;
	z-index: 9000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--wa);
	color: #fff;
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	animation: dde-wa-bounce 2.6s infinite;
}

.dde-wa-float:hover {
	transform: scale(1.08);
	color: #fff;
}

@keyframes dde-wa-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-7px); }
}

/* ============ INNER PAGES ============ */
.dde-page-hero {
	background: linear-gradient(160deg, #161c24 0%, #0d1117 100%);
	color: #fff;
	padding: 54px 0 64px;
	position: relative;
	overflow: hidden;
}

.dde-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(700px 320px at 90% -20%, rgba(211, 47, 47, 0.35), transparent 60%),
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: auto, 52px 52px, 52px 52px;
}

.dde-page-hero .dde-container {
	position: relative;
}

.dde-page-hero--simple {
	padding: 34px 0;
}

.dde-page-title {
	color: #fff;
	font-size: clamp(30px, 4vw, 44px);
	margin: 18px 0 10px;
}

.dde-page-sub {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16.5px;
	max-width: 620px;
	margin: 0;
}

.dde-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.55);
}

.dde-breadcrumb a {
	color: rgba(255, 255, 255, 0.8);
}

.dde-breadcrumb a:hover {
	color: var(--primary-300);
}

.dde-breadcrumb span[aria-hidden] {
	opacity: 0.5;
}

/* Archive grid */
.dde-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.dde-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 36px;
}

.dde-filter-chip {
	padding: 10px 22px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 600;
	color: var(--ink-2);
	transition: all 0.2s ease;
}

.dde-filter-chip:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.dde-filter-chip.is-active {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
	box-shadow: var(--shadow-primary);
}

.dde-pagination {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.dde-pagination .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.dde-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink-2);
	font-weight: 600;
}

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

.dde-pagination a.page-numbers:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.dde-empty {
	text-align: center;
	color: var(--muted);
	padding: 60px 0;
}

/* ============ SINGLE PRODUK ============ */
.dde-section--single {
	padding-top: 56px;
}

.dde-single-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.dde-single-gallery {
	position: sticky;
	top: calc(var(--header-h) + 24px);
}

.dde-single-main {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg-soft);
	box-shadow: var(--shadow-md);
	margin-bottom: 14px;
}

.dde-single-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dde-single-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.dde-single-thumb {
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 2px solid var(--line);
	padding: 0;
	background: var(--bg-soft);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.dde-single-thumb:hover {
	transform: translateY(-2px);
}

.dde-single-thumb.is-active {
	border-color: var(--primary);
}

.dde-single-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dde-single-title {
	font-size: clamp(26px, 3.4vw, 38px);
	margin-bottom: 14px;
}

.dde-single-price {
	font-family: var(--font-head);
	font-size: 30px;
	font-weight: 800;
	color: var(--primary-600);
	margin-bottom: 24px;
}

.dde-single-price--ask {
	font-size: 18px;
	color: var(--muted);
	font-family: var(--font-body);
	font-weight: 600;
}

.dde-single-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 28px;
}

.dde-single-meta-item {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 14px;
	text-align: center;
}

.dde-single-meta-item span {
	display: block;
	font-size: 12px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 2px;
}

.dde-single-meta-item strong {
	font-size: 14px;
	font-family: var(--font-head);
	color: var(--ink);
}

.dde-single-desc {
	margin-bottom: 28px;
}

.dde-single-desc h3 {
	font-size: 19px;
	margin-bottom: 12px;
}

.dde-single-desc p {
	font-size: 15.5px;
	white-space: pre-line;
}

/* Related */
.dde-section--related {
	background: var(--bg-soft);
}

.dde-related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* ============ SINGLE LAYANAN ============ */
.dde-service-single {
	max-width: 760px;
	margin: 0 auto;
}

.dde-service-single-media {
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg-soft);
	box-shadow: var(--shadow-md);
	margin-bottom: 28px;
}

.dde-service-single-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dde-service-single-head {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 28px;
}

.dde-service-icon--lg {
	width: 76px;
	height: 76px;
	border-radius: 20px;
	margin-bottom: 0;
	flex-shrink: 0;
}

.dde-service-icon--lg .dashicons {
	width: 36px;
	height: 36px;
	font-size: 36px;
}

.dde-service-single-title {
	font-size: clamp(26px, 3.5vw, 38px);
	margin: 6px 0 0;
}

.dde-service-single-content {
	font-size: 16.5px;
	color: var(--ink-2);
}

/* Blok SEO tambahan (konten kaya keyword di halaman detail layanan) */
.dde-seo-block {
	margin-top: 36px;
	padding: 30px 32px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-left: 4px solid var(--primary);
	border-radius: var(--radius);
}

.dde-seo-block h2 {
	font-size: 21px;
	margin-bottom: 14px;
}

.dde-seo-block p {
	font-size: 15.5px;
	color: var(--ink-2);
}

.dde-seo-block ul {
	margin: 0 0 16px;
	padding-left: 20px;
	display: grid;
	gap: 8px;
}

.dde-seo-block li {
	font-size: 15px;
	color: var(--ink-2);
}

.dde-seo-block li::marker {
	color: var(--primary);
}

.dde-service-single .dde-btn {
	margin-top: 24px;
}

/* ============ POST CARD (blog) ============ */
.dde-post-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Tombol share di kartu artikel (pojok kanan atas thumbnail) */
.dde-card-share {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--ink);
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(4px);
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.dde-card-share:hover {
	background: var(--wa);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(37, 211, 102, 0.4);
}

.dde-post-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.dde-post-thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.dde-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dde-post-body {
	padding: 22px;
}

.dde-post-title {
	font-size: 18px;
}

.dde-post-title a {
	color: var(--ink);
}

.dde-post-title a:hover {
	color: var(--primary);
}

.dde-post-excerpt {
	font-size: 14.5px;
	color: var(--muted);
}

/* ============ 404 ============ */
.dde-section--404 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 62vh;
	text-align: center;
}

.dde-404-code {
	font-family: var(--font-head);
	font-size: clamp(90px, 16vw, 160px);
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(120deg, var(--primary), var(--primary-400));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.dde-404-title {
	font-size: clamp(24px, 4vw, 36px);
	margin: 8px 0 10px;
}

.dde-404-desc {
	color: var(--muted);
	margin-bottom: 28px;
}

.dde-404-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

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

	html {
		scroll-behavior: auto;
	}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
	.dde-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.dde-archive-grid,
	.dde-related-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.dde-slider-track .dde-card {
		flex-basis: calc((100% - 24px) / 2);
	}

	.dde-hero-inner {
		grid-template-columns: 1fr;
	}

	.dde-about-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.dde-contact-grid {
		grid-template-columns: 1fr;
	}

	.dde-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.dde-modal-body {
		grid-template-columns: 1fr;
	}

	.dde-modal-gallery {
		padding-bottom: 4px;
	}

	.dde-modal-info {
		padding: 28px 28px 32px;
	}

	.dde-single-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.dde-single-gallery {
		position: static;
	}
}

@media (max-width: 768px) {
	.dde-section {
		padding: 68px 0;
	}

	.dde-section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 36px;
	}

	.dde-topbar-left {
		display: none;
	}

	.dde-topbar-inner {
		justify-content: center;
	}

	/* Mobile nav */
	/* Header: matikan backdrop-filter — jika dibiarkan, properti ini membuat
	   header menjadi containing block sehingga .dde-nav (position:fixed)
	   terkurung di dalam header dan tidak full-screen. */
	.dde-header {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.dde-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(340px, 88vw);
		background: #fff;
		z-index: 2000;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		padding: 76px 24px 30px;
		box-shadow: -18px 0 50px rgba(16, 24, 40, 0.18);
		transform: translateX(105%);
		transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
		overflow-y: auto;
	}

	/* Sembunyikan tombol WhatsApp mengambang saat menu mobile terbuka
	   (agar tidak menimpa isi drawer). */
	body.dde-nav-open .dde-wa-float {
		opacity: 0;
		pointer-events: none;
	}

	.dde-nav.is-open {
		transform: translateX(0);
	}

	.dde-nav-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 16px;
		right: 16px;
		width: 44px;
		height: 44px;
		border-radius: 12px;
		border: 1px solid var(--line);
		background: #fff;
		color: var(--ink);
	}

	.dde-nav-toggle {
		display: inline-flex;
	}

	.dde-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.dde-menu a {
		padding: 14px 12px;
		font-size: 16px;
	}

	.dde-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		padding: 0 0 0 14px;
	}

	.dde-nav-cta {
		margin-top: 20px;
	}

	.dde-nav-cta .dde-btn {
		width: 100%;
	}

	.dde-hero {
		padding: 72px 0 84px;
	}

	.dde-hero {
		padding-bottom: 88px;
	}

	.dde-cta {
		flex-direction: column;
		align-items: flex-start;
		padding: 40px 30px;
	}

	.dde-footer-grid {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-top: 56px;
	}
}

@media (max-width: 560px) {
	.dde-container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.dde-hero-stats {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px 20px;
	}

	.dde-hero-stat {
		padding-right: 0;
		margin-right: 0;
		border-right: 0;
	}

	.dde-hero-dots {
		bottom: 20px;
	}

	.dde-hero-caption {
		left: 18px;
		bottom: 52px;
		max-width: calc(100% - 36px);
	}


	.dde-services-grid,
	.dde-archive-grid,
	.dde-related-grid {
		grid-template-columns: 1fr;
	}

	.dde-slider-track {
		gap: 16px;
	}

	.dde-slider-track .dde-card {
		flex-basis: 82%;
	}

	.dde-single-meta,
	.dde-modal-meta {
		grid-template-columns: 1fr 1fr;
	}

	.dde-logo-text small {
		display: none;
	}

	.dde-logo-text strong {
		font-size: 16px;
	}

	.dde-logo-mark {
		width: 40px;
		height: 40px;
	}

	/* Topbar: izinkan item melipat ke baris berikutnya di layar sempit
	   supaya nomor HP & email tidak terpotong oleh ellipsis. */
	.dde-topbar-inner,
	.dde-topbar-right {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 2px;
	}

	.dde-topbar-item {
		max-width: 100%;
	}
}

/* ============ PROYEK KAMI (portfolio) ============ */
.dde-section--projects {
	background: linear-gradient(160deg, #161c24 0%, #0d1117 100%);
	color: rgba(255, 255, 255, 0.75);
}

.dde-section--projects .dde-section-title {
	color: #fff;
}

.dde-section--projects .dde-section-sub {
	color: rgba(255, 255, 255, 0.6);
}

.dde-projects-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 240px;
	gap: 18px;
}

.dde-project {
	margin: 0;
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.dde-project[data-featured] {
	grid-column: span 2;
	grid-row: span 2;
}

.dde-project-open {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: #141a22;
	position: relative;
	overflow: hidden;
	cursor: zoom-in;
}

.dde-project-open img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.dde-project-open:hover img {
	transform: scale(1.08);
}

.dde-project-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: linear-gradient(180deg, rgba(9, 12, 16, 0) 40%, rgba(9, 12, 16, 0.85) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.dde-project-open:hover .dde-project-overlay,
.dde-project-open:focus-visible .dde-project-overlay {
	opacity: 1;
}

.dde-project-zoom {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	box-shadow: 0 10px 24px rgba(211, 47, 47, 0.45);
	transform: translateY(10px) scale(0.85);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dde-project-open:hover .dde-project-zoom {
	transform: translateY(0) scale(1);
}

.dde-project-cap {
	font-family: var(--font-head);
	font-size: 14.5px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	padding: 0 16px;
	max-width: 100%;
}

/* ---------- Lightbox proyek ---------- */
.dde-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10001;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(7, 10, 14, 0.92);
	backdrop-filter: blur(8px);
	padding: 40px;
}

.dde-lightbox.is-open {
	display: flex;
	animation: dde-fade 0.22s ease;
}

.dde-lightbox-figure {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: min(1080px, 92vw);
}

.dde-lightbox-figure img {
	max-width: 100%;
	max-height: 78vh;
	width: auto;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
	animation: dde-pop 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.dde-lightbox-figure figcaption {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14.5px;
	font-weight: 500;
	text-align: center;
}

.dde-lightbox-close {
	position: absolute;
	top: 22px;
	right: 22px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transition: background 0.2s ease, transform 0.2s ease;
}

.dde-lightbox-close:hover {
	background: var(--primary);
	transform: rotate(90deg);
}

.dde-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transition: background 0.2s ease, transform 0.2s ease;
}

.dde-lightbox-nav:hover {
	background: var(--primary);
	transform: translateY(-50%) scale(1.06);
}

.dde-lightbox-nav--prev {
	left: 22px;
}

.dde-lightbox-nav--next {
	right: 22px;
}

/* Responsive proyek */
@media (max-width: 1024px) {
	.dde-projects-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 220px;
	}

	.dde-project[data-featured] {
		grid-column: span 2;
		grid-row: span 2;
	}
}

@media (max-width: 768px) {
	.dde-projects-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 190px;
		gap: 14px;
	}

	.dde-project[data-featured] {
		grid-column: span 2;
		grid-row: span 1;
	}

	.dde-lightbox {
		padding: 24px 16px;
	}

	.dde-lightbox-nav {
		width: 46px;
		height: 46px;
		top: auto;
		bottom: 18px;
		transform: none;
	}

	.dde-lightbox-nav:hover {
		transform: scale(1.06);
	}

	.dde-lightbox-nav--prev {
		left: 50%;
		margin-left: -64px;
	}

	.dde-lightbox-nav--next {
		right: 50%;
		margin-right: -64px;
	}
}

/* ============ BLOG / POSTS ============ */
.dde-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 40px;
	align-items: start;
}

.dde-blog-main {
	min-width: 0;
}

/* Grid artikel di kolom utama — 2 kolom biar pas dengan sidebar */
.dde-archive-grid--posts {
	grid-template-columns: repeat(2, 1fr);
}

/* Meta & link kartu */
.dde-post-card .dde-post-thumb {
	position: relative;
}

.dde-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	font-size: 12.5px;
	color: var(--muted);
	margin-bottom: 12px;
}

.dde-post-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dde-post-meta-item svg {
	color: var(--primary-400);
}

.dde-post-meta--lg {
	font-size: 13.5px;
	margin-bottom: 0;
}

.dde-post-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	background: var(--primary);
	color: #fff;
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 6px 13px;
	border-radius: 999px;
	box-shadow: 0 6px 16px rgba(211, 47, 47, 0.35);
}

.dde-post-badge--inline {
	position: static;
	margin-bottom: 16px;
}

.dde-post-badge--inline:hover {
	background: var(--primary-600);
}

.dde-post-thumb-ph {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bg-soft), #e7e9ee);
	color: rgba(16, 24, 40, 0.26);
}

.dde-post-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 6px;
	font-family: var(--font-head);
	font-size: 13.5px;
	font-weight: 700;
	color: var(--primary-600);
}

.dde-post-link svg {
	transition: transform 0.2s ease;
}

.dde-post-link:hover {
	color: var(--primary);
}

.dde-post-link:hover svg {
	transform: translateX(4px);
}

/* ---------- Single post ---------- */
.dde-section--blog-single {
	padding-top: 56px;
}

.dde-post-single {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.dde-post-single-media {
	aspect-ratio: 16 / 9;
	max-height: 420px;
	background: var(--bg-soft);
}

.dde-post-single-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dde-post-single-body {
	padding: clamp(26px, 4vw, 46px);
}

.dde-post-single-head {
	margin-bottom: 28px;
}

.dde-post-single-title {
	font-size: clamp(27px, 3.6vw, 40px);
	line-height: 1.18;
	margin: 0 0 18px;
}

/* Prose artikel & halaman statis */
.dde-prose,
.dde-blog-content {
	font-size: 16.5px;
	line-height: 1.78;
	color: var(--ink-2);
}

.dde-blog-content p,
.dde-prose p {
	margin: 0 0 20px;
}

.dde-blog-content h2,
.dde-prose h2 {
	font-size: 26px;
	margin: 40px 0 14px;
	color: var(--ink);
}

.dde-blog-content h3,
.dde-prose h3 {
	font-size: 21px;
	margin: 34px 0 12px;
	color: var(--ink);
}

.dde-blog-content h4,
.dde-prose h4 {
	font-size: 17.5px;
	margin: 28px 0 10px;
	color: var(--ink);
}

.dde-blog-content a,
.dde-prose a {
	color: var(--primary-600);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(211, 47, 47, 0.35);
	text-underline-offset: 3px;
}

.dde-blog-content a:hover,
.dde-prose a:hover {
	color: var(--primary);
	text-decoration-color: currentColor;
}

.dde-blog-content img,
.dde-prose img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-sm);
}

.dde-blog-content ul,
.dde-prose ul,
.dde-blog-content ol,
.dde-prose ol {
	margin: 0 0 22px;
	padding-left: 24px;
	display: grid;
	gap: 8px;
}

.dde-blog-content li::marker,
.dde-prose li::marker {
	color: var(--primary);
}

.dde-blog-content blockquote,
.dde-prose blockquote {
	margin: 30px 0;
	padding: 22px 26px;
	background: var(--bg-soft);
	border-left: 4px solid var(--primary);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	color: var(--ink);
	font-style: italic;
}

.dde-blog-content blockquote p,
.dde-prose blockquote p {
	margin: 0;
}

.dde-blog-content code,
.dde-prose code {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 2px 7px;
	font-size: 0.88em;
}

.dde-blog-content pre,
.dde-prose pre {
	background: #161c24;
	color: #e6edf3;
	border-radius: var(--radius-sm);
	padding: 22px 24px;
	overflow-x: auto;
	margin: 0 0 22px;
}

.dde-blog-content pre code,
.dde-prose pre code {
	background: none;
	border: 0;
	padding: 0;
	color: inherit;
}

.dde-blog-content table,
.dde-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 22px;
	font-size: 15px;
}

.dde-blog-content th,
.dde-blog-content td,
.dde-prose th,
.dde-prose td {
	border: 1px solid var(--line);
	padding: 10px 14px;
	text-align: left;
}

.dde-blog-content th,
.dde-prose th {
	background: var(--bg-soft);
	font-family: var(--font-head);
	color: var(--ink);
}

/* Tag */
.dde-post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 32px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.dde-post-tags-label {
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	margin-right: 4px;
}

.dde-tag {
	padding: 7px 15px;
	border-radius: 999px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ink-2);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.dde-tag:hover {
	background: var(--primary-tint);
	border-color: var(--primary);
	color: var(--primary);
}

/* Share artikel */
.dde-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 30px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.dde-share-label {
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--ink);
	margin-right: 2px;
}

.dde-share-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dde-share-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dde-share-btn:hover {
	transform: translateY(-3px);
	color: #fff;
	border-color: transparent;
	box-shadow: var(--shadow-sm);
}

.dde-share-btn--wa:hover {
	background: var(--wa);
	box-shadow: 0 10px 22px rgba(37, 211, 102, 0.38);
}

.dde-share-btn--fb:hover {
	background: #1877f2;
	box-shadow: 0 10px 22px rgba(24, 119, 242, 0.38);
}

.dde-share-btn--x:hover {
	background: #0f1419;
	box-shadow: 0 10px 22px rgba(15, 20, 25, 0.4);
}

.dde-share-btn--tg:hover {
	background: #229ed9;
	box-shadow: 0 10px 22px rgba(34, 158, 217, 0.38);
}

.dde-share-btn--copy:hover {
	background: var(--primary);
	box-shadow: var(--shadow-primary);
}

/* Tooltip "Tersalin!" setelah salin tautan */
.dde-share-feedback {
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	background: var(--ink);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 999px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	pointer-events: none;
}

.dde-share-btn--copy.is-copied .dde-share-feedback {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* Kotak penulis */
.dde-author-box {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin-top: 26px;
	padding: 28px 30px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.dde-author-avatar {
	flex-shrink: 0;
}

.dde-author-avatar img {
	border-radius: 50%;
	display: block;
}

.dde-author-name {
	font-size: 19px;
	margin: 4px 0 8px;
}

.dde-author-info .dde-eyebrow {
	margin-bottom: 0;
}

.dde-author-info p {
	margin: 0;
	font-size: 14.5px;
	color: var(--ink-2);
}

/* CTA box di akhir artikel */
.dde-cta-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 26px;
	padding: 32px 34px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
	border-radius: var(--radius);
	color: #fff;
	box-shadow: var(--shadow-primary);
}

.dde-cta-box h3 {
	margin: 0 0 8px;
	font-size: 22px;
	color: #fff;
}

.dde-cta-box p {
	margin: 0;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.88);
}

/* Related di dalam kolom blog */
.dde-related {
	margin-top: 56px;
}

.dde-blog-main .dde-related-grid {
	grid-template-columns: repeat(2, 1fr);
}

/* ---------- Sidebar ---------- */
.dde-sidebar {
	position: sticky;
	top: calc(var(--header-h) + 24px);
	display: grid;
	gap: 22px;
}

.dde-widget {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}

.dde-widget-title {
	font-size: 16px;
	margin: 0 0 16px;
}

.dde-widget-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 2px;
}

.dde-widget-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--ink-2);
	transition: background 0.2s ease, color 0.2s ease;
}

.dde-widget-list a:hover {
	background: var(--primary-tint);
	color: var(--primary);
}

.dde-widget-count {
	font-size: 12px;
	font-weight: 700;
	color: var(--muted);
	background: var(--bg-soft);
	border-radius: 999px;
	padding: 3px 10px;
	flex-shrink: 0;
}

.dde-widget-posts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.dde-widget-posts a {
	display: flex;
	align-items: center;
	gap: 12px;
}

.dde-widget-posts img,
.dde-widget-ph {
	width: 58px;
	height: 58px;
	border-radius: 12px;
	object-fit: cover;
	flex-shrink: 0;
}

.dde-widget-ph {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-soft);
	color: var(--muted);
}

.dde-widget-post-text {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.dde-widget-post-text strong {
	font-size: 13.5px;
	line-height: 1.4;
	color: var(--ink);
	transition: color 0.2s ease;
}

.dde-widget-posts a:hover .dde-widget-post-text strong {
	color: var(--primary);
}

.dde-widget-post-text time {
	font-size: 12px;
	color: var(--muted);
}

.dde-widget-search {
	padding: 18px;
}

.dde-search-form {
	display: flex;
}

.dde-search-form input[type="search"] {
	flex: 1;
	min-width: 0;
	padding: 12px 16px;
	border: 1px solid var(--line);
	border-right: 0;
	border-radius: 12px 0 0 12px;
	font-family: inherit;
	font-size: 14.5px;
	color: var(--ink);
	background: #fff;
}

.dde-search-form input[type="search"]:focus {
	outline: none;
	border-color: var(--primary);
}

.dde-search-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border: 0;
	border-radius: 0 12px 12px 0;
	background: var(--primary);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease;
}

.dde-search-form button:hover {
	background: var(--primary-600);
}

/* Widget CTA gelap */
.dde-widget-cta {
	position: relative;
	overflow: hidden;
	border: 0;
	background: linear-gradient(160deg, #161c24 0%, #0d1117 100%);
	color: #fff;
}

.dde-widget-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(300px 160px at 100% -10%, rgba(211, 47, 47, 0.4), transparent 60%);
}

.dde-widget-cta > * {
	position: relative;
}

.dde-widget-cta .dde-widget-title {
	color: #fff;
}

.dde-widget-cta p {
	margin: 0 0 18px;
	font-size: 13.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
}

.dde-widget-cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--primary);
	color: #fff;
	margin-bottom: 16px;
}

.dde-widget-cta .dde-btn {
	width: 100%;
}

/* ---------- Hasil kosong (search) ---------- */
.dde-empty-card {
	text-align: center;
	padding: 60px 28px;
	background: #fff;
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	color: var(--muted);
}

.dde-empty-card svg {
	color: var(--line);
	margin-bottom: 14px;
}

.dde-empty-card h2 {
	font-size: 22px;
	color: var(--ink);
	margin: 0 0 8px;
}

.dde-empty-card p {
	font-size: 15px;
	max-width: 420px;
	margin: 0 auto 22px;
}

.dde-empty-card .dde-search-form {
	max-width: 380px;
	margin: 0 auto;
}

/* ---------- Halaman statis ---------- */
.dde-page-content {
	max-width: 820px;
}

/* Responsive blog */
@media (max-width: 1024px) {
	.dde-blog-layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.dde-sidebar {
		position: static;
		grid-template-columns: repeat(2, 1fr);
	}

	.dde-widget-cta {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.dde-post-single-body {
		padding: 26px 22px;
	}

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

@media (max-width: 560px) {
	.dde-archive-grid--posts,
	.dde-blog-main .dde-related-grid {
		grid-template-columns: 1fr;
	}

	.dde-sidebar {
		grid-template-columns: 1fr;
	}

	.dde-cta-box {
		padding: 28px 24px;
	}
}

/* ---------- Featured post (blog) ---------- */
.dde-featured-post {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 32px;
	transition: box-shadow 0.25s ease;
}

.dde-featured-post:hover {
	box-shadow: var(--shadow-md);
}

.dde-featured-media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--bg-soft);
}

.dde-featured-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.dde-featured-post:hover .dde-featured-media img {
	transform: scale(1.05);
}

.dde-featured-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(26px, 3.5vw, 44px);
}

.dde-featured-title {
	font-size: clamp(21px, 2.6vw, 28px);
	line-height: 1.25;
	margin: 0 0 12px;
}

.dde-featured-title a {
	color: var(--ink);
}

.dde-featured-title a:hover {
	color: var(--primary);
}

.dde-featured-excerpt {
	font-size: 15px;
	color: var(--muted);
	margin: 0 0 18px;
}

.dde-featured-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
}

.dde-featured-actions .dde-btn {
	margin-top: 0;
}

@media (max-width: 768px) {
	.dde-featured-post {
		grid-template-columns: 1fr;
	}

	.dde-featured-media {
		aspect-ratio: 16 / 10;
	}
}

/* Desktop: gambar featured mengisi tinggi baris (teks di sampingnya) */
@media (min-width: 769px) {
	.dde-featured-media {
		min-height: 260px;
	}
}

/* ============================================================
   KERANJANG BELANJA
   ============================================================ */

/* Header actions: cart + hamburger */
.dde-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Cart toggle button */
.dde-cart-toggle {
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 10px;
	transition: background 0.2s;
}

.dde-cart-toggle:hover {
	background: var(--primary-tint);
}

.dde-cart-badge {
	position: absolute;
	top: 2px;
	right: 2px;
	background: var(--primary);
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	border-radius: 99px;
	padding: 0 4px;
}

/* Cart button on product card */
.dde-btn-cart {
	background: var(--ink);
	color: var(--white);
	border: none;
}

.dde-btn-cart:hover {
	background: var(--ink-2);
	color: var(--white);
}

.dde-btn-cart.is-added {
	background: var(--success);
}

/* Overlay */
.dde-cart-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.dde-cart-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

/* Sidebar */
.dde-cart-sidebar {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 420px;
	height: 100%;
	background: var(--white);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
	box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

.dde-cart-overlay.is-open .dde-cart-sidebar {
	transform: translateX(0);
}

/* Header */
.dde-cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--line);
}

.dde-cart-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
}

.dde-cart-count {
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--muted);
}

.dde-cart-close {
	background: none;
	border: none;
	padding: 6px;
	cursor: pointer;
	border-radius: 8px;
	transition: background 0.2s;
}

.dde-cart-close:hover {
	background: var(--bg-soft);
}

/* Body */
.dde-cart-body {
	flex: 1;
	overflow-y: auto;
	padding: 16px 20px;
}

/* Empty state */
.dde-cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 200px;
	color: var(--muted);
	text-align: center;
}

.dde-cart-empty svg {
	opacity: 0.3;
	margin-bottom: 16px;
}

.dde-cart-empty p {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 6px;
	color: var(--ink);
}

.dde-cart-empty small {
	font-size: 0.85rem;
}

/* Cart items */
.dde-cart-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}

.dde-cart-item:last-child {
	border-bottom: none;
}

.dde-cart-item-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.dde-cart-item-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ink);
}

.dde-cart-item-price {
	font-size: 0.85rem;
	color: var(--success);
	font-weight: 600;
}

.dde-cart-item-cond {
	font-size: 0.7rem;
	width: fit-content;
}

/* Qty controls */
.dde-cart-item-qty {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden;
}

.dde-cart-qty-btn {
	width: 32px;
	height: 32px;
	border: none;
	background: var(--bg-soft);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	color: var(--ink);
	transition: background 0.2s;
}

.dde-cart-qty-btn:hover {
	background: var(--primary-tint-2);
}

.dde-cart-qty-val {
	width: 32px;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 600;
}

/* Remove button */
.dde-cart-item-remove {
	background: none;
	border: none;
	padding: 6px;
	cursor: pointer;
	border-radius: 6px;
	color: var(--muted);
	transition: background 0.2s, color 0.2s;
}

.dde-cart-item-remove:hover {
	background: #fee2e2;
	color: #dc2626;
}

/* Footer */
.dde-cart-footer {
	padding: 16px 20px;
	border-top: 1px solid var(--line);
	background: var(--white);
}

.dde-cart-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1rem;
	margin-bottom: 14px;
}

.dde-cart-total strong {
	font-size: 1.15rem;
	color: var(--primary);
}

.dde-cart-order {
	margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 480px) {
	.dde-cart-sidebar {
		max-width: 100%;
	}
}
