/* Kitchen Page Specific Styles */

/* Global reset for kitchen page */
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

html {
	margin: 0;
	padding: 0;
}

/* Apply Poppins font globally */
body {
	font-family: 'Poppins', sans-serif !important;
}

/* Ensure all text elements use Poppins */
h1, h2, h3, h4, h5, h6, p, span, div, a, li, ul, nav {
	font-family: 'Poppins', sans-serif !important;
}

/* Specific styling for headings */
h1, h2 {
	font-weight: 600;
	color: #ffffff !important;
}

h3, h4 {
	font-weight: 500;
	color: #ffffff !important;
}

p, span {
	font-weight: 400;
	color: #ffffff !important;
}

/* Make all text white and consistent */
body, html {
	color: #ffffff !important;
}

/* Navigation and menu items */
.header__area-menubar-center-menu ul li a {
	color: #ffffff !important;
}

/* Side Panel Menu - Override to black text for better readability */
.side-panel-nav ul li a {
	color: #000000 !important;
}

.side-panel-nav ul li a:hover {
	color: #36B4E5 !important;
}

.side-panel-nav ul li a i {
	color: #000000 !important;
}

.side-panel-nav ul li a:hover i {
	color: #36B4E5 !important;
}

/* Override global styles specifically for side-panel content */
.side-panel p,
.side-panel span,
.side-panel a,
.side-panel li,
.side-panel h4 {
	color: #000000 !important;
}

/* Subtitle styling */
.subtitle {
	color: #ffffff !important;
}

/* Links - but NOT in side panel */
a:not(.side-panel a) {
	color: #ffffff !important;
	text-decoration: none;
}

a:not(.side-panel a):hover {
	color: #36B4E5 !important;
}

/* List items - but NOT in side panel */
li:not(.side-panel li) {
	color: #ffffff !important;
}

/* Ensure all text in banner is white */
.about__banner * {
	color: #ffffff !important;
}

/* Content area text */
.about__two * {
	color: #ffffff !important;
}

/* Banner Animations */
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-15px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.animated-title {
	animation: fadeInDown 0.8s ease-out;
	animation-fill-mode: both;
}

.animated-subtitle {
	animation: fadeInUp 1s ease-out 0.2s;
	animation-fill-mode: both;
}

.scroll-down-btn {
	animation: fadeInUp 1.2s ease-out 0.4s;
	animation-fill-mode: both;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

.scroll-down-btn {
	position: absolute;
	bottom: 50px;
	right: 50px;
	transform: none;
	cursor: pointer;
	z-index: 10;
}

.scroll-arrow {
	width: 40px;
	height: 40px;
	border: 2px solid white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	animation: bounce 2s infinite;
	transition: all 0.3s ease;
}

.scroll-arrow:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: scale(1.1);
}

/* Kitchen Banner */
.kitchen__banner {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
	width: 100%;
	margin: 0;
	padding: 0;
}

.kitchen__banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.kitchen__banner-content {
	z-index: 2;
	position: relative;
}

.kitchen__banner-title {
	font-family: 'Poppins', sans-serif !important;
	animation: fadeInLeft 1s ease-out;
	animation-fill-mode: both;
}

.kitchen__banner-description {
	font-family: 'Poppins', sans-serif !important;
	animation: fadeInLeft 1.2s ease-out 0.3s;
	animation-fill-mode: both;
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-30px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Kitchen Content Sections */
.kitchen__section {
	padding: 80px 0;
}

.kitchen__section.pt-0 {
	padding-top: 0;
}

.kitchen__section.pb-0 {
	padding-bottom: 0;
}

/* Kitchen Cards */
.kitchen__card {
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
	padding: 30px;
	margin-bottom: 30px;
}

.kitchen__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.kitchen__card-icon {
	font-size: 48px;
	color: #36B4E5;
	margin-bottom: 20px;
}

.kitchen__card h4 {
	margin-bottom: 15px;
	color: #333;
}

.kitchen__card p {
	color: #666;
	line-height: 1.6;
}

/* Kitchen Gallery */
.kitchen__gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
	margin-bottom: 30px;
}

.kitchen__gallery-item:hover {
	transform: translateY(-5px);
}

.kitchen__gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0,0,0,0.8));
	color: white;
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.kitchen__gallery-item:hover .kitchen__gallery-overlay {
	transform: translateY(0);
}

/* Kitchen Features */
.kitchen__features {
	background-color: #f8f9fa;
}

.kitchen__features-list {
	list-style: none;
	padding: 0;
}

.kitchen__features-list li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
}

.kitchen__features-list li:last-child {
	border-bottom: none;
}

.kitchen__features-list li i {
	color: #36B4E5;
	margin-right: 15px;
	font-size: 18px;
}

/* Banner positioning for bottom left */
.about__banner {
	position: relative;
	display: flex !important;
	align-items: flex-end !important;
	justify-content: flex-start !important;
	min-height: 100vh;
	padding-bottom: 50px;
	padding-left: 0;
}

.about__banner .container {
	max-width: none !important;
	padding-left: 50px !important;
	padding-right: 0 !important;
	margin: 0 !important;
	width: 100% !important;
}

.about__banner-content {
	position: static !important;
	text-align: left !important;
}

.about__banner-content-title {
	text-align: left !important;
	max-width: 600px !important;
	padding-left: 0 !important;
}

.about__banner-content-title h1 {
	font-size: 5rem !important;
	margin-bottom: 5px;
}

.about__banner-content-title p {
	font-size: 1.2rem !important;
	line-height: 1.4 !important;
	margin-top: 0;
}

/* Responsive Design */
/* Desktop/Laptop View */
@media (min-width: 769px) {
	.kitchen__banner {
		height: 100vh;
		min-height: 100vh;
		width: 100vw;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden;
	}

	/* Desktop Hamburger Menu Styles */
	.hamburger-menu {
		cursor: pointer;
		padding: 8px;
		display: flex !important;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 3px;
		border-radius: 50%;
		transition: all 0.3s ease;
		background: #000000 !important;
		width: 35px !important;
		height: 35px !important;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
		position: relative;
		top: 6px;
		left: 0;
		margin-left: auto;
		z-index: 1003 !important;
	}

	.hamburger-line {
		width: 14px !important;
		height: 1.5px !important;
		background: #ffffff !important;
		border-radius: 1px;
		transition: all 0.3s ease;
		transform-origin: center;
		display: block !important;
	}

	/* Show hamburger menu on desktop for kitchen page */
	.header__area-menubar-right {
		display: flex !important;
		align-items: center;
		justify-content: center;
		z-index: 1003 !important;
	}
}

