:root {
	--header-bg: #ffffff;
	--accent: #0b74de;
	--muted: #666;
	--shadow: 0 6px 18px rgba(10, 20, 40, 0.08);
	--nav-height: 72px;
	--row1-height: 64px;
	/* product page start */
	--accent: #b08e08;
	--accent-2: #e0c86a;
	--muted: #666;
	--danger: #8b3510;
	--bg: #f6f6f8;
	--card: #fff;
	--text: #222;
	--radius: 12px;
	/* product page end */
}
a {
	text-decoration: none !important;
}
@font-face {
	font-family: "Peyda";
	src: url(../fonts/Peyda/peyda-light.ttf);
	font-weight: 100;
}
@font-face {
	font-family: "Peyda";
	src: url(../fonts/Peyda/Peyda-Regular.ttf);
	font-weight: 200;
}
@font-face {
	font-family: "Peyda";
	src: url(../fonts/Peyda/Peyda-Bold.ttf);
	font-weight: 500;
}
@font-face {
	font-family: "Peyda";
	src: url(../fonts/Peyda/Peyda-ExtraBold.ttf);
	font-weight: 600;
}
html,
body {
	height: 100%;
	margin: 0;
	font-family: "Peyda";
	background: #f5f7fb;
	scroll-behavior: smooth;
}
.hotfix {
	overflow-x: hidden;
}
footer,
li,
select,
button,
input {
	font-family: "Peyda";
}
/* Container so logo can overflow visually */
.site-header-wrap {
	position: relative;
	padding-bottom: 48px; /* room for logo overflow */
}

header.site-header {
	width: 100%;
	--angle: 45deg;
	background: linear-gradient(
		var(--angle),
		oklab(52.6% 0.082 0.081),
		oklab(43.5% 0.057 0.088),
		oklab(23.9% 0.017 0.049)
	);
	box-shadow: var(--shadow);
	position: relative;
	z-index: 10;
	overflow: visible; /* logo will overflow */
}

/* First row */
.top-row {
	height: var(--row1-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	gap: 12px;
	border-bottom: 1px solid #ffffff52;
}

.top-left,
.top-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Icons container */
.icon-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.icon-btn:hover {
	background: rgba(11, 116, 222, 0.06);
}

/* Search */
.search-wrap {
	display: flex;
	align-items: center;
	position: relative;
	transition: width 0.25s ease;
}
.search-input {
	height: 40px;
	border-radius: 8px;
	border: 1px solid rgba(11, 116, 222, 0.12);
	padding: 0 12px;
	outline: none;
	font-size: 14px;
	width: 0;
	opacity: 0;
	transition: width 0.28s ease, opacity 0.2s ease, padding 0.2s ease;
	margin-right: 8px;
}
.search-wrap.open .search-input {
	width: 220px;
	opacity: 1;
	padding: 0 12px;
}

/* Second row */
.nav-row {
	height: var(--nav-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 18px;
	position: relative;
	gap: 12px;
}

/* Logo centered and circular */
.logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -28px; /* sticks out */
	z-index: 12;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), #4fb4ff);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	box-shadow: 0 12px 30px rgba(11, 116, 222, 0.18);
	border: 6px solid white; /* helps it look like it's above header */
}

/* Nav + call area */
.nav-left,
.nav-right {
	display: flex;
	align-items: center;
	gap: 18px;
}

nav.main-nav {
	display: flex;
	align-items: center;
	gap: 16px;
	direction: rtl; /* Persian nav items are RTL */
	font-size: 15px;
}
nav.main-nav a {
	text-decoration: none;
	padding: 10px 8px;
	border-radius: 6px;
	display: inline-block;
	transition: 0.3s all ease-in-out;
}
nav.main-nav a:hover {
	background: rgb(11 116 222 / 21%);
	color: #ffffff;
}

