/* ============================================
   Heritage Furnishings — Premium Luxury Theme
   ============================================ */

:root {
  --wood-brown: #0d1b2e;
  --wood-dark: #0a1628;
  --cream: #F5F0E8;
  --beige: #E8DFD0;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --gold: #C9A962;
  --gold-light: #D4BC7A;
  --gold-dark: #A88B4A;
  --text-dark: #2C2C2C;
  --text-muted: #6B6B6B;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-gold {
  color: var(--gold) !important;
}

.bg-cream {
  background-color: var(--cream);
}

.bg-charcoal {
  background-color: var(--charcoal);
}

.section-padding {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--wood-brown);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-text {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 14px 32px;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transition: var(--transition);
  z-index: -1;
}

.btn-gold:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4);
}

.btn-gold:hover::before {
  left: 0;
}

.btn-dark {
  background: var(--wood-brown);
  color: var(--white);
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 14px 32px;
  border-radius: 2px;
  transition: var(--transition);
}

.btn-dark:hover {
  background: var(--wood-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 12px 30px;
  border-radius: 2px;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--wood-brown);
  border-color: var(--white);
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--wood-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(201, 169, 98, 0.2);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: preloaderSlide 1.2s ease infinite;
}

@keyframes preloaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Navbar */
.navbar {
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px !important;
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 60%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 169, 98, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
  background: transparent;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 26, 26, 0.98);
    padding: 20px;
    margin-top: 15px;
    border-radius: 4px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--wood-dark);
}

.parallax-bg {
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(61, 43, 31, 0.7) 50%,
    rgba(26, 26, 26, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: var(--gold);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* About Section */
.about-image-wrapper {
  position: relative;
}

.about-img-main {
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 45%;
  border: 6px solid var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 25px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}

.about-features {
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.about-feature i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 4px;
}

.about-feature h5 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--wood-brown);
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Stats Section */
.stats-section {
  background:  #000000;
  padding: 60px 0;
}
.view-products-btn {
  background-color: #000;
  border-color: #000;
}
.view-products-btn:hover {
  background-color: #000;
  border-color: #000;
}
.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Category Cards */
.category-card {
  display: block;
  color: var(--text-dark);
  transition: var(--transition);
}

.category-card:hover {
  color: var(--wood-brown);
  transform: translateY(-8px);
}

.category-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 16px;
  aspect-ratio: 4/3;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-img img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-link {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.category-link i {
  transition: transform 0.3s ease;
}

.category-card:hover .category-link i {
  transform: translateX(5px);
}

.category-card h4 {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
}

/* Product Filters */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--beige);
  color: var(--text-muted);
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--wood-brown);
  border-color: var(--wood-brown);
  color: var(--white);
}

/* Product Cards */
.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.product-name {
  font-size: 1.15rem;
  margin: 8px 0;
  color: var(--wood-brown);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.product-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-item.hidden {
  display: none;
}

/* Why Choose Us */
.why-card {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: rgba(201, 169, 98, 0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.why-icon i {
  font-size: 1.8rem;
  color: var(--gold);
}

.why-card h5 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
}

/* Custom Section */
.custom-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.custom-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.custom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.8);
}

.custom-content {
  position: relative;
  z-index: 2;
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border-top: 3px solid var(--gold);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--wood-brown);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-author h6 {
  margin: 0;
  font-size: 1rem;
  color: var(--wood-brown);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Gallery */
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
}

.gallery-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-link:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-link:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

.gallery-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  opacity: 1;
}

/* Contact */
.contact-info {
  height: 100%;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--wood-brown);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-item h5 {
  font-size: 1.1rem;
  color: var(--wood-brown);
  margin-bottom: 6px;
}

.contact-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--text-muted);
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--beige);
  border-radius: 2px;
  padding: 14px 18px;
  font-size: 0.9rem;
  background: var(--white);
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.contact-form .form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Map */
.map-section iframe {
  display: block;
  filter: grayscale(30%);
  transition: filter 0.4s ease;
}

.map-section iframe:hover {
  filter: grayscale(0%);
}

/* Footer */
.footer {
  background: #ffffff;
  color: #111111;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(26, 39, 68, 0.1);
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26, 39, 68, 0.2);
  border-radius: 50%;
  color: #1a2744;
  margin-right: 10px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-title {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #1a1a1a;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 2px 0 0 2px;
  padding: 12px 16px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  box-shadow: none;
  color: var(--white);
}

.newsletter-form .btn-gold {
  border-radius: 0 2px 2px 0;
  padding: 12px 20px;
}

.footer-divider {
  border-color: rgba(26, 39, 68, 0.12);
  margin: 40px 0 25px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
  color: #222222;
}

.footer-bottom p {
  margin: 0;
  color: #222222;
}

.footer-tagline {
  color: #333333;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 70px 0;
  }

  .about-img-accent {
    right: 0;
    bottom: -20px;
    width: 50%;
  }

  .about-badge {
    left: 0;
    top: 20px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0 !important;
  }

  .about-img-accent {
    display: none;
  }

  .custom-bg {
    background-attachment: scroll;
  }

  .whatsapp-btn {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .product-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }
}