@media (max-width: 768px) {
	/* Mobile Header Logo Styles - Match About Page */
	.header__area-menubar-left {
		display: block !important; /* Show logo container on mobile */
		order: 1;
		text-align: center !important; /* Center align the logo */
		padding: 0 !important; /* Remove all padding */
		margin: 0 !important; /* Remove all margins */
		background: transparent;
		position: absolute !important; /* Position absolutely for perfect centering */
		top: 0 !important; /* Align to top */
		left: 50% !important; /* Position at center horizontally */
		transform: translateX(-50%) !important; /* Perfect center alignment */
		z-index: 1001;
		width: 100% !important; /* Full width to ensure centering works */
	}

	.header__area-menubar-left-logo {
		display: block !important; /* Show logo on mobile */
		text-align: center !important; /* Center the logo within container */
	}

	.header__area-menubar-left-logo img {
		display: block !important;
		width: 280px !important; /* Logo size */
		height: 280px !important;
		position: relative !important;
		top: -120px !important; /* Adjust vertical positioning */
		margin: 0 auto !important; /* Center horizontally */
		padding: 0 !important;
		filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3)) drop-shadow(0 3px 6px rgba(0,0,0,0.2)) !important;
		transition: all 0.3s ease !important;
	}

	.header__area-menubar-left-logo:hover img {
		transform: translateY(-2px) !important;
	}

	/* Adjust header layout for mobile with logo */
	.header__area {
		padding: 0 !important;
		margin: 0 !important;
		position: relative;
		width: 100%;
		background: transparent !important;
		box-shadow: none !important;
		min-height: 160px !important; /* Ensure enough space for logo */
	}

	.header__area-menubar {
		display: flex !important;
		flex-direction: row !important;
		justify-content: space-between !important;
		align-items: flex-start !important;
		padding: 15px 20px !important; /* Consistent padding */
		margin: 0 !important;
		min-height: 160px !important; /* Match logo height requirements */
		position: relative;
		width: 100%;
		background: transparent !important;
		box-shadow: none !important;
	}

	/* Hide center menu on mobile */
	.header__area-menubar-center {
		display: none !important;
	}

	/* Hamburger menu positioning - match about page exactly */
	.header__area-menubar-right {
		position: absolute !important;
		top: -6px !important; /* Moved further to top */
		right: -6px !important; /* Moved further to right edge */
		z-index: 1002 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	/* Hamburger Menu Styles for Kitchen Page */
	.hamburger-menu {
		cursor: pointer;
		padding: 10px;
		display: flex !important;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
		border-radius: 50%;
		transition: all 0.3s ease;
		background: #000000 !important;
		width: 40px !important;
		height: 40px !important;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
		position: relative;
		top: 9px;
		left: 0;
		margin-left: auto;
		z-index: 1003 !important;
	}

	.hamburger-line {
		width: 16px !important;
		height: 2px !important;
		background: #ffffff !important;
		border-radius: 1px;
		transition: all 0.3s ease;
		transform-origin: center;
		display: block !important;
	}

	/* Hamburger Menu Hover Effects */
	.hamburger-menu:hover {
		transform: scale(1.1);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
	}

	.hamburger-menu:active {
		transform: scale(0.95);
	}

	/* Hamburger Menu Active State */
	.hamburger-menu.active .hamburger-line:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.hamburger-menu.active .hamburger-line:nth-child(2) {
		opacity: 0;
	}

	.hamburger-menu.active .hamburger-line:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

	.kitchen__banner {
		min-height: 70vh;
	}
	
	.kitchen__banner-content {
		bottom: 50px !important;
		left: 20px !important;
	}
	
	.kitchen__banner-title {
		font-size: 4rem !important;
		margin-bottom: 20px !important;
		line-height: 0.9 !important;
	}
	
	.kitchen__banner-description {
		font-size: 1rem !important;
		max-width: 350px !important;
		line-height: 1.4 !important;
	}
	
	.kitchen__section {
		padding: 50px 0;
	}
	
	.kitchen__card {
		padding: 20px;
	}
	
	.scroll-down-btn {
		bottom: 20px;
	}
	
	.scroll-arrow {
		width: 35px;
		height: 35px;
	}

	/* Side panel enhancements - match about page */
	.side-panel {
		width: 100% !important;
		max-width: 320px !important;
		height: 100vh !important;
		position: fixed !important;
		top: 0 !important;
		right: -100% !important;
		background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
		box-shadow: -5px 0 25px rgba(0,0,0,0.2) !important;
		transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
		z-index: 9999 !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch !important;
		display: block !important;
	}

	.side-panel.open {
		right: 0 !important;
	}

	/* Side Panel Header Enhancement */
	.side-panel-header {
		display: flex !important;
		justify-content: space-between !important;
		align-items: center !important;
		padding: 0 !important;
		position: relative !important;
		background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
		border-bottom: 1px solid rgba(233, 236, 239, 0.5) !important;
	}

	/* Side Panel Close Button */
	.side-panel-close {
		padding: 25px 30px !important;
		font-size: 24px !important;
		color: #333 !important;
		cursor: pointer !important;
		transition: all 0.3s ease !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		border-radius: 50% !important;
		width: 50px !important;
		height: 50px !important;
		background: rgba(255, 255, 255, 0.8) !important;
		margin: 10px !important;
	}

	.side-panel-close:hover {
		background: rgba(255, 255, 255, 1) !important;
		transform: rotate(90deg) scale(1.1) !important;
		color: #ff4757 !important;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
	}

	/* Side Panel Navigation */
	.side-panel-nav ul {
		list-style: none !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	.side-panel-nav li {
		margin: 0 !important;
		padding: 0 !important;
		border-bottom: 1px solid rgba(233, 236, 239, 0.3) !important;
	}

	.side-panel-nav li a {
		display: flex !important;
		align-items: center !important;
		padding: 18px 30px !important;
		color: #333 !important;
		text-decoration: none !important;
		font-weight: 500 !important;
		font-size: 16px !important;
		transition: all 0.3s ease !important;
		background: transparent !important;
	}

	.side-panel-nav li a:hover {
		background: rgba(54, 180, 229, 0.1) !important;
		color: #36B4E5 !important;
		padding-left: 40px !important;
	}

	.side-panel-nav li a i {
		margin-right: 15px !important;
		font-size: 18px !important;
		width: 20px !important;
		text-align: center !important;
		color: #36B4E5 !important;
	}

	/* Side Panel Footer */
	.side-panel .side-panel-footer {
		padding: 30px !important;
		background: rgba(54, 180, 229, 0.05) !important;
		border-top: 1px solid rgba(233, 236, 239, 0.3) !important;
		margin-top: auto !important;
	}

	.side-panel .side-panel-contact h4 {
		color: #000000 !important;
		font-size: 18px !important;
		font-weight: 600 !important;
		margin-bottom: 15px !important;
		padding-bottom: 8px !important;
		border-bottom: 2px solid #36B4E5 !important;
		display: inline-block !important;
	}

	.side-panel .side-panel-contact p {
		color: #000000 !important;
		font-size: 14px !important;
		margin-bottom: 10px !important;
		display: flex !important;
		align-items: center !important;
		line-height: 1.5 !important;
	}

	.side-panel .side-panel-contact p i {
		color: #000000 !important;
		margin-right: 10px !important;
		font-size: 16px !important;
		width: 20px !important;
		text-align: center !important;
	}

	.side-panel .side-panel-social {
		margin-top: 20px !important;
		padding-top: 20px !important;
		border-top: 1px solid rgba(233, 236, 239, 0.3) !important;
		display: flex !important;
		gap: 10px !important;
		justify-content: center !important;
		flex-wrap: wrap !important;
	}

	.side-panel .side-panel-social a {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 40px !important;
		height: 40px !important;
		background: #ffffff !important;
		color: #000000 !important;
		border: 2px solid #000000 !important;
		border-radius: 50% !important;
		text-decoration: none !important;
		font-size: 16px !important;
		transition: all 0.3s ease !important;
	}

	.side-panel .side-panel-social a:hover {
		background: #000000 !important;
		color: #ffffff !important;
		border: 2px solid #000000 !important;
		transform: translateY(-3px) !important;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4) !important;
	}

	.side-panel .side-panel-social a i {
		color: #000000 !important;
		font-size: 16px !important;
	}

	.side-panel .side-panel-social a:hover i {
		color: #ffffff !important;
	}

	/* Dropdown menu styles */
	.side-panel-nav .dropdown .sub-menu {
		list-style: none !important;
		padding: 0 !important;
		margin: 0 !important;
		background: rgba(54, 180, 229, 0.05) !important;
		border-left: 3px solid #36B4E5 !important;
		max-height: 0 !important;
		overflow: hidden !important;
		transition: max-height 0.3s ease !important;
	}

	.side-panel-nav .dropdown.active .sub-menu {
		max-height: 300px !important;
	}

	.side-panel-nav .dropdown .sub-menu li a {
		padding: 12px 50px !important;
		font-size: 14px !important;
		color: #666 !important;
		border-bottom: 1px solid rgba(233, 236, 239, 0.2) !important;
	}

	.side-panel-nav .dropdown .sub-menu li a:hover {
		color: #36B4E5 !important;
		background: rgba(54, 180, 229, 0.1) !important;
		padding-left: 60px !important;
	}

	.side-panel-nav .dropdown .sub-menu li a.active {
		color: #36B4E5 !important;
		font-weight: 600 !important;
		background: rgba(54, 180, 229, 0.1) !important;
	}
}