/* Dropdown for دسته بندی ها */
.dropdown {
	position: relative;
}
.dropdown-toggle {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 8px;
	border-radius: 6px;
}
nav.main-nav a,
.dropdown-toggle {
	color: white;
}
.dropdown-menu {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	min-width: 200px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(10, 20, 40, 0.08);
	padding: 10px 6px;
	pointer-events: none;
	opacity: 0;
	transform-origin: top right;
	transform: translateY(-6px) scale(0.98);
	transition: opacity 0.22s ease, transform 0.22s ease;
	z-index: 20;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.dropdown-menu a {
	display: block;
	padding: 10px 12px;
	color: #222;
	text-decoration: none;
	border-radius: 6px;
}
.dropdown-menu a:hover {
	background: rgba(11, 116, 222, 0.04);
	color: var(--accent);
}

/* Call area */
.call {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: white;
	font-size: 15px;
}
.call small {
	display: block;
	font-weight: 400;
	color: white;
	font-size: 12px;
}

/* Hamburger */
.hamburger {
	display: none;
	background: transparent;
	border: 0;
	padding: 10px;
	cursor: pointer;
	border-radius: 8px;
}
.hamburger:focus {
	outline: 2px solid rgba(11, 116, 222, 0.15);
}

/* Mobile off-canvas */
.mobile-panel {
	position: fixed;
	inset: 0;
	background: rgba(8, 12, 20, 0.45);
	display: none;
	z-index: 60;
	align-items: flex-start;
	justify-content: flex-end;
	transition: opacity 0.18s ease;
}
.mobile-panel.open {
	display: flex;
}

.mobile-drawer {
	width: 320px;
	max-width: 92%;
	height: 100%;
	background: #fff;
	padding: 20px;
	overflow: auto;
	box-shadow: -8px 0 30px rgba(10, 20, 40, 0.12);
}
.mobile-drawer .close {
	display: flex;
	justify-content: flex-end;
}
.mobile-drawer nav {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	direction: rtl;
}
.mobile-drawer nav a {
	padding: 12px;
	border-radius: 8px;
	text-decoration: none;
	color: #222;
}
.mobile-drawer .section {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed #eee;
}

/* Responsive rules */
@media (max-width: 900px) {
	.logo {
		width: 84px;
		height: 84px;
		bottom: -24px;
	}
	nav.main-nav {
		display: none;
	} /* hide big nav, use hamburger/mobile */
	.call {
		display: none;
	}
	.hamburger {
		display: inline-flex;
		align-items: center;
	}
	.top-left .cart-profile {
		gap: 8px;
	}
}

@media (max-width: 540px) {
	.top-row {
		padding: 0 12px;
	}
	.nav-row {
		padding: 0 12px;
	}
	.logo {
		width: 72px;
		height: 72px;
		bottom: -20px;
		border-width: 5px;
	}
}

/* small visuals */
.num-badge {
	background: var(--accent);
	color: white;
	border-radius: 12px;
	padding: 2px 8px;
	font-size: 12px;
	font-weight: 700;
}
/* --- Fix dropdown hover and chevron animation --- */
.dropdown-toggle svg {
	transition: transform 0.25s ease;
}
.dropdown:hover .dropdown-toggle svg,
.dropdown.open .dropdown-toggle svg {
	transform: rotate(180deg);
}

.dropdown-menu {
	/* same as before */
	transition: opacity 0.22s ease, transform 0.22s ease;
}

/* --- Mobile panel animation --- */
.mobile-panel {
	position: fixed;
	inset: 0;
	background: rgba(8, 12, 20, 0.45);
	display: none;
	z-index: 60;
	align-items: flex-start;
	justify-content: flex-end;
	opacity: 0;
	transition: opacity 0.2s ease;
}
.mobile-panel.open {
	display: flex;
	opacity: 1;
}

.mobile-drawer {
	width: 320px;
	max-width: 92%;
	height: 100%;
	background: #fff;
	padding: 20px;
	overflow: auto;
	box-shadow: -8px 0 30px rgba(10, 20, 40, 0.12);
	transform: translateX(100%);
	transition: transform 0.3s ease;
}
.mobile-panel.open .mobile-drawer {
	transform: translateX(0);
}
/* Ensure dropdown stays open when hovering over either the parent OR the menu */
.dropdown {
	position: relative;
}

.dropdown-toggle {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}

.dropdown-menu {
	position: absolute;
	top: 100%; /* directly below the toggle */
	left: 0;
	background: #fff;
	border-radius: 6px;
	min-width: 180px;
	padding: 8px 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 1000;
	display: flex;
	flex-direction: column; /* stack vertically */
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Dropdown items on separate rows */
.dropdown-menu li {
	list-style: none;
}

.dropdown-menu li a {
	display: block;
	padding: 10px 16px;
	color: #333;
	text-decoration: none;
	transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
	background: #f0f0f0;
}

/* Chevron rotation */
.dropdown-toggle svg {
	transition: transform 0.3s ease;
	margin-left: 6px;
}
.dropdown:hover .dropdown-toggle svg {
	transform: rotate(180deg);
}
.dropdown {
	position: relative;
}

.dropdown-toggle {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #00000083;
	backdrop-filter: blur(5px);
	border-radius: 6px;
	min-width: 180px;
	padding: 8px 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	pointer-events: none; /* prevents accidental hover when invisible */
}

.dropdown.open .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

/* Dropdown items each row */
.dropdown-menu li {
	list-style: none;
}

.dropdown-menu li a {
	display: block;
	padding: 10px 16px;
	color: #333;
	text-decoration: none;
	transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
	background: #f0f0f0;
}

/* Chevron rotation */
.dropdown-toggle svg {
	transition: transform 0.3s ease;
	margin-left: 6px;
}
.dropdown.open .dropdown-toggle svg {
	transform: rotate(180deg);
}
/*hero slider start  */
.hero-slider {
	width: 100%;
	height: 518px;
	position: relative;
	top: -184px;
}

.slide-bg {
	position: relative;
	height: 518px;
	overflow: hidden;
}

.slide-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* ensures full cover like background-image */
}

/* Content box */
.slide-content {
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	padding: 20px 30px;
	max-width: 400px;
	text-align: start;
}

.slide-content h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #ffffff;
	text-shadow: 1px 3px 0 #969696, 1px 13px 5px #aba8a8;
}

/* Button */
.hero-btn {
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(90deg, #e0c86a 0%, #b08e08 100%);
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	border-radius: 6px;
	transition: opacity 0.3s ease;
}
.hero-btn:hover {
	opacity: 0.85;
}

/* Custom dots */
.owl-dots {
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
}
.owl-dot {
	width: 8px;
	height: 8px;
	background: #c7996d !important;
	border-radius: 50%;
	margin: 0 6px;
	transition: all 0.35s ease-in-out;
	display: inline-block;
}
.owl-dot.active {
	width: 32px;
	height: 8px;
	border-radius: 12px;
	background: #ffffff !important;
}
/* hide Owl’s default dot span */
.owl-theme .owl-dots .owl-dot span {
	display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
	.slide-content {
		max-width: 70%;
		padding: 16px 20px;
	}
	.slide-content h2 {
		font-size: 1.5rem;
	}
}
@media (max-width: 600px) {
	.hero-slider,
	.slide-bg {
		height: 400px;
	}
	.slide-content {
		max-width: 90%;
		padding: 12px 16px;
	}
	.slide-content h2 {
		font-size: 1.2rem;
	}
}

/*hero slider end  */

/* category section start */
.categories {
	padding: 60px 20px;
	text-align: center;
}

.section-title {
	position: relative;
	display: inline-block;
	margin-bottom: 40px;
}

.section-title .title-icon {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
}

.section-title h2 {
	font-size: 2rem;
	font-weight: bold;
	margin: 0;
}

/* Grid Layout */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr); /* 6 per row on desktop */
	gap: 24px;
	max-width: 1400px;
	margin: 0 auto;
}

