/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Unified Lemurra Traders Color Palette */
:root {
  --lemurra-white: #FFFFFF;
  --lemurra-lightblue: #76E4FB;
  --lemurra-teal: #208397;
}

body {
    line-height: 1.6;
    background: var(--lemurra-white);
    color: var(--lemurra-teal);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Accessibility: Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Focus states for better accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .header {
        border-bottom: 2px solid #000;
    }
    
    .btn {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Improved button accessibility */
.filter-btn[aria-pressed="true"] {
    background-color: #0056b3;
    font-weight: bold;
}

.filter-btn[aria-pressed="false"] {
    background-color: #007BFF;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--lemurra-teal) !important;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-name { color: var(--lemurra-maroon); font-weight: 800; letter-spacing: 0.5px; font-size: 1.1rem; white-space: nowrap; }

@media (max-width: 600px) {
  .brand-name { font-size: 0.98rem; }
}

.header img {
    max-width: 150px;
    background: var(--lemurra-white);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: var(--lemurra-white) !important;
    font-weight: bold;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

nav ul li a:hover {
    color: var(--lemurra-lightblue) !important;
    background-color: rgba(255, 102, 0, 0.1);
}

nav ul li a:focus {
    background-color: rgba(255, 102, 0, 0.2);
}

/* Intro section */
.intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    flex-wrap: wrap;
    background-color: #fff5f0;
}

.cl1 {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.cl1 h1 {
    font-size: 2em;
    color: #ff6600;
    margin-bottom: 10px;
}

.cl1 h4 {
    margin-bottom: 10px;
    color: #666;
}

.cl1 p {
    font-size: 16px;
    margin-bottom: 20px;
}

.cl1 .btn {
    background-color: var(--lemurra-lightblue) !important;
    color: var(--lemurra-teal) !important;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cl1 .btn:hover {
    background-color: #e65100;
}

.cl2 {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.cl2 img {
    width: 100%;
    border-radius: 12px;
}


/* Popup container */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

/* Popup content */
.popup-content {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: slideUp 0.4s ease;
}

.popup-content h2 {
  color: #e63946;
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.popup-content button {
  background-color: #e63946;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.popup-content button:hover {
  background-color: #d62828;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #666;
  cursor: pointer;
}

/* Popup buttons container */
.popup-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

/* Close popup button */
.close-popup-btn {
  background-color: #6c757d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.close-popup-btn:hover {
  background-color: #5a6268;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100vw;
  height: 100%;
  min-height: 200px;
  max-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 10px solid #c74957;
}

.hero-slider .slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: none;
  z-index: 2;
  pointer-events: none;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center left;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-attachment: scroll; /* avoid parallax jank on mobile */
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 3;
}

.hero-slider .slide.active .slide-content {
  animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  padding: 1rem;
  cursor: pointer;
  z-index: 4;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.slider-btn:hover,
.slider-btn:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.slider-btn.prev {
  left: 30px;
}

.slider-btn.next {
  right: 30px;
}

.slide-content {
  position: relative;
  margin-right: 5vw;
  text-align: right;
  color: #fff;
  z-index: 5;
  background: none;
  padding: 3rem 3.5rem;
  border-radius: 20px;
  max-width: 500px;
  backdrop-filter: none;
  border: none;
}

.slide-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 1;
  line-height: 1.5;
}

.buy-now-btn {
  background: linear-gradient(135deg, #ff6f3c 0%, #ff8f5c 100%);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(255, 111, 60, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.buy-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.buy-now-btn:hover::before {
  left: 100%;
}

.buy-now-btn:hover,
.buy-now-btn:focus {
  background: linear-gradient(135deg, #ff5a2c 0%, #ff7a4c 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 111, 60, 0.4);
}

.buy-now-btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
  background: rgba(0,0,0,0.2);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: #ff6f3c;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.dot.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: #ff6f3c;
  transform: scale(1.3);
}

.dot.active::before {
  width: 8px;
  height: 8px;
}

.slider-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.slider-progress-bar .progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ff6f3c, #ffb36c);
  transition: width 4s linear;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 111, 60, 0.5);
}

/* Desktop hero: 3 cards layout */
.hero-slider-desktop {
  display: none;
}

/* Desktop-specific hero slider tweaks */
@media (min-width: 901px) {
  /* Hide mobile slider, show desktop cards */
  .hero-slider {
    display: none;
  }

  .hero-slider-desktop {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 25px auto 30px;
    padding: 0 20px;
  }

  .hero-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 260px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 25px rgba(15,23,42,0.18);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.25), transparent 55%);
    pointer-events: none;
  }

  .hero-card-overlay {
    position: absolute;
    inset: 40% 0 0 0;
    background: linear-gradient(to top, rgba(15,23,42,0.9), rgba(15,23,42,0.1));
  }

  .hero-card-content {
    position: relative;
    padding: 18px 18px 20px;
    color: #fff;
    z-index: 2;
  }

  .hero-card-content h2 {
    font-size: 1.25rem;
    margin: 0 0 6px;
  }

  .hero-card-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 10px;
  }

  .hero-card-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: #ff6f3c;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255,111,60,0.45);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(15,23,42,0.25);
  }

  .hero-card:hover .hero-card-btn {
    background: #ff4b1f;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255,75,31,0.55);
  }
}

@media (max-width: 900px) {
  .hero-slider {
    height: 50vh;
    min-height: 350px;
  }
  
  .hero-slider .slide {
    flex-direction: row;
    justify-content: flex-end;
    background-attachment: scroll;
  }
  
  .slide-content {
    text-align: right;
    margin: 0 3vw 0 0;
    max-width: 60vw;
    padding: 2rem;
  }
  
  .slider-btn {
    width: 50px;
    height: 50px;
    padding: 0.8rem;
  }
  
  .slider-btn.prev {
    left: 15px;
  }
  
  .slider-btn.next {
    right: 15px;
  }
  
  .slider-dots {
    bottom: 20px;
    padding: 0.8rem 1.2rem;
  }
}

