 :root {
  --brand: #b8860b;
  --brand-dark: #8b6508;
  --ink: #1f1f1f;
  --bg: #f7f7f9;
  --card: #ffffff;	 
        --bg: #050505;
        --card-height: 180px; /* Tall format for 3-col fit */
        --gap: 8px; /* Tight gap */
        --accent: #ff3b3b;
        --glass: rgba(0, 0, 0, 0.6);
        --border: rgba(255, 255, 255, 0.15);
    

}  
* { box-sizing: border-box; }
body { margin:0; font-family:systemx-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; background:var(--bg); 
color:var(--ink); }
/*==========================*/
body.noscroll {    
  position: fixed !important;    
  overflow: hidden !important;    
  height: 100vh !important;    
  width: 100% !important;    
}  
/*==========================*/
  .container {
padding: 5px;
padding-bottom: 30;
text-align: center;
background: #adf;
border-radius:4px;
}
/*==========================*/

.menu-toggle {
position: fixed;
top: 10px;
left: 10px;
font-size: 34px;
cursor: pointer;
z-index: 2000;
background: #fff;
border-radius: 6px;
padding: 4px 8px;
opacity: 0.8;
}


.menu-overlay {
position: fixed;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #2d2d2d;
color: white;
z-index: 1500;
display: flex;
flex-direction: column;
padding: 20px;
transition: left 0.3s ease-in-out;
}
.menu-overlay.show { left: 0; }

.menu-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.menu-header h2 {
font-size: 26px;
color: white;
}

.menu-overlay .close {
position: absolute;
top: 10px;
right: 10px;
z-index: 1001;
font-size: 28px;
cursor: pointer;
background: none;
color: red;
border: none;
}

.menu-overlay li {
list-style: none;
margin-top: 5px;
left: 5px;
text-align: left;
color: white;
}

h1, h2, h3 {
margin-bottom: 10px;
}
h3 {
color: black;
}
h2 {
color: black;
}
/*==========================*/
header {

width:100%;
padding:24px;
border-radius:16px;
backdrop-filter: blur(25px);
color: white;
display: flex;
flex-direction: column;
align-items:center;
font-weight: bold;
background-size: cover;
margin-bottom: 10px;

}
/*==========================*/

.testimonial-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.testimonial-item {
  background: #eee;
  padding: 20px;
  border-left: 6px solid #ffcc00;
  border-radius: 20px;
  box-sizing: border-box;
  font-style: italic;
  font-size: 14px;
  
  /* Smooth Fade Transition */
  opacity: 0; /* Start hidden */
  transition: opacity 0.8s ease-in-out;
}

/* This class is added by JS to show the item */
.visible {
  opacity: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.testimonial-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #00b7d4;
  object-fit: cover;
	  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version */
  pointer-events: none; /* Prevents cursor pointer effect */
  -webkit-user-drag: none; /* Prevents dragging on some browsers */

}

.stars {
  color: gold;
  margin-top: 5px;
}


/* Responsive */
@media (max-width: 480px) {
nav li {
flex-direction: column;
gap: 2px;
}
}

.menu-overlay  li {
margin: 10px;
opacity: 0;
transform: translateX(-30px);
}

.menu-overlay.show.animate  li {
animation: slideIn 0.5s forwards;
}

.menu-overlay.show.animate  li:nth-child(1) { animation-delay: 0.1s; }
.menu-overlay.show.animate  li:nth-child(2) { animation-delay: 0.2s; }
.menu-overlay.show.animate  li:nth-child(3) { animation-delay: 0.3s; }
.menu-overlay.show.animate  li:nth-child(4) { animation-delay: 0.4s; }
.menu-overlay.show.animate  li:nth-child(5) { animation-delay: 0.5s; }
.menu-overlay.show.animate  li:nth-child(6) { animation-delay: 0.6s; }
.menu-overlay.show.animate  li:nth-child(7) { animation-delay: 0.7s; }
.menu-overlay.show.animate  li:nth-child(8) { animation-delay: 0.8s; }
.menu-overlay.show.animate  li:nth-child(9) { animation-delay: 0.9s; }
.menu-overlay.show.animate  li:nth-child(10) { animation-delay: 1.0s; }
@keyframes slideIn {
to {
opacity: 1;
transform: translateX(0);
}
}


.menu-overlay li a {
color: white;
font-size: 16px;
text-decoration: none;
}


    .menu-profile {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      margin-top: 5px;
      margin-bottom: 15px;
      left: 5px;
    }
    .menu-profile .profile-img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      box-shadow: 5px solid cyan;
      left: 5px;
    }
    .menu-profile small {
      margin-top: 8px;
      color: #ccc;
    }
    .auth-button {
      position: absolute;
      bottom: 5px;
      left: 20px;
      right: 20px;
      text-align: center;
    }
    .auth-button button {
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      background: cyan;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      width: 100%;
    }
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
}
.username {
font-weight: bold;
font-size: 16px;
} 

        footer {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 60px 0 20px;
            font-size: 16px;
            line-height: 1.6;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }

     
