:root {
	--primary: #000;
	--secondary: #737373;
	--light-bg: #f9f9f9;
	--border: #e0e0e0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Helvetica Neue', Arial, sans-serif;

}

body {
	background: #fff;
	color: var(--primary);
	line-height: 1.6;
}
a {
	color: #000;
}

article {
	padding: 40px 5%;
}
/* HEADER */
header {
	padding: 10px 5%;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}


.logo {
	font-size: 24px;
	font-weight: bold;

}

.header-logo {
	max-width: 50px;
	vertical-align: middle;
}

.logo span {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	text-transform: uppercase;
	font-size: 14px;
	text-align: center;
	margin-left: 10px;
	font-weight: initial;
	font-family: Georgia, 'Times New Roman', Times, serif;
}


.main-nav {
	display: flex;
	gap: 20px;
}

.main-nav a {
	text-decoration: none;
	color: var(--primary);
}

.main-nav a:hover {
	text-decoration: underline;
}

.shared-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}









.cart-icon {
	position: relative;
	font-size: 18px;
	color: var(--primary);
	text-decoration: none;
}

.cart-count {
	position: absolute;
	top: -6px;
	right: -10px;
	background: red;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	padding: 2px 6px;
	border-radius: 12px;
}

.mobile-menu-toggle {
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
	display: none;
}

nav.mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	border-top: 1px solid var(--border);
	flex-direction: column;
	padding: 20px 5%;
	gap: 15px;
	z-index: 10;
}

nav.mobile-nav a {
	color: var(--primary);
	text-decoration: none;
	padding: 8px 0;
}

nav.mobile-nav.active {
	display: flex;
}

/* HERO */
.hero {
	text-align: center;
	padding: 60px 5%;
	background: var(--light-bg);
	color:#fff;
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

/* PRODUCT GRID */
.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(200px, 1fr));
	gap: 30px;
	padding: 40px 5%;
}

.product-card {
	border: 1px solid var(--border);
	border-radius: 5px;
	overflow: hidden;
	transition: transform 0.3s;
	line-height: 0.7;
}

.product-card:hover {
	transform: translateY(-5px);
}

.product-image {
	height: 200px;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-info {
	padding: 0px 10px 10px 10px;
	text-align: center;
}

.product-price {
	font-weight: bold;
	margin: 10px 0;
}

.product-price-was {
  color: #6c7b77;
  font-size: 14px;
}

.save-tag {
  font-size: 14px;
}
.product-price{
	color: #f65402;
  font-size: 20px;
  display: block;
  line-height: 1;
}


.product-image {
  position: relative;
  width: 100%;
  padding-top: 75%; /* Makes it square based on width */
  background: #f5f5f5;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-title {
  margin-top:10px;
  line-height: 1.2;
  font-size: 20px;
  padding: 0px 10px;
}
.product-link {
  color: inherit;
  text-decoration: none;
  display: block;
  text-align: center;
}

.product-link:hover .product-title {
  text-decoration: underline;
}

@media only screen and (max-width: 750px) {
  .product-title { font-size: 15px; }
  .product-price { display: inline-block;}
  .product-price-was { display: inline-block;margin-left: 10px;}
}

/* FOOTER */
footer {
	background: var(--light-bg);
	padding: 40px 5%;
	text-align: center;
	border-top: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.main-nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-block;
	}

	.products {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.products {
		grid-template-columns: 1fr;
	}
	.hero{
		display:none;
	}
}


.footer-sticky {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: white;
	border-top: 1px solid #e5e7eb;
	box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
	padding: 6px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 999;
}

.footer-left {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 10px;
}

.footer-left img {
	width: 24px;
	height: 24px;
	border-radius: 4px;
}

.footer-left-text p {
	margin: 0;
	line-height: 1.2;
}

.footer-left-text p:first-child {
	font-weight: bold;
	font-size: 14px;
}

.footer-left-text p:last-child {
	font-size: 12px;
	color: gray;
}

.wa-button {
	background-color: #006d57;
	color: white;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 14px;
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 4px;
	margin-right: 10px;
}

.wa-button:hover {
	background-color: #1ebe5d;
}


/* Media Queries */
#wabutton {
	display: block;
}

@media (max-width: 639px) {
	.footer-sticky {
		display: flex;
	}

	#wabutton {
		display: none;
	}

	body {
		padding-bottom: 50px;
	}
}

