:root {
  /* Colors - Premium Luxury Theme */
  --color-primary: #4A3126; /* Walnut brown */
  --color-primary-hover: #5d3f32;
  --color-bg: #F8F4EE; /* Warm cream */
  --color-bg-alt: #f1ebd9;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #e8e1d5;
  --color-accent: #c4a482; /* Beige accent */

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Shadows - Soft luxury shadows */
  --shadow-sm: 0 4px 10px rgba(74, 49, 38, 0.05);
  --shadow-md: 0 10px 25px rgba(74, 49, 38, 0.08);
  --shadow-lg: 0 20px 40px rgba(74, 49, 38, 0.12);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.2;
}

h1, h2 {
  font-family: var(--font-serif);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition-fast);
}

:focus-visible {
  outline: 3px solid rgba(184, 134, 92, 0.45);
  outline-offset: 3px;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

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

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
}

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

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.icon-sm {
  width: 16px;
  height: 16px;
}
.icon-lg {
  width: 24px;
  height: 24px;
}

/* Sections */
.section-padding {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 1.25rem;
}

/* --- Components --- */

/* Top Bar */
.top-bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8rem;
  padding: 8px 0;
  font-weight: 300;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a:hover {
  color: var(--color-accent);
}

/* Header */
.header {
  background-color: var(--color-bg);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
}
.logo-img {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  color: var(--color-primary);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-fast);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-primary);
}
.header-actions button {
  color: var(--color-primary);
}
.header-actions button:hover {
  color: var(--color-accent);
}
.cart-btn {
  position: relative;
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-btn {
  display: none;
  color: var(--color-primary);
}

/* --- Hero Section matching user reference --- */
.hero-section {
  background-color: #F4EFE6;
  background-image: url('HeroN.png');
  background-size: cover;
  background-position: center right;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  min-height: 650px;
}

.hero-container {
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0;
}

.hero-content-left {
  flex: 0 0 40%;
  padding-left: 8%;
  padding-right: 5%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: #2D2319;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-main-subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #2D2319;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  background-color: #2D2319;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-family: var(--font-sans);
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 40px;
  transition: background-color 0.2s;
}

.hero-btn:hover {
  background-color: #4A3A2C;
}

.hero-feature-list {
  display: flex;
  gap: 24px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #2D2319;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #2D2319;
}

.feature-icon-circle svg {
  width: 20px;
  height: 20px;
}

.feature-item span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #2D2319;
  line-height: 1.4;
  font-weight: 500;
}

.hero-content-right {
  flex: 0 0 60%;
  display: flex;
  padding-right: 0;
}

.hero-display-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('HeroN.png');
    background-position: 75% center;
  }
  .hero-container {
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }
  .hero-content-left {
    background: transparent;
    padding: 20px 10px;
    margin: 20px 0;
    text-align: center;
    flex: none;
    align-self: stretch;
    box-shadow: none;
  }
  /* Force visibility in case AOS animation fails on mobile */
  .hero-content-left[data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
  
  /* Make text white on mobile */
  .hero-main-title, 
  .hero-main-subtitle,
  .feature-item span {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Helps readability */
  }
  .feature-icon-circle {
    color: #ffffff;
    border-color: #ffffff;
  }
  
  /* Invert button on mobile */
  .hero-btn {
    background-color: #ffffff;
    color: #2D2319;
  }
  .hero-btn:hover {
    background-color: #F4EFE6;
  }

  .hero-feature-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-content-right {
    width: 100%;
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-main-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .hero-main-title {
    font-size: 2.2rem;
  }
}

/* Categories */
.category-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.category-card {
  width: calc(25% - 15px);
  background-color: var(--color-bg-alt);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--color-white);
}

.category-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.category-name {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-primary);
}