.footer-logo {
  display: flex;
  align-items: center; /* vertical alignment */
  gap: 15px; /* space between image and text */
}

.footer-logo img {
  width: 100px;
  height: auto;
}

.footer-logo span {
	font-size: 14px;
  line-height: 1.4;
  color: #fafafa; /* optional */
}


        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #ffffff;
        }
          .contact-info h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-section li {
            list-style: none;
        }

        .footer-section  li {
            margin-bottom: 10px;
        }

        .footer-section  li a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section  li a:hover {
            color: #ffffff;
        }

        .contact-info p a {
    color: #cccccc;
    text-decoration: none;
}

.contact-info p a:hover {
    color: #ffffff; /* Optional hover color */
}

        .footer-bottom {
            border-top: 1px solid #333333;
            padding-top: 20px;
            text-align: center;
            margin-top: 40px;
            color: #cccccc;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }}
.category-grid {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 5px;
   margin-bottom: 10px;
}

.cat-menu {
  position: relative;
  width: 100px;
  height: 60px;
  border-radius: 8px 40px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.cat-menu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.category {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 4px 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.shop-header {
  position: relative;
  height: 240px;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
}

.shop-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('header-img.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(7px); /* Adjust blur strength */
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
}
.cta-btn {
  display: inline-block;
  background: var(--brand);
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
}
.section {
  margin-bottom: 50px;
}

.section h2 {
  margin-bottom: 20px;
  text-align: center;
}

/* ✅ Always 2 columns minimum, grows on larger screens */
.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  justify-items: center;
}

/* ✅ Limit shrinking so it never becomes 1 per row */
@media (max-width: 480px) {
  .grid {
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns even on small phones */
  }
}

/* ✅ Optional: Add more columns automatically for big screens */
@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
  transition: transform 0.2s;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

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

.product-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 10px;
  object-fit: cover;
    display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.card h3 {
  font-size: 16px;
  margin: 8px 0 5px;
  word-wrap: break-word;
  color: #222;
}

.card p {
  font-size: 14px;
  color: #666;
}

.add {
  margin-top: 8px;
  border: none;
  background: #00b7d4;
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}
.add:hover {
  opacity: 0.9;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #142d3d;
  backdrop-filter: blur(12px) saturate(180%);
  color: white;
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 16px;
  font-style: italic;
	z-index: 3;
}
#scrollTop {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 130px;
    right: 2px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background: #4ea5c7;
    color: white;
    cursor: pointer;
    padding: 6px;
    border-radius: 40px 20px;
    transition: opacity 0.3s ease, transform 0.2s ease;
  }
  #scrollTop:hover {
    background: #48c8fa;
    transform: scale(1.1);
  }
	    .socials {
    display: flex;
    gap: 10px;
    padding: 1rem;
    justify-content: center;
  }

  .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  }

  .socials a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  }

  .facebook { background: #3b5998; }
  .instagram { background: #e1306c; }
  .tiktok { background: #000; }
  .x { background: #000; }
  .whatsapp { background: #00b489; }

  /* Optional Tooltip */
  .socials a::after {
    content: attr(data-label);
    position: absolute;
    bottom: -30px;
    background: #333;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .socials a:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
 h2,
.sections h2 {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: transparent;
	backdrop-filter: blur(40px);
  color: #fafafa;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 18px;
}
hr {
  border: none;
  height: 3px;
  background: linear-gradient(to right, transparent, #1f1f1f, transparent);
}

/* Image preview overlay */
.img-preview {
  display: none; 
  position: fixed;
  z-index: 3000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center; 
  align-items: center;
}

.img-preview img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 12px;
  animation: zoomIn 2s ease forwards; /* slow zoom */
}

/* Zoom animation */
@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.2); }
}

/* Close button */
.img-preview .close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
	z-index: 2002
}

.input__container {
  position: relative;
  background: rgba(255, 255, 255, 0.664);
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 22px;
  max-width: 300px;
  transition: transform 400ms;
  perspective: 500px;
}

.shadow__input {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  filter: blur(30px);
  border-radius: 20px;
  background-color: #999cff;
  background-image: radial-gradient(at 85% 51%, hsla(60,60%,61%,1) 0px, transparent 50%),
    radial-gradient(at 74% 68%, hsla(235,69%,77%,1) 0px, transparent 50%),
    radial-gradient(at 64% 79%, hsla(284,72%,73%,1) 0px, transparent 50%),
    radial-gradient(at 75% 16%, hsla(283,60%,72%,1) 0px, transparent 50%),
    radial-gradient(at 90% 65%, hsla(153,70%,64%,1) 0px, transparent 50%),
    radial-gradient(at 91% 83%, hsla(283,74%,69%,1) 0px, transparent 50%),
    radial-gradient(at 72% 91%, hsla(213,75%,75%,1) 0px, transparent 50%);
}

.input__button__shadow {
  cursor: pointer;
  border: none;
  background: none;
  transition: transform 400ms, background 400ms;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 5px;
}

.input__button__shadow:hover {
  background: rgba(255, 255, 255, 0.411);
}

.input__search {
  width: 100%;
  border-radius: 20px;
  outline: none;
  border: none;
  padding: 8px;
 font-size: 16px;
  position: relative;
}
	  .input__close__button {
  display: none;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 18px;
  color: #333;
  padding: 5px;
  border-radius: 12px;
  transition: background 300ms;
}

.input__close__button:hover {
  background: rgba(255, 255, 255, 0.411);
}
/* Taller "no results" banner under the header */
#searchNoResults {
  display: none;
  margin: 40px auto;
  padding: 60px 20px;
  min-height: 60vh;
  text-align: center;
  color: #555;
  font-size: 18px;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#searchNoResults img {
  width: 180px;
  opacity: 0.75;
}
.cart-icon {
  position: fixed;
  top: 80px;
  right: -120px; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  text-decoration: none;
  padding: 10px 25px;
  background: #fff;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  box-shadow: 0 6px 20px rgba(255, 136, 0, 0.6);
  z-index: 999;
  opacity: 0;
	backdrop-filter: blur(8px);
  pointer-events: none;
  transition: right 0.6s ease, opacity 0.4s ease;
}

/* When cart is active, slide in */
.cart-icon.show {
  right: 0;
  opacity: 1;
  pointer-events: auto;
}

/* hover effect */
.cart-icon:hover {
  box-shadow: 0 6px 25px rgba(255, 136, 0, 0.6);
  transform: translateX(-3px);
}

/* counter badge */
#cartCount {
  position: absolute;
  top: -2px;
  right: 17px;
  background: red;
  color: white;
  font-size: 13px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  box-shadow: 0 0 6px rgba(255,0,0,0.5);
}
/* Skeleton loader styles */
.skeleton-card {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 3px rgba(0,0,0,0.05);
  animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-img,
.skeleton-text,
.skeleton-btn {
  border-radius: 8px;
  background: linear-gradient(90deg, #e0e0e0 25%, #f4f4f4 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite linear;
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  margin-bottom: 10px;
}

.skeleton-text {
  height: 16px;
  margin: 6px 0;
}

.skeleton-btn {
  height: 30px;
  width: 80%;
  margin: 10px auto 0;
  border-radius: 20px;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0% { opacity: 0.9; }
  50% { opacity: 1; }
  100% { opacity: 0.9; }
}
.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; 
  overflow: hidden;
}

@media (max-width: 480px) {
  #notif-count {
    font-size: 10px;
    padding: 2px 5px;
    top: -1px;
    right: -3px;
  }
}
	  /* Responsive on small screens */