@media (max-width: 600px) {
  .hero-slider {
    height: 45vh;
    min-height: 300px;
  }
  
  .slide-content {
    padding: 1.5rem;
  }
  
  .slider-btn {
    width: 45px;
    height: 45px;
    padding: 0.6rem;
  }
  
  .slider-dots {
    gap: 0.7rem;
    padding: 0.6rem 1rem;
  }
  
  .dot {
    width: 14px;
    height: 14px;
  }
}

/* Featured Products */
.featured {
    padding: 40px 5%;
    background-color: #fff;
    position: relative;
}

.title {
    text-align: center;
    font-size: 2em;
    color: #ff6600;
    margin-bottom: 30px;
}

.featured-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

.cl3 {
    background: var(--lemurra-white) !important;
    border: 1px solid var(--lemurra-lightblue) !important;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

.cl3 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.cl3 h3 {
    margin: 10px 0 5px;
    font-size: 16px;
}

.cl3 h4 {
    color: #444;
}

.cl3 s {
    color: #999;
    margin-left: 5px;
}

.cl3 button {
    margin-top: 8px;
    background-color: var(--lemurra-lightblue) !important;
    color: var(--lemurra-teal) !important;
    border: none !important;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-right: 5px;
    transition: background 0.3s;
}

.cl3 button:hover {
    background-color: #e65100;
}

.more {
    position: absolute;
    bottom: 20px;
    right: 30px;
}

.more .btn {
    text-decoration: none;
    padding: 10px 20px;
    background-color: var(--lemurra-lightblue) !important;
    color: var(--lemurra-teal) !important;
    border-radius: 5px;
    font-weight: bold;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: var(--lemurra-teal) !important;
    color: var(--lemurra-white) !important;
    padding: 30px 10%;
    gap: 30px;
    position: relative;
    justify-content: space-between;
}

.footer h3 {
    margin-bottom: 10px;
    color: #ffcc80;
}

.footer-1, .footer-3 {
    flex: 1;
    min-width: 200px;
}

.footer-2 {
    flex: 1;
    text-align: center;
}

.footer-2 img {
    display: block;
    margin: 0 auto 10px;
}

.footer p, .footer li, .footer button, .footer h4 {
    font-size: 14px;
    color: #ddd;
}

.footer button {
    background: none;
    border: none;
    color: #ffcc80;
    cursor: pointer;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

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

.footer a {
    color: #ffcc80;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 10%;
}

body > p:last-child {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #666;
}

/* Responsive for Mobile */
@media screen and (max-width: 768px) {
    .intro {
        flex-direction: column;
        padding: 30px 5%;
    }

    .featured-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .header {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
        right: 20px;
        top: 20px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        width: 180px;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 10px 0;
        border-radius: 6px;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        text-align: right;
        padding: 12px 20px;
        border-top: 1px solid #eee;
    }

    .more {
        position: relative;
        bottom: unset;
        right: unset;
        text-align: right;
        margin-top: 20px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-1, .footer-3 {
        text-align: center;
    }
}

/* Product grid layout */
.product-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

/* Responsive for mobile: 2x2 */
@media screen and (max-width: 768px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- PRODUCT GRID --- */
.product-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

/* Product Card */
.product-card {
  background: var(--lemurra-white) !important;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 16px;
  color: #333;
  margin: 8px 0;
}

.product-card h4 {
  color: #e53935;
  font-weight: 600;
  font-size: 14px;
}

.product-card s {
  color: #999;
  font-size: 12px;
  margin-left: 5px;
}

.product-card button {
  background: var(--lemurra-lightblue) !important;
  color: var(--lemurra-teal) !important;
  border: none !important;
  margin: 5px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-card button:hover {
  background: #d6401e;
}

/* --- RESPONSIVE LAYOUT --- */
@media screen and (max-width: 1024px) {
  .product-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }

  .product-card img {
    height: 140px;
  }
}

/* --- PRODUCT GRID --- */
.product-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

/* Product Card */
.product-card {
  background: var(--lemurra-white) !important;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 16px;
  color: #333;
  margin: 8px 0;
}

.product-card h4 {
  color: #e53935;
  font-weight: 600;
  font-size: 14px;
}

.product-card s {
  color: #999;
  font-size: 12px;
  margin-left: 5px;
}

.product-card button {
  background: var(--lemurra-lightblue) !important;
  color: var(--lemurra-teal) !important;
  border: none !important;
  margin: 5px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-card button:hover {
  background: #d6401e;
}

/* --- RESPONSIVE LAYOUT --- */
@media screen and (max-width: 1024px) {
  .product-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }

  .product-card img {
    height: 140px;
  }
}

/* --- PRODUCT GRID --- */
.product-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

/* Product Card */
.product-card {
  background: var(--lemurra-white) !important;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 16px;
  color: #333;
  margin: 8px 0;
}

.product-card h4 {
  color: #e53935;
  font-weight: 600;
  font-size: 14px;
}

.product-card s {
  color: #999;
  font-size: 12px;
  margin-left: 5px;
}

.product-card button {
  background: var(--lemurra-lightblue) !important;
  color: var(--lemurra-teal) !important;
  border: none !important;
  margin: 5px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-card button:hover {
  background: #d6401e;
}

/* --- RESPONSIVE LAYOUT --- */
@media screen and (max-width: 1024px) {
  .product-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }

  .product-card img {
    height: 140px;
  }
}

/* --- MORE PRODUCTS BUTTON --- */
.more-products-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}

.more-products-btn {
  background-color: var(--lemurra-lightblue) !important;
  color: var(--lemurra-teal) !important;
  border: none !important;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease all;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.more-products-btn:hover {
  background-color: #c2361d;
}
h2 {
  text-align: center;
  margin: 20px 0;
  font-size: 2.5rem;
  color: #333;
}

.categories {
  text-align: center;
  margin-bottom: 30px;
}

.category-buttons {
  display: inline-block; /* So the buttons don't stretch full width */
}

.category-buttons button {
  margin: 0 8px;
  padding: 10px 18px;
  background: var(--lemurra-lightblue) !important;
  color: var(--lemurra-teal) !important;
  border: none !important;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.category-buttons button:hover,
.category-buttons button.active {
  background-color: #0056b3;
}
/* Hide menu on small screens by default */
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile: hide the nav links by default */
@media screen and (max-width: 768px) {
  nav ul {
    display: none;
    position: fixed;
    top: 50px; /* Adjust below header */
    right: 0;
    width: 220px;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    padding: 15px;
    box-shadow: -3px 2px 10px rgba(0,0,0,0.2);
    border-radius: 5px 0 0 5px;
    z-index: 999;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 1000;
    user-select: none;
  }
}

/* Desktop: show menu and hide toggle */
@media screen and (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

/* ===== Product Details Section ===== */

.single-product {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.single-product .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.single-product .col-2 {
  flex: 1 1 48%;
}

.single-product .col-2 img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.small-img-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}

.small-img-col {
  flex: 1;
  cursor: pointer;
}

.small-img-col img {
  width: 100%;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: border 0.3s ease;
}

.small-img-col img:hover {
  border: 2px solid #f76c6c;
}

.single-product h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.single-product h4 {
  font-size: 22px;
  margin: 10px 0;
  color: #f76c6c;
}

.single-product input[type="number"] {
  width: 60px;
  padding: 5px;
  font-size: 16px;
  margin-right: 15px;
}

.single-product .btn {
  background-color: var(--lemurra-lightblue) !important;
  color: var(--lemurra-teal) !important;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.single-product .btn:hover {
  background-color: #e85c5c;
}

.single-product h3 {
  margin-top: 30px;
  font-size: 20px;
  color: #555;
}

.single-product p {
  line-height: 1.6;
  color: #666;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .single-product .row {
    flex-direction: column;
  }

  .single-product .col-2 {
    flex: 1 1 100%;
  }

  .single-product input[type="number"] {
    margin-bottom: 10px;
  }
}

.cart-section {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #ccc;
}

.cart-details input[type="number"] {
  width: 50px;
  margin: 5px;
}

.cart-summary,
.customer-info {
  margin-top: 20px;
  background: #f8f8f8;
  padding: 15px;
  border-radius: 10px;
}

.customer-info input,
.customer-info textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.checkout-btn {
  background-color: var(--lemurra-lightblue) !important;
  color: var(--lemurra-teal) !important;
  padding: 12px 20px;
  border: none !important;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-details input[type="number"] {
    width: 100%;
    margin: 8px 0;
  }
}
.checkout-btn:hover {
  background-color: #218838; /* Slightly darker green */
}
.checkout-btn {
  transition: background-color 0.3s ease;
}

/* Search Container Styles */
.search-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #ff6600;
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.2);
}

.search-input::placeholder {
    color: #999;
}
/* Bottom Navigation Bar for Mobile */
.bottom-nav {
    display: none;
  }
  
  @media screen and (max-width: 768px) {
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #ffffff;
      border-top: 1px solid #ddd;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      z-index: 10000;
      height: 56px; /* consistent height on all pages */
      transform: translateZ(0);
      will-change: transform;
      backface-visibility: hidden;
    }
  
    .bottom-nav a {
      flex: 1;
      text-align: center;
      font-size: 14px;
      color: #444;
      text-decoration: none;
    }
  
    .bottom-nav a span {
      display: block;
      font-size: 20px;
    }
  
    body {
      padding-bottom: 70px; /* prevent overlap with bottom menu on all pages */
    }
  }
  
/* Discount Badge Styles */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4444;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    z-index: 1;
}

/* Enhanced Price Display */
.price-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    flex-wrap: nowrap;
    justify-content: center;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9em;
    white-space: nowrap;
}

.discounted-price {
    color: #ff4444;
    font-weight: bold;
    font-size: 1.1em;
    white-space: nowrap;
}

.discount-percentage {
    background-color: #ffebee;
    color: #ff4444;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
    white-space: nowrap;
}

/* Mobile-specific discount styles */
@media screen and (max-width: 768px) {
    .discount-badge {
        font-size: 12px;
        padding: 3px 8px;
        top: 5px;
        right: 5px;
    }

    .price-container {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
        margin: 5px 0;
    }

    .discounted-price {
        font-size: 1em;
    }

    .original-price {
        font-size: 0.8em;
    }

    .discount-percentage {
        font-size: 0.7em;
        padding: 1px 4px;
        background-color: #ffebee;
        border-radius: 8px;
    }

    .cl3 {
        padding: 10px;
    }

    .cl3 h3 {
        font-size: 14px;
        margin: 5px 0;
    }

    .product-card {
        padding: 10px;
    }

    .product-card h3 {
        font-size: 14px;
        margin: 5px 0;
    }
}

/* Additional improvements for very small screens */
@media screen and (max-width: 480px) {
    .price-container {
        flex-direction: row;
        align-items: center;
        gap: 5px;
        flex-wrap: nowrap;
    }

    .discount-badge {
        font-size: 11px;
        padding: 2px 6px;
    }

    .discounted-price {
        font-size: 0.95em;
    }

    .original-price {
        font-size: 0.75em;
    }

    .discount-percentage {
        font-size: 0.65em;
        padding: 1px 3px;
    }
}

/* Top Banner */
.top-banner {
  background: linear-gradient(135deg, #c74957 0%, #ff6f3c 100%);
  color: white;
  padding: 6px 0; /* reduced height */
  text-align: center;
  position: relative;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(199, 73, 87, 0.3);
  display: block !important;
  width: 100%;
  min-height: 40px; /* reduced height */
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 12px 12px;
  animation: slideDown 0.6s ease-out;
  overflow: hidden;
}

.top-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.banner-icon {
  font-size: 1.2rem;
  animation: bounce 2s infinite, pulse 1.5s ease-in-out infinite alternate;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.banner-text-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-text {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  to {
    text-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 0 10px rgba(255,255,255,0.3);
  }
}

.banner-text-secondary {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  opacity: 0.9;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.banner-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--lemurra-teal);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 0 8px;
  line-height: 1;
}

.banner-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.banner-close:active {
  transform: scale(0.95);
}

.top-banner.hidden {
  display: none;
  animation: slideUp 0.4s ease-in;
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .top-banner {
    border-radius: 0 0 12px 12px;
    padding: 8px 0; /* reduced on mobile too */
  }
  
  .banner-content {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  
  .banner-text-container {
    text-align: center;
  }
  
  .banner-text {
    font-size: 0.9rem;
  }
  
  .banner-text-secondary {
    font-size: 0.8rem;
  }
  
  .banner-close {
    position: static;
    margin-top: 5px;
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
}

/* Trust Badges Section - Compact Version */
.trust-badges {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 28px 2%;
  position: relative;
  overflow: hidden;
}

.trust-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  position: relative;
  z-index: 2;
}

.trust-item {
  background: var(--lemurra-white) !important;
  padding: 18px 10px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(199, 73, 87, 0.08);
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199, 73, 87, 0.05), transparent);
  transition: left 0.6s;
}

.trust-item:hover::before {
  left: 100%;
}

.trust-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(199, 73, 87, 0.15);
  border-color: rgba(199, 73, 87, 0.2);
}