.category-link {
  font-size: 0.85rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.category-card:hover .category-link {
  color: var(--color-primary);
}

/* Features Strip */
.features-strip {
  background-color: var(--color-bg);
  padding: 40px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-box {
  background-color: var(--color-bg-alt);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.feature-box-icon {
  color: var(--color-primary);
}
.feature-box-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.feature-box-desc {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* Best Sellers */
.best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  background-color: var(--color-white);
  padding: 16px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-page {
  background-color: var(--color-bg-alt);
  min-height: 50vh;
}

.category-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.category-product-grid .product-image {
  object-fit: contain;
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
}

.badge {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.wishlist-btn {
  background-color: var(--color-white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--color-text-light);
}
.wishlist-btn:hover {
  color: #ef4444;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.product-price {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fbbf24;
  font-size: 0.8rem;
  margin-bottom: 16px;
}
.product-rating span {
  color: var(--color-text-light);
  margin-left: 4px;
}

.product-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Chat Button */
.chat-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background-color: #a47656;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: transform var(--transition-fast);
}
.chat-btn:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--color-primary);
  color: var(--color-bg);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  height: 48px;
  margin-bottom: 24px;
  filter: brightness(0) saturate(100%) invert(94%) sepia(12%) saturate(671%) hue-rotate(325deg) brightness(102%) contrast(88%);
}
.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  max-width: 300px;
}
.footer-title {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.footer-links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-socials a:hover {
  color: var(--color-white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

  .category-card {
    width: calc(33.333% - 14px);
  }
  .best-sellers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .header .container {
    justify-content: center;
    position: relative;
  }

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    gap: 18px;
    background-color: var(--color-bg);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  
  .menu-btn {
    display: block;
    position: absolute;
    left: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }


  
  .category-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 16px;
    scroll-snap-type: x mandatory;
  }
  .category-card {
    width: auto;
    min-width: 120px;
    padding: 16px 12px;
    background-color: transparent;
    box-shadow: none;
    scroll-snap-align: start;
  }
  .category-card:hover {
    box-shadow: none;
    background-color: transparent;
  }
  .category-img {
    border-radius: 50%;
    background-color: var(--color-bg-alt);
    padding: 8px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .best-sellers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 480px) {

  .best-sellers-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium Animated Gradient */
.animated-gradient-bg {
  background: repeating-linear-gradient(
    -45deg,
    var(--color-primary) 0%,
    var(--color-primary-hover) 10%,
    var(--color-primary) 20%
  );
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  color: var(--color-white);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- New Category Layout --- */
.new-category-layout {
  background-color: #FCF8F2; /* Light cream background */
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 80px;
}

/* Background blobs */
.category-bg-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.category-bg-shape.top-right {
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background-color: #F4EAE0;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  transform: translate(20%, -30%);
}
.category-bg-shape.bottom-right {
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background-color: #F4EAE0;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  transform: translate(10%, 40%);
}

.relative-container {
  position: relative;
  z-index: 1;
}

/* Category Header */
.category-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
.category-header-icon {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}
.category-header-icon svg {
  width: 100%;
  height: 100%;
}
.category-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: #2D2319;
  font-weight: 700;
  margin-bottom: 10px;
}
.category-subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #665c52;
  line-height: 1.5;
}

/* Main Layout Grid */
.category-main-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 50px;
}

/* Toolbar */
.category-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #EBE4DA;
  padding-bottom: 15px;
}
.toolbar-results {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #665c52;
}
.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sort-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #2D2319;
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid #EBE4DA;
  border-radius: 6px;
  background: white;
}
.view-toggles {
  display: flex;
  gap: 5px;
}
.view-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #665c52;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.view-toggle.active {
  border-color: #EBE4DA;
  background: white;
  color: #2D2319;
}

/* New Product Grid */
.new-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

/* New Product Card Design */
.new-product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.new-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.npc-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.npc-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.npc-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #4A3A2C;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}
.npc-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #EBE4DA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a47656;
  cursor: pointer;
  transition: all 0.2s;
}
.npc-wishlist:hover {
  background: #F8F5F0;
}
.npc-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.npc-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #2D2319;
  margin-bottom: 8px;
}
.npc-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
.npc-stars {
  color: #a47656;
  font-size: 0.8rem;
}
.npc-reviews {
  color: #665c52;
  font-size: 0.8rem;
}
.npc-order-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #4A3A2C;
  color: white;
  text-align: center;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
  transition: background-color 0.2s;
}
.npc-order-btn:hover {
  background-color: #2D2319;
}

/* Sidebar */
.category-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}
.sidebar-features {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 40px;
}
.sidebar-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.sidebar-icon {
  width: 40px;
  height: 40px;
  color: #a47656;
  flex-shrink: 0;
}
.sidebar-icon svg {
  width: 100%;
  height: 100%;
}
.sidebar-text h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #2D2319;
  margin-bottom: 5px;
  font-weight: 600;
}
.sidebar-text p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #665c52;
  line-height: 1.4;
}
.sidebar-bottom-cat {
  width: 120px;
  margin-left: auto;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .category-main-layout {
    grid-template-columns: 1fr;
  }
  .category-sidebar {
    position: static;
    margin-top: 50px;
    border-top: 1px solid #EBE4DA;
    padding-top: 40px;
  }
  .sidebar-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sidebar-feature {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .category-header {
    flex-direction: column;
    text-align: center;
  }
  .new-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .sidebar-feature {
    width: 100%;
  }
}