/* Category Box */
.category-box {
	text-decoration: none;
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.category-img {
	width: 100%;
	height: 330px;
	border-radius: 10px;
	overflow: hidden;
}

.category-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.category-box:hover .category-img img {
	transform: scale(1.1);
}

.category-box p {
	margin-top: 12px;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
}

/* Tablet */
@media (max-width: 1024px) {
	.categories-grid {
		grid-template-columns: repeat(3, 1fr); /* 3 per row */
		gap: 16px;
	}
	.category-img {
		height: 260px;
	}
}

/* Mobile */
@media (max-width: 600px) {
	.categories-grid {
		grid-template-columns: repeat(2, 1fr); /* 2 per row */
		gap: 12px;
	}
	.category-img {
		height: 200px;
	}
	.category-box p {
		font-size: 0.9rem;
	}
}

/* category section end */

/* banner-1 start */
.banner-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
}

.banner {
	position: relative;
	width: 46%;
	height: 500px;
	overflow: hidden;
	border-radius: 7px;
}
/* Gradient overlay */
.banner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.4) 0%,
		/* dark at top */ rgba(0, 0, 0, 0.1) 100% /* darker at bottom */
	);
	z-index: 1; /* put overlay above the image */
}

/* Ensure content appears above overlay */
.banner-content,
.banner-footer {
	position: relative;
	z-index: 2;
}
.banner-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-content {
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: #ffffff;
	width: 90%;
}

.banner-content h1 {
	font-size: 87px;
	margin-bottom: 10px;
}

.banner-content h3 {
	font-size: 24px;
	margin-bottom: 40px;
}

.banner-footer {
	position: absolute;
	bottom: 20px; /* stick near bottom */
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	color: #93b240;
}

.footer-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-btn {
	background: #69873b;
	border: none;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: background 0.3s, color 0.3s;
}
.footer-btn:hover {
	background: #93b240;
	color: #fff;
}

/* Share button */
.share-btn {
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	margin-right: 8px;
	background: #69873b;
	height: 45px;
	width: 45px;
	padding: 5px;
	border-radius: 9px;
	justify-content: center;
}

.check-icon {
	display: none;
	stroke-dasharray: 30;
	stroke-dashoffset: 30;
}

.share-btn.active .share-icon {
	display: none;
}
.share-btn.active .check-icon {
	display: inline-block;
	animation: drawCheck 0.5s forwards;
}

@keyframes drawCheck {
	to {
		stroke-dashoffset: 0;
	}
}

/* Responsive */
@media (max-width: 1024px) {
	.banner {
		width: 50%;
		height: 500px;
	}
	.banner-content h1 {
		font-size: 60px;
	}
	.banner-footer {
		justify-content: center;
		gap: 5px;
	}
	.footer-btn {
		padding: 10px;
	}
}