.trust-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  background: linear-gradient(135deg, #c74957 0%, #ff6f3c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 2px 8px rgba(199, 73, 87, 0.18);
  transition: all 0.3s ease;
  position: relative;
}

.trust-item h3 {
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
}

.trust-item h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #c74957, #ff6f3c);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.trust-item p {
  color: #666;
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .trust-badges {
    padding: 18px 2%;
  }
  .trust-container {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }
  .trust-item {
    padding: 12px 5px;
    border-radius: 10px;
  }
  .trust-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
  }
  .trust-item h3 {
    font-size: 0.92rem;
  }
  .trust-item p {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .trust-container {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .trust-item {
    padding: 8px 2px;
  }
}

/* Testimonials Section */
.testimonials {
  background: #fff;
  padding: 36px 5% 32px 5%;
  text-align: center;
}

/* Performance: avoid rendering cost for offscreen sections */
.featured,
.testimonials,
.top-products,
.category-highlights,
.trust-badges {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

.testimonials-title {
  font-size: 1.6rem;
  color: #c74957;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: stretch;
}

.testimonial-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #fbeee6 100%);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(199, 73, 87, 0.07);
  padding: 22px 20px 18px 20px;
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid #ffe3d6;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(199, 73, 87, 0.13);
  border-color: #ffbfae;
}

.testimonial-stars {
  color: #ffb300;
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  user-select: none;
}

.testimonial-quote {
  font-size: 1.02rem;
  color: #444;
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.5;
  min-height: 60px;
}

.testimonial-author {
  color: #c74957;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

@media (max-width: 900px) {
  .testimonials-container {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .testimonial-card {
    max-width: 95vw;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 24px 2% 18px 2%;
  }
  .testimonials-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  .testimonial-card {
    padding: 14px 8px 10px 8px;
    border-radius: 10px;
  }
  .testimonial-quote {
    font-size: 0.95rem;
    min-height: 0;
  }
  .testimonial-author {
    font-size: 0.9rem;
  }
}

/* Testimonial Slider Styles */
.testimonials-slider {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  min-height: 220px;
}

.testimonial-card {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
  transform: scale(0.98) translateY(10px);
}

.testimonial-card.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  position: relative;
  z-index: 2;
  transform: scale(1) translateY(0);
}

.testimonial-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(199, 73, 87, 0.12);
  color: #c74957;
  border: none;
  font-size: 1.6rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(199, 73, 87, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-slider-btn.prev { left: -48px; }
.testimonial-slider-btn.next { right: -48px; }
.testimonial-slider-btn:hover, .testimonial-slider-btn:focus {
  background: #ffbfae;
  color: #fff;
  box-shadow: 0 4px 16px rgba(199, 73, 87, 0.18);
}

.testimonial-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  z-index: 4;
  position: relative;
}
.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffe3d6;
  border: 2px solid #ffbfae;
  opacity: 0.6;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
}
.testimonial-dot.active {
  background: #ff6f3c;
  opacity: 1;
  transform: scale(1.2);
  border-color: #c74957;
}

@media (max-width: 900px) {
  .testimonials-slider {
    max-width: 98vw;
  }
  .testimonial-slider-btn.prev { left: -32px; }
  .testimonial-slider-btn.next { right: -32px; }
}
@media (max-width: 600px) {
  .testimonials-slider {
    min-height: 180px;
  }
  .testimonial-slider-btn {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
  .testimonial-slider-btn.prev { left: -18px; }
  .testimonial-slider-btn.next { right: -18px; }
  .testimonial-slider-dots {
    margin-top: 10px;
    gap: 7px;
  }
}

/* Extra-compact testimonials on very small screens */
@media (max-width: 480px) {
  .testimonials { padding: 16px 3% 14px 3%; }
  .testimonials-title { font-size: 1rem; margin-bottom: 12px; }
  .testimonials-slider { max-width: 92vw; min-height: 150px; }
  .testimonial-card { padding: 10px 8px; border-radius: 10px; }
  .testimonial-stars { font-size: 1rem; margin-bottom: 6px; }
  .testimonial-quote { font-size: 0.9rem; line-height: 1.4; }
  .testimonial-author { font-size: 0.85rem; }
  .testimonial-slider-btn { width: 26px; height: 26px; font-size: 1rem; }
  .testimonial-slider-btn.prev { left: -12px; }
  .testimonial-slider-btn.next { right: -12px; }
  .testimonial-slider-dots { margin-top: 8px; gap: 6px; }
  .testimonial-dot { width: 8px; height: 8px; border-width: 1px; }
}

/* Top Products Grid Gallery */
.top-products {
  background: #f8f9fa;
  padding: 36px 5% 32px 5%;
  text-align: center;
}
.top-products-title {
  font-size: 1.5rem;
  color: #c74957;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.top-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 18px;
}
.top-product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(199, 73, 87, 0.07);
  padding: 18px 12px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ffe3d6;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.top-product-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 32px rgba(199, 73, 87, 0.13);
  border-color: #ffbfae;
}
.top-product-card img {
  width: 100%;
  max-width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(199, 73, 87, 0.08);
}
.top-product-card h3 {
  font-size: 1.05rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 7px;
}
.top-product-price {
  color: #ff6f3c;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.top-product-btn {
  background: linear-gradient(135deg, #c74957 0%, #ff6f3c 100%);
  color: #fff;
  border: none;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(199, 73, 87, 0.08);
  display: inline-block;
}
.top-product-btn:hover, .top-product-btn:focus {
  background: linear-gradient(135deg, #ff6f3c 0%, #c74957 100%);
  box-shadow: 0 4px 16px rgba(199, 73, 87, 0.13);
}
.top-products-more {
  margin-top: 10px;
}
.top-products-viewall-btn {
  background: #fff;
  color: #c74957;
  border: 2px solid #c74957;
  border-radius: 20px;
  padding: 8px 28px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: 0 2px 8px rgba(199, 73, 87, 0.06);
  display: inline-block;
}
.top-products-viewall-btn:hover, .top-products-viewall-btn:focus {
  background: #c74957;
  color: #fff;
  border-color: #ff6f3c;
}
@media (max-width: 900px) {
  .top-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
  }
  .top-product-card img {
    max-width: 90px;
    height: 90px;
  }
}
@media (max-width: 600px) {
  .top-products {
    padding: 18px 2% 12px 2%;
  }
  .top-products-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .top-products-grid {
    gap: 8px;
  }
  .top-product-card {
    padding: 8px 4px 6px 4px;
    border-radius: 8px;
  }
  .top-product-card img {
    max-width: 60px;
    height: 60px;
    border-radius: 6px;
  }
  .top-product-card h3 {
    font-size: 0.92rem;
  }
  .top-product-price {
    font-size: 0.95rem;
  }
  .top-product-btn {
    font-size: 0.9rem;
    padding: 5px 12px;
  }
  .top-products-viewall-btn {
    font-size: 0.92rem;
    padding: 6px 16px;
    border-radius: 14px;
  }
}

/* Ultra-compact Category Highlights */
.category-highlights {
  background: #fff5f0;
  padding: 6px 1% 4px 1%;
  text-align: center;
}
.category-highlights-title {
  font-size: 0.92rem;
  color: #c74957;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.category-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 2px;
  justify-content: center;
  align-items: stretch;
  max-width: 700px;
  margin: 0 auto;
}
.category-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(199, 73, 87, 0.03);
  padding: 2px 1px 2px 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #c74957;
  border: 1px solid #ffe3d6;
  transition: transform 0.15s, box-shadow 0.15s, border 0.15s;
  position: relative;
  cursor: pointer;
  min-width: 0;
  max-width: 110px;
}
.category-card:hover, .category-card:focus {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 2px 8px rgba(199, 73, 87, 0.07);
  border-color: #ffbfae;
  background: #fff8f4;
}
.category-icon {
  font-size: 0.8rem;
  margin-bottom: 1px;
  filter: drop-shadow(0 1px 2px rgba(199, 73, 87, 0.03));
}
.category-name {
  font-size: 0.62rem;
  font-weight: 700;
  margin-bottom: 1px;
  color: #c74957;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px;
}
.category-desc {
  font-size: 0.52rem;
  color: #444;
  opacity: 0.8;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px;
}
@media (max-width: 700px) {
  .category-highlights-grid {
    grid-template-columns: repeat(4, minmax(80px, 1fr));
    gap: 1px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .category-highlights-grid::-webkit-scrollbar {
    display: none;
  }
  .category-card {
    min-width: 80px;
    max-width: 100px;
    padding: 1px 0 1px 0;
  }
  .category-icon {
    font-size: 0.7rem;
  }
  .category-name {
    font-size: 0.52rem;
    max-width: 70px;
  }
  .category-desc {
    font-size: 0.42rem;
    max-width: 70px;
  }
}

/* Product Page Hero Section */
.products-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff5f0 100%);
  padding: 32px 0 18px 0;
  text-align: center;
}
.products-title {
  font-size: 2rem;
  color: #c74957;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.products-subtitle {
  color: #666;
  font-size: 1.08rem;
  margin-bottom: 0;
}

