:root {
	/* Semantic color variables (override these in admin settings) */
	--primary: #0d6efd;
	--secondary: #1f2a2a;
	--brand: #00bf63;
	--accent: #f7941d;
	--success: #198754;
	--danger: #dc3545;
	--warning: #ffc107;
	--info: #0dcaf0;
	--light: #f8f9fa;
	--dark: #1f2a2a;

	/* Layout colors */
	--bg: #fff;
	--text: #2d2d2d;

	/* Background colors */
	--jute-beige: #f6e9d6;
	--warm-sand: #f2e1b8;

	/* Accent colors */
	--gold-accent: #d4a439;

	/* Effects */
	--elev-shadow: 0 6px 20px rgba(31, 42, 42, 0.14);

	/* Typography */
	--font-sans: "Playfair Display", serif;
	--font-secondary: "Cormorant Garamond", serif;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}
html,
body {
	height: 100%;
}
body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.45;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
a,
h6,
li,
nav,
p {
	font-family: var(--font-secondary);
}
a {
	color: var(--primary);
	transition: color 0.12s ease;
	text-decoration: none;
}

#mainNav {
	background: #ffffff;
	border-radius: 0;
	padding: 0.85rem 0;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
	pointer-events: none;
}

#mainNav.show {
	pointer-events: auto;
}
#mainNav::after {
	display: none;
}
#mainNav .nav-link {
	padding: 0.55rem 0;
	font-weight: 600;
	border-radius: 8px;
	transition:
		color 0.14s ease,
		background-color 0.14s ease,
		transform 0.16s ease;
	color: var(--text);
}

#mainNav .nav-link:hover,
#mainNav .nav-link:focus,
#mainNav .nav-link.active {
	background-color: rgba(0, 0, 0, 0.03);
	color: var(--brand);
	transform: translateY(-1px);
}

#mainNav .dropdown-menu {
	background: #ffffff;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 0.45rem 0;
	border: 1px solid #f0f0f0;
	display: block !important;
	opacity: 0;
	margin-top: 12px;
	transition:
		opacity 0.18s ease,
		margin-top 0.18s ease,
		visibility 0.18s ease;
	visibility: hidden;
	pointer-events: none;
	will-change: opacity, margin-top;
}

#mainNav .dropdown-menu.show {
	opacity: 1;
	margin-top: 4px;
	visibility: visible;
	pointer-events: auto;
}

#mainNav .dropdown-item-text {
	font-weight: 600;
	color: var(--text);
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#mainNav .dropdown-item {
	color: var(--text);
	transition:
		background-color 0.14s ease,
		color 0.14s ease;
}

#mainNav .dropdown-item:hover {
	background: rgba(0, 0, 0, 0.04);
	color: var(--brand);
}

#reportContent {
	background: #fff;
	padding: 18px;
	border: 1px solid #e9ecef;
	border-radius: 8px;
}

.addToCartForm {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: nowrap;
}

