@charset "UTF-8";

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;1,300&display=swap');

/* Root Variables */
:root {
	--green: green;
	--black: #130f40;
	--light-color: #666;
	--box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, 0.4);
	--border: 2rem solid rgba(0, 0, 0, 0.1);
	--outline: .1rem solid rgba(0, 0, 0, 0.1);
	--yellow: #f1c40f;
}

/* Reset & base styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
}

/* Body */
body {
	background: #eee;
}

/* HTML Base */
html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
	scroll-padding-top: 7rem;
}

body {
	background: #eee;
}

/*css code for banner*/
section {
	padding: 2rem 9%;
}

.heading {
	text-align: center;
	padding: 2rem;
	padding-bottom: 3rem;
	font-size: 3.5rem;
	color: var(--black);
}

.heading span {
	background: var(--yellow);
	color: #fff;
	display: inline-block;
	padding: .5rem 3rem;
	clip-path: polygon(100% 0%, 90% 50%, 100% 100%, 0% 100%, 10% 50%, 0% 0%);
}



.btn {
  	background-color: #ff3c3c;
  	color: #fff;
  	padding: 10px 20px;
  	border-radius: 5px;
  	text-decoration: none;
  	font-weight: 500;
  	transition: all 0.3s ease; /* enables smooth animation */
}

.btn:hover {
  	background-color: #e02d2d;
  	transform: scale(1.05);
  	box-shadow: 0 0 10px rgba(255, 60, 60, 0.5); /* optional glow */
}

/* Header */
.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem 9%;
	background: #000000;
	box-shadow: var(--box-shadow);
	z-index: 1000;
}

/* Logo */
.header .logo {
	font-size: 2.5rem;
	font-weight: bolder;
	text-decoration: none;
	color: var(--black);
}

.logo-img {
 	height: 4rem;
	vertical-align: middle;
	margin-right: 0.5rem;
}

.header .logo i {
	color: var(--yellow);
	margin-right: .5rem;
}

/* Navbar */
.header .navbar {
	display: flex;
 	gap: 2rem;
  	transition: all 0.3s ease-in-out;
}

/* Default hidden navbar for mobile */
.header .navbar {
  	display: none;
  	flex-direction: column;
  	background: #fff;
  	position: absolute;
  	top: 100%;
  	right: 2rem;
  	width: 200px;
  	box-shadow: 0 0 10px rgba(0,0,0,0.1);
  	z-index: 1000;
}

/* Show navbar when active class is added */
.header .navbar.active {
  display: flex;
}


/* Nav links inside */
.header .navbar a {
  color: #333;
  font-size: 1.2rem;
  margin: 0.8rem 0;
  text-decoration: none;
}

.header .navbar a {
	font-size: 1.7rem;
	color: white;
	font-weight: bold;
	text-decoration: none;
	text-transform: capitalize;
	transition: color 0.2s ease-in-out;
}

.header .navbar a:hover {
	color: #ffcc00;
}

/* Icons Section */
.header .icons {
	display: flex;
	gap: 1rem;
}

 .icons .fa {
  color: white;
}

.header .icons div {
	border: 1px solid transparent;
	height: 4.5rem;
	width: 4.5rem;
	line-height: 4.5rem;
	border-radius: .5rem;
	background: #eee;
	color: var(--black);
	font-size: 2rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.header .icons div:hover {
	background: var(--yellow);
	color: #fff;
}

#menu-btn {
	display: none;
}

.header .search-form {
 	position: absolute;
  	top: 110%;
  	right: -110%;
  	max-width: 40rem;
	width: 100%;
  	height: 5rem;
  	background: #fff;
  	border-radius: .5rem;
	overflow: hidden;
  	display: flex; /* Hidden by default */
  	align-items: center;
  	box-shadow: var(--box-shadow);
}

/* Show when active (via JavaScript) */
.header .search-form.active {
	right: 2rem;
	transition: .4s linear;
}