/* Search Bar */
.search-container {
  display: flex;
  justify-content: center;
  margin: 18px 0 10px 0;
}
.search-bar-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
}
.search-input {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border-radius: 22px;
  border: 1.5px solid #ffe3d6;
  font-size: 1rem;
  outline: none;
  background: #fff;
  transition: border 0.2s;
  box-shadow: 0 2px 8px rgba(199, 73, 87, 0.04);
}
.search-input:focus {
  border-color: #ff6f3c;
}
.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #c74957;
  pointer-events: none;
  opacity: 0.7;
}

/* Category Filters */
.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 18px 0;
}
.filter-btn {
  background: var(--lemurra-lightblue) !important;
  color: var(--lemurra-teal) !important;
  border: 1.5px solid #ffe3d6;
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(199, 73, 87, 0.04);
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-btn.active, .filter-btn:focus {
  background: linear-gradient(135deg, #ffbfae 0%, #fff5f0 100%);
  color: #c74957;
  border-color: #ffbfae;
  box-shadow: 0 4px 16px rgba(199, 73, 87, 0.09);
}
.filter-btn:hover {
  background: #fff8f4;
  border-color: #ffbfae;
}
.filter-icon {
  font-size: 1.1em;
  margin-right: 2px;
}

/* Product Grid */
.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  padding: 10px 0 30px 0;
  justify-content: center;
  align-items: stretch;
  min-height: 200px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(199, 73, 87, 0.07);
  padding: 18px 12px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ffe3d6;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 32px rgba(199, 73, 87, 0.13);
  border-color: #ffbfae;
}
.product-card img {
  width: 100%;
  max-width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(199, 73, 87, 0.08);
}
.product-card h3 {
  font-size: 1.05rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 7px;
}
.price-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.discounted-price {
  color: #ff6f3c;
  font-size: 1.08rem;
  font-weight: 700;
}
.original-price {
  color: #999;
  font-size: 0.98rem;
  text-decoration: line-through;
}
.discount-percentage {
  color: #28a745;
  font-size: 0.95rem;
  font-weight: 600;
}
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff6f3c 0%, #c74957 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(199, 73, 87, 0.08);
  z-index: 2;
  letter-spacing: 0.5px;
}
.product-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.info-btn, .cart-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.2s;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(199, 73, 87, 0.06);
}
.info-btn {
  background: linear-gradient(135deg, #007bff 0%, #5bc0ff 100%);
  color: white;
}
.info-btn:hover {
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}
.cart-btn {
  background: linear-gradient(135deg, #28a745 0%, #6ee7b7 100%);
  color: white;
}
.cart-btn:hover {
  background: linear-gradient(135deg, #218838 0%, #28a745 100%);
}
.cart-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
  animation: slideIn 0.3s ease-out;
  font-size: 1rem;
  font-weight: 600;
}
@keyframes slideIn {
  from {
      transform: translateX(100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}
.no-products-message {
  text-align: center;
  color: #c74957;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 30px 0 40px 0;
  display: none;
}
@media (max-width: 900px) {
  .product-container {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }
  .product-card img {
    max-width: 90px;
    height: 90px;
  }
}
@media (max-width: 600px) {
  .products-hero {
    padding: 18px 0 8px 0;
  }
  .products-title {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  .products-subtitle {
    font-size: 0.92rem;
  }
  .search-bar-wrapper {
    max-width: 98vw;
  }
  .product-container {
    gap: 6px;
    padding: 4px 0 16px 0;
  }
  .product-card {
    padding: 8px 4px 6px 4px;
    border-radius: 8px;
  }
  .product-card img {
    max-width: 60px;
    height: 60px;
    border-radius: 6px;
  }
  .product-card h3 {
    font-size: 0.92rem;
  }
  .discounted-price {
    font-size: 0.95rem;
  }
  .original-price {
    font-size: 0.85rem;
  }
  .discount-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
  }
  .info-btn, .cart-btn {
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 14px;
  }
  .cart-message {
    font-size: 0.92rem;
    padding: 10px 16px;
    border-radius: 6px;
  }
  .no-products-message {
    font-size: 0.95rem;
    margin: 18px 0 24px 0;
  }
}

/* Product Image Wrapper for Grid */
.product-image-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  min-height: 140px;
}
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.product-card {
  padding: 18px 12px 10px 12px;
}
@media (max-width: 900px) {
  .product-image-wrapper {
    min-height: 100px;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 600px) {
  .product-image-wrapper {
    min-height: 70px;
    aspect-ratio: 4/3;
  }
}

/* Product Image Wrapper for Grid - Enhanced */
.product-image-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  min-height: 180px;
  box-shadow: 0 4px 18px rgba(199, 73, 87, 0.10);
  transition: box-shadow 0.3s;
}
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-image-wrapper img {
  transform: scale(1.08);
}
.product-card:hover .product-image-wrapper {
  box-shadow: 0 8px 32px rgba(199, 73, 87, 0.18);
}
@media (max-width: 900px) {
  .product-image-wrapper {
    min-height: 120px;
    aspect-ratio: 3/4;
  }
}
@media (max-width: 600px) {
  .product-image-wrapper {
    min-height: 80px;
    aspect-ratio: 3/4;
  }
}

/* Modern Product Page Styles */
.products-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 20px 20px;
    margin-bottom: 40px;
}

.products-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.products-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.search-bar-wrapper {
    position: relative;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 30px;
    border: none;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
}

.search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #667eea;
}

.categories {
    margin-bottom: 50px;
    padding: 0 20px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e1e5e9;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover, .filter-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.filter-icon {
    font-size: 1.1rem;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.product-info {
    padding: 25px;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    display: -webkit-box;
    
    overflow: hidden;
}

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

.discounted-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
}

.original-price {
    font-size: 1.1rem;
    color: #95a5a6;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-percentage {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-buttons {
    display: flex;
    gap: 12px;
}

.info-btn, .cart-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.info-btn {
    background: #f8f9fa;
    color: #667eea;
    border: 2px solid #e1e5e9;
}

.info-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.cart-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cart-message {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
    font-weight: 500;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.no-products-message {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--lemurra-lightblue) !important;
    color: var(--lemurra-teal) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 900px) {
    .product-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }

    .products-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .products-hero {
        padding: 60px 20px;
    }

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

    .products-subtitle {
        font-size: 1rem;
    }

    .search-input {
        padding: 16px 50px 16px 25px;
        font-size: 1rem;
    }

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

    .product-image-wrapper {
        height: 250px;
    }

    .product-info {
        padding: 20px;
    }

    .product-card h3 {
        font-size: 1rem;
    }

    .discounted-price {
        font-size: 1.3rem;
    }

    .original-price {
        font-size: 1rem;
    }

    .product-buttons {
        flex-direction: column;
    }

    .cart-message {
        top: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .category-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .discount-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* FAQ Preview Box */
.faq-preview {
  background: #fffbe7;
  border-left: 4px solid #ff6600;
  border-radius: 10px;
  padding: 18px 20px;
  margin: 30px auto 20px auto;
  max-width: 600px;
  box-shadow: 0 2px 12px rgba(255,102,60,0.07);
}

/* =====================
   THEME OVERRIDE: Modern Light + Blue Accent
   - White/Neutral for backgrounds
   - Deep slate for text/surfaces
   - Vivid blue for accents and CTAs
   This section remaps variables and key components for a cohesive look.
===================== */
:root {
  --lemurra-white: #ffffff;
  --lemurra-teal: #0f172a; /* slate-900 */
  --lemurra-lightblue: #3b82f6; /* blue-500 */
  --accent-rgb: 59,130,246; /* for rgba(...) usages */
}

body {
  background: var(--lemurra-white);
  color: var(--lemurra-teal);
}

/* Header/Footer surfaces */
.header {
  background: #F5F5DC !important; /* beige */
  color: #0f172a !important;
}
.header nav a { color: #0f172a !important; }
.header a, .header li, .header nav, .header ul { color: #0f172a !important; }
.header img { background: var(--lemurra-white); }
nav ul li a:hover { color: var(--lemurra-lightblue) !important; background-color: rgba(var(--accent-rgb),0.08); }
.footer { background: #F5F5DC !important; color: #0f172a !important; }
.footer a { color: #0f172a; }
.footer p, .footer h3, .footer h4 { color: #0f172a; }
.footer a:hover { color: #0f172a; background: rgba(15,23,42,0.06); }
hr { border-top: 1px solid rgba(30,30,30,0.15); }
a { color: var(--lemurra-teal); }
a:hover { color: var(--lemurra-lightblue); }
h1, h2, h3, .title { color: var(--lemurra-teal); }

/* Product page hero */
.products-hero { background: linear-gradient(135deg,#eff6ff 0%, #dbeafe 100%) !important; color: var(--lemurra-teal); }
.products-title { color: var(--lemurra-lightblue); }
.products-subtitle { color: #334155; opacity: 0.85; }

/* Search */
.search-input { border-color: rgba(10,10,10,0.12); }
.search-input:focus { border-color: var(--lemurra-lightblue); box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.15); }
.search-icon { color: var(--lemurra-lightblue); }

/* Filters */
.filter-btn { background: var(--lemurra-white); color: var(--lemurra-teal); border-color: rgba(10,10,10,0.12); }
.filter-btn:hover, .filter-btn.active { background: var(--lemurra-lightblue); color: var(--lemurra-teal); border-color: var(--lemurra-lightblue); box-shadow: 0 8px 25px rgba(var(--accent-rgb),0.3); }

/* Cards */
.product-card { background: var(--lemurra-white); border: 1px solid rgba(10,10,10,0.06); }
.product-card h3 { color: var(--lemurra-teal); }
.discounted-price { color: var(--lemurra-teal); }
.original-price { color: #7a7a7a; }
.discount-percentage { background: var(--lemurra-lightblue); color: var(--lemurra-teal); }
.discount-badge { background: var(--lemurra-lightblue); color: var(--lemurra-teal); }

/* Buttons */
.info-btn { background: #f2f2f2; color: var(--lemurra-teal); border: 2px solid rgba(10,10,10,0.12); }
.info-btn:hover { background: var(--lemurra-teal); color: var(--lemurra-white); border-color: var(--lemurra-teal); }
.cart-btn { background: linear-gradient(135deg, var(--lemurra-lightblue), #2563eb); color: var(--lemurra-teal); }
.cart-btn:hover { box-shadow: 0 8px 25px rgba(var(--accent-rgb),0.4); }

/* Utilities */
.back-to-top { background: var(--lemurra-lightblue) !important; color: var(--lemurra-teal) !important; }
.category-card { border-color: rgba(10,10,10,0.08); }
.top-banner, .hero-slider, .buy-now-btn, .top-product-btn { background: var(--lemurra-white) !important; color: var(--lemurra-teal) !important; border-color: rgba(15,23,42,0.08) !important; }
.top-products-viewall-btn { color: var(--lemurra-lightblue); border-color: var(--lemurra-lightblue); }
.top-products-viewall-btn:hover { background: var(--lemurra-lightblue); color: var(--lemurra-teal); }
.faq-preview-question {
  font-weight: 600;
  color: var(--lemurra-lightblue);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.faq-preview-link {
  color: var(--lemurra-lightblue);
  text-decoration: underline;
  font-size: 1rem;
  cursor: pointer;
}
@media (max-width: 600px) {
  .faq-preview { padding: 12px 8px; font-size: 0.98rem; }
  .faq-preview-question { font-size: 1rem; }
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-links-grid li {
  margin: 0;
  padding: 0;
  text-align: left;
}
.footer-links-grid a {
  display: inline-block;
  padding: 8px 0;
  color: var(--lemurra-lightblue);
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.footer-links-grid a:hover {
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--lemurra-white);
}
@media (max-width: 600px) {
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
  }
  .footer-links-grid a {
    font-size: 0.98rem;
    padding: 7px 0;
  }
}

/* Explore our store */
.explore-store { max-width: 1200px; margin: 24px auto; padding: 16px; background: #f8fafc; border: 1px solid rgba(15,23,42,0.06); border-radius: 16px; }
.explore-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.explore-header h2 { margin: 0; color: var(--lemurra-teal); font-size: 1.5rem; letter-spacing: 0.2px; }
.explore-viewall { color: var(--lemurra-lightblue); border: 1px solid var(--lemurra-lightblue); padding: 6px 12px; border-radius: 10px; text-decoration: none; font-weight: 600; background: var(--lemurra-white); }
.explore-viewall:hover { background: var(--lemurra-lightblue); color: var(--lemurra-teal); }
.explore-track { position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: 80%; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2px 2px 10px 2px; scrollbar-width: none; }
.explore-track::-webkit-scrollbar { display: none; }
.explore-card { display: block; background: var(--lemurra-white); border: 1px solid rgba(10,10,10,0.06); border-radius: 16px; overflow: hidden; scroll-snap-align: start; box-shadow: 0 4px 14px rgba(0,0,0,0.06); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.explore-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.explore-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; display: block; background: #ffffff; padding: 10px; }
.explore-controls { display: none; }
.explore-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(10,10,10,0.12); background: var(--lemurra-white); color: var(--lemurra-teal); box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.explore-btn:hover { border-color: var(--lemurra-lightblue); box-shadow: 0 10px 24px rgba(var(--accent-rgb),0.18); }
@media (min-width: 768px) {
  .explore-track { grid-auto-columns: 28%; }
  .explore-controls { display: flex; gap: 10px; justify-content: flex-end; margin-top: 10px; }
}
@media (min-width: 1024px) {
  .explore-track { grid-auto-columns: 20%; }
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Main Container */
.blog-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--lemurra-lightblue) 0%, var(--lemurra-teal) 100%);
    color: var(--lemurra-white);
    padding: 60px 20px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 40px;
}

.blog-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--lemurra-white);
}

.blog-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    color: var(--lemurra-white);
}

/* Blog Container */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Section Title */
.blog-section-title {
    font-size: 2rem;
    color: var(--lemurra-teal);
    margin-bottom: 30px;
    text-align: center;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
    background: var(--lemurra-white);
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    background: var(--lemurra-lightblue);
    color: var(--lemurra-teal);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.3rem;
    color: var(--lemurra-teal);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: #888;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
}

/* Blog Newsletter Section */
.blog-newsletter {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 20px;
    margin-top: 60px;
    border-radius: 16px;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h2 {
    color: var(--lemurra-teal);
    font-size: 2rem;
    margin-bottom: 12px;
}

.newsletter-box p {
    color: #666;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(10, 10, 10, 0.12);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--lemurra-lightblue);
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--lemurra-teal);
    color: var(--lemurra-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
    background: var(--lemurra-lightblue);
    transform: translateY(-2px);
}

/* Blog Post Page Styles */
.blog-post-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.blog-post-container {
    background: var(--lemurra-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

/* Blog Breadcrumb */
.blog-breadcrumb {
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #666;
}

.blog-breadcrumb a {
    color: var(--lemurra-lightblue);
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-breadcrumb span {
    color: var(--lemurra-teal);
    font-weight: 600;
}

/* Blog Post Header */
.blog-post-header {
    margin-bottom: 30px;
}

.blog-post-category {
    display: inline-block;
    background: var(--lemurra-lightblue);
    color: var(--lemurra-teal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.blog-post-title {
    font-size: 2.5rem;
    color: var(--lemurra-teal);
    margin-bottom: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 0.95rem;
}

/* Blog Post Featured Image */
.blog-post-featured-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Post Content */
.blog-post-content {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

.blog-post-intro {
    font-size: 1.2rem;
    color: var(--lemurra-teal);
    font-weight: 500;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid var(--lemurra-lightblue);
    border-radius: 8px;
}

.blog-post-content h2 {
    color: var(--lemurra-teal);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.blog-post-content h3 {
    color: var(--lemurra-teal);
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 20px;
    color: #444;
}

.blog-post-body p {
    margin: 0 0 16px 0;
    line-height: 1.8;
    color: #333;
    white-space: pre-line;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
    color: #444;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.blog-post-content strong {
    color: var(--lemurra-teal);
    font-weight: 600;
}

/* Blog Post CTA */
.blog-post-cta {
    background: linear-gradient(135deg, var(--lemurra-lightblue) 0%, var(--lemurra-teal) 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    color: var(--lemurra-white);
}

.blog-post-cta h3 {
    color: var(--lemurra-white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.blog-post-cta p {
    color: var(--lemurra-white);
    opacity: 0.95;
    margin-bottom: 20px;
}

.blog-cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--lemurra-white);
    color: var(--lemurra-teal);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Blog Post Share */
.blog-post-share {
    margin: 40px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
}

.blog-post-share h3 {
    color: var(--lemurra-teal);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-buttons a {
    padding: 10px 20px;
    background: var(--lemurra-teal);
    color: var(--lemurra-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.share-buttons a:hover {
    background: var(--lemurra-lightblue);
    transform: translateY(-2px);
}

/* Related Posts */
.blog-related-posts {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.blog-related-posts h3 {
    color: var(--lemurra-teal);
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.blog-related-card {
    background: var(--lemurra-white);
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-related-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-related-card h4 {
    padding: 16px;
    color: var(--lemurra-teal);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2rem;
    }

    .blog-hero-content p {
        font-size: 1rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-post-container {
        padding: 24px 20px;
    }

    .blog-post-title {
        font-size: 1.8rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }

    .blog-post-content h2 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 40px 16px;
    }

    .blog-hero-content h1 {
        font-size: 1.75rem;
    }

    .blog-post-title {
        font-size: 1.5rem;
    }

    .blog-post-intro {
        font-size: 1rem;
        padding: 16px;
    }
}