@media (max-width: 768px) {
	.banner {
		width: 100%;
		height: 450px;
	}
	.banner-content {
		top: -10px;
	}
	.banner-content h1 {
		font-size: 48px;
	}
	.banner-footer {
		flex-direction: column;
		gap: 12px;
	}
	.footer-item {
		flex-direction: column;
	}
	.banner-footer {
		bottom: 0px;
	}
	.contact-footer-banner {
		align-items: center;
	}
}
.contact-icon,
.share-icon {
	background: #69873b;
	height: 35px;
	padding: 5px;
	border-radius: 9px;
}
.contact-footer-banner {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.contact-footer-banner a {
	color: #93b240;
	text-decoration: none;
}
/* banner-1 end */

/* product carousel start */
.products-section {
	padding: 60px 20px;
	text-align: center;
}

.section-title {
	font-size: 29px;
	font-weight: bold;
	color: #602802;
	margin-bottom: 40px;
}

/* Product item */
.product-item {
	text-align: right;
}
.product-box {
	position: relative;
	width: 100%;
	height: 330px;
	overflow: hidden;
	border-radius: 10px;
}

.product-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.product-box:hover img {
	transform: scale(1.1);
}

.plus-icon {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: none;
	font-size: 20px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.product-name {
	font-size: 24px;
	margin-top: 12px;
	font-weight: 200;
}

.product-price {
	font-size: 24px;
	font-weight: bolder;
}
.product-name,
.product-price {
	color: #8b3510;
}
/* Owl nav buttons */
.owl-nav button {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	border: 1px solid rgba(0, 0, 0, 0.4) !important;
	border-radius: 50%;
	background: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.owl-nav button.owl-prev {
	right: -18px;
}

.owl-nav button.owl-next {
	left: -18px;
}

/* Replace this with your custom SVG arrows */
.owl-nav button span {
	font-size: 18px;
	line-height: 1;
}

/* Dots */
.owl-dots {
	text-align: center;
	margin-top: 20px;
}

.owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px;
	background: #c7996d;
	display: block;
	border-radius: 50%;
}

.owl-dots .owl-dot.active span {
	width: 32px;
	height: 8px;
	border-radius: 20px;
	background: #fff;
}
/* Owl nav buttons */
.owl-nav button {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	border: 1px solid rgba(0, 0, 0, 0.4) !important;
	border-radius: 50%;
	background: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/* remove default text */
.owl-nav button span {
	display: none;
}

/* product carousel end */

/* cta section start */
.cta-section {
	text-align: center;
	margin: 80px 0;
}

.cta-title {
	font-size: 94px;
	color: #602802;
	margin-bottom: 9rem;
}

.cta-bg {
	position: relative;
	width: 100%;
	height: 233px;
}

.cta-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
}

/* Circle image */
.cta-circle {
	position: absolute;
	top: -62%;
	left: 50%;
	transform: translateX(-50%);
	width: 350px;
	height: 350px;
	border-radius: 50%;
	overflow: hidden;
	z-index: 7;
}

.cta-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-item.right {
	text-align: left;
}

/* Responsive */
@media (max-width: 992px) {
	.cta-title {
		font-size: 60px;
	}

	.cta-circle {
		width: 200px;
		height: 200px;
		top: -40%;
	}
}

@media (max-width: 768px) {
	.cta-title {
		font-size: 40px;
	}

	.cta-circle {
		width: 160px;
		height: 160px;
		top: -35%;
	}
}

/* Lists */
.cta-lists {
	position: relative;
	display: flex;
	margin: 0 auto 60px auto;
}

.cta-col {
	flex: 1;
	padding: 0 20px;
}

.cta-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cta-col li {
	font-size: 20px;
	font-weight: 500;
	color: #602802;
	margin-bottom: 12px;
}

/* Background strip */
.cta-bg {
	position: relative;
	width: 100%;
	height: 233px;
}

.cta-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
	.cta-title {
		font-size: 60px;
	}

	.cta-circle {
		width: 200px;
		height: 200px;
		top: -40%;
	}

	.cta-lists {
		max-width: 700px;
	}

	.cta-col li {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.cta-title {
		font-size: 40px;
	}

	.cta-circle {
		width: 224px;
		height: 224px;
		top: -13%;
	}

	.cta-lists {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		margin-bottom: 40px;
	}

	.cta-col {
		text-align: center;
		padding: 0;
	}

	.cta-col li {
		font-size: 16px;
	}
}

@media (min-width: 822px) and (max-width: 985px) {
	.cta-list-1 {
		position: absolute;
		left: -18px;
		top: -95px;
		width: 50%;
	}
	.cta-list-2 {
		position: absolute;
		left: -81px;
		top: -23px;
		width: 50%;
	}
	.cta-list-3 {
		position: absolute;
		right: -18px;
		top: -95px;
		width: 50%;
	}
	.cta-list-4 {
		position: absolute;
		right: -81px;
		top: -21px;
		width: 50%;
	}
}
@media (min-width: 993px) and (max-width: 1368px) {
	.cta-circle {
		top: -32%;
	}
}
@media (max-width: 822px) {
	.cta-title {
		margin: 16px;
	}
}

@media (min-width: 1379px) {
	.cta-list-1 {
		position: absolute;
		left: -18px;
		top: -95px;
		width: 50%;
	}
	.cta-list-2 {
		position: absolute;
		left: -81px;
		top: -23px;
		width: 50%;
	}
	.cta-list-3 {
		position: absolute;
		right: -18px;
		top: -95px;
		width: 50%;
	}
	.cta-list-4 {
		position: absolute;
		right: -81px;
		top: -21px;
		width: 50%;
	}
}
.bg-shape_right,
.bg-shape_left,
.cta-bg-shape {
	position: absolute;
}
.bg-shape_right {
	right: 7%;
	top: 38%;
}
.bg-shape_left {
	left: 7%;
	top: 38%;
}
.cta-bg-shape {
	top: -237px;
	left: -3px;
}
/* cta section end */

/* banner section start */
.hero-banner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.hero-banner-img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
}

.hero-banner-content {
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	text-align: right;
	color: #fff;
}

.hero-banner-title {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 15px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-banner-subtitle {
	font-size: 22px;
	font-weight: 400;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
	.hero-banner-img {
		height: 400px;
	}

	.hero-banner-title {
		font-size: 36px;
	}

	.hero-banner-subtitle {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.hero-banner-img {
		height: 300px;
	}

	.hero-banner-title {
		font-size: 26px;
	}

	.hero-banner-subtitle {
		font-size: 16px;
	}

	.hero-banner-content {
		right: 10px;
		left: 10px;
		text-align: center; /* Center align on mobile */
	}
}

/* banner section end */

/* footer start */
.site-footer {
	background-color: #482300;
	color: #fff;
	padding: 60px 20px 20px;
	margin-top: 1rem;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	gap: 40px;
}

.footer-col {
	flex: 1;
	min-width: 280px;
}

.footer-title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-phone {
	display: flex;
	gap: 8px;
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	margin-bottom: 10px;
}

.footer-phone:hover {
	color: #e0c86a;
}

.footer-address {
	font-size: 18px;
	margin-bottom: 15px;
}

.footer-trust-logo img {
	max-width: 120px;
	height: auto;
}

/* Middle column links */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #e0c86a;
}

/* Right column */
.footer-logo img {
	max-width: 150px;
	margin-bottom: 15px;
}

.footer-socials {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.social-icon svg {
	width: 28px;
	height: 28px;
	fill: #fff;
	transition: transform 0.3s ease, fill 0.3s ease;
}

.social-icon:hover svg {
	fill: #e0c86a;
	transform: scale(1.1);
}

.footer-about {
	font-size: 18px;
	line-height: 1.6;
	max-width: 300px;
	text-align: end;
}

/* Bottom footer */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 40px;
	padding-top: 15px;
	text-align: center;
	font-size: 16px;
	color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-col {
		min-width: unset;
	}

	.footer-about {
		max-width: none;
	}
}
.footer-col {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.footer-col.first {
	align-items: flex-start;
}
.footer-address {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}
.footer-trust-logo {
	margin-top: 5px;
}
@media (max-width: 768px) {
	.footer-col {
		align-items: center !important;
	}
	.footer-phone {
		text-align: center;
		justify-content: center;
	}
}
/* footer end */

/* contact us page start */
/* Hero Banner */
.contact-hero {
	position: relative;
	width: 100%;
	height: 300px;
	background: url("https://picsum.photos/id/1018/1600/500") center/cover
		no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}

.contact-hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
}

.contact-hero-content {
	position: relative;
	z-index: 1;
}

.contact-hero h1 {
	font-size: 48px;
	margin: 0;
}

.contact-hero p {
	font-size: 20px;
	margin-top: 10px;
}

/* Contact Info */
.contact-info {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	max-width: 1100px;
	margin: 60px auto;
	text-align: center;
	gap: 30px;
}

.info-box {
	flex: 1;
	min-width: 250px;
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
	font-size: 22px;
	margin-bottom: 10px;
	color: #ffffff;
}

.info-box a {
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
}

/* Contact Form */
.contact-form {
	max-width: 800px;
	margin: 60px auto;
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
	text-align: center;
	margin-bottom: 20px;
	color: #602802;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 16px;
	margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 16px;
}

.form-group textarea {
	height: 120px;
	resize: none;
}

.form-submit {
	background: linear-gradient(90deg, #e0c86a 0%, #b08e08 100%);
	border: none;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding: 12px 30px;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.3s;
}

.form-submit:hover {
	opacity: 0.9;
}

/* Map */
.contact-map {
	margin: 60px auto;
	max-width: 1100px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Socials */
.contact-socials {
	text-align: center;
	margin: 40px 0;
}

.contact-socials h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #482300;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.social-icons img {
	filter: invert(1);
	transition: transform 0.3s, fill 0.3s;
}

.social-icons a:hover img {
	transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
	.contact-hero h1 {
		font-size: 32px;
	}
	.contact-hero p {
		font-size: 16px;
	}
	.form-submit {
		width: 100%;
	}
}
.contact-faq {
	max-width: 900px;
	margin: 60px auto;
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-faq h2 {
	text-align: center;
	font-size: 28px;
	margin-bottom: 30px;
	color: #602802;
}

.faq-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-item {
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	padding: 15px 20px;
	font-size: 18px;
	font-weight: bold;
	text-align: right;
	background: #f5f5f5;
	border: none;
	cursor: pointer;
	color: #482300;
	position: relative;
	transition: background 0.3s;
	font-family: "Peyda";
}

.faq-question::after {
	content: "+";
	position: absolute;
	left: 20px;
	font-size: 20px;
	transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
	content: "-";
	transform: rotate(180deg);
}

.faq-question:hover {
	background: #eee;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
	background: #fff;
	padding: 0 20px;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 15px 20px;
}

.faq-answer p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #444;
}
.contact-form .form-group {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.walnut-mask {
	-webkit-mask-image: url("../media/shape/walnut.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-position: center;

	mask-image: url("../media/shape/walnut.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: center;

	--angle: 45deg;
	background: linear-gradient(
		var(--angle),
		oklab(31.1% 0.016 0.019),
		oklab(36.5% 0.02 0.022),
		oklab(42% 0.025 0.025),
		oklab(47.2% 0.031 0.028)
	);
	color: #fff;
	padding: 40px;
	text-align: center;
}

/* contact us page end */

/* about us page start */
.about-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.about-hero-img {
	width: 100%;
	height: 450px;
	object-fit: cover;
}
.about-hero-content {
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	color: #fff;
	text-align: right;
}
.about-hero-content h1 {
	font-size: 48px;
	margin-bottom: 15px;
}
.about-hero-content p {
	font-size: 20px;
}

/* Story */
.about-story {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 60px 10%;
}
.story-content {
	flex: 1;
}
.story-content h2 {
	font-size: 32px;
	margin-bottom: 15px;
	color: #602802;
}
.story-content p {
	font-size: 18px;
	line-height: 1.8;
}
.story-image {
	flex: 1;
}
.story-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Values */
.about-values {
	text-align: center;
	padding: 60px 10%;
	background: #f8f8f8;
}
.about-values h2 {
	font-size: 32px;
	margin-bottom: 40px;
	color: #602802;
}
.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}
.value-item {
	padding: 30px 105px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
	transform: scale(1.1);
}
.value-item:hover {
	transform: translateY(-5px);
}

.value-item h3 {
	font-size: 22px;
	margin-bottom: 10px;
	color: #ffffff;
}

/* CTA */
.about-cta {
	text-align: center;
	padding: 80px 20px;
	background: #482300;
	color: #fff;
}
.about-cta h2 {
	font-size: 36px;
	margin-bottom: 20px;
}
.cta-button {
	display: inline-block;
	padding: 12px 25px;
	background: linear-gradient(90deg, #e0c86a 0%, #b08e08 100%);
	color: #fff;
	font-size: 20px;
	border-radius: 8px;
	text-decoration: none;
	transition: opacity 0.3s;
}
.cta-button:hover {
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
	.about-story {
		flex-direction: column;
		text-align: center;
	}
	.about-hero-content {
		right: 5%;
		left: 5%;
		text-align: center;
	}
	.about-hero-content h1 {
		font-size: 36px;
	}
}

/* about us page end */

/* single product page start */
.container {
	max-width: 1200px;
	margin: 32px auto;
	padding: 0 16px;
}
.breadcrumbs {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 12px;
}
.breadcrumbs a {
	color: var(--muted);
	text-decoration: none;
}
.product-grid {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 28px;
	align-items: start;
}
@media (max-width: 1024px) {
	.product-grid {
		grid-template-columns: 1fr 360px;
	}
}
@media (max-width: 760px) {
	.product-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

/* Gallery */
.gallery {
	background: var(--card);
	border-radius: var(--radius);
	padding: 16px;
	box-shadow: 0 6px 18px rgba(10, 20, 40, 0.06);
}
.main-image-wrap {
	position: relative;
	width: 100%;
	height: 520px;
	border-radius: 10px;
	overflow: hidden;
	background: #eee;
	cursor: zoom-in;
}
.main-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
	-webkit-user-drag: none;
}

/* Zoom lens (desktop) */
.zoom-lens {
	position: absolute;
	display: none; /* visible on hover */
	width: 220px;
	height: 220px;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.6);
	background-repeat: no-repeat;
	background-size: 200% auto; /* adjust as needed */
	z-index: 30;
	pointer-events: none;
}

/* Thumbs */
.thumbs {
	margin-top: 12px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.thumb {
	width: 84px;
	height: 84px;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	flex: 0 0 84px;
}
.thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.thumb.active {
	border-color: var(--accent);
}

/* Lightbox modal (mobile tap) */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
.lightbox img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.lightbox .close {
	position: absolute;
	top: 18px;
	left: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 0;
	padding: 8px;
	border-radius: 8px;
	color: #fff;
}

/* Right column (meta) */
.meta {
	background: var(--card);
	padding: 20px;
	border-radius: var(--radius);
	box-shadow: 0 6px 18px rgba(10, 20, 40, 0.06);
}
.product-title {
	font-size: 28px;
	margin: 0 0 8px;
	font-weight: 700;
}
.short-desc {
	color: var(--muted);
	font-size: 15px;
	margin: 0 0 12px;
}
.price-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 10px 0;
}
.price {
	font-size: 26px;
	color: var(--danger);
	font-weight: 700;
}
.old-price {
	font-size: 16px;
	color: var(--muted);
	text-decoration: line-through;
}

/* selectors and quantity */
.controls {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 18px;
}
.select,
.qty {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fafafa;
	border-radius: 8px;
	padding: 10px;
	border: 1px solid #eee;
}
select {
	border: 0;
	background: transparent;
	font-size: 15px;
	outline: none;
}
.qty input {
	width: 72px;
	padding: 8px;
	border-radius: 8px;
	border: 1px solid #ddd;
	text-align: center;
}

/* CTA */
.cta-row {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 12px;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 10px;
	border: 0;
	cursor: pointer;
	font-weight: 700;
}
.btn.add {
	background: linear-gradient(90deg, var(--accent-2), var(--accent));
	color: white;
}
.btn.buy {
	background: #fff;
	border: 1px solid #eee;
	color: var(--accent);
	font-weight: 700;
}
.meta .actions {
	display: flex;
	gap: 10px;
	margin-top: 8px;
	flex-wrap: wrap;
}

/* trust badges */
.trust {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-top: 12px;
}
.badge {
	background: #fff;
	padding: 6px 8px;
	border-radius: 8px;
	border: 1px solid #eee;
	font-size: 13px;
}

/* Tabs */
.tabs {
	margin-top: 26px;
	background: var(--card);
	border-radius: var(--radius);
	padding: 8px 12px;
}
.tab-buttons {
	display: flex;
	gap: 8px;
	border-bottom: 1px solid #eee;
	padding-bottom: 8px;
}
.tab-buttons button {
	background: transparent;
	border: 0;
	padding: 10px 14px;
	border-radius: 8px;
	cursor: pointer;
	color: var(--muted);
}
.tab-buttons button.active {
	background: linear-gradient(90deg, var(--accent-2), var(--accent));
	color: #fff;
}
.tab-content {
	padding: 16px;
	font-size: 15px;
}

/* Reviews */
.reviews {
	margin-top: 18px;
}
.review {
	background: #fff;
	padding: 12px;
	border-radius: 10px;
	margin-bottom: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.review .meta {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 13px;
	color: var(--muted);
}
.review .body {
	margin-top: 8px;
	font-size: 15px;
}

/* Review form */
.review-form {
	background: #fff;
	padding: 12px;
	border-radius: 10px;
}
.review-form textarea {
	width: 97%;
	min-height: 100px;
	border-radius: 8px;
	border: 1px solid #eee;
	resize: none;
}
.review-form .row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 8px;
}

/* Related */
.related {
	margin-top: 26px;
}
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
@media (max-width: 900px) {
	.related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 520px) {
	.related-grid {
		grid-template-columns: 1fr;
	}
}
.product-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
	padding: 8px;
}
.product-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 8px;
}

/* small elements */
.muted {
	color: var(--muted);
	font-size: 13px;
}
.share-row {
	display: flex;
	gap: 8px;
	align-items: center;
}
.icon-btn {
	border: 1px solid #eee;
	padding: 8px;
	border-radius: 8px;
	cursor: pointer;
}
.icon-btn img {
	width: 25px;
	height: 25px;
}
/* accessibility & focus */
button:focus,
a:focus {
	outline: 3px solid rgba(176, 142, 8, 0.18);
}
/* single product page end */

/* seach page start */
/* Breadcrumb */
.breadcrumb {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 14px;
	margin-bottom: 20px;
	color: #666;
}
.breadcrumb a {
	text-decoration: none;
	color: #8b3510;
	transition: color 0.3s;
}
.breadcrumb a:hover {
	color: #602802;
}
.breadcrumb span {
	color: #999;
}

/* Sorting row */
.archive-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}
.sort-selects {
	display: flex;
	gap: 12px;
}
select {
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	font-size: 15px;
	cursor: pointer;
}

/* Products grid */
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
@media (max-width: 1024px) {
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.products-grid {
		grid-template-columns: 1fr;
	}
}

.product-box {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}
.product-box img {
	width: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.product-box:hover img {
	transform: scale(1.08);
}
.product-box:hover {
	transform: translateY(-6px);
}

.plus-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	transition: transform 0.2s ease;
}
.plus-icon:hover {
	transform: scale(1.1);
}

.product-price {
	font-size: 20px;
	font-weight: 700;
	color: #8b3510;
	margin: 0;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.pagination a,
.pagination span {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	color: #333;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s;
}
.pagination a:hover {
	background: #8b3510;
	color: #fff;
	border-color: #8b3510;
}
.pagination .active {
	background: #602802;
	color: #fff;
	border-color: #602802;
	font-weight: bold;
}
/* seach page end */

/* post blog page start */
/* Layout */
.blog-layout {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 30px;
}
@media (max-width: 992px) {
	.blog-layout {
		grid-template-columns: 1fr;
	}
}

/* Blog content */
.blog-post {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.blog-post h1 {
	font-size: 32px;
	margin-bottom: 10px;
	color: #602802;
}
.blog-meta {
	font-size: 14px;
	color: #777;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}
.blog-post img {
	width: 100%;
	border-radius: 8px;
	margin: 20px 0;
	height: 480px;
	object-fit: cover;
}
.blog-post h2 {
	margin-top: 30px;
	font-size: 24px;
	color: #8b3510;
}

/* Table of contents */
.toc {
	background: #f1f1f1;
	border-radius: 8px;
	padding: 15px;
	margin: 20px 0;
}
.toc h3 {
	margin-top: 0;
	font-size: 18px;
	color: #602802;
}
.toc ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.toc ul li {
	margin: 8px 0;
}
.toc ul li a {
	color: #8b3510;
	text-decoration: none;
	font-size: 15px;
}
.toc ul li a:hover {
	text-decoration: underline;
}

/* Sidebar */
.sidebar {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.sidebar-box {
	background: #fff;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.sidebar-box h3 {
	font-size: 20px;
	color: #602802;
	margin-top: 0;
}
.sidebar-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-box ul li {
	margin: 8px 0;
	font-size: 15px;
}
.sidebar-box ul li a {
	text-decoration: none;
	color: #333;
}
.sidebar-box ul li a:hover {
	color: #8b3510;
}

/* Related blogs */
.related-blogs {
	margin-top: 50px;
}
.related-blogs h2 {
	text-align: center;
	color: #602802;
	font-size: 26px;
	margin-bottom: 30px;
}
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.related-item {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}
.related-item:hover {
	transform: translateY(-5px);
}
.related-item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}
.related-item h4 {
	padding: 12px;
	font-size: 18px;
	margin: 0;
}
@media (max-width: 992px) {
	.related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.related-grid {
		grid-template-columns: 1fr;
	}
}
.related-content {
	padding: 12px;
}
.related-item h4 {
	font-size: 18px;
	margin: 0 0 8px 0;
	color: #602802;
}

/* Subtitle with ellipsis */
.related-subtitle {
	font-size: 14px;
	color: #555;
	margin: 0 0 10px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* limit to 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Meta info */
.related-meta {
	font-size: 12px;
	color: #888;
	display: flex;
	justify-content: space-between;
}
.related-meta span {
	white-space: nowrap;
}

/* post blog page end */

/* archive page start */
/* Breadcrumb */

.breadcrumb a {
	color: #8b3510;
	text-decoration: none;
}
.breadcrumb span {
	margin: 0 5px;
}

/* Layout */
.blog-archive-layout {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 30px;
}
@media (max-width: 992px) {
	.blog-archive-layout {
		grid-template-columns: 1fr;
	}
}

/* Blog list/grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

.blog-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
	display: flex;
	flex-direction: column;
}
.blog-card:hover {
	transform: translateY(-5px);
}
.blog-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.blog-content {
	padding: 15px;
	flex: 1;
}
.blog-content h3 {
	margin: 0 0 10px;
	font-size: 20px;
	color: #602802;
}
.blog-content p {
	font-size: 14px;
	color: #555;
	margin: 0 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.blog-meta {
	font-size: 12px;
	color: #888;
	display: flex;
	justify-content: space-between;
}

/* Sidebar */
.sidebar {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.sidebar-box {
	background: #fff;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.sidebar-box h3 {
	font-size: 20px;
	color: #602802;
	margin-top: 0;
}
.sidebar-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-box ul li {
	margin: 8px 0;
	font-size: 15px;
}
.sidebar-box ul li a {
	text-decoration: none;
	color: #333;
}
.sidebar-box ul li a:hover {
	color: #8b3510;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 30px 0;
}
.pagination a {
	padding: 8px 14px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	color: #333;
	text-decoration: none;
	transition: all 0.2s;
}
.pagination a:hover {
	background: #8b3510;
	color: #fff;
	border-color: #8b3510;
}
.pagination a.active {
	background: #602802;
	color: #fff;
	border-color: #602802;
}
/* archive page end */

/* seach start */
/* Breadcrumb */
.breadcrumb {
	font-size: 14px;
	margin-bottom: 20px;
	color: #666;
}

/* Search Bar */
.search-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
	gap: 10px;
}
.search-bar input {
	width: 100%;
	max-width: 500px;
	padding: 12px 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 15px;
	margin: unset !important;
}
.search-bar button {
	padding: 12px 20px;
	background: #8b3510;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
}
.search-bar button:hover {
	background: #602802;
}

/* Search title */
.search-title {
	text-align: center;
	font-size: 20px;
	margin: 20px 0;
	color: #602802;
}

/* Product grid */
.product-grid-search {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 20px;
}
@media (max-width: 992px) {
	.product-grid-search {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.product-grid-search {
		grid-template-columns: 1fr;
	}
}

.product-box {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.product-box:hover img {
	transform: scale(1.1);
}
.plus-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	cursor: pointer;
}

.product-price {
	font-size: 16px;
	color: #8b3510;
	font-weight: bold;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 30px 0;
}
.pagination a {
	padding: 8px 14px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	color: #333;
	text-decoration: none;
	transition: all 0.2s;
}
.pagination a:hover {
	background: #8b3510;
	color: #fff;
	border-color: #8b3510;
}
.pagination a.active {
	background: #602802;
	color: #fff;
	border-color: #602802;
}
/* seach end */

/* cart page start */
table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}
th,
td {
	padding: 16px;
	text-align: center;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}
th {
	background: #f5f5f5;
	font-weight: bold;
	color: #602802;
}
.cart-item {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: center;
}
.cart-item img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 8px;
}
.cart-item-name {
	font-weight: bold;
	color: #333;
}

.qty-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.qty-box button {
	width: 28px;
	height: 28px;
	border: 1px solid #ccc;
	background: #fff;
	cursor: pointer;
	font-size: 18px;
	border-radius: 100px;
	line-height: 1;
}
.qty-box input {
	width: 50px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 28px;
}
.remove-btn {
	background: red;
	border: none;
	color: white;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	border-radius: 100px;
	width: 46px;
	transition: 0.3s all ease-in-out;
}
.remove-btn:hover {
	background: rgb(160, 0, 0);
}
.cart-summary {
	margin-top: 30px;
	background: #fff;
	padding: 25px;
	border-radius: 8px;
}
.cart-summary h3 {
	font-size: 22px;
	color: #602802;
	margin-bottom: 20px;
	text-align: center;
}
.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	font-size: 16px;
}
.summary-total {
	border-top: 1px solid #eee;
	padding-top: 10px;
	font-weight: bold;
	font-size: 18px;
	color: #8b3510;
}

.coupon-box {
	display: flex;
	gap: 10px;
	margin: 20px 0;
	flex-wrap: wrap;
	justify-content: center;
}
.coupon-box input {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	width: 220px;
	font-size: 14px;
	margin: unset !important;
}
.coupon-box button {
	padding: 10px 20px;
	border: none;
	background: #8b3510;
	color: #fff;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	transition: 0.3s;
}
.coupon-box button:hover {
	background: #602802;
}

.cart-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	margin-top: 25px;
}
.btn {
	display: inline-block;
	padding: 12px 24px;
	font-size: 16px;
	border-radius: 6px;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
}
.btn-continue {
	background: #fff;
	border: 1px solid #8b3510;
	color: #8b3510;
}
.btn-continue:hover {
	background: #8b3510;
	color: #fff;
}
.btn-update {
	background: #c7996d;
	color: #fff;
	border: none;
}
.btn-update:hover {
	background: #a47446;
}
.btn-checkout {
	background: #8b3510;
	color: #fff;
	border: none;
}
.btn-checkout:hover {
	background: #602802;
}

@media (max-width: 768px) {
	th:nth-child(2),
	td:nth-child(2) {
		display: none;
	}
	.cart-item img {
		width: 50px;
		height: 50px;
	}
}
/* cart page end */

/* checkout page start */
.checkout-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
}
.checkout-section {
	background: #fff;
	padding: 25px;
	border-radius: 8px;
}
.checkout-section h3 {
	font-size: 22px;
	color: #602802;
	margin-bottom: 20px;
	border-bottom: 2px solid #f3e5d0;
	padding-bottom: 10px;
}
form label {
	display: block;
	font-size: 14px;
	margin-bottom: 6px;
	color: #333;
}
form input,
form select,
form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-family: inherit;
}
form textarea {
	resize: none;
	height: 100px;
}

.order-summary {
	background: #fff;
	padding: 25px;
	border-radius: 8px;
}
.order-summary h3 {
	font-size: 22px;
	color: #602802;
	margin-bottom: 20px;
	border-bottom: 2px solid #f3e5d0;
	padding-bottom: 10px;
}
.summary-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	font-size: 16px;
}
.summary-item.total {
	border-top: 1px solid #eee;
	padding-top: 10px;
	font-weight: bold;
	color: #8b3510;
}