.header .search-form input {
	height: 100%;
	width: 100%;
	background: none;
	text-transform: none;
	font-size: 1.6rem;
	color: var(--black);
	padding: 0 1.5rem;
	border: none;
	outline: none;
}

.header .search-form label {
	font-size: 2.2rem;
	padding-right: 1.5rem;
	color: var(--black);
	cursor: pointer;
}

.header .search-form label:hover {
	color: var(--yellow);
}

.header .shopping-cart {
	border: 0px solid;
	position: absolute;
	top: 110%;
	right: -110%;
	padding: 1rem;
	border-radius: .5rem;
	box-shadow: var(--box-shadow);
	width: 35rem;
	background:rgba(255, 255, 255, 0.95);
	z-index: 999;
	
	max-height: 60vh; 
	overflow-y: auto;
}

.header .shopping-cart.active {
	right: 2rem;
	transition: .4s linear;
}

.header .shopping-cart .box {
	border: 0px solid blue;
	display: flex;
	align-items: center;
	gap: 1.2rem;
	position: relative;
	margin: 1.5rem 0;
}

.header .shopping-cart .box .img {
	width: 7rem;
	height: auto;
	border-radius: .5rem;
	object-fit: contain;
}

.header .shopping-cart .box .fa-trash {
	font-size: 2rem;
	position: absolute;
	top: 50%;
	right: 2rem;
	cursor: pointer;
	color: var(--light-color);
	transform: translateY(-50%);
}

.header .shopping-cart .box .fa-trash:hover {
	color: red;
}

.header .shopping-cart .box .content h3 {
	color: var(--black);
	font-size: 1.5rem;
	padding-bottom: 1rem;
	margin: 0;
}

.header .shopping-cart .box .content span {
	display: block;
	color: var(--light-color);
	font-size: 1.3rem;
}

.header .shopping-cart .box .content quantity {
	padding-left: 1rem;
}

.header .shopping-cart .total {
	font-size: 2.5rem;
	padding: 1rem 0;
	text-align: center;
	color: var(--black);
}

.header .shopping-cart .btn {
	display: block;
	text-align: center;
	margin: 1.5rem auto 0 auto;
	background: #E74C3C;
	color: white;
	padding: .8rem;
	font-size: 1.6rem;
	border-radius: .5rem;
	width: 100%;
	max-width: 90%;
	cursor: pointer;
}

.header .shopping-cart .btn:hover {
	background: #c0392b; /* Slightly darker red like View More button */
	color: white;
}

.header .login-form {
	border: 1px solid;
	position: absolute;
	width: 30rem;
	top: 110%;
	right: -110%;
	box-shadow: var(--box-shadow);
	padding: 2rem;
	border-radius: .5rem;
	background: #fff;
	text-align: center;
}

.header .login-form.active {
	right: 2rem;
	transition: .4s linear;
}

.header .login-form h3 {
	font-size: 2.5rem;
	text-transform: uppercase;
	color: var(--black);
}

.header .login-form .box {
	border: 0px solid;
	margin: .7rem 0;
	width: 25rem;
	background: #eee;
	border-radius: .5rem;
	padding: 1rem;
	font-size: 1.6rem;
	color: var(--black);
	text-transform: none;
}

.header .login-form p {
	font-size: 1.4rem;
	padding: .5rem 0;
	color: var(--light-color);
}

.header .login-form p a {
	color: var(--green);
	text-decoration: underline;
}

.home {
	border: 1px solid;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: url("images/Rustic Wooden Table Overlooking Lush Farm Field.png") no-repeat;
	background-size: cover;
	padding: 17rem 9% 10rem 9%;
	height: 100vh; /* Optional: force to full screen height */
}

.home-text {
  flex: 1;
  color: white;
  max-width: 50%;
}

.home-text h3 {
  font-size: 5rem;
  font-weight: bold;
  color: white;
}

.home-text p {
  font-size: 2rem;
  margin: 1rem 0;
  color: white;
}

.home-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.home-image img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}


.home .content {
	border: 0px solid;
	text-align: center;
	width: 60rem;
}

