/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body.page, body {
  width:100%; height:auto; margin:0 auto; padding:0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #1E1E1E;
  background-color: #FFFFFF;
}
img {border:thin none #0066FF; max-width: 100%;}
p, h1, h2, h3, h4, h5, h6, ul, li {
  margin:0px;
  padding:0px;
  list-style-type:none;
}
a {text-decoration:none}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
}
.container2 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
}
/* Top Banner */
.top-banner {
  background-color: #FFFFFF;
  padding: 11px 0;
  border-bottom: 1px solid #E7E7E7;
  overflow: hidden;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 177px;
  animation: scroll 20s linear infinite;
}

.banner-text {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
  padding: 0 0px;
  display: block;
  box-sizing: border-box;
  text-align: center;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Header */
.header {
  background-color: #FFFFFF;
  margin: 0 0 2px 0;
}

.header-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  height: 74px;
}

.contact-info {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.logo-container {
  display: flex;
  justify-content: center;
}
.logo-container a {font-size: 0;}
.logo {
  height: 53px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 18px 0 0;
      flex: 1;
    justify-content: flex-end;
}

input[type="text"].search-input,
.search-input {
  width: 187px;
  height: 34px;
  padding: 0 40px 0 18px;
  border: 1px solid #D9D9D9;
  border-radius: 17px;
  font-size: 14px;
  color: #777777;
  outline: none;
  line-height: 34px;
}

.search-btn {
  position: absolute;
  right: 0px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px 8px 10px;
}

.cart-icon {
  position: relative; font-size: 0;
}
.user-icon {
    font-size: 0;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #F7754B;
  color: #FFFFFF;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navigation */
.navigation {
  background-color: #732413;
  padding: 0px 0;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 60px;
}

.nav-menu li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Section */
.hero {
  position: relative;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-button {
  position: absolute;
  bottom: 132px;
  right: 576px;
  background-color: #732413;
  color: #FFFFFF;
  border: none;
  padding: 15px 61px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #5a1c0f;
}

/* Category Section */
.category-section {
  padding: 35px 0 0;
}

.category-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.category-item {
  flex: 1;  
  overflow: hidden;
  font-size: 0;
}

.category-item img {
  border-radius: 8px;
  max-width: 100%;
}

/* Best Selling Products */
.best-selling {
  padding: 40px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1E1E1E;
}

.view-more {
  color: #F7754B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;  
  overflow: hidden;
  transition: transform 0.3s ease;
}
.product-card a {display: inline-block; vertical-align: middle; }
.product-img {line-height: 0;}
.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}
.product-img a {
    display: block;
}

.product-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.action-btn {
  width: 34px;
  height: 34px;
  background-color: #F7754B;
  border: none;
  border-radius: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.action-btn:first-child {
  background-color: transparent;
  border: 1px solid #F7754B;
}

.product-info {
  padding: 15px 0;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 500;  
  margin-bottom: 8px;
  line-height: 22px;
}
.product-info h3 a {color: #1E1E1E;}
.product-info h3 a:hover {color: #732413;}
.price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.old-price {
  font-size: 18px;
  color: #777777;
  text-decoration: line-through;
}

.new-price {
  font-size: 18px;
  font-weight: 600;
  color: #732413;
}

/* Company Info Section */
.company-info {
  background-color: #FAF7F2;
  padding: 80px 0;
}

.info-content {
  display: flex;
  align-items: center;
  gap: 100px;
}

.info-text {
  flex: 1;
}

.info-text h2 {
  font-size: 42px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 24px;
  line-height: 50px;
}

.info-text p {
  font-size: 16px;
  color: #1E1E1E;
  margin-bottom: 32px;
  line-height: 24px;
}

.info-buttons {
  display: flex;
  gap: 14px;
}

.btn-primary {
  background-color: #F7754B;
  color: #FFFFFF;
  border: none;
  padding: 13px 45px 11px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block; vertical-align: middle;
}

.btn-primary:hover {
  background-color: #e6653d;
  color: #FFFFFF;
}

.btn-secondary {
  background-color: transparent;
  color: #F7754B;
  border: 1px solid #F7754B;
  padding: 12px 40px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block; vertical-align: middle;
}

.btn-secondary:hover {
  background-color: #F7754B;
  color: #FFFFFF;
}

.info-image {
  flex: 1; font-size: 0;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Circular Products Section */
.circular-products {
  padding: 80px 0;
}

.circular-products h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 35px;
}

.circular-grid {

}

.circular-item {
  text-align: center;
  width: calc(100% / 1);
  box-sizing: border-box;
  padding: 0 10px;
}

.circular-image {
  border-radius: 50%;
  border: 1px dashed #000000;
  padding: 5px;
  margin-bottom: 15px;
  font-size: 0;
  display: block;
}

.circular-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.circular-item h3 {
  font-size: 16px;
  font-weight: 400;
  color: #1E1E1E;
}
.circular-item h3 a {
  color: #1E1E1E;
}

/* Background Section */
.background-section a {display: block;}

.background-image {
  max-width: 100%;
}

/* Product Detail Section */
.product-detail {
  padding: 80px 0;
}

.product-detail-content {
  display: flex;
  gap: 60px;
}

.product-image {
  flex: 1;
}

.product-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.product-info-detail {
  flex: 1;
}

.product-info-detail h1 {
  font-size: 24px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 16px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.stars {
  color: #F7754B;
  font-size: 26px;
  font-weight: 500;
}

.review-count {
  color: #777777;
  font-size: 14px;
}

.price-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.price-detail .old-price {
  font-size: 22px;
  color: #777777;
  text-decoration: line-through;
}

.price-detail .new-price {
  font-size: 22px;
  font-weight: 600;
  color: #732413;
}

.gst-info {
  font-size: 12px;
  color: #1E1E1E;
  margin-bottom: 20px;
}

.delivery-info {
  background-color: #E8F6EA;
  border-left: 2px solid #A1D7A9;
  padding: 14px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.free-delivery {
  display: flex;
  align-items: center;
  gap: 12px;
}

.free-delivery span {
  color: #2C835D;
  font-size: 16px;
  font-weight: 500;
}

.delivery-check {
  margin-bottom: 20px;
}

.delivery-check label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #1E1E1E;
  margin-bottom: 8px;
}

.pincode-input {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.pincode-input input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #EAE4D9;
  border-radius: 2px;
  font-size: 12px;
  color: #777777;
}

.pincode-input button {
  background: none;
  border: none;
  color: #732413;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.delivery-check p {
  font-size: 12px;
  color: #3B3B3B;
}

.quantity-selector {
  margin-bottom: 30px;
}

.quantity-selector label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #1E1E1E;
  margin-bottom: 8px;
}

.quantity-controls {
  display: flex;
  width: 140px;
  border: 1px solid #EAE4D9;
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  width: 42px;
  height: 42px;
  background-color: #FAF7F2;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-value {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #1E1E1E;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-add-cart,
.btn-buy-now {
  width: 100%;
  height: 52px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart {
  background-color: #F7754B;
  color: #FFFFFF;
  border: none;
}

.btn-add-cart:hover {
  background-color: #e6653d;
}

.btn-buy-now {
  background-color: #FFFFFF;
  color: #F7754B;
  border: 1px solid #F7754B;
}

.btn-buy-now:hover {
  background-color: #F7754B;
  color: #FFFFFF;
}

.exclusive-offers {
  margin-bottom: 40px;
}

.exclusive-offers h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 20px;
}

.offers-grid {
  display: flex;
  gap: 20px;
}

.offer-card {
  flex: 1;
  background-color: #FFFFFF;
  border: 1px dashed #DADADA;
  border-radius: 6px;
  padding: 12px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.05);
}

.offer-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 8px;
}

.offer-card p {
  font-size: 12px;
  color: #777777;
  margin-bottom: 12px;
  line-height: 18px;
}

.coupon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #DADADA;
}

.coupon span {
  font-size: 12px;
  font-weight: 600;
  color: #732413;
  text-transform: uppercase;
}

.coupon button {
  background: none;
  border: none;
  color: #F7754B;
  font-size: 12px;
  cursor: pointer;
}

.help-section {
  background-color: #FAF7F2;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.help-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 8px;
}

.help-section > p {
  font-size: 12px;
  color: #1E1E1E;
  margin-bottom: 16px;
}

.help-options p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 8px;
}

.product-tabs {
  border-top: 1px solid #DADADA;
}

.tab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid #DADADA;
  cursor: pointer;
}

.tab-item span {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #1E1E1E;
}

/* Customer Reviews */
.customer-reviews {
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 0px;
}
.review-imageBx {
    font-size: 0;
}
.review-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.review-image {
  width: 100%;
  object-fit: cover;
}

.review-content {
  padding: 0 20px 20px 20px;
  background-color: #FAF7F2;
}

.review-rating {
  background-color: #FFFFFF;
  padding: 4px 16px;
  border-radius: 8px;
  margin: -25px 20px 20px 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
    z-index: 1;
}

.review-rating .stars {
  color: #F7754B;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 5.2px;
}

.review-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #1E1E1E;
  margin-bottom: 12px;
}