@media (max-width: 480px) {
  .notif-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}
	  .skeleton-card1	{
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 3px rgba(0,0,0,0.05);
  animation: pulse 1.5s infinite ease-in-out;
}
	  .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-in-out;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.name{
font-family: "Rubik 80s Fade", systemx-ui;
font-style: normal;
font-weight: 400;
border-radius: 14px;
padding: 2px;
color: blue;
background: rgba(255, 255, 255, 0.664);
backdrop-filter: blur(40px);
box-shadow:  0 10px 10px 0 #adf, inset 0 -9px 9px 0 #00b7d4;
}

/* --- Modal Overlay --- */
.product-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dim background */
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px; /* Prevents touching screen edges */
}

/* --- The Compact Box --- */
.modal-content {
  background-color: #fff;
  width: 100%;
  max-width: 450px; /* Phone-sized width, looks good on desktop too */
  max-height: 90vh; /* Never taller than 90% of screen */
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Keeps corners round */
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeInUp 0.3s ease;
  position: relative;
}

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

/* --- Scrollable Area (Middle) --- */
.modal-body {
  overflow-y: auto; /* Only this part scrolls */
  padding: 0;
  flex-grow: 1;
}

/* --- Image Area --- */
.main-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px; /* Fixed height - prevents "too tall" */
  background: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 10px;

	border-radius: 12px;
}

/* Arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  width: 35px; height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.prev { left: 10px; }
.next { right: 10px; }

/* Thumbnails */
.thumbnails-container {
  padding: 10px 15px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.thumb-img {
  width: 50px; height: 50px;
  border-radius: 12px;
  object-fit: cover;
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid transparent;
}
.thumb-img.active-thumb { opacity: 1; border-color: #ffae00; }

/* --- Details Area --- */
.modal-info {
  padding: 20px;
}

.modal-info h2 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #222;
}

.modal-price {
  font-size: 22px;
  font-weight: bold;
  color: #d32f2f;
  margin-bottom: 15px;
}

.modal-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- Footer (Buttons) - Fixed at bottom --- */
.modal-footer {
  background: #fff;
  padding: 15px 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

.add-btn-large, .buy-now-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.add-btn-large { background: #00b7d4; color:#f3f4f6; }
.buy-now-btn { background: #000; color: #fff; }

/* Close Button */
.close-modal {
  position: absolute;
  top: 10px; right: 10px;
  background: transparent;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #333;
  font-size: 40px;
	padding: 20px:
}



/* 2. The Share Button Style */
.share-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10; /* Sits on top of the image */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s, background-color 0.2s;
}

.share-btn:hover {
    transform: scale(1.1);
    background-color: #fff;
    color: #6366f1; /* Your brand color */
}

.share-btn:active {
    transform: scale(0.9);
}

.share-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    
    /* ADD THIS LINE: */
    pointer-events: none; 
}
/* --- WISHLIST HEART BUTTON --- */
.wishlist-btn {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10; /* Above the image */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.wishlist-btn svg {
    width: 20px;
    height: 20px;
    stroke: #333; /* Default outline color */
    stroke-width: 2;
    fill: none; /* Empty heart by default */
    transition: all 0.3s ease;
    pointer-events: none; /* Clicks go through SVG to Button */
}

/* Active State (Liked) */
.wishlist-btn.active svg {
    fill: #ef4444; /* Red Fill */
    stroke: #ef4444; /* Red Outline */
    animation: heart-pop 0.3s ease-out;
}

/* Animation */
@keyframes heart-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

    .mosaic-container {
        max-width: 100%;
        padding: 15px 10px; /* Small side padding to maximize width */
        perspective: 800px; /* The 3D Environment */
    }

    .section-title {
        color: white;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        padding-left: 5px;
        border-left: 3px solid var(--accent);
    }

    /* --- THE GRID (STRICT 3 COLUMNS) --- */
    .micro-grid {
        display: grid;
        /* This forces 3 columns no matter how small the screen is */
        grid-template-columns: repeat(3, 1fr); 
        gap: var(--gap);
    }

    /* --- CARD STYLING --- */
    .micro-card {
        position: relative;
        height: var(--card-height);
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none;
        background: #111;
        
        /* 3D Setup */
        transform-style: preserve-3d;
        transform: translateZ(0);
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        
        /* The Breathing Animation */
        animation: floatPulse 4s ease-in-out infinite;
    }

    /* Randomize animation start times so they don't move in unison */
    .micro-card:nth-child(1) { animation-delay: 0.0s; }
    .micro-card:nth-child(2) { animation-delay: 0.5s; }
    .micro-card:nth-child(3) { animation-delay: 1.0s; }
    .micro-card:nth-child(4) { animation-delay: 1.5s; }
    .micro-card:nth-child(5) { animation-delay: 0.2s; }
    .micro-card:nth-child(6) { animation-delay: 0.7s; }

    /* --- LAYERS --- */
    .mc-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    /* Gradient Overlay to make text readable */
    .mc-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
        z-index: 1;
    }

    /* The Text Pill */
    .mc-label {
        position: absolute;
        bottom: 10px;
        left: 5px;
        right: 5px; /* Centers it horizontally with padding */
        text-align: center;
        z-index: 2;
        
        /* Glass Effect */
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 6px 0;
        border-radius: 20px;
    }

    .mc-text {
        display: block;
        color: white;
        font-size: 0.7rem; /* Small but readable */
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1;
    }

    /* --- ANIMATION KEYFRAMES --- */
    @keyframes floatPulse {
        0%, 100% { 
            transform: scale(1) translateZ(0px); 
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1);
        }
        50% { 
            /* Zooms slightly forward and glows */
            transform: scale(1.03) translateZ(20px); 
            box-shadow: 0 15px 30px rgba(0,0,0,0.8);
            border: 1px solid var(--accent);
        }
    }

    /* --- INTERACTION --- */
    .micro-card:active {
        animation: none; /* Stop floating */
        transform: scale(0.95); /* Shrink on tap */
        filter: brightness(1.2);
    }