.bi {
	color: var(--dark);
}
.bg-saffron-xx {
	background: linear-gradient(90deg, var(--saffron-06), transparent);
}
.brand-name {
	font-weight: 700;
	color: var(--dark);
	margin-right: 0.4rem;
	display: inline-block;
}
.brand-green {
	color: var(--brand);
}
.brand-beige {
	background: var(--light);
}
.brand-brown {
	color: var(--primary);
}
.brand-gold {
	color: var(--accent);
}
.btn {
	transition: all 0.14s ease;
}
.btn-icon-tiny {
	padding: 0.35rem 0.45rem;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.btn-primary {
	background: linear-gradient(180deg, var(--primary), #084bb5);
	border: none;
	box-shadow: 0 6px 18px rgba(13, 110, 253, 0.18);
}
.btn-brand {
	background: linear-gradient(180deg, var(--brand), #008a45);
	border: none;
	box-shadow: 0 6px 18px rgba(0, 139, 69, 0.12);
	color: #fff;
}
.btn-brand .bi,
.btn-brand svg {
	color: #fff !important;
	fill: #fff !important;
}
.btn-brand:hover,
.btn-brand:focus {
	box-shadow: var(--elev-shadow);
	transform: translateY(-1px);
}
.btn-outline-brand {
	color: var(--brand);
	background: transparent;
	border: 1px solid var(--brand);
}
.btn-outline-brand:hover,
.btn-outline-brand:focus {
	color: #fff;
	background: var(--brand);
	border-color: var(--brand);
	box-shadow: var(--elev-shadow);
}
.btn-primary:hover,
.btn-primary:focus {
	box-shadow: var(--elev-shadow);
	filter: saturate(1.05) brightness(1.02);
}
.btn-primary .bi,
.btn-primary svg {
	color: #fff !important;
	fill: #fff !important;
}
.btn:not(.btn-primary):hover .bi,
.btn:not(.btn-primary):focus .bi,
.nav-link:hover .bi,
.checkout-form .form-label {
	font-weight: 600;
}

.card {
	background: #fff;
	box-shadow: 0 2px 8px rgba(44, 44, 44, 0.06);
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background 0.15s ease;
}

.category-strip {
	gap: 0.5rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-inline-end: 0;
	margin-bottom: 1rem;
	scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
	display: none;
}

.category-card {
	min-width: 90px;
	background: #ca9a61;
	color: #2e2e2e;
	padding: 0.02rem 0.01rem;
	flex-shrink: 0;
	text-align: center;
}
.category-card:not(:last-child) {
	margin-inline-end: 0.5rem;
}

.category-title {
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.2px;
}

.category-card:hover {
	background: #c18e52;
	transform: translateY(-2px);
	box-shadow: var(--elev-shadow);
}

.checkout-form textarea.form-control {
	min-height: 84px;
}
.checkout-form .mb-3 {
	margin-bottom: 1rem !important;
}
.checkout-form .form-label {
	display: block;
	font-weight: 700;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: var(--primary) !important;
	margin-bottom: 0.35rem;
}
.checkout-form .form-select + .form-label,
.checkout-form .form-control + .form-label,
.checkout-form textarea.form-control + .form-label {
	margin-top: 0.75rem;
}
.checkout-form .required-star {
	color: var(--bs-danger);
	font-weight: 700;
}

.checkout-form input.form-control,
.checkout-form select.form-select,
.checkout-form textarea.form-control {
	color: var(--dark);
	font-size: 1rem;
}
.checkout-form .form-control::placeholder {
	color: var(--bs-secondary-color);
	opacity: 0.75;
}
.checkout-wrap .cart-column {
	padding-right: 1rem;
}
.checkout-wrap .summary-column {
	padding-left: 1rem;
}
.checkout-wrap {
	/* display: flex; */
	gap: 1rem;
	align-items: flex-start;
	flex-wrap: wrap;
}
.checkout-wrap .cart-column {
	flex: 1 1 60%;
	min-width: 280px;
}
.checkout-wrap .summary-column {
	flex: 0 0 320px;
	min-width: 220px;
}
.checkout-wrap .cart-column {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 247, 243, 0.9));
	border-radius: 12px;
	padding: 1.25rem;
	box-shadow: 0 10px 30px rgba(31, 42, 42, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
}
.checkout-wrap .summary-column {
	background: linear-gradient(180deg, #fff, #fbfbfa);
	border-radius: 12px;
	padding: 1.25rem;
	box-shadow: 0 12px 36px rgba(31, 42, 42, 0.07);
	border-left: 4px solid var(--brand);
}
.checkout-wrap .card.h-100:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(31, 42, 42, 0.09);
}
.checkout-wrap .order-summary h5 {
	font-size: 1.125rem;
	color: var(--dark);
	margin-bottom: 0.75rem;
}
.checkout-wrap .order-summary .line {
	padding: 10px 0;
	border-bottom: 1px solid #f2f3f4;
}
.checkout-wrap .order-summary .total {
	font-size: 1.25rem;
	color: var(--dark);
	font-weight: 700;
}
.checkout-wrap .promo-box input[name="promo_code"] {
	max-width: 240px;
}

.checkout-form input.form-control,
.checkout-form select.form-select,
.checkout-form textarea.form-control {
	border-radius: 8px;
	border: 1px solid #e9ecef;
	box-shadow: none;
	padding: 0.6rem 0.75rem;
}
.checkout-form .btn-success,
.checkout-wrap .btn-success {
	background: linear-gradient(180deg, var(--brand), #008a45);
	border: none;
	box-shadow: 0 8px 20px rgba(0, 139, 69, 0.12);
	padding: 0.6rem 0.9rem;
	font-weight: 700;
}
.checkout-form .btn-success:hover {
	transform: translateY(-2px);
}
.checkout-wrap .promo-box {
	background: linear-gradient(90deg, rgba(0, 191, 99, 0.06), rgba(13, 110, 253, 0.03));
	border-radius: 10px;
	padding: 0.6rem;
	border: 1px dashed rgba(0, 0, 0, 0.04);
}
.contact-hero {
	position: relative;
	overflow: visible;
}
.contact-deco {
	position: absolute;
	right: -40px;
	top: -30px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: linear-gradient(180deg, var(--saffron-06), transparent 60%);
	filter: blur(8px);
	z-index: 0;
	pointer-events: none;
}
.contact-form-vivid {
	position: relative;
	z-index: 2;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fff);
	border-radius: 12px;
	padding: 1.25rem;
	border-left: 6px solid var(--saffron);
	box-shadow: 0 10px 30px rgba(31, 42, 42, 0.06);
}
.contact-info-card {
	background: linear-gradient(180deg, var(--saffron-06), rgba(255, 255, 255, 0.6));
	border-radius: 12px;
	padding: 1.25rem;
	box-shadow: 0 8px 20px rgba(31, 42, 42, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.03);
}
.contact-info-card h5 {
	color: var(--dark);
	font-weight: 700;
}
.contact-hero .btn-brand {
	padding-left: 1.1rem;
	padding-right: 1.1rem;
}
.counting {
	color: var(--saffron);
}
.custom-toggler {
	width: 30px;
	height: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	position: relative;
	overflow: visible;
	z-index: 1050;
}

.custom-toggler span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: #156a00;
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: center;
}
.custom-toggler:not(.collapsed) span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}
.custom-toggler:not(.collapsed) span:nth-child(2) {
	opacity: 0;
}
.custom-toggler:not(.collapsed) span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.cta-btn {
	background-color: var(--brand);
	border-color: var(--brand);
	box-shadow: var(--elev-shadow);
}