@media (min-width: 640px) {
	.footer-sticky {
		display: none;
	}

	#wabutton {
		position: fixed;
		bottom: 20px;
		right: 20px;
		z-index: 999;
	}
}

#wabutton a {
	cursor: pointer;
	height: auto;
	width: auto;
	padding: 10px 10px 10px 10px;
	position: fixed !important;
	color: #fff;
	bottom: 20px;
	right: 20px;
	display: flex;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	font-family: sans-serif;
	align-items: center;
	z-index: 999999999 !important;
	background-color: #006d57;
	box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.4);
	border-radius: 100px;
	animation: none;
}

.fb-button {
	background-color: transparent;
	color: inherit;
	padding: 0;
	border-radius: 0;
	font-size: inherit;
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 8px;
	box-shadow: none;
}

.fb-button img {
	width: 32px;
	height: 32px;
	border-radius: 16px;
}


/*======CART======***/

/* Overlay Drawer */
.cart-drawer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s;
	z-index: 999;
}

.cart-drawer-overlay.active {
	opacity: 1;
	visibility: visible;
}

.cart-drawer {
	position: fixed;
	top: 0;
	right: -100%;
	height: 100%;
	width: 90%;
	max-width: 400px;
	background: #fff;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	transition: right 0.3s;
	z-index: 1000;
}

.cart-drawer.open {
	right: 0;
}

/* Header */
.cart-header {
	padding: 16px;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cart-header h2 {
	font-size: 1.2rem;
}

.cart-close {
	font-size: 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
}

/* Items */
.cart-items {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
}

.cart-item {
	display: flex;
	margin-bottom: 16px;
	position: relative;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 10px;
}

.cart-item img {
	width: 100%;
	height: 100%;
	max-width: 80px;
	object-fit: cover;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.item-details {
	margin-left: 12px;
	flex: 1;
}

.item-details h3 {
	font-size: 0.95rem;
	margin-bottom: 6px;
	max-width: 80%;
	font-weight: normal;
	line-height: 1.3;
}

.qty-controls {
	display: inline-flex;
	border: 1px solid #ccc;
	border-radius: 4px;
	overflow: hidden;
}

.qty-controls button {
	width: 24px;
	height: 24px;
	border: none;
	background: #f0f0f0;
	cursor: pointer;
}

.qty-controls .qty {
	width: 30px;
	text-align: center;
}

.item-price {
	font-weight: bold;
	margin-top: 6px;
}

.remove-item {
	position: absolute;
	top: 4px;
	right: 4px;
	border: none;
	background: none;
	font-size: 1.2rem;
	cursor: pointer;
}

/* Footer */
.cart-footer {
	padding: 16px;
}

.cart-footer p {
	margin-bottom: 4px;
	font-size: 12px;
	color: #737373;
}

.checkout-btn {
	width: 100%;
	background: #333;
	color: #fff;
	padding: 12px;
	font-weight: bold;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}


.cart-content {
	flex: 1;
	padding: 16px;
	overflow-y: auto;
}

.cart-empty {
	text-align: center;
	padding: 40px 20px;
	color: #555;
}

.cart-empty .empty-text {
	font-size: 1.2rem;
	margin-bottom: 24px;
}

.cart-empty .empty-icon {
	width: 96px;
	height: 96px;
	margin: 0 auto 24px;
	border-radius: 50%;
	background: #f6f7f6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-empty .continue-link {
	font-weight: 500;
	text-transform: uppercase;
	color: #2e2e2e;
	text-decoration: none;
	letter-spacing: 0.05em;
}

.cart-empty .continue-link:hover {
	text-decoration: underline;
}


/* Top Notification Bar */
.top-bar {
	background-color: #000;
	color: #fff;
	padding: 4px;
	overflow: hidden;
	position: relative;
	text-align: center;
}

.toolbar__wrapper {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}

.toolbar__text {
	display: inline-block;
	white-space: nowrap;
}

.ticker--animated {
	animation: scroll-left 10s linear infinite;
	will-change: transform;
}

@keyframes scroll-left {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}


.footer-menu {
  text-align: center;
}

.footer-menu a {
  display: inline-block;
  margin: 0 10px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #007bff;
}
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}




.btn {
  background: #000;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  border: 1px solid #000;
  margin-top: 10px;
}
.btn:hover {

  color: #e0e0e0;

}

.hide {
  display: none !important;
}

.qty-loader i {
  color: #999;
  animation-duration: 0.8s;
}

.copyright{

  font-size: 12px;
  color: #7b7b7b;
  margin-top: 10px;

}

.shipping-ul{text-align: justify;margin-top: 10px;}
.shipping-ul li{margin-bottom: 10px;}


	
.contact-form {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      max-width: 400px;
      width: 100%;
	  margin:0 auto;
	  text-align:left !important;
	  margin-bottom:20px;
    }

    .contact-form h2 {
      margin-bottom: 20px;
      font-size: 24px;
      color: #333;
    }

    .contact-form label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      color: #555;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px 12px;
      margin-bottom: 18px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
      transition: 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #4a90e2;
      outline: none;
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .contact-form button {
      background: #000;
      color: white;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      width: 100%;
      transition: background 0.3s;
    }

    .contact-form button:hover {
      background: #357ac9;
    }

#reload-capctha {
  text-align: right;
  display: inline-block;
  box-sizing: border-box;
  user-select: none;
  background-color: #fafafa;
  justify-content: space-between;
  vertical-align: top;
  margin-top: 25px;
  cursor: pointer;	
}