.home .content h3 {
	color: white;
	font-size: 3rem;
}

.home .content h3 span {
	color: var(--yellow);
}

.home .content p {
	color: white;
	font-size: 1.7rem;
	padding: 1rem 0;
	line-height: 1.8;
}

.home-slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  background: url("images/Rustic Wooden Table Overlooking Lush Farm Field.png") no-repeat center center/cover;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Make sure content wraps on smaller screens */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem 10%;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  transform: translateX(100%);
  opacity: 0;
  background: rgba(0, 0, 0, 0.5); /* optional dark overlay */
  z-index: 0;
}


/* Active Slide (center) */
.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

/* Exiting to left */
.slide.exit-left {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 0;
}

/* Entering from right */
.slide.enter-right {
  opacity: 1;
  transform: translateX(100%);
  z-index:10;
}


.slider-container {
  display: flex;
  overflow: hidden;
  position: relative;
}

.slide .content {
  flex: 1 1 40%;
  max-width: 40%;
  color: white;
  z-index: 2;
  position: relative; /* Add this to allow z-index to work */
}

.slide p {
  font-size: 1.4rem;
  margin: 1rem 0;
}

.slide h3 {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.slide h3 span {
  display: block;
  position: relative;
  margin-bottom: 1rem;
}

.slide h3 span::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background-color: #00ffff; /* neon blue or change per line */
}


.slide .btn {
  background-color: #ff3c3c;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
}

.slide .home-image img {
	margin: 0 auto;
 	max-height: 500px;
  	width: auto;
  	z-index: 1;
  	flex: 1 1 50%;
  	display: block;
  	justify-content: center;
}

.slide .home-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.slide .content h3 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: white;
  position: relative;
  max-width: 90%; /* Optional: limits wide text from overflowing */
}
}

.slide .content h3 span {
  display: block;
  position: relative;
}

.slide .content h3 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #00f0ff;
  border-radius: 5px;
  margin-top: 0.5rem;
  display: none;
}

/*features*/
.features .box-container {
	border: 0px solid;
 	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  	gap: 2.5rem;
  	padding: 4rem 2rem;
}

.features .box-container .box {
  	background: #fff;
  	padding: 3rem 2rem;
  	text-align: center;
  	border-radius: 1rem;
  	box-shadow: var(--box-shadow);
  	transition: transform 0.3s ease;
	outline: var(--outline);
	min-height: 42rem;
}

.features .box-container .box:hover {
	box-shadow: 1px 1px 10px 4px var(--yellow); 
	transform: translateY(-5px);
}

.features .box-container .box img {
 	height: 33rem;
	width: 100%;
	object-fit: cover;
	margin-bottom: 1.5rem;
	border-radius: 0.5rem;
}

.features .box-container .box h3 {
 	font-size: 2rem; 
	line-height: 1.8;
 	color: var(--black);
 	margin-bottom: 1rem;
}

.features .box-container .box p {
 	font-size: 1.4rem;
	line-height: 1.8;
 	color: var(--light-color);
 	margin-bottom: 1.5rem;
}

/*features*/







/*products*/
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 2rem;
  padding: 2rem 9%;
  background: #eee;
}