.cta-btn:hover {
	background-color: var(--accent);
	border-color: var(--accent);
	color: #000;
}

.dropdown-menu {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition:
		height 0.45s ease,
		opacity 0.45s ease;
	pointer-events: none;
	overflow-y: auto;
	scrollbar-width: thin;
}
.dropdown-menu::-webkit-scrollbar {
	width: 6px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 3px;
}
.dropdown-menu::-webkit-scrollbar-track {
	background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-menu.show {
	height: auto;
	opacity: 1;
	pointer-events: auto;
	max-height: 450px;
	transition:
		max-height 0.45s ease,
		opacity 0.45s ease;
}

.dropdown-menu li {
	opacity: 0;
	transform: translateY(-12px);
	animation: dropdownItem 0.45s ease forwards;
}
.dropdown-menu.show li:nth-last-child(1) {
	animation-delay: 0.08s;
}
.dropdown-menu.show li:nth-last-child(2) {
	animation-delay: 0.16s;
}
.dropdown-menu.show li:nth-last-child(3) {
	animation-delay: 0.24s;
}
.dropdown-menu.show li:nth-last-child(4) {
	animation-delay: 0.32s;
}
.dropdown-menu.show li:nth-last-child(5) {
	animation-delay: 0.4s;
}
.dropdown-menu.show li:nth-last-child(6) {
	animation-delay: 0.48s;
}

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

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

.font-primary {
	font-family: var(--font-sans);
}
.footer {
	background: var(--dark);
	color: #fff;
	padding: 1.25rem 0;
}
.footer a {
	color: var(--jute-beige);
}
.footer a:hover {
	color: var(--gold-accent);
	text-decoration: none;
}

.footer-slogan {
	font-size: 1.03rem;
	color: var(--jute-beige);
	opacity: 0.95;
	margin-top: -0.25rem;
	font-family: var(--font-secondary);
	line-height: 1;
}

.google-btn {
	background: #fff;
	border: 1px solid #e5e5e5;
	color: #222;
}
.google-btn:hover {
	background: #f7f7f7;
}

.hero-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.32) 100%);
	z-index: 1;
	pointer-events: none;
}

