/* ===== ROOT & THEME ===== */
:root {
	--red: #E6212A;
	--red-dark: #b81920;
	--red-light: #ff4550;
	--black: #212529;
	--black-soft: #2d3035;
	--gray: #6c757d;
	--gray-light: #f4f4f6;
	--gray-border: #e2e2e8;
	--white: #ffffff;
	--font-display: 'Barlow Condensed', sans-serif;
	--font-body: 'Barlow', sans-serif;
	--transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
	font-family: var(--font-body);
	color: var(--black);
	background: var(--white);
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-display);
	letter-spacing: 0.02em;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
	background: var(--red);
	border-radius: 3px;
}

/* ===== UTILITY ===== */
.text-red {
	color: var(--red) !important;
}

.bg-red {
	background: var(--red) !important;
}

.btn-red {
	background: var(--red);
	color: #fff;
	border: none;
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 10px 28px;
	border-radius: 3px;
	transition: background var(--transition), transform var(--transition);
	font-size: 0.95rem;
	cursor: pointer;
}

.btn-red:hover {
	background: var(--red-dark);
	color: #fff;
	transform: translateY(-1px);
}

.btn-outline-red {
	background: transparent;
	color: var(--red);
	border: 2px solid var(--red);
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 9px 26px;
	border-radius: 3px;
	transition: all var(--transition);
	font-size: 0.95rem;
	cursor: pointer;
}

.btn-outline-red:hover {
	background: var(--red);
	color: #fff;
}

.section-label {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 8px;
	display: block;
}

.section-title {
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.05;
	text-transform: uppercase;
	color: var(--black);
}

/* ===== TOPBAR ===== */
.topbar {
	background: var(--black);
	color: #aaa;
	font-size: 0.78rem;
	padding: 7px 0;
	border-bottom: 1px solid #333;
}

.topbar a {
	color: #aaa;
	transition: color var(--transition);
}

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

/* ===== NAVBAR ===== */
.navbar-omabi {
	background: var(--white);
	border-bottom: 1px solid var(--gray-border);
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand-wrap {
	padding: 14px 0;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand-icon {
	width: 44px;
	height: 44px;
	background: var(--black);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
}

.brand-icon::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--red);
	clip-path: polygon(0 60%, 100% 30%, 100% 100%, 0 100%);
}

.brand-icon span {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.1rem;
	color: #fff;
	position: relative;
	z-index: 1;
	letter-spacing: -1px;
}

.brand-text .brand-name {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.3rem;
	color: var(--black);
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.brand-text .brand-sub {
	font-size: 0.68rem;
	color: var(--red);
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.nav-menu {
	display: flex;
	align-items: stretch;
	height: 100%;
	gap: 0;
}

.nav-link-omabi {
	padding: 22px 16px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--black);
	border-bottom: 3px solid transparent;
	transition: all var(--transition);
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.nav-link-omabi:hover,
.nav-link-omabi.active {
	color: var(--red);
	border-bottom-color: var(--red);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-icon-btn {
	width: 40px;
	height: 40px;
	border: 1.5px solid var(--gray-border);
	background: transparent;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition);
	color: var(--black);
	font-size: 1rem;
	position: relative;
}

.nav-icon-btn:hover {
	border-color: var(--red);
	color: var(--red);
	background: #fff5f5;
}

.cart-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	background: var(--red);
	color: #fff;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	font-size: 0.65rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ===== PRODUCT CARD (shared) ===== */
.product-card {
	background: var(--white);
	border: 1px solid var(--gray-border);
	border-radius: 6px;
	overflow: hidden;
	height: 100%;
	transition: box-shadow var(--transition), transform var(--transition);
}

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

.product-img-wrap {
	aspect-ratio: 1;
	background: var(--gray-light);
	position: relative;
	overflow: hidden;
}

.product-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
	transform: scale(1.06);
}

.product-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--red);
	color: #fff;
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 2px;
}


.product-info {
	padding: 18px;
}

.product-name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-price-ori {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.78rem;
	color: var(--gray);
	text-decoration: line-through;
	line-height: 1.2;
}

.product-price {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.2rem;
	color: var(--red);
}

@media (max-width: 575px) {
	.product-name {
		font-size: 0.88rem;
		line-height: 1.3;
		min-height: calc(0.88rem * 1.3 * 2);
	}

	.product-info {
		padding: 12px;
	}

	.product-price {
		font-size: 1rem;
	}
}

.product-market-links {
	display: flex;
	gap: 6px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.market-link {
	padding: 4px 10px;
	border: 1px solid var(--gray-border);
	border-radius: 3px;
	font-size: 0.7rem;
	font-weight: 600;
	transition: all var(--transition);
	color: #555;
}

.market-link:hover {
	border-color: var(--red);
	color: var(--red);
}

/* ===== MODAL PRODUK ===== */
.modal-omabi .modal-content {
	border: none;
	border-radius: 8px;
	overflow: hidden;
}

.modal-omabi .modal-header {
	background: var(--black);
	color: #fff;
	border: none;
	padding: 20px 24px;
}

.modal-omabi .modal-title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.3rem;
	text-transform: uppercase;
}