.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: white;
  z-index: 1000;
  flex-direction: column;
}

.cart-modal-title {
  width: 100%;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 4px 0;
}

.cart-modal-content {
  height: calc(100% - 28px); /* title height */
  display: flex;
  align-items: center;
  text-align: center;
}

.cart-modal-left,
.cart-modal-center,
.cart-modal-right {
  width: 33.33%;
}

.cart-modal-close {
  font-size: 28px;
  cursor: pointer;
  color: #222;
  font-weight: 300;
}

.cart-modal-image img {
  width: 60px;
  height: 60px;
  border-radius: 15%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.cart-modal-view {
  text-transform: uppercase;
  font-size: 13px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-weight: bold;
}



.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  flex-direction: column;
  overflow-y: auto;
  padding-bottom: 20px;
}

.search-modal-header {
  width: 100%;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  align-items: center;
  position: relative;
}

.search-modal-close {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}
.search-bar {
	position: relative;
	display: flex;
	align-items: center;
	width: 85%;
  margin: 0 auto;
}

.search-bar input {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 100%; /* Set the width to 100% so it doesn't shrink */
  transition: width 0.3s ease; /* Smooth transition */
}

.search-bar input:focus {
  width: 100%; /* Ensure width remains 100% on focus */
  outline: none;
}

.search-bar i {
  position: absolute;
  right: 10px;
  color: var(--secondary);
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%); /* Vertically center the icon */
}

.search-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 30px;
}

.search-modal-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.search-modal-item-image img {
  width: 80px;
  height: 80px;
  border-radius: 15%;
  object-fit: cover;
  margin-right: 15px;
}

.search-modal-item-details {
  display: flex;
  flex-direction: column;
}

.search-modal-item-title {
  font-size: 14px;
  font-weight: bold;
}

.search-modal-item-price {
  font-size: 12px;
  margin-top: 5px;
}

.search-modal-item-price .original-price {
  text-decoration: line-through;
  color: #777;
}

.search-modal-item-price .discounted-price {
  font-weight: bold;
  color: #ff5733;
}

.search-modal-view {
  text-transform: uppercase;
  font-size: 13px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px 20px;
  border: 1px solid #222;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.search-modal-view:hover {
  background-color: #f5f5f5;
}
.search-modal-btns {
  text-align: center;
}
.view-more-btn{
	display:none;
}

.custom-pagination-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0 20px;
}

.custom-pagination {
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: Arial, sans-serif;
}

.custom-pagination a,
.custom-pagination span.dots {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  min-width: 34px;
  text-align: center;
  transition: all 0.2s ease;
}

/* Hover effect: blue background, white text */
.custom-pagination a:hover:not(.active):not(.next) {
  background-color: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}

.custom-pagination a.active {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  pointer-events: none;
  border-color: #000;
}


.custom-pagination span.dots {
  border: none;
  background: transparent;
  color: #555;
  pointer-events: none;
}


.delivery-box {
  background-color: #f8f8f8;
  border: 1px solid #eee;
  font-family: sans-serif;
  color: #444;
  max-width: 600px;
}

.delivery-info {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 10px 10px 0px 10px;
}

.delivery-icon {
  margin-right: 6px;
  font-size: 16px;
}

.delivery-dates {
  font-size: 14px;
  font-weight: bold;
  padding: 0px 10px 5px;
}