.hero-bg > .container {
	position: relative;
	z-index: 2;
}
.hero-bg {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(120deg, var(--jute-beige) 60%, var(--warm-sand) 100%),
		url("assets/img/banner-product.png") center/contain no-repeat;
	min-height: 560px;
}
.hero-slogan {
	font-size: 1.14rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	font-family: var(--font-secondary);
	line-height: 1;
}

.icon-box {
	color: var(--oss-navy);
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.icon-hover-saffron:hover,
.icon-hover-saffron:hover svg,
.icon-hover-saffron:hover .bi {
	color: var(--accent) !important;
	fill: var(--saffron) !important;
}
.input-with-icon input.form-control {
	flex: 1 1 auto;
	padding-left: 2rem;
}
.input-with-icon .input-icon {
	position: absolute;
	left: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: var(--bs-secondary-color);
}

.input-with-icon {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 220px;
}
.input-with-icon button {
	flex: 0 0 auto;
	margin-left: 0.25rem;
}
.input-with-icon input.form-control:focus + .input-icon,
.input-with-icon:focus-within .input-icon {
	color: var(--brand);
}

.link-underline-saffron {
	position: relative;
	display: inline-block;
}
.link-underline-saffron::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	height: 2px;
	width: 100%;
	background: var(--saffron);
	transform: scaleX(0);
	transform-origin: left;
	transition:
		transform 0.22s cubic-bezier(0.2, 0.9, 0.2, 1),
		opacity 0.22s ease;
	opacity: 0.95;
}
.link-underline-saffron:hover::after,
.link-underline-saffron:focus::after {
	transform: scaleX(1);
}

.marker-regular {
	background: var(--primary);
}
.marker-delivered {
	background: var(--bs-success);
}
.marker-exception {
	background: var(--bs-danger);
}
.marker-default {
	background: var(--dark);
}

.navbar .container {
	position: relative;
}
.navbar-dark .nav-link {
	color: rgba(255, 255, 255, 0.92) !important;
}
.navbar-dark .nav-link:hover,
.navbar-dark .nav-link:focus {
	color: #ffffff !important;
	background-color: rgba(255, 255, 255, 0.04);
}
.navbar-collapse {
	transform: translateX(-100%);
	transition: transform 0.3s ease-in-out;
}
.navbar-collapse.show {
	transform: translateX(0);
}
.navbar .nav-link,
.navbar .dropdown-item,
.navbar .nav-icon-link,
.navbar .navbar-toggler {
	font-size: 1.05rem;
}
.navbar .navbar-brand {
	font-size: 1.15rem;
}
.navbar.sticky-top {
	z-index: 1100;
}
.navbar .navbar-brand {
	cursor: pointer;
	pointer-events: auto;
	position: relative;
	z-index: 1200;
}
.navbar .navbar-brand img {
	display: block;
}
.no-caret::after {
	display: none !important;
}

.order-summary {
	background: var(--bg);
	border-radius: 0.75rem;
	padding: 1rem;
	box-shadow: 0 6px 18px rgba(31, 42, 42, 0.06);
	border: 1px solid #eef2f6;
}
.order-summary h5 {
	margin-top: 0;
	margin-bottom: 0.75rem;
	font-weight: 700;
}
.order-summary .line {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	border-bottom: 1px solid #f4f6f8;
}
.order-summary .line.total {
	font-size: 1.15rem;
	font-weight: 700;
	border-bottom: none;
	padding-top: 0.75rem;
}