/* Responsive styles for centered banner on mobile */
@media (max-width: 768px) {
	.about__banner {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		min-height: 100vh !important;
		padding: 0 !important;
		position: relative !important;
	}

	.about__banner .container {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		height: 100% !important;
		padding: 0 20px !important;
		max-width: 100% !important;
	}

	.about__banner .row {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		margin: 0 !important;
	}

	.about__banner-content {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		text-align: center !important;
		width: 100% !important;
		padding: 0 !important;
		position: static !important;
	}

	.about__banner-content-title {
		text-align: center !important;
		width: 100% !important;
		max-width: 400px !important;
		margin: 0 auto !important;
	}
	
	.about__banner-content-title h1 {
		font-size: 3.5rem !important;
		margin-bottom: 20px !important;
		line-height: 1.1 !important;
		text-align: center !important;
	}
	
	.about__banner-content-title p {
		font-size: 1.1rem !important;
		line-height: 1.5 !important;
		text-align: center !important;
		margin: 0 auto !important;
		max-width: 350px !important;
	}
	
	.scroll-down-btn {
		bottom: 30px;
		right: 30px;
	}
}

@media (max-width: 576px) {
	.about__banner {
		min-height: 100vh !important;
	}

	.about__banner-content-title h1 {
		font-size: 3rem !important;
		margin-bottom: 15px !important;
		line-height: 1.1 !important;
	}

	.about__banner-content-title p {
		font-size: 1rem !important;
		max-width: 300px !important;
		line-height: 1.4 !important;
	}
	
	.kitchen__banner {
		min-height: 60vh;
	}
	
	.kitchen__banner-content {
		bottom: 40px !important;
		left: 15px !important;
	}
	
	.kitchen__banner-title {
		font-size: 3rem !important;
		margin-bottom: 15px !important;
	}
	
	.kitchen__banner-description {
		font-size: 0.95rem !important;
		max-width: 280px !important;
		line-height: 1.3 !important;
	}
	
	.about__banner .container {
		padding-left: 20px !important;
	}
	
	.about__banner {
		padding-bottom: 20px;
		padding-left: 0;
	}
	
	.about__banner-content-title h1 {
		font-size: 3rem !important;
		margin-bottom: 5px;
	}
	
	.about__banner-content-title p {
		font-size: 0.9rem !important;
	}
	
	.scroll-down-btn {
		bottom: 20px;
		right: 20px;
	}
}

/* Section Wrapper for 85% width */
.section-wrapper {
	width: 85%;
	margin: 0 auto;
	margin-bottom: -30px;
}

/* Kitchen Brand Section */
.kitchen-brand-section {
	padding: 30px 0;
	background-color: #ffffff;
	width: 100%;
}

.kitchen-brand-section .container {
	height: 100%;
	padding: 0;
}

.kitchen-brand-section .row {
	height: 100%;
	margin: 0;
	min-height: 160px;
}

.kitchen-brand-section .col-lg-6 {
	padding: 0;
}

.kitchen-brand-logo {
	background-color: #ffffff;
}

.kitchen-brand-text {
	background-color: #ffffff;
	padding-left: 30px;
}