.products .box {
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
  	scroll-snap-align: center;
	border: 0px solid red;
	background: #fff;
	border-radius: .5rem;
	text-align: center;
	padding: 2rem 2rem;
	justify-content: space-between;
	align-items: center;
	min-height: 48rem;
	box-shadow: var(--box-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products .box-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 1rem;
}

.products .box .btn {
  margin-top: auto;
}

.products .box:hover {
	box-shadow: 0 0 12px 4px rgba(241, 196, 15, 0.6);
	transform: translateY(-5px);
}


.products .box .btn {
  margin-top: auto;
}

.products .box img {
	height: 25rem;
	width: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 0.5rem;
}

.products .box h1{
	font-size: 2.2rem;
	color: var(--black);
	margin-bottom: 0.5rem;
	min-height: 6.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 1rem;
	line-height: 1.3;
	text-wrap: balance;
}

.products .box .btn {
	margin-top: auto;
	align-self: stretch; 
}

.products .box .price{
	font-size: 1.9rem;
	font-weight: 500;
	color: var(--light-color);
	margin-top: 0.8rem;
	margin-bottom: 0.3rem;
	padding: .5rem 0;
	justify-content: center;
	min-height: 3rem;
	display: flex;
	align-items: center;
}

.products .box i{
	font-size: 1.7rem;
	color: orange;
	padding: .5rem 0;
}

.products .swiper-wrapper {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}


.products-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-section .heading {
  text-align: center;
  margin-bottom: 2rem;
}

/* OPTIONAL: Center align text inside the <span> */
.products-section .heading span {
  display: inline-block;
}

.products::-webkit-scrollbar {
  height: 8px;
}

.products::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.products::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.products .box p, .products .box .price, .products .box .btn {
  margin-top: 0.5rem;
}


.swiper {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.swiper-slide-active {
  transform: translateX(0);
  opacity: 1;
}

.swiper-slide-prev {
  transform: translateX(-100px);
  opacity: 0.5;
}

.swiper-slide-next {
  transform: translateX(100px);
  opacity: 0.5;
}

.product-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding-bottom: 2rem;
  scroll-behavior: smooth;
}

.product-scroll-container .box {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 28rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.scroll-hint-container {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 1rem;
  z-index: 10;
}

.scroll-hint {
  font-size: 1.6rem;
  color: red;
  font-weight: 600;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  animation: blink 1.5s infinite;
  text-align: center;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
/*products*/

/*review*/
.review {
  overflow-x: hidden;
}

.review .swiper-slider {
  display: flex;
  gap: 1rem;
  padding: 2rem 9%;
  overflow: hidden;
  position: relative;
}

.swiper {
  overflow: hidden;
}


.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.2;
  transform: scale(0.95);
  z-index: 1;
  filter: blur(1px);
  pointer-events: none;
}

.review .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  min-height: 48rem;
  width: 24rem;
  transition: transform 0.3s ease;
}

.review .swiper-slide-active {
  box-shadow: 0 0 20px 4px var(--yellow);
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--yellow);
}

.review .review-slider .box {
  background: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* This spreads top, middle text, and bottom */
  height: 100%; /* ensure all boxes are same height */
  text-align: center;
}

.review-box {
  background: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  transition: 0.3s ease;
}
.review .review-slider .box:hover {
	box-shadow: 1px 1px 10px 4px var(--yellow); 
	transform: translateY(-5px);
}

.review .review-slider .box img {
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.review .review-slider .box p {
  padding: 1rem 0;
  line-height: 1.8;
  color: var(--light-color);
  font-size: 1.5rem;
  flex-grow: 1;
}

.review .review-slider .box h3 {
	padding-bottom: .5rem;
	color: var(--light-color);
	font-size: 2.2rem;
	margin-bottom: 0.5rem;
}


.review .review-slider .box .stars i {
	color: orange;
	font-size: 2.2rem;
	margin-bottom: 0.5rem;
}

.review + .review {
  margin-top: 3rem;
}

/*review*/

/*footer*/

.footer {
  background: black;
  color: white;
}

.footer .box-container {
	border: 0px solid;
	display:grid;
	grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
	gap: 1.5rem;
}

.footer .box-container .box a {
  font-size: 1.7rem;
  font-weight: bold;
  text-transform: capitalize;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease-in-out;
}

.footer .box-container .box a:hover {
  color: var(--yellow);
}

.footer .box-container .box .share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 4rem;
  background-color: #f0f0f0; /* Light background */
  border-radius: 0.8rem; /* More rounded square */
  font-size: 2rem;
  color: #1e1e1e;
  margin: 0 0.3rem;
  transition: all 0.3s ease;
}

.footer .box-container .box .share a:hover {
  background-color: var(--yellow);
  color: white;
}

