.wc-menu-category { --gap: 20px; --radius: 18px; --shadow: 0 6px 20px rgba(0,0,0,.06); }
.wcmc-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.wcmc-viewall { text-decoration:none; border-radius:999px; padding:8px 20px; background: #B896450A; color: #000;font-family: 'Poppins';}

.wcmc-cat-row-wrap {
  justify-content: center;
  display:flex;
  margin-bottom:40px;
}

.wcmc-nav { display:none; width:38px; height:38px; border-radius:999px; border:1px solid #e5e5e5; background:#fff; box-shadow:var(--shadow); }
.wcmc-cat-row { display:grid; grid-auto-flow:column; grid-auto-columns: auto; gap: 40px; overflow-x:auto; scroll-snap-type:x mandatory; padding:6px; scrollbar-width:none; }
.wcmc-cat-row::-webkit-scrollbar { display:none; }

.wcmc-cat-card {
  scroll-snap-align:start;
  border:0;
  cursor:pointer;
  position:relative;
  color: #000;
  padding: 0px;
}

.wcmc-cat-card:hover, .wcmc-cat-card:focus {background: inherit !important;}

.wcmc-cat-card .wcmc-cat-img img, .wcmc-cat-placeholder {
  min-width: 120px;
  width:120px;
  height:120px;
  object-fit:cover;
  display:block;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

.wcmc-cat-card .wcmc-cat-img {
  overflow: hidden;
  width: 120px;
  height: 120px;
  border-radius: 100%;
}

.wcmc-cat-card:hover .wcmc-cat-img img,
.wcmc-cat-card.is-active .wcmc-cat-img img {
  transform: scale(1.04) !important;
}

.wcmc-cat-placeholder { background:linear-gradient(135deg,#f0f0f0,#eaeaea); }

.wcmc-cat-name {
  display:block;
  padding:8px 16px;
  font-size: 14px;
  font-family: 'Poppins';
  line-height: 120%;
  font-weight: 600;
  background: #fff;
  border-radius: 4px;
  margin-top: -24px;
  z-index: 1;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.wcmc-cat-card.is-active .wcmc-cat-name,
.wcmc-cat-card:hover .wcmc-cat-name {
  background: #b89645 !important;
  color: #fff !important;
}

.wcmc-cat-card.is-active .wcmc-cat-name {
  transform: rotate(-3deg);
}

.wcmc-loading { padding:16px 0; opacity:.7; }

.wcmc-grid { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:24px; }
@media (max-width: 1000px){ .wcmc-grid { grid-template-columns:repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px){ .wcmc-grid { grid-template-columns:1fr; } }

.wcmc-card { border-radius:16px; overflow:hidden; background:#fff; display:flex; flex-direction:column; }

.wcmc-img {
  overflow: hidden;
  flex-shrink: 0;
}

.wcmc-img:hover img {
  transform: scale(1.04);
}

.wcmc-img img {
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
  transition: all 0.2s ease-in-out;
}

.wcmc-info {
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:32px;
  height: 100%;
  justify-content: space-between;
}

.wcmc-info .added_to_cart {
  display: none !important;
}

.wcmc-title {
  font-family: 'Poppins', sans-serif;
  font-weight:600;
  text-decoration:none;
  color:#000;
  line-height: 120%;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  margin-bottom: 8px;
  display: block;
}

.wcmc-shortdescription {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(0,0,0,.8);
  line-height: 160%;
}

.wcmc-title:hover {
color: #B89645;
}

.wcmc-price {
  font-size: 18px !important;
  font-family: 'Poppins', sans-serif;
  line-height: 18px !important;
  font-weight: 600;
  color: #B89645;
}

.wcmc-bottom { margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:10px; }

.wcmc-bottom .button {
  border-radius:4px;
  padding: 14px;
  margin: 0px !important;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--e-global-color-primary);
  transition: all 0.2s ease-in-out;
}

.wcmc-bottom .button.added {
  background: #4acf4a;
}

.wcmc-bottom .button:hover {
  background: #cca74f;
}

.wcmc-bottom .cart-plus {
    color: white;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 6px;
}

.wcmc-cat-row {
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.wcmc-cat-row.is-grabbing {
  cursor: grabbing;
}

.wcmc-cat-card {
  scroll-snap-align: start;
}

.wcmc-cat-row * {
  cursor: inherit;
  -webkit-user-drag: none;
}

.wcmc-cat-row.is-grabbing,
.wcmc-cat-row.is-grabbing * {
  cursor: grabbing;
}

.wcmc-cat-card {
  scroll-snap-align: start;
  /* min-width: 140px; */
}

@media (prefers-reduced-motion: reduce) {
  .wcmc-cat-row { scroll-behavior: auto; }
}