.brand-logo {
	max-height: 100px;
	width: auto;
	object-fit: contain;
}

.brand-subheading {
	font-family: 'Poppins', sans-serif !important;
	font-size: 1.3rem;
	font-weight: 400;
	color: #333 !important;
	margin: 0;
	line-height: 1.5;
	max-width: 90%;
}

/* Responsive styles for brand section */
@media (max-width: 768px) {
	.section-wrapper {
		width: 90%;
		margin-bottom: 2px;
	}
	
	.kitchen-brand-section {
		padding: 20px 0;
	}
	
	.kitchen-brand-section .row {
		min-height: 140px;
	}
	
	.brand-logo {
		max-height: 80px;
	}
	
	.brand-subheading {
		font-size: 0.9rem;
	}
	
	.kitchen-brand-text {
		padding-left: 20px;
	}
}

@media (max-width: 576px) {
	.section-wrapper {
		width: 95%;
		margin-bottom: 5px;
	}
	
	.kitchen-brand-section {
		padding: 15px 0;
	}
	
	.kitchen-brand-section .row {
		min-height: 120px;
	}
	
	.brand-logo {
		max-height: 60px;
	}
	
	.brand-subheading {
		font-size: 0.8rem;
	}
	
	.kitchen-brand-text {
		padding-left: 15px;
	}
}

/* Kitchen Curved Images Section */
.kitchen-curved-images-section {
	width: 100%;
	padding: 30px 0;
	background-color: #ffffff;
}

.kitchen-curved-images-section .container {
	padding: 0;
}

.kitchen-curved-images-section .row {
	margin: 0;
}

.kitchen-curved-images-section .col-lg-7,
.kitchen-curved-images-section .col-lg-5 {
	padding: 0;
	height: 500px;
}

.curved-image-wrapper {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.curved-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
	margin: 15px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Individual styling for different sizes */
.curved-image-large .curved-image-wrapper {
	padding: 15px 15px 15px 30px;
}

.curved-image-small .curved-image-wrapper {
	padding: 15px 30px 15px 15px;
}

.curved-image-large .curved-image {
	border-radius: 20px;
}

.curved-image-small .curved-image {
	border-radius: 15px;
}

/* Responsive styles for curved images */
@media (max-width: 768px) {
	.kitchen-curved-images-section .col-lg-7,
	.kitchen-curved-images-section .col-lg-5 {
		height: 380px;
	}
	
	.curved-image {
		border-radius: 12px;
		margin: 10px;
	}
	
	.curved-image-large .curved-image-wrapper,
	.curved-image-small .curved-image-wrapper {
		padding: 10px 20px;
	}
}

@media (max-width: 576px) {
	.kitchen-curved-images-section .col-lg-7,
	.kitchen-curved-images-section .col-lg-5 {
		height: 320px;
	}
	
	.curved-image {
		border-radius: 10px;
		margin: 8px;
	}
	
	.curved-image-large .curved-image-wrapper,
	.curved-image-small .curved-image-wrapper {
		padding: 8px 15px;
	}
}

/* Why Choose Section */
.why-choose-section {
	width: 100%;
	padding: 50px 0 30px 0;
	background-color: #ffffff;
	margin-top: 30px;
}

.why-choose-title {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-size: 3.5rem;
	font-weight: 600;
	color: #333 !important;
	margin: 0;
	margin-bottom: 20px;
	margin-left: 30px;
	letter-spacing: -0.02em;
	text-align: left;
}

.why-choose-answer {
	font-family: 'Poppins', sans-serif !important;
	font-size: 1.25rem;
	font-weight: 400;
	color: #666 !important;
	line-height: 1.6;
	margin: 0;
	margin-left: 30px;
	text-align: left;
}

/* Why Choose Reasons Grid */
.why-choose-reasons {
	margin-top: 40px;
	margin-left: 25px;
	margin-right: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.why-choose-reasons .col-lg-4,
.why-choose-reasons .col-md-6 {
	display: flex;
	align-items: stretch;
	margin-bottom: 20px;
	padding-left: 0px;
	padding-right: 8px;
}

.reason-card {
	background: #ffffff;
	padding: 16px 18px;
	border-radius: 14px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1.5px solid #d5d5d5;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: left;
	min-height: 120px;
}

.reason-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #36B4E5, #4FC3F7);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.reason-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(54, 180, 229, 0.15);
	border-color: #36B4E5;
}

.reason-card:hover::before {
	transform: scaleX(1);
}

.reason-title {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-size: 1.2rem;
	font-weight: 600;
	color: #333 !important;
	margin: 0;
	margin-bottom: 2px;
	line-height: 1.2;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-shrink: 0;
	text-align: left;
	width: 100%;
}

.reason-icon {
	color: #36B4E5 !important;
	font-size: 1.2rem;
	margin-right: 12px;
	min-width: 20px;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.reason-card:hover .reason-icon {
	transform: scale(1.1);
	color: #2196F3 !important;
}

.reason-description {
	font-family: 'Poppins', sans-serif !important;
	font-size: 0.9rem;
	font-weight: 400;
	color: #666 !important;
	line-height: 1.4;
	margin: 0;
	transition: color 0.3s ease;
	flex-grow: 1;
	text-align: left;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
}

.reason-card:hover .reason-description {
	color: #555 !important;
}

/* Responsive styles for why choose section */

/* Large screens (lg) - 3 columns */
@media (min-width: 992px) {
	.why-choose-reasons .col-lg-4 {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
		padding-left: 0px;
		padding-right: 10px;
	}
}

/* Medium screens (md) - 2 columns */
@media (min-width: 768px) and (max-width: 991.98px) {
	.why-choose-reasons .col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
		padding-left: 8px;
		padding-right: 8px;
	}
	
	.why-choose-reasons {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.reason-card {
		padding: 14px 16px;
		min-height: 110px;
		justify-content: center;
		align-items: center;
		text-align: left;
	}
}

/* Small and extra small screens - 1 column */
@media (max-width: 767.98px) {
	.why-choose-section {
		padding: 40px 0 25px 0;
		margin-top: 20px;
	}
	
	.why-choose-reasons {
		margin-top: 30px;
		margin-left: 20px;
		margin-right: 20px;
		flex-direction: column;
	}
	
	.why-choose-reasons .col-lg-4,
	.why-choose-reasons .col-md-6 {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 15px;
		padding-left: 0;
		padding-right: 0;
	}
	
	.reason-card {
		padding: 12px 14px;
		border-radius: 12px;
		min-height: 100px;
		justify-content: center;
		align-items: center;
		text-align: left;
	}
	
	.reason-card::before {
		height: 2px;
		border-radius: 12px 12px 0 0;
	}
	
	.reason-title {
		font-size: 1.1rem;
		justify-content: flex-start;
		margin-bottom: 1px;
	}
	
	.reason-icon {
		font-size: 1.1rem;
		margin-right: 10px;
	}
	
	.reason-description {
		font-size: 0.9rem;
	}
	
	.why-choose-title {
		font-size: 2.8rem;
		margin-bottom: 15px;
		margin-left: 20px;
	}
	
	.why-choose-answer {
		font-size: 1.1rem;
		margin-left: 20px;
	}
}

/* Extra small screens - enhanced mobile layout */
@media (max-width: 576px) {
	.why-choose-section {
		padding: 30px 0 20px 0;
		margin-top: 15px;
	}
	
	.why-choose-reasons {
		margin-top: 25px;
		margin-left: 15px;
		margin-right: 15px;
	}
	
	.why-choose-reasons .col-lg-4,
	.why-choose-reasons .col-md-6 {
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 12px;
	}
	
	.reason-card {
		padding: 10px 12px;
		border-radius: 10px;
		min-height: 90px;
		justify-content: center;
		align-items: center;
		text-align: left;
	}
	
	.reason-card::before {
		height: 2px;
		border-radius: 10px 10px 0 0;
	}
	
	.reason-title {
		font-size: 1rem;
		margin-bottom: 1px;
		justify-content: flex-start;
	}
	
	.reason-icon {
		font-size: 1rem;
		margin-right: 8px;
	}
	
	.reason-description {
		font-size: 0.85rem;
	}
	
	.why-choose-title {
		font-size: 2.2rem;
		margin-bottom: 12px;
		margin-left: 15px;
	}
	
	.why-choose-answer {
		font-size: 1rem;
		margin-left: 15px;
	}
}

/* Kitchen Quality Section */
.kitchen-quality-section {
	width: 100%;
	padding: 60px 0;
	background-color: #ffffff;
	margin-top: 20px;
}

/* Horizontal Image */
.quality-horizontal-image {
	width: calc(100% + 30px);
	margin-bottom: 25px;
	margin-left: -15px;
	overflow: hidden;
	border-radius: 16px;
}

.horizontal-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 16px;
	transition: transform 0.3s ease;
}

.horizontal-image:hover {
	transform: scale(1.02);
}

/* Content and Image Row */
.quality-content-row {
	margin-top: 20px;
	align-items: stretch;
	min-height: 800px;
	--bs-gutter-x: 0px;
	margin-left: -15px;
	margin-right: 0;
	width: calc(100% + 30px);
}

/* Left Content Container */
.quality-content-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 30px;
	padding-top: 40px;
	padding-bottom: 40px;
	padding-right: 20px;
	min-height: 800px;
	height: 100%;
	background-color: #e9e7e7;
	border-radius: 16px;
	margin-left: 0;
}