.modal-omabi .btn-close {
	filter: invert(1);
}

#modalProdukDesc * {
	margin-top: 0 !important;
	margin-bottom: 6px !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	line-height: 1.6 !important;
	font-size: 0.8rem !important;
	font-weight: normal !important;
	font-family: var(--font-body) !important;
}

#modalProdukDesc blockquote {
	border-left: 3px solid var(--red);
	padding-left: 12px !important;
	color: var(--gray);
}

#modalProdukDesc ul,
#modalProdukDesc ol {
	padding-left: 20px !important;
}

#modalProdukDesc br {
	display: none;
}

.product-gallery-main {
	aspect-ratio: 1;
	background: var(--gray-light);
	border-radius: 6px;
	overflow: hidden;
}

.product-gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-thumbs {
	display: flex;
	gap: 8px;
	margin-top: 10px;
}

.gallery-thumb {
	width: 60px;
	height: 60px;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border-color var(--transition);
}

.gallery-thumb.active {
	border-color: var(--red);
}

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

.qty-input-wrap {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1.5px solid var(--gray-border);
	border-radius: 4px;
	overflow: hidden;
	width: fit-content;
}

.qty-btn {
	width: 38px;
	height: 38px;
	background: var(--gray-light);
	border: none;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background var(--transition);
}

.qty-btn:hover {
	background: var(--red);
	color: #fff;
}

.qty-val {
	width: 50px;
	text-align: center;
	border: none;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
}

/* ===== LOGIN MODAL ===== */
.modal-login .modal-header {
	background: var(--black);
	color: #fff;
	border: none;
}

.modal-login .modal-title {
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
}

.modal-login .btn-close {
	filter: invert(1);
}

.form-omabi label {
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: 0.06em;
	font-size: 0.85rem;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.form-omabi .form-control {
	border-radius: 3px;
	border: 1.5px solid var(--gray-border);
	font-size: 0.9rem;
	padding: 10px 14px;
	transition: border-color var(--transition);
}

.form-omabi .form-control:focus {
	border-color: var(--red);
	box-shadow: 0 0 0 3px rgba(230, 33, 42, 0.12);
}

/* ===== KERANJANG OFFCANVAS ===== */
.offcanvas-omabi {
	width: 400px !important;
}

.cart-item {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--gray-border);
}

.cart-item-img {
	width: 72px;
	height: 72px;
	border-radius: 6px;
	object-fit: cover;
	background: var(--gray-light);
	flex-shrink: 0;
}

.cart-item-name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	text-transform: uppercase;
}

.cart-item-price {
	color: var(--red);
	font-family: var(--font-display);
	font-weight: 700;
}

.cart-item-remove {
	color: #ccc;
	cursor: pointer;
	transition: color var(--transition);
}

.cart-item-remove:hover {
	color: var(--red);
}

.cart-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-top: 2px solid var(--black);
}

.cart-total-label {
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.cart-total-val {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.5rem;
	color: var(--red);
}

/* ===== FOOTER ===== */
.footer {
	background: #111;
	color: #aaa;
	padding: 48px 0 24px;
	margin-top: auto;
}

.footer-brand .brand-name {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.5rem;
	color: #fff;
	text-transform: uppercase;
}

.footer-brand .brand-sub {
	color: var(--red);
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.footer h6 {
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #fff;
	margin-bottom: 16px;
}

.footer ul li {
	margin-bottom: 8px;
}

.footer ul li a {
	color: #aaa;
	font-size: 0.88rem;
	transition: color var(--transition);
}

.footer ul li a:hover {
	color: var(--red);
}

.footer-bottom {
	border-top: 1px solid #222;
	padding-top: 20px;
	margin-top: 40px;
	font-size: 0.8rem;
}

.footer-market-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.footer-market-btn {
	padding: 6px 14px;
	border: 1px solid #333;
	border-radius: 3px;
	font-size: 0.75rem;
	color: #888;
	transition: all var(--transition);
}

.footer-market-btn:hover {
	border-color: var(--red);
	color: var(--red);
}

.sosmed-links {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.sosmed-btn {
	width: 44px;
	height: 44px;
	border: 1.5px solid #333;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #aaa;
	font-size: 1.1rem;
	transition: all var(--transition);
}

.sosmed-btn:hover {
	border-color: var(--red);
	color: var(--red);
	background: #1a0000;
}

.wa-btn {
	background: #25D366;
	color: #fff;
	padding: 13px 28px;
	border-radius: 4px;
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: background var(--transition);
}

.wa-btn:hover {
	background: #128C7E;
	color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
	from {
opacity: 0;
transform: translateY(24px);
	}

	to {
opacity: 1;
transform: translateY(0);
	}
}

.fade-up {
	animation: fadeUp 0.5s ease forwards;
}

.fade-up-1 {
	animation-delay: 0.1s;
	opacity: 0;
}

.fade-up-2 {
	animation-delay: 0.2s;
	opacity: 0;
}

.fade-up-3 {
	animation-delay: 0.3s;
	opacity: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.nav-menu {
	display: none;
	}

	.offcanvas-omabi {
	width: 100vw !important;
	}
}