.payment-methods {
	margin-top: 20px;
}
.payment-methods label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	margin-bottom: 10px;
}
.payment-methods input {
	accent-color: #8b3510;
}

.btn-submit {
	width: 100%;
	background: #8b3510;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 14px;
	font-size: 16px;
	cursor: pointer;
	transition: 0.3s;
	margin-top: 15px;
}
.btn-submit:hover {
	background: #602802;
}

@media (max-width: 768px) {
	.checkout-grid {
		grid-template-columns: 1fr;
	}
}
/* checkout page end */

/* empty cart page start */
.capt-cart-fig,
.emptycard {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.empty-cart-btn-container {
	margin-top: 25px;
}
.empty-cart-btn-container a {
	width: 150px;
}
/* empty cart page end */


/* profile page start */
 .profile-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
  }

  /* Sidebar */
  .profile-sidebar {
    background: #482300;
    color: #fff;
    border-radius: 8px;
    padding: 20px;
  }

  .profile-sidebar h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
  }

  .profile-nav a {
    display: block;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
  }

  .profile-nav a:hover,
  .profile-nav a.active {
    background: #8B3510;
  }

  /* Content */
  .profile-content {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
  }

  .profile-section {
    display: none;
  }
  .profile-section.active {
    display: block;
  }

  .profile-content h3 {
    font-size: 22px;
    color: #602802;
    margin-bottom: 20px;
    border-bottom: 2px solid #f3e5d0;
    padding-bottom: 10px;
  }

  label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
  }

  input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    background: #f9f9f9;
  }

  input[readonly], textarea[readonly] {
    color: #666;
    background: #f0f0f0;
    cursor: not-allowed;
  }

  .btn {
    background: #8B3510;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
  }
  .btn:hover { background: #602802; }

  /* Orders Table */
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
  }

  table th, table td {
    text-align: right;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

  table th {
    background: #f8f3ec;
    color: #602802;
  }

  .order-status {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    color: #fff;
  }
  .status-pending { background: #c7996d; }
  .status-delivered { background: #93B240; }
  .status-canceled { background: #b33a3a; }

  @media (max-width: 900px) {
    .profile-grid {
      grid-template-columns: 1fr;
    }
    .profile-sidebar {
      text-align: center;
    }
    .profile-nav a {
      display: inline-block;
      margin: 5px;
    }
  }
/* profile page end */


/* footer new */
ul.footer-links {
    text-align: right;
}
.footer-logo img {
    border-radius: 8px;
}