.quality-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}

.quality-title {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-size: 3.2rem;
	font-weight: 600;
	color: #2d1a0c !important;
	margin: 0;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
	text-align: left;
	line-height: 1.2;
}

.quality-description {
	font-family: 'Poppins', sans-serif !important;
	font-size: 1.1rem;
	font-weight: 400;
	color: #2d1a0c !important;
	line-height: 1.7;
	margin: 0 0 30px 0;
	text-align: left;
}

.quality-specs {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.spec-item {
	font-family: 'Poppins', sans-serif !important;
	background: rgba(45, 26, 12, 0.05);
	border-radius: 12px;
	padding: 20px;
	border-left: 4px solid #2d1a0c;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(45, 26, 12, 0.1);
}

.spec-item:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(45, 26, 12, 0.15);
}

.spec-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.spec-icon {
	font-size: 1.2rem;
	width: 32px;
	height: 32px;
	background: #2d1a0c;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.spec-header strong {
	font-weight: 600;
	color: #2d1a0c !important;
	font-size: 1rem;
	line-height: 1.3;
}

.spec-detail {
	font-size: 0.9rem;
	color: #2d1a0c !important;
	line-height: 1.5;
	opacity: 0.8;
	margin-left: 44px;
}

/* Right Vertical Image Container */
.quality-image-container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 800px;
	height: 100%;
	padding-left: 20px;
	padding-right: 30px;
	margin-right: 0;
}

.quality-vertical-image {
	width: 100%;
	height: 800px;
	overflow: hidden;
	border-radius: 16px;
}

.vertical-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	transition: transform 0.3s ease;
}

.vertical-image:hover {
	transform: scale(1.02);
}

/* Responsive styles for Kitchen Quality section */
@media (max-width: 991.98px) {
	.quality-content-row {
		min-height: 700px;
		--bs-gutter-x: 0px;
		margin-left: -10px;
		width: calc(100% + 20px);
	}
	
	.quality-content-container {
		padding-left: 25px;
		padding-top: 35px;
		padding-bottom: 35px;
		padding-right: 15px;
		margin-bottom: 30px;
		min-height: 700px;
		height: 100%;
		background-color: #bcb3aa;
		border-radius: 14px;
	}
	
	.quality-title {
		font-size: 2.8rem;
		margin-bottom: 15px;
	}
	
	.quality-description {
		font-size: 1rem;
		margin-bottom: 25px;
	}
	
	.spec-item {
		padding: 18px;
	}
	
	.spec-icon {
		width: 30px;
		height: 30px;
		font-size: 1.1rem;
	}
	
	.spec-header strong {
		font-size: 0.95rem;
	}
	
	.spec-detail {
		font-size: 0.85rem;
		margin-left: 42px;
	}
	
	.quality-image-container {
		min-height: 700px;
		height: 100%;
		padding-left: 15px;
		padding-right: 25px;
	}
	
	.quality-vertical-image {
		height: 700px;
	}
	
	.horizontal-image {
		height: 250px;
	}
}