.footer .box-container .box h3 i{
	color: white;
}

.footer .box-container .box h3,
.footer .box-container .box .subscribe-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.footer .box-container .box .links{
	display: block;
	font-size: 1.5rem;
	color: white;
	padding: 1rem 0;
}

.footer .box-container .box .links i{
	color: var(--yellow);
	padding-right: .5rem;
}

.footer .box-container .box .links:hover i{
	padding-right: 2rem;
}

.footer .box-container .box p{
	line-height: 1.8;
	font-size: 1.5rem;
	color: white;
	padding: 1rem 0;
}

.footer .box-container .box .share a{
	border: 1px solid;
	height: 4rem;
	width: 4rem;
	line-height: 4rem; 
	border-radius: .5rem;
	font-size: 2rem;
	color: var(--black);
	margin-left: .2rem;
}

.footer .box-container .box form {
  display: flex;
  gap: 0.8rem; /* control spacing between input and button */
  margin-top: 1rem;
  align-items: center;
}

.footer .box-container .box .email {
  flex: 1; /* take full available width */
  height: 4.3rem;
  padding: 1rem;
  font-size: 1.3rem;
  border-radius: 0.6rem;
  border: none;
  outline: none;
}

.footer .box-container .box .btn {
  height: 4.3rem;
  padding: 0 1.8rem;
  font-size: 1.3rem;
  white-space: nowrap;
  border-radius: 0.6rem;
}

/*footer*/

/*media queires */
@media (max-width: 1024px) {
	.scroll-hint {
    	display: block;
	}
}

@media (max-width: 991px) 
{
	html {
		font-size: 55%;
	}
	
	.header {
		padding: 2rem;
	}
	
	section {
		padding: 2rem;
	}

}

/* Make sure it's visible in desktop */
@media (min-width: 992px) {
  	.header .navbar {
    	display: flex !important;
    	position: static;
    	flex-direction: row;
    	background: none;
    	box-shadow: none;
  	}

 	.header .navbar.active {
   		display: flex !important;
  	}

}

@media (max-width: 992px) {
	.header .navbar a {
    	color: black; /* for dropdown menu only */
  }
}

@media (max-width: 768px) {
	#menu-btn {
		display: inline-block;
	}
	
	.header .navbar a {
    	color: black; /* for dropdown menu only */
  }
	
	.header .search-form {
		width: 90%;
	}
	
	.header .navbar {
		position: absolute;
		top: 110%;
		right: -110%;
		width: 32rem;
		box-shadow: var(--box-shadow);
		border-radius: .5rem;
		background: #fff;
		
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 2rem;
	}
	
	.header .navbar.active {
		right: 2rem;
		transition: .4s linear;
	}

	.header .navbar a {
		font-size: 2rem;
		margin: 1rem 0;
		display: block;
		flex-direction: column;
		align-items: flex-start;
		padding: .5rem 1.5rem;
	}
	
  	.home-image {
    	display: none !important;
 	}
	
	.review .swiper-slide.box,
  	.review .review-slider .box {
    	width: 100%;
    	max-width: 90%;
    	margin: 1rem auto;
 	}

  	.review .swiper-slider {
    	flex-direction: column;
    	align-items: center;
  	}
	
  .footer .box-container .box .share a {
    height: 3.5rem;
    width: 3.5rem;
    font-size: 1.8rem;
  }

  .footer .box-container .box h3,
  .footer .box-container .box p {
    font-size: 1.3rem;
  }

  .footer .box-container .box .email {
  font-size: 0.9rem;
  }
	
  .footer .box-container .box .btn {
  font-size: 0.9rem;
  }
}

@media (max-width: 450px) 
{
	html {
		font-size: 50%;
	}
	
	.heading {
		font-sizeL 2.5rem;
	}
	
	.home-image {
    	display: none !important; 
  	}
	
	.footer .box-container .box .email {
  		font-size: 0.7rem;
  }
	
  	.footer .box-container .box .btn {
  		font-size: 0.7rem;
  }
}