:root {
  --primary-color: #ff6b00;
  --secondary-color: #1a1a1a;
  --accent-color: #ffc107;
  --text-color: #333333;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar {
  background-color: #0d2235;
  padding: 1.5rem 0px 0px 0px;
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: #0d2235;
  padding: 1rem 0 0 0 ;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white !important;
}

.navbar-expand-lg .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  justify-content: flex-end;

}


.nav-link {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: white !important;
  margin: 0 1rem;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.cart-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 45px 0;
  width: 200px;

}
.cart-wrapper li {
  color: #fff;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
}
.cart-wrapper li:hover {
  color: #0d2235;
}

.mega-sub-menu .mega-menu-link {
  background: #ff6029 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.mega-sub-menu .mega-menu-link:hover {
  background: #9c2801 !important;
}


li.menu-item.menu-item-type-custom.menu-item-object-custom.nav-item::before {
  position: absolute;
  content: "";
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='430' height='182' viewBox='0 0 430 182' fill='none'><path d='M44.5 0H430V182H0.5L44.5 0Z' fill='%23FF6029'/></svg>");
  background-repeat: no-repeat;
  width: 100vw;
  height: 100%;
  top: 0;
  left: -40px;
  z-index: -1;
  background-size: cover;
  background-position: 30px bottom;
}


.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?ixlib=rb-1.2.1');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 250px 0 200px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.featured-products {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
}

.featured-products::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(45deg,
      transparent 33.33%,
      #f8f9fa 33.33%,
      #f8f9fa 66.66%,
      transparent 66.66%);
  background-size: 30px 100%;
}

.product-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-card img {
  height: 250px;
  object-fit: cover;
}

.product-card .card-body {
  padding: 2rem;
}

.product-price {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60%;
  height: 3px;
  background-color: var(--primary-color);
}

.quality-section {
  background-color: var(--secondary-color);
  color: white;
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.quality-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://www.transparenttextures.com/patterns/dark-geometric.png");
  opacity: 0.1;
}

.menu-section {
  padding: 100px 0;
  background-color: var(--secondary-color);
  color: white;
  position: relative;
  background-image: url("https://www.transparenttextures.com/patterns/dark-geometric.png");
}

.menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(26, 26, 26, 0.9),
      rgba(26, 26, 26, 0.95));
  z-index: 1;
}

.menu-section .container {
  position: relative;
  z-index: 2;
}

.menu-category {
  margin-bottom: 50px;
}

.menu-category-title {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

#menu .menu-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 25px 0;
  transition: all 0.3s ease;
}

#menu .menu-item:hover {
  transform: translateX(10px);
  border-bottom-color: var(--primary-color);
}

#menu .menu-item h5 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

#menu .menu-item .description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.menu-item .price {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
}

#menu .menu-item .badge-new {
  background-color: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-left: 10px;
  text-transform: uppercase;
}

#menu .menu-item .badge-spicy {
  background-color: #dc3545;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-left: 10px;
  text-transform: uppercase;
}

.cta-button {
  background-color: var(--primary-color) !important;
  color: white !important;
  padding: 15px 40px !important;
  border-radius: 50px !important;
  border: none !important;
  font-family: "Oswald", sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.cta-button:hover {
  background-color: var(--accent-color) !important;
  transform: scale(1.05) !important;
  color: var(--secondary-color) !important;
}

.cta-button::after {
  content: "" !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  transform: rotate(45deg) !important;
  transition: all 0.3s ease !important;
}

.cta-button:hover::after {
  transform: rotate(45deg) translate(50%, 50%) !important;
}

#menu .menu-item a {
  color: #fff;
  text-decoration: none;
}

.news-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
}

.news-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(45deg,
      transparent 33.33%,
      #f8f9fa 33.33%,
      #f8f9fa 66.66%,
      transparent 66.66%);
  background-size: 30px 100%;
}

.news-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  background-color: white;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-card img {
  height: 250px;
  object-fit: cover;
}

.news-card .card-body {
  padding: 2rem;
}

.news-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.news-card .card-text {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.news-date {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: block;
}

.news-category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}

footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://www.transparenttextures.com/patterns/dark-geometric.png");
  opacity: 0.1;
}

.footer-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.social-links a {
  color: white;
  margin-right: 1rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Product Listing Styles */
.product-listing {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
}

.filters-sidebar {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.filter-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.filter-option input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.filter-option label {
  font-size: 0.95rem;
  color: #666;
  cursor: pointer;
  user-select: none;
}

.price-range {
  padding: 0 10px;
}

.price-range input {
  width: 100%;
  margin: 10px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 15px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 200px;
  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.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
}

.product-details {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.product-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.product-price {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.product-rating {
  color: var(--accent-color);
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.add-to-cart:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.cart-icon {
  margin-right: 8px;
}

.dietary-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.dietary-icon {
  width: 24px;
  height: 24px;
  color: var(--secondary-color);
}

.search-filters {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-box {
  position: relative;
  margin-bottom: 20px;
}

.search-box input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.search-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.filter-tag {
  background: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-tag i {
  cursor: pointer;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sort-options select {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #666;
}

/* Cart Styles */
.cart-preview {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-preview.active {
  right: 0;
}

.cart-header {
  padding: 20px;
  background: var(--secondary-color);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.close-cart {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: 500;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.quantity-btn {
  background: #eee;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: var(--primary-color);
  color: white;
}

.cart-footer {
  padding: 20px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.cart-toggle {
  position: fixed;
  top: 100px;
  right: 30px;
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.cart-toggle:hover {
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-color);
  color: var(--secondary-color);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Enhanced Filter Styles */
.filter-group .collapse-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-group .collapse-toggle i {
  transition: transform 0.3s ease;
}

.filter-group .collapse-toggle.collapsed i {
  transform: rotate(-90deg);
}

.filter-content {
  margin-top: 15px;
}

.price-slider {
  position: relative;
  height: 5px;
  background: #ddd;
  border-radius: 5px;
  margin: 20px 10px;
}

.price-slider .progress {
  position: absolute;
  height: 100%;
  left: 25%;
  right: 25%;
  background: var(--primary-color);
  border-radius: 5px;
}

.range-input {
  position: relative;
  margin-top: 20px;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
}

.range-input input::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  pointer-events: auto;
  -webkit-appearance: none;
  background: var(--primary-color);
  cursor: pointer;
}

.cta-button.btn-sm {
  text-decoration: none;
}

.slider-section img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-section .btn.btn-primary.play-btn.position-absolute.top-50.start-50.translate-middle {
  background: #ff6a009c;
  border: none;
}

.ouroffersbg {
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.95));
}

.product-badge.bg-danger {
  top: 50px;
}

#products .product-type-simple {
  background: #fff;
}

#products .product-type-simple {
  background: #fff;
}

#products .product-type-simple .woocommerce-loop-product__title {
  padding: 10px 30px !important;
  color: #000;
}

#products .product-type-simple .price {
  color: var(--primary-color);
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px 30px !important;
}

#products .product-type-simple {
  width: 31% !important;
  height: 100%;
  margin: 0px !important;
  margin-bottom: 20px !important;
}

#products .products.columns-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 2.33%;
}

#products .product-type-simple .add_to_cart_button {
  width: calc(100% - 60px);
  display: block;
  margin: auto;
  margin-bottom: auto;
  margin-bottom: 20px;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 18px !important;
  border-radius: 5px;
}

#products .woocommerce ul.products::before {
  display: none;
}

#products .orderby {
  background: #dadada;
  border: 0px solid #000;
  padding: 12px;
  border-radius: 8px;
}

#products .woof_husky_txt-input {
  padding: 10px;
}

footer .input-group p {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.wpcf7-submit.cta-button {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.wpcf7-form-control-wrap {
  width: calc(100% - 165px);
}

footer .input-group p .wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email.form-control {
  height: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.banner-cartpage {
  padding-top: 154px;
  padding-bottom: 154px;
  color: #fff;
  text-align: center;
}

.banner-cartpage {
  padding-top: 154px;
  padding-bottom: 154px;
  color: #fff;
  text-align: center;
  background-color: #0000008a;
  background-blend-mode: color;
  background-attachment: fixed;
  margin-bottom: 100px;
}

.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  background: #000;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
}

.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button {
  background: #000;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
}

.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button {
  background: #000 !important;
  color: #fff;
  border-radius: 7px;
}

#featured .card-img-top {
  height: 250px !important;
}

#products .woocommerce ul.products li.product a img {
  height: 197px;
}

.single_add_to_cart_button.button.alt {
  display: block;
  margin: auto;
  margin-bottom: auto;
  margin-bottom: auto;
  margin-bottom: auto;
  margin-bottom: 20px;
  text-align: center;
  background: #000 !important;
  color: #fff;
  padding: 18px !important;
  border-radius: 5px;
}

.input-text.qty.text {
  padding: 12px;
  width: 75px;
}

#submit {
  display: block;
  margin: auto;
  margin-bottom: auto;
  margin-bottom: auto;
  margin-bottom: 20px;
  text-align: center;
  background: #000 !important;
  color: #fff !important;
  padding: 18px !important;
  border-radius: 5px !important;
}

.related.products {
  padding-top: 50px;
  margin-top: 60px;
  border-top: 1px solid #b8b8b8;
}

.related.products .woocommerce-loop-product__title {
  color: #000;
}

.price {
  color: var(--primary-color) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

.related.products ul.products li.product a img {
  height: 181px !important;
  object-fit: cover;
}

.related.products .add_to_cart_button {
  background: #000;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
}

#products .woocommerce ul.products li.product a img {
  object-fit: cover;
}

@media (max-width: 1199px){
.navbar .container{
  max-width: 1080px;
  width: 100%;

}
.navbar-brand img{
  width: 165px !important;
}
}

@media (max-width: 760px) {
  .navbar {
    padding: 1rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-section {
    padding: 120px 0 80px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .featured-products,
  .news-section,
  .product-listing {
    padding: 50px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 5px;
  }

  .filters-sidebar {
    position: static;
    top: auto;
    margin-bottom: 30px;
    box-shadow: none;
    padding: 15px;
  }

  .product-card,
  .news-card {
    padding: 0;
    margin-bottom: 20px;
  }

  .product-image {
    height: 150px;
  }

  .news-card img,
  .product-card img {
    height: 150px;
  }

  .cart-preview {
    width: 100vw;
    right: -100vw;
  }

  .cart-preview.active {
    right: 0;
  }

  .cart-toggle {
    top: 70px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .cart-count {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .menu-section,
  .quality-section {
    padding: 60px 0;
  }

  .menu-category-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }

  .slider-section img {
    height: 40vh;
  }

  .banner-cartpage {
    padding-top: 70px;
    padding-bottom: 70px;
    margin-bottom: 40px;
  }

  #products .product-type-simple {
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  #products .products.columns-4 {
    flex-direction: column;
    gap: 0;
  }

  .filters-sidebar,
  .search-filters {
    border-radius: 8px;
    padding: 10px;
  }

  .footer-title {
    font-size: 1.2rem;
  }

  footer {
    padding: 40px 0 20px;
  }
}