
  :root {
    --primary: #f8fafc;
    --primary-dark: #f1f5f9;
    --border: #f3f4f6;
    --border-dark: #e5e7eb;
    --text: #0f172a;
    --muted: #6b7280;
    --bg: #ffffff
  }

  body {
    font-family: Inter, system-ui, sans-serif;
    background: #fff;
    color: var(--text);
    line-height: 1.6
  }

  .marquee-bar {
    background: #f8fafc;
    color: #334155;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    padding: 9px 0;
    border-bottom: 1px solid var(--border)
  }

  .marquee-track {
    display: inline-flex;
    animation: marquee 28s linear infinite;
    gap: 32px
  }

  .marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px
  }

  .marquee-track i {
    color: #64748b
  }

  @keyframes marquee {
    0% {
      transform: translateX(0)
    }

    100% {
      transform: translateX(-50%)
    }
  }

  .header-main {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1040
  }

  .logo {
    font-family: Manrope, sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.03em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    background: #f8fafc;
    border: 1px solid var(--border);
    color: #0f172a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    overflow: hidden
  }

  .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff
  }

  .search-bar {
    position: relative;
    max-width: 520px;
    width: 100%
  }

  .search-bar input {
    width: 100%;
    border: 1.5px solid #f3f4f6;
    border-radius: 12px;
    padding: 11px 44px 11px 16px;
    background: #f9fafb;
    font-size: 14px;
    transition: all .2s;
    color: #0f172a
  }

  .search-bar input::placeholder {
    color: #94a3b8
  }

  .search-bar input:focus {
    background: #fff;
    border-color: #e2e8f0;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, .15)
  }

  .search-bar button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 40px;
    border: 0;
    background: #f1f5f9;
    color: #334155;
    border-radius: 10px;
    transition: all .15s
  }

  .search-bar button:hover {
    background: #e2e8f0
  }

  .icon-btn-shop {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    color: #334155;
    transition: all .15s
  }

  .icon-btn-shop:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #0f172a
  }

  .badge-cart {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    min-width: 18px;
    height: 18px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff
  }

  .nav-cat-bar {
    border-bottom: 1px solid #f8fafc;
    padding: 10px 0;
    background: #fff;
    overflow-x: auto;
    white-space: nowrap
  }

  .nav-cat-bar a {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 10px;
    border: 1px solid #f8fafc;
    background: #f8fafc;
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .15s
  }

  .nav-cat-bar a:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #0f172a
  }

  .nav-cat-bar a.active {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #e2e8f0;
    font-weight: 600
  }

  .admc-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    overflow: hidden;
    transition: all .2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative
  }

  .admc-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, .04);
    transform: translateY(-2px);
    border-color: #e2e8f0
  }

  .admc-img {
    height: 200px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 12px
  }

  .admc-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .4s
  }

  .admc-card:hover .admc-img img {
    transform: scale(1.05)
  }

  .admc-overlay {
    position: absolute;
    inset: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    opacity: 0;
    transition: opacity .2s;
    background: linear-gradient(to top, rgba(15, 23, 42, .08), transparent 60%);
    border-radius: 10px;
    padding: 10px
  }

  .admc-card:hover .admc-overlay {
    opacity: 1
  }

  .btn-qv {
    background: #fff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
  }

  .btn-add {
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
  }

  .btn-add:hover {
    background: #f1f5f9;
    border-color: #cbd5e1
  }

  .admc-brand {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #94a3b8
  }

  .admc-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
    margin-top: 4px;
    height: 38px;
    overflow: hidden;
    display: --webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #0f172a
  }

  .admc-desc {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .admc-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 6px;
    color: #eab308;
    font-size: 11px
  }

  .admc-rating small {
    color: #94a3b8;
    margin-left: 4px;
    font-size: 11px
  }

  .admc-stock {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    margin-top: 6px
  }

  .stock-in {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #dcfce7
  }

  .stock-low {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca
  }

  .admc-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 8px
  }

  .admc-price .now {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: #0f172a
  }

  .admc-price .old {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through
  }

  .admc-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: .04em
  }

  .feature-bar {
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    background: #fff;
    padding: 16px 0
  }

  .feature-bar .col {
    border-right: 1px solid #f8fafc
  }

  .feature-bar .col:last-child {
    border-right: 0
  }

  @media(max-width:768px) {
    .feature-bar .col {
      border-right: 0;
      border-bottom: 1px solid #f8fafc;
      padding: 12px 0
    }

    .feature-bar .col:last-child {
      border-bottom: 0
    }
  }

  /* Fallbacks for old class names - ensure responsive and light theme */
  .card-product {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    overflow: hidden;
    transition: all .2s;
    height: 100%;
    display: flex;
    flex-direction: column
  }

  .card-product:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, .04);
    transform: translateY(-2px);
    border-color: #e2e8f0
  }

  .img-wrap {
    height: 200px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 12px
  }

  .img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .4s
  }

  .card-product:hover .img-wrap img {
    transform: scale(1.05)
  }

  .btn-primary-shop {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .15s
  }

  .btn-primary-shop:hover {
    background: #f1f5f9;
    border-color: #cbd5e1
  }

  .btn-light-shop {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b
  }

  .btn-light-shop:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #0f172a
  }

  .price {
    font-weight: 700;
    color: #0f172a
  }

  .price-old {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 12px;
    margin-left: 6px
  }

  .rating {
    color: #eab308
  }

  .breadcrumb-shop {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 10px 14px
  }

  .section-title {
    font-family: Manrope, sans-serif;
    font-weight: 700;
    color: #0f172a
  }
  .view-shop-pos{
  height: 42px;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  color: black;
  transition: all .15s;
  font-size:12px ;
  }