@media (max-width: 767.98px) {
	.kitchen-quality-section {
		padding: 40px 0;
		margin-top: 15px;
	}
	
	.quality-content-row {
		min-height: auto;
		flex-direction: column;
		--bs-gutter-x: 0px;
		margin-left: -10px;
		width: calc(100% + 20px);
	}
	
	.quality-horizontal-image {
		margin-bottom: 20px;
		width: calc(100% + 20px);
		margin-left: -10px;
	}
	
	.horizontal-image {
		height: 200px;
	}
	
	.quality-content-container {
		padding-left: 25px;
		padding-top: 30px;
		padding-bottom: 30px;
		padding-right: 25px;
		margin-bottom: 25px;
		min-height: 400px;
		background-color: #bcb3aa;
		border-radius: 12px;
	}
	
	.quality-title {
		font-size: 2.2rem;
		margin-bottom: 12px;
	}
	
	.quality-description {
		font-size: 0.95rem;
		line-height: 1.6;
		margin-bottom: 20px;
	}
	
	.spec-item {
		padding: 15px;
		margin-bottom: 15px;
	}
	
	.spec-icon {
		width: 28px;
		height: 28px;
		font-size: 1rem;
	}
	
	.spec-header strong {
		font-size: 0.9rem;
	}
	
	.spec-detail {
		font-size: 0.8rem;
		margin-left: 40px;
	}
	
	.quality-image-container {
		min-height: 500px;
		padding-left: 0;
		margin-top: 20px;
	}
	
	.quality-vertical-image {
		height: 500px;
	}
}

@media (max-width: 576px) {
	.kitchen-quality-section {
		padding: 30px 0;
		margin-top: 10px;
	}
	
	.quality-content-row {
		--bs-gutter-x: 0px;
		margin-left: -7px;
		width: calc(100% + 15px);
	}
	
	.quality-horizontal-image {
		width: calc(100% + 15px);
		margin-left: -7px;
		margin-bottom: 15px;
	}
	
	.quality-content-container {
		min-height: 350px;
		padding-left: 22px;
		padding-right: 22px;
		padding-top: 25px;
		padding-bottom: 25px;
		background-color: #bcb3aa;
		border-radius: 10px;
	}
	
	.horizontal-image {
		height: 180px;
	}
	
	.quality-title {
		font-size: 1.8rem;
	}
	
	.quality-description {
		font-size: 0.9rem;
		margin-bottom: 18px;
	}
	
	.spec-item {
		padding: 12px;
		margin-bottom: 12px;
	}
	
	.spec-icon {
		width: 26px;
		height: 26px;
		font-size: 0.9rem;
	}
	
	.spec-header strong {
		font-size: 0.85rem;
	}
	
	.spec-detail {
		font-size: 0.75rem;
		margin-left: 38px;
	}
	
	.quality-image-container {
		min-height: 400px;
		margin-top: 0;
		padding-left: 22px;
		padding-right: 22px;
	}
	
	.quality-vertical-image {
		height: 400px;
	}
}

/* Kitchen Process Section */
.kitchen-process-section {
	width: 100%;
	padding: 60px 0;
	background-color: #f8f9fa;
	margin-top: 20px;
}

.process-title {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-size: 3.2rem;
	font-weight: 600;
	color: #2d1a0c !important;
	margin: 0;
	margin-bottom: 15px;
	margin-left: 30px;
	letter-spacing: -0.02em;
	text-align: left;
}

.process-subtitle {
	font-family: 'Poppins', sans-serif !important;
	font-size: 1.2rem;
	font-weight: 400;
	color: #666 !important;
	line-height: 1.6;
	margin: 0;
	margin-left: 30px;
	margin-bottom: 50px;
	text-align: left;
}

.process-steps {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: nowrap;
	margin: 0 30px;
	gap: 20px;
}

.process-step {
	flex: 1;
	background: #ffffff;
	padding: 30px 20px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.process-step:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(45, 26, 12, 0.15);
	border-color: #2d1a0c;
}

.step-number {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-size: 2rem;
	font-weight: 700;
	color: #2d1a0c !important;
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px auto;
	border: 3px solid #2d1a0c;
}