.review-content p {
  font-size: 14px;
  color: #1E1E1E;
  line-height: 22px;
}

/* Customer Info Section */
.customer-info {
  background-color: #FAF7F2;
  padding: 80px 0;
  text-align: center;
}

.customer-info h2 {
  font-size: 42px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 24px;
}

.customer-info p {
  font-size: 16px;
  color: #1E1E1E;
  margin-bottom: 32px;
  max-width: 1214px;
  margin-left: auto;
  margin-right: auto;
  line-height: 24px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #F4ECDF;
  border-radius: 4px;
  margin-bottom: 8px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #FAF7F2;
  cursor: pointer;
}

.faq-question span {
  font-size: 14px;
  font-weight: 600;
  color: #3B3B3B;
}

.faq-answer {
  padding: 16px;
  background-color: #FFFFFF;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 13px;
  color: #3B3B3B;
  line-height: 19.5px;
}

/* Features Section */
.features-section {
  background-color: #FAF7F2;
  padding: 40px 0;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 14px;
  color: #3B3B3B;
}

/* Footer */
.footer {
  background-color: #732413;
  color: #FFFFFF;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 0 0px;
  margin-bottom: 60px;
}

.footer-column h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-column p {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.footer-column ul li a:hover {
  opacity: 0.8;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-links img {height: 15px;}
.social-links a {
  display: inline-block; font-size: 0; vertical-align: middle;
}

.footer-bottom {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 26px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
}











.accSet {max-width: 900px; margin: 0 auto;}
.accSet input[type="checkbox"] {
  display: none;
}

.accSet label {
    color: #3B3B3B;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  margin: 8px 0 0 0;
  font-size: 14px;
  font-weight: 600;
  position: relative;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #FAF7F2;
  cursor: pointer;
}
.accSet label:after {
    content: "";
    width: 14px; height: 14px; position: absolute; top: 50%; right: 10px;
    transform: translate(0px, -50%) rotate(180deg);
}

.accSet .accCnt {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0s ease;
  padding: 0 15px;

      font-size: 13px;
    color: #3B3B3B;
    line-height: 19.5px;
}

.accSet input[type="checkbox"]:checked + label img.dropArow {
    transform: rotate(180deg);
}
.accSet input[type="checkbox"]:checked + label:after {
    transform: translate(0px, -50%) rotate(0deg);
}
.accSet input[type="checkbox"]:checked + label + .accCnt {
  max-height: unset;
  padding: 10px 0 0;
}


/* Responsive  Design */
@media (max-width: 1440px) {

  
  .banner-content {
    padding: 0 120px;
  }
  
  .reviews-grid {
    padding: 0 120px;
  }
  
  .features-grid {
    padding: 0 120px;
  }
  
  .footer-content {
    padding: 0 120px;
  }
}

@media (max-width: 1024px) {

  
  .banner-content {
    padding: 0 60px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .info-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .circular-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .product-detail-content {
    flex-direction: column;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 60px;
  }
  
  .features-grid {
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 60px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 60px;
  }
}

@media (max-width: 768px) {

  
  
  .banner-content {
    padding: 0 20px;
  }
  
  .header-top {
    height: auto;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    gap: 20px;
  }

  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .circular-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .offers-grid {
    flex-direction: column;
  }
  
  .reviews-grid {
    gap: 20px;
    padding: 0 0px;
  }
  
  .features-grid {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  
  .cta-button {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .circular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-text h2 {
    font-size: 32px;
  }
  
  .customer-info h2 {
    font-size: 32px;
  }
  
  .faq-section h2 {
    font-size: 32px;
  }
  .reviews-grid {
       grid-template-columns: 1fr; 
  }
}









.woocommerce .pcard-cart a.button {
    font-size: 0;
    background: url(../images/cart_white.svg) no-repeat center #F7754B;
    background-size: 18px;    
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 2px 4px #0000004f;
}

.product-img {
    position: relative;
}

.pcard-cart {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 5;
}
.newsline {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.newsline-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

.banner-text {
  display: inline-block;
  padding: 0 2rem;
  vertical-align: middle;
}






/* Base styles ----------------------------------------------- */
.main-navigation {
  position: relative;
  z-index: 9999;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.main-navigation ul.menu>li>a:hover {
  background: rgb(0 0 0 / 15%);
}

/* Top-level menu */
.main-navigation .menu {
  display: flex;
  flex-wrap: wrap;
}

.main-navigation .menu > li {
  position: relative;
}

/* Submenu styling */
.main-navigation .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.main-navigation .sub-menu li {
  position: relative;
}

.main-navigation .sub-menu a {
  padding: 10px 14px;
  font-size: 14px;     font-weight: 500;
}
.main-navigation ul ul a {color: #333;}
.main-navigation .sub-menu a:hover {background-color: #FAF7F2;}
/* Show submenu on hover */
.main-navigation li:hover > .sub-menu {
  display: block;
}

/* Second-level submenu (nested) */
.main-navigation .sub-menu .sub-menu {
  left: 100%;
  top: 0;
  margin-left: 1px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: #333;
  color: #fff;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-navigation .menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .main-navigation .menu > li {
    width: 100%;
  }

  .main-navigation .sub-menu {
    position: static;
    border: none;
    box-shadow: none;
    display: none;
  }

  .main-navigation li.open > .sub-menu {
    display: flex;
    flex-direction: column;
  }
}
/* Base NAV styles -------------------/\---------------------------- */

.contact-info {width: 40%;}
.logo-container {width: 20%;}
.menuIcon {
    display: none;
}
.main-navigation ul.menu>li.menu-item-has-children>a:after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20x%3D%220%22%20y%3D%220%22%20viewBox%3D%220%200%20492.004%20492.004%22%20style%3D%22transform%3A%20rotate(90deg)%20scale(1%2C%201)%3B%20transform-origin%3A%20center%20center%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20d%3D%22M382.678%20226.804%20163.73%207.86C158.666%202.792%20151.906%200%20144.698%200s-13.968%202.792-19.032%207.86l-16.124%2016.12c-10.492%2010.504-10.492%2027.576%200%2038.064L293.398%20245.9l-184.06%20184.06c-5.064%205.068-7.86%2011.824-7.86%2019.028%200%207.212%202.796%2013.968%207.86%2019.04l16.124%2016.116c5.068%205.068%2011.824%207.86%2019.032%207.86s13.968-2.792%2019.032-7.86L382.678%20265c5.076-5.084%207.864-11.872%207.848-19.088.016-7.244-2.772-14.028-7.848-19.108z%22%20fill%3D%22%23ffffff%22%20opacity%3D%221%22%20data-original%3D%22%23000000%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}
.circular-grid .owl-dots {
    bottom: unset;
    top: 100%;
}



/*7869*/
@media screen and (max-width:1129px) {/* 1024 px */



}/* 1024 px */
@media screen and (max-width:1030px) {/* 1024 px */

.info-buttons {
    justify-content: center;
}

}/* 1024 px */
@media screen and (max-width:979px) { /* 800 px */

  .header-top .contact-info { display: none; }
  .logo-container { justify-content: flex-start; }
  .header-top { padding: 10px; flex-direction: row; }
  .menuIcon {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  span.mIcBtn {
      display: inline-block;
      vertical-align: middle;
      width: 32px;
      height: 32px;
      background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20x%3D%220%22%20y%3D%220%22%20viewBox%3D%220%200%20128%20128%22%20style%3D%22transform%3A%20rotate(0deg)%20scale(1%2C%201)%3B%20transform-origin%3A%20center%20center%3B%22%20xml%3Aspace%3D%22preserve%22%20class%3D%22%22%3E%3Cg%3E%3Cpath%20d%3D%22M108%2036H20a4%204%200%200%201%200-8h88a4%204%200%200%201%200%208zm4%2028a4%204%200%200%200-4-4H20a4%204%200%200%200%200%208h88a4%204%200%200%200%204-4zm0%2032a4%204%200%200%200-4-4H20a4%204%200%200%200%200%208h88a4%204%200%200%200%204-4z%22%20fill%3D%22%23000000%22%20opacity%3D%221%22%20data-original%3D%22%23000000%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
      background-size: 28px;
      background-position: center;
      background-repeat: no-repeat;
  }

  .logo-container a {
      display: inline-block;
      vertical-align: middle;
  }

  .logo-container {
      align-items: center;
      gap: 12px;
  }

  .nav-menu li a {justify-content: space-between;}
  .main-navigation ul.menu>li.menu-item-has-children>a:after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20x%3D%220%22%20y%3D%220%22%20viewBox%3D%220%200%20492.004%20492.004%22%20style%3D%22transform%3A%20rotate(90deg)%20scale(1%2C%201)%3B%20transform-origin%3A%20center%20center%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20d%3D%22M382.678%20226.804%20163.73%207.86C158.666%202.792%20151.906%200%20144.698%200s-13.968%202.792-19.032%207.86l-16.124%2016.12c-10.492%2010.504-10.492%2027.576%200%2038.064L293.398%20245.9l-184.06%20184.06c-5.064%205.068-7.86%2011.824-7.86%2019.028%200%207.212%202.796%2013.968%207.86%2019.04l16.124%2016.116c5.068%205.068%2011.824%207.86%2019.032%207.86s13.968-2.792%2019.032-7.86L382.678%20265c5.076-5.084%207.864-11.872%207.848-19.088.016-7.244-2.772-14.028-7.848-19.108z%22%20fill%3D%22%23000000%22%20opacity%3D%221%22%20data-original%3D%22%23000000%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
  } 
  .navMask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background: #000;
    z-index: 9998;
    opacity: 0.6;
  }
  .main-navigation .menu,
  .main-navigation .toggled .menu { display: flex; }
  .navMask.navmaskof,
  .main-navigation li.focus .sub-menu { display: block; }
  .menu-top-menu-container { transform: translate(-110%, 0px); transition: all ease-in-out 0.3s; position: fixed;top: 0;left: 0;height: 100%;background: #faf7f2;min-height: 100vh;max-width: 380px;width: 85%;    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.38);}
  .menu-top-menu-container.toggled {    transform: translate(0%, 0px); }
  .nav-menu li a {
    color: #000;
  }
  .main-navigation ul ul a,
  .main-navigation .sub-menu {
    width: 100%;
  }

  .nav-menu {
    gap: 0;
  }
  .main-navigation .sub-menu a {
    padding: 10px 14px 10px 22px;
    font-size: 13px; font-weight: 400;
  }

  .main-navigation .menu-top-menu-container>ul>li {
    border-bottom: 1px solid #b9b9b9;
  }
  .main-navigation .menu-top-menu-container>ul>li li {    border-top: 1px solid #e4e4e4;  }


  .social-links { justify-content: center; }
  .footer-content { text-align: center; }
  .circular-item h3 { font-size: 13px; }


}/* 800 px */
@media screen and (max-width:799px) { /* 768 px */


	
}/* 768 px */
@media screen and (max-width:767px) { /* 640 px */
    
  .category-grid { flex-direction: column; text-align: center; }
  .top-banner { padding: 8px 0; }
  .banner-text { font-size: 12px; }
  .banner-text { padding: 0 16px; }
  
  
  



}/* 640 px */
@media screen and (max-width:639px) { /* 480 px */

  .header-top {flex-wrap: wrap;}
  .logo-container {    order: 1;      flex: 1;  }
  .header-actions {      order: 2;  }
  .search-container {      order: 3;      width: 100%;      flex: unset;      margin: 10px 0 0 0;  }
  input[type="text"].search-input, .search-input {      width: 100%;  }

	
}/* 480 px */
@media screen and (max-width:479px) { /* 360 px */

  

}/* 360 px */
@media screen and (max-width:359px) { /* 320 px */

 
  

}/* 320 px */