.order-items-card .price {
	white-space: nowrap;
}
.order-summary-card {
	background: linear-gradient(180deg, #fff, #fbfbfb);
	border-radius: 10px;
	border-left: 6px solid var(--brand);
}
.order-summary-card h5 {
	margin-top: 0;
	color: var(--dark);
}
.order-summary-card p {
	margin-bottom: 0.45rem;
}
.order-summary-card p strong {
	width: 140px;
	display: inline-block;
	color: #333;
}

.order-details-table {
	width: 100%;
	border-collapse: collapse;
}
.order-details-table td {
	padding: 0.55rem 0.6rem;
	vertical-align: top;
	border-bottom: 1px solid #f2f3f4;
}
.order-details-table td.label {
	width: 170px;
	font-weight: 700;
	color: #333;
	white-space: nowrap;
}
.order-details-table td.sep {
	width: 28px;
	text-align: center;
	color: #9aa0a6;
	font-weight: 700;
}
.order-details-table td.value {
	color: var(--dark);
	word-break: break-word;
}

.order-items-card {
	border-radius: 10px;
	overflow: hidden;
}
.order-items-card table thead th {
	background: #f8f9fa;
	border-bottom: 2px solid #eee;
}
.order-items-card table tbody tr td {
	vertical-align: middle;
}
.order-items-card img {
	max-width: 60px;
	border-radius: 6px;
}
.order-history-card {
	border-radius: 10px;
}

.page-content,
.site-content {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
}
.page-header {
	padding-top: 3.25rem;
	padding-bottom: 2.25rem;
	background-color: var(--bg);
}
.page-header .display-6,
.page-header .section-title {
	font-size: 1.75rem;
	line-height: 1.15;
	margin-bottom: 0.25rem;
}
.page-header .lead {
	margin-top: 0.25rem;
	color: rgba(0, 0, 0, 0.7);
}
.page-header .page-slogan {
	margin-bottom: 0.5rem;
}

.page-headline {
	font-family: var(--font-sans);
	font-size: 2.4rem;
	line-height: 1.2;
	color: var(--dark);
}

.page-subheadline {
	font-family: var(--font-secondary);
	font-size: 1.1rem;
	color: var(--bs-secondary-color);
}

.platform-mockup {
	box-shadow: var(--elev-shadow);
}

.page-slogan {
	font-size: 0.95rem;
	color: var(--dark);
	font-weight: 600;
	margin-bottom: 0.75rem;
	font-family: var(--font-secondary);
	line-height: 1;
}
.promo-badge-inline {
	display: inline-block;
	background: linear-gradient(90deg, #ffd54a, #ffb300);
	color: #2b2b2b;
	padding: 4px 8px;
	border-radius: 8px;
	font-weight: 700;
	margin-left: 0.5rem;
}

.promo-hero-card {
	height: auto;
	background: rgba(255, 255, 255, 0.5) !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	box-shadow: none !important;
	backdrop-filter: blur(6px);
}

.promo-hero-card .badge {
	font-weight: 700;
}
.promo-row-form .d-flex {
	flex-wrap: nowrap;
}
.promo-row-form .d-flex > .form-control,
.promo-row-form .d-flex > .form-select {
	min-width: 0;
}
.promo-row-form .form-check {
	white-space: nowrap;
}
.promo-row-form .form-control,
.promo-row-form .form-select {
	max-width: 100%;
	box-sizing: border-box;
}

.product-hero-media {
	height: 420px;
	width: 100%;
	display: block;
	overflow: hidden;
	background: var(--bg);
	border-radius: 8px;
	border: 1px solid #eef2f6;
	position: relative;
}
.product-hero-media img.product-hero-img,
.product-hero-media video {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	display: block !important;
}

.product-img-container {
	height: 320px;
	overflow: hidden;
}
.product-img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.play-overlay,
button.product-thumb .play-overlay,
.product-thumb .play-overlay {
	position: absolute !important;
	left: 50% !important;
	top: 50% !important;
	transform: translate(-50%, -50%) !important;
	z-index: 9999 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 40px !important;
	height: 40px !important;
	background: rgba(0, 0, 0, 0.55) !important;
	color: #fff !important;
	border-radius: 50% !important;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
	pointer-events: none !important;
	font-size: 16px !important;
}
.product-thumb {
	width: 64px;
	height: 64px;
	border-radius: 6px;
	border: 2px solid transparent;
	background: var(--bg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex: 0 0 auto;
	position: relative;
}

.product-thumb.active {
	border-color: var(--brand);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.product-thumb img,
.product-thumb video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-thumbs {
	display: flex;
	gap: 8px;
	padding: 6px 8px;
	overflow-x: auto;
	overflow-y: hidden;
	align-items: center;
	box-sizing: border-box;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.product-thumbs .product-thumb {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
}
.product-thumbs::-webkit-scrollbar {
	display: none;
}

.purchase-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: nowrap;
}

.purchase-actions .btn {
	white-space: nowrap;
	flex-shrink: 1;
	min-width: 0;
}

.qty-control {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	overflow: hidden;
}
.qty-control .btn-qty {
	padding: 0.25rem 0.5rem;
	border-radius: 0;
	min-width: 36px;
}
.qty-control .qty-input,
.qty-input {
	border: none;
	width: 48px !important;
	text-align: center;
	padding: 0.25rem 0.4rem;
	background: transparent;
}

.qty-control .btn-qty:disabled {
	opacity: 0.6;
}
.qty-control input[type="number"]::-webkit-inner-spin-button,
.qty-control input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.qty-control input[type="number"] {
	-moz-appearance: textfield;
}

.report-table tfoot th {
	background: #fafafa;
	font-weight: 600;
}
.report-header img {
	border-radius: 6px;
}
.report-form .card {
	border: 1px solid #eef2f6;
}
.report-header img {
	border-radius: 6px;
}
.report-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}
.report-form .form-control-sm,
.report-form .form-select-sm {
	padding: 0.35rem 0.5rem;
	font-size: 0.9rem;
}
.report-form .btn {
	padding: 0.35rem 0.6rem;
}
.report-sub {
	margin-bottom: 0;
}
.report-title {
	font-size: 1.125rem;
	font-weight: 600;
}
.report-sub {
	color: var(--bs-secondary-color);
	font-size: 0.95rem;
}
.remove-btm-margin {
	margin-bottom: 0 !important;
}
.report-table thead th {
	background: #f1f3f5;
	border-color: #e9ecef;
	font-size: 1.05rem;
}
.report-table td,
.report-table th {
	font-size: 0.97rem;
	vertical-align: middle;
}
.report-table td:nth-child(4) {
	max-width: 320px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.reveal {
	opacity: 1;
	position: relative;
	transform: translateY(50px);
	transition: all 1s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}
.rounded-pill {
	font-size: 0.9rem;
}

.sales-report-table-wrap {
	box-shadow: 0 2px 12px rgba(44, 44, 44, 0.06);
	border-radius: 1rem;
	background: #fff;
	padding: 1.2rem;
}
.sales-report-back {
	margin-bottom: 1.5rem;
}
.sales-report-hero {
	background: linear-gradient(90deg, #f6e9d6 60%, #f2e1b8 100%);
	border-radius: 1.2rem;
	padding: 2.2rem 2rem 1.2rem 2rem;
	margin-bottom: 2.5rem;
	box-shadow: 0 4px 24px rgba(44, 44, 44, 0.07);
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.sales-report-hero img {
	height: 60px;
	width: 60px;
	object-fit: contain;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(44, 44, 44, 0.06);
}
.sales-report-hero .hero-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--olive-green);
	margin-bottom: 0.2rem;
}
.sales-report-hero .hero-sub {
	color: var(--dark);
	font-size: 1.1rem;
	margin-bottom: 0;
}
.sales-report-summary {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}
.sales-report-summary .card {
	min-width: 160px;
	border-radius: 0.8rem;
	border: 1px solid #f2e1b8;
	background: #fffbe9;
	box-shadow: 0 2px 8px rgba(44, 44, 44, 0.04);
	padding: 1.1rem 1.2rem;
	text-align: center;
}
.sales-report-summary .card .small {
	color: var(--bs-secondary-color);
	font-size: 0.98rem;
}
.sales-report-summary .card .h5 {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--olive-green);
}

.saffron-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: var(--saffron);
	border-radius: 50%;
	margin-left: 0.5rem;
	vertical-align: middle;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.saffron-badge-tiny {
	background: var(--saffron);
	color: #fff;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 999px;
	font-size: 0.75rem;
	display: inline-block;
}
.saffron-muted {
	color: var(--saffron);
	opacity: 0.7;
}

.share-icon {
	background: transparent;
}
.share-icon i {
	display: block;
}
.share-icon:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
	background: var(--bs-light);
}
.share-icon .bi-facebook {
	color: #1877f2 !important;
}
.share-icon .bi-twitter {
	color: #1da1f2 !important;
}
.share-icon .bi-whatsapp {
	color: #25d366 !important;
}
.share-icon .bi-linkedin {
	color: #0077b5 !important;
}

.signup-card {
	border-radius: 14px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}
.signup-card .form-control {
	border-radius: 8px;
}
.signup-card .btn {
	border-radius: 8px;
}
.signup-header {
	background: linear-gradient(90deg, #f7fbf7, #ffffff);
	padding: 12px 16px;
	text-align: center;
}
.signup-logo {
	height: 36px;
	width: auto;
	display: inline-block;
	margin-bottom: 6px;
}
.signup-title {
	margin: 0;
	font-weight: 600;
	color: #1f6f2c;
	font-size: 1.05rem;
}
.signup-body {
	padding: 18px;
}

.site-toast {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0.6rem 1rem;
	border-radius: 0.25rem;
	color: #fff;
	opacity: 0;
	z-index: 1101;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.site-toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
.site-toast.success {
	background: linear-gradient(90deg, #198754, #0ea26b);
}
.site-toast.info {
	background: linear-gradient(90deg, #0d6efd, #0066f0);
}
.site-toast.error {
	background: linear-gradient(90deg, #dc3545, #c12b3b);
}
.site-slogan {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 0.94rem;
	color: var(--dark);
	font-weight: 600;
	letter-spacing: 0.4px;
	font-family: var(--font-secondary);
	line-height: 1;
}

.service-card {
	background: var(--oss-light);
	border: none;
	border-bottom: 4px solid transparent;
	height: 100%;
	transition: 0.3s;
}

.service-card:hover {
	border-bottom: 4px solid var(--gold-accent);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transform: translateY(-10px);
}
.service-card .bi,
.service-card svg {
	font-size: 2.5rem;
	color: var(--gold-accent);
	margin-bottom: 1rem;
}
.table-responsive {
	background: #fff;
	padding: 0.6rem;
	border-radius: 0.6rem;
}

.timeline {
	position: relative;
	padding-left: 48px;
}
.timeline::before {
	content: "";
	position: absolute;
	left: 34px;
	top: 12px;
	bottom: 8px;
	width: 2px;
	background: #e9ecef;
	border-radius: 2px;
	z-index: 0;
}

.timeline::after {
	content: "";
	position: absolute;
	left: 34px;
	top: 12px;
	width: 2px;
	height: var(--completed-height, 0px);
	background: var(--brand);
	border-radius: 2px;
	z-index: 1;
	transition: height 220ms ease;
}

.timeline-item {
	position: relative;
	padding-left: 16px;
	margin-bottom: 14px;
}

.timeline-marker {
	position: absolute;
	left: -21px;
	top: 6px;
	width: 18px;
	height: 20px;
	border-radius: 50%;
	border: 3px solid #fff;
}

.timeline-ts {
	position: absolute;
	left: 0;
	top: 6px;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--dark);
}

.timeline-content {
	background: var(--bg);
	padding: 20px 5px 5px;
	border-radius: 6px;
	border: 1px solid #eef2f6;
}

.timeline-item.completed .timeline-marker {
	background: var(--brand) !important;
	box-shadow: 0 4px 12px rgba(31, 42, 42, 0.08);
}
.timeline-item.incomplete .timeline-marker {
	background: #e9ecef !important;
	color: #6c757d !important;
	box-shadow: none;
	opacity: 0.9;
}

.top-contact-container {
	font-family: var(--font-secondary);
	font-size: 1.15rem;
	display: flex;
	align-items: end;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.top-contact-bar {
	background: var(--bg);
	padding: 0.4rem 0;
}

.top-contact-bar .contact-link {
	color: var(--dark);
	text-decoration: none;
	transition: color 0.14s ease;
}
.top-contact-bar .contact-link:hover,
.top-contact-bar .contact-link:focus {
	color: var(--gold-accent);
}

.underline-middle {
	position: relative;
	display: inline-block;
}
.underline-middle::after {
	content: "";
	position: absolute;
	bottom: -6px;
	right: 15%;
	width: 70%;
	height: 3px;
	background-color: var(--saffron);
	transition: width 0.3s ease;
}

.video-thumb-canvas {
	background: #000;
	width: 100%;
	height: 100%;
	display: block;
}

.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25d366;
	color: #fff;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	z-index: 999;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
	color: #fff;
	text-decoration: none;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.wishlist-btn {
	position: relative;
	font-weight: 600;
	color: var(--dark);
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.wishlist-btn.active i {
	color: #e63946;
}
.wishlist-btn .badge {
	font-size: 0.7rem;
	padding: 0.25rem 0.4rem;
}

.zoomable {
	cursor: zoom-in;
	transition: transform 0.2s ease;
	max-width: 100%;
	max-height: 80vh;
}
.zoomable.zoomed {
	cursor: zoom-out;
	transform: scale(2);
}