.step-title {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-size: 1.3rem;
	font-weight: 600;
	color: #2d1a0c !important;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

.step-description {
	font-family: 'Poppins', sans-serif !important;
	font-size: 0.95rem;
	font-weight: 400;
	color: #666 !important;
	line-height: 1.5;
	margin: 0;
}

.process-arrow {
	color: #2d1a0c !important;
	font-size: 1.5rem;
	margin: 0 10px;
	flex-shrink: 0;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
}

.process-arrow:hover {
	transform: scale(1.2);
	color: #36B4E5 !important;
}

/* Responsive styles for Process section */
@media (max-width: 991.98px) {
	.process-steps {
		flex-wrap: wrap;
		gap: 15px;
		margin: 0 20px;
		align-items: stretch;
	}
	
	.process-step {
		flex: 1 1 calc(50% - 10px);
		padding: 25px 15px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	
	.process-arrow {
		display: none;
	}
	
	.step-number {
		width: 50px;
		height: 50px;
		font-size: 1.7rem;
		margin-bottom: 15px;
	}
	
	.step-title {
		font-size: 1.2rem;
	}
	
	.step-description {
		font-size: 0.9rem;
	}
	
	.process-title {
		font-size: 2.8rem;
		margin-left: 20px;
	}
	
	.process-subtitle {
		font-size: 1.1rem;
		margin-left: 20px;
		margin-bottom: 40px;
	}
}

@media (max-width: 767.98px) {
	.kitchen-process-section {
		padding: 40px 0;
		margin-top: 15px;
	}
	
	.process-steps {
		flex-direction: column;
		gap: 20px;
		margin: 0 15px;
		align-items: stretch;
	}
	
	.process-step {
		flex: 1 1 100%;
		padding: 20px 15px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	
	.step-number {
		width: 45px;
		height: 45px;
		font-size: 1.5rem;
		margin-bottom: 12px;
	}
	
	.step-title {
		font-size: 1.1rem;
		margin-bottom: 8px;
	}
	
	.step-description {
		font-size: 0.85rem;
	}
	
	.process-title {
		font-size: 2.4rem;
		margin-left: 15px;
	}
	
	.process-subtitle {
		font-size: 1rem;
		margin-left: 15px;
		margin-bottom: 30px;
	}
}

@media (max-width: 576px) {
	.kitchen-process-section {
		padding: 30px 0;
		margin-top: 10px;
	}
	
	.process-steps {
		margin: 0 10px;
		gap: 15px;
		align-items: stretch;
	}
	
	.process-step {
		padding: 18px 12px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	
	.step-number {
		width: 40px;
		height: 40px;
		font-size: 1.3rem;
		margin-bottom: 10px;
	}
	
	.step-title {
		font-size: 1rem;
		margin-bottom: 6px;
	}
	
	.step-description {
		font-size: 0.8rem;
	}
	
	.process-title {
		font-size: 2rem;
		margin-left: 10px;
	}
	
	.process-subtitle {
		font-size: 0.95rem;
		margin-left: 10px;
		margin-bottom: 25px;
	}
}

/* Discover Other Products Section */
.discover-products-section {
	width: 100%;
	padding: 60px 0;
	background-color: #ffffff;
	margin-top: 20px;
}

.discover-title {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-size: 3.2rem;
	font-weight: 600;
	color: #2d1a0c !important;
	margin: 0;
	margin-bottom: 15px;
	margin-left: 30px;
	letter-spacing: -0.02em;
	text-align: left;
}

.discover-subtitle {
	font-family: 'Poppins', sans-serif !important;
	font-size: 1.2rem;
	font-weight: 400;
	color: #666 !important;
	line-height: 1.6;
	margin: 0;
	margin-left: 30px;
	margin-bottom: 50px;
	text-align: left;
}

.products-slider-wrapper {
	margin: 0 30px;
	position: relative;
}

.products-swiper {
	overflow: hidden;
	padding: 10px 0 50px 0;
}

.products-swiper .swiper-wrapper {
	align-items: stretch;
}

.products-swiper .swiper-slide {
	height: auto;
	min-height: 450px;
	display: flex;
}

.product-card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	overflow: hidden;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 2px solid transparent;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(45, 26, 12, 0.15);
	border-color: #2d1a0c;
}

.product-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-content {
	padding: 25px 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.product-title {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segui UI', sans-serif !important;
	font-size: 1.4rem;
	font-weight: 600;
	color: #ffffff !important;
	margin: 0;
	line-height: 1.3;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-description {
	font-family: 'Poppins', sans-serif !important;
	font-size: 0.95rem;
	font-weight: 400;
	color: #666 !important;
	line-height: 1.5;
	margin: 0 0 20px 0;
	flex-grow: 1;
	display: none;
}

.product-link {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-size: 0.95rem;
	font-weight: 600;
	color: #2d1a0c !important;
	text-decoration: none;
	padding: 12px 20px;
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	border-radius: 8px;
	transition: all 0.3s ease;
	text-align: center;
	border: 2px solid #2d1a0c;
	display: none;
}

.product-link:hover {
	background: #2d1a0c;
	color: #ffffff !important;
	transform: translateY(-2px);
}

/* Swiper Navigation */
.products-next,
.products-prev {
	color: #2d1a0c !important;
	background: #ffffff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 2px solid #2d1a0c;
}

.products-next:hover,
.products-prev:hover {
	background: #2d1a0c;
	color: #ffffff !important;
	transform: scale(1.1);
}

.products-next::after,
.products-prev::after {
	font-size: 16px;
	font-weight: 700;
}

/* Swiper Pagination */
.products-pagination {
	bottom: 0 !important;
}

.products-pagination .swiper-pagination-bullet {
	background: #2d1a0c;
	opacity: 0.3;
	width: 12px;
	height: 12px;
	margin: 0 6px;
	transition: all 0.3s ease;
}

.products-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	transform: scale(1.2);
	background: #2d1a0c;
}

/* Responsive styles for Discover Products section */
@media (max-width: 991.98px) {
	.products-slider-wrapper {
		margin: 0 20px;
	}
	
	.products-swiper .swiper-slide {
		min-height: 400px;
	}
	
	.product-image {
		height: 100%;
	}
	
	.product-content {
		padding: 20px 15px;
	}
	
	.product-title {
		font-size: 1.3rem;
		margin: 0;
		color: #ffffff !important;
	}
	
	.product-description {
		font-size: 0.9rem;
		display: none;
	}
	
	.discover-title {
		font-size: 2.8rem;
		margin-left: 20px;
	}
	
	.discover-subtitle {
		font-size: 1.1rem;
		margin-left: 20px;
		margin-bottom: 40px;
	}
}

@media (max-width: 767.98px) {
	.discover-products-section {
		padding: 40px 0;
		margin-top: 15px;
	}
	
	.products-slider-wrapper {
		margin: 0 15px;
	}
	
	.products-swiper .swiper-slide {
		min-height: 350px;
	}
	
	.product-image {
		height: 100%;
	}
	
	.product-content {
		padding: 18px 12px;
	}
	
	.product-title {
		font-size: 1.2rem;
		margin: 0;
		color: #ffffff !important;
	}
	
	.product-description {
		font-size: 0.85rem;
		margin-bottom: 15px;
		display: none;
	}
	
	.product-link {
		font-size: 0.9rem;
		padding: 10px 15px;
		display: none;
	}
	
	.discover-title {
		font-size: 2.4rem;
		margin-left: 15px;
	}
	
	.discover-subtitle {
		font-size: 1rem;
		margin-left: 15px;
		margin-bottom: 30px;
	}
	
	.products-next,
	.products-prev {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 576px) {
	.discover-products-section {
		padding: 30px 0;
		margin-top: 10px;
	}
	
	.products-slider-wrapper {
		margin: 0 10px;
	}
	
	.products-swiper .swiper-slide {
		min-height: 300px;
	}
	
	.product-image {
		height: 100%;
	}
	
	.product-content {
		padding: 15px 10px;
	}
	
	.product-title {
		font-size: 1.1rem;
		margin: 0;
		color: #ffffff !important;
	}
	
	.product-description {
		font-size: 0.8rem;
		margin-bottom: 12px;
	}
	
	.product-link {
		font-size: 0.85rem;
		padding: 8px 12px;
	}
	
	.discover-title {
		font-size: 2rem;
		margin-left: 10px;
	}
	
	.discover-subtitle {
		font-size: 0.95rem;
		margin-left: 10px;
		margin-bottom: 25px;
	}
	
	.products-next,
	.products-prev {
		width: 40px;
		height: 40px;
	}
}

/*==========================================================================
* Kitchen Footer CSS
==========================================================================*/

.kitchen-footer {
	background: #000000;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 80px;
	padding-bottom: 0;
}

/* Ensure no white space below footer */
.kitchen-footer {
	margin-bottom: 0 !important;
}

body {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

html {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

/* Override any global styles that might add space */
* {
	box-sizing: border-box;
}

/* Ensure footer is the last element with no spacing */
.kitchen-footer {
	position: relative;
	z-index: 1;
}

/* Remove any potential spacing from scroll buttons or other elements */
.scroll-up {
	margin-bottom: 0 !important;
	position: fixed !important;
}

/* Force page to end at footer */
body.kitchen-page {
	margin: 0 !important;
	padding: 0 !important;
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.kitchen-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
}

/* Footer Brand Section */
.footer-brand {
	position: relative;
}

.footer-logo {
	margin-bottom: 25px;
}

.footer-logo .logo-img {
	max-height: 60px;
	width: auto;
	filter: brightness(1.1) contrast(1.05);
	transition: all 0.3s ease;
}

.footer-logo .logo-img:hover {
	filter: brightness(1.3) contrast(1.1);
	transform: scale(1.02);
}

.footer-description {
	color: #cccccc;
	line-height: 1.7;
	margin-bottom: 30px;
	font-size: 15px;
	max-width: 320px;
}

.footer-contact-quick {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.kitchen-footer .footer-contact-quick .contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #ffffff;
	font-size: 14px;
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.kitchen-footer .footer-contact-quick .contact-item i {
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff !important;
	font-size: 14px;
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
}

.kitchen-footer .footer-contact-quick .contact-item span {
	color: #cccccc !important;
	transition: color 0.3s ease;
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
}

.kitchen-footer .footer-contact-quick .contact-item:hover span {
	color: #ffffff !important;
}

/* Footer Sections */
.footer-section {
	position: relative;
}

.footer-title {
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 12px;
	font-family: 'SF Pro Display', sans-serif;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, #ffffff, #cccccc);
	border-radius: 2px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links li a {
	color: #cccccc;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 15px;
	display: block;
}

.footer-links li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: #666666;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.footer-links li a:hover {
	color: #ffffff;
	padding-left: 20px;
}

.footer-links li a:hover::before {
	background: #ffffff;
	transform: translateY(-50%) scale(1.3);
}

/* Social Links */
.footer-social {
	display: flex;
	gap: 12px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: #cccccc;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 16px;
}

.social-link:hover {
	background: #ffffff;
	color: #000000;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
	border-color: #ffffff;
}

/* Newsletter Section */
.newsletter-section {
	margin-top: 25px;
}

.newsletter-title {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	font-family: 'SF Pro Display', sans-serif;
}

.newsletter-text {
	color: #cccccc;
	font-size: 13px;
	margin-bottom: 15px;
}

.newsletter-form {
	display: flex;
	gap: 8px;
	max-width: 250px;
}

.newsletter-input {
	flex: 1;
	padding: 12px 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	border-radius: 6px;
	color: #ffffff;
	font-size: 14px;
	transition: all 0.3s ease;
}

.newsletter-input::placeholder {
	color: #999999;
}

.newsletter-input:focus {
	outline: none;
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
	width: 45px;
	height: 45px;
	background: #ffffff;
	border: none;
	border-radius: 6px;
	color: #000000;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.newsletter-btn:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

/* Footer Bottom */
.footer-bottom {
	margin-top: 50px;
	padding-top: 30px;
	padding-bottom: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
	color: #cccccc;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}

.copyright-text .divider {
	margin: 0 10px;
	color: #666666;
}

.footer-bottom-links {
	display: flex;
	justify-content: flex-end;
	gap: 25px;
	flex-wrap: wrap;
}

.footer-bottom-links a {
	color: #cccccc;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: #ffffff;
}

/* Footer Background Elements */
.footer-bg-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.footer-bg-elements .bg-shape-1 {
	position: absolute;
	top: 20%;
	right: 10%;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

.footer-bg-elements .bg-shape-2 {
	position: absolute;
	bottom: 30%;
	left: 5%;
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite reverse;
}

.footer-bg-elements .bg-shape-3 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255,255,255,0.01) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 10s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

/* Footer Content Layer */
.kitchen-footer .container {
	position: relative;
	z-index: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
	.kitchen-footer {
		padding-top: 60px;
		padding-bottom: 0;
	}
	
	.footer-section {
		margin-bottom: 40px;
	}
	
	.footer-bottom {
		margin-top: 40px;
		padding-top: 25px;
		padding-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.kitchen-footer {
		padding-top: 50px;
		padding-bottom: 0;
	}
	
	.footer-bottom-links {
		justify-content: center;
		margin-top: 20px;
	}
	
	.footer-bottom .row {
		text-align: center;
	}
	
	.footer-social {
		justify-content: center;
	}
	
	.copyright-text {
		text-align: center;
	}
	
	.footer-description {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.footer-bottom-links {
		flex-direction: column;
		gap: 15px;
		align-items: center;
	}
	
	.footer-social {
		justify-content: center;
	}
	
	.newsletter-form {
		max-width: 100%;
	}
	
	.social-link {
		width: 38px;
		height: 38px;
		font-size: 14px;
	}
	
	.footer-bottom {
		padding-bottom: 25px;
	}
}

/*==========================================================================
* Final Override - Remove All White Space Below Footer
==========================================================================*/

/* Force the page to end at the footer with no white space */
.kitchen-page {
	margin: 0 !important;
	padding: 0 !important;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	height: 100vh;
	overflow-x: hidden;
}

.kitchen-page main {
	flex-grow: 1;
}

.kitchen-footer {
	margin-top: auto;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	flex-shrink: 0;
}

/* Override any global margin/padding that might create white space */
.kitchen-page::after,
.kitchen-page::before,
.kitchen-footer::after,
.kitchen-footer::before {
	content: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Ensure no elements after footer create space */
.kitchen-page > *:last-child {
	margin-bottom: 0 !important;
}

/* Force browser default overrides */
html.kitchen-html,
body.kitchen-page {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	outline: 0 !important;
	height: 100% !important;
}

/* Remove any potential spacing from background elements */
.footer-bg-elements {
	margin: 0 !important;
	padding: 0 !important;
}

/* Aggressive footer positioning */
.kitchen-footer {
	position: relative;
	bottom: 0;
	width: 100%;
	margin: 0 !important;
	padding-bottom: 0 !important;
}

/* Override any Bootstrap or global styles */
.kitchen-page .container-fluid,
.kitchen-page .container {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

/* Remove any potential spacing from scripts or other elements */
.kitchen-page script {
	margin: 0 !important;
	padding: 0 !important;
}

/* Force viewport height calculation */
.kitchen-page {
	min-height: 100vh !important;
	max-height: 100vh !important;
	height: 100vh !important;
}

/* Ensure footer sticks to very bottom */
.kitchen-footer {
	margin-top: auto !important;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}
