.msh-shop-page {
    --msh-bg:          var(--mdh-bg, #F7F3EE);
    --msh-bg-alt:      var(--mdh-bg-alt, #EDE7DC);
    --msh-bg-card:     var(--mdh-bg-card, #FFFFFF);
    --msh-text:        var(--mdh-text-primary, #1A1A18);
    --msh-text-sec:    var(--mdh-text-secondary, #8A8178);
    --msh-accent:      var(--mdh-accent, #C4622D);
    --msh-accent-2:    var(--mdh-accent-2, #2C4A3E);
    --msh-amber:       var(--mdh-amber, #E8A940);
    --msh-forest:      var(--mdh-forest, #2C4A3E);
    --msh-border:      var(--mdh-border, rgba(44,74,62,0.12));
    --msh-shadow:      var(--mdh-shadow, rgba(26,26,24,0.08));
    --msh-tag-bg:      var(--mdh-tag-bg, #F0D5C5);
    --msh-tag-text:    var(--mdh-tag-text, #C4622D);
    --msh-cream-dark:  var(--mdh-cream-dark, #EDE7DC);
    --msh-terra-pale:  var(--mdh-terracotta-pale, #F0D5C5);
    --msh-sidebar-w:   280px;
    background-color: var(--msh-bg);
    color: var(--msh-text);
    font-family: 'Inter', sans-serif;
}

/* ----------------------------------------------------------
   Layout wrapper
   ---------------------------------------------------------- */
.msh-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ----------------------------------------------------------
   Shop Hero
   ---------------------------------------------------------- */
.msh-shop-hero {
    background: var(--msh-bg-alt);
    border-bottom: 1px solid var(--msh-border);
    padding: 3.5rem 0 3rem;
}

.msh-shop-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.msh-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--msh-accent);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}

.msh-eyebrow::before {
    content: '';
    width: 1.75rem;
    height: 2px;
    background: var(--msh-accent);
    display: block;
    flex-shrink: 0;
}

.msh-shop-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--msh-text);
    margin: 0 0 0.65rem;
}

.msh-shop-hero-title em {
    font-style: italic;
    color: var(--msh-accent);
}

.msh-shop-hero-desc {
    font-size: 0.9rem;
    color: var(--msh-text-sec);
    line-height: 1.65;
    margin: 0;
}

/* Search Form */
.msh-search-form {
    width: 100%;
}

.msh-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.msh-search-icon {
    position: absolute;
    left: 1.1rem;
    color: var(--msh-text-sec);
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 2;
}

.msh-search-input {
    width: 100%;
    padding: 0.95rem 8rem 0.95rem 2.75rem;
    border-radius: 6px;
    border: 1.5px solid var(--msh-border);
    background: var(--msh-bg-card);
    color: var(--msh-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.msh-search-input::placeholder {
    color: var(--msh-text-sec);
}

.msh-search-input:focus {
    border-color: var(--msh-accent);
    box-shadow: 0 0 0 3px var(--msh-terra-pale);
}

[data-mdh-theme="dark"] .msh-search-input:focus {
    box-shadow: 0 0 0 3px rgba(232,169,64,0.12);
}

.msh-search-clear {
    position: absolute;
    right: 7rem;
    color: var(--msh-text-sec);
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
    text-decoration: none;
}

.msh-search-clear:hover {
    color: var(--msh-accent);
}

.msh-search-btn {
    position: absolute;
    right: 0.5rem;
    background: var(--msh-accent);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.msh-search-btn:hover {
    opacity: 0.9;
    transform: translateX(-1px);
}

/* ----------------------------------------------------------
   Shop Body Layout
   ---------------------------------------------------------- */
.msh-shop-body {
    padding: 3rem 0 6rem;
    background: var(--msh-bg);
}

.msh-shop-layout {
    display: grid;
    grid-template-columns: var(--msh-sidebar-w) 1fr;
    gap: 3rem;
    align-items: start;
}

/* ----------------------------------------------------------
   Sidebar
   ---------------------------------------------------------- */
.msh-sidebar {
    position: sticky;
    top: 90px;
}

.msh-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.msh-sidebar-block {
    background: var(--msh-bg-card);
    border: 1px solid var(--msh-border);
    border-radius: 14px;
    padding: 1.5rem;
    overflow: hidden;
}

.msh-sidebar-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--msh-text-sec);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.msh-sidebar-title i {
    color: var(--msh-accent);
    font-size: 0.75rem;
}

/* Category list */
.msh-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.msh-cat-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--msh-text-sec);
    transition: all 0.22s;
    position: relative;
}

.msh-cat-link:hover {
    background: var(--msh-bg-alt);
    color: var(--msh-text);
}

.msh-cat-link.msh-cat-active {
    background: var(--msh-tag-bg);
    color: var(--msh-accent);
    font-weight: 700;
}

.msh-cat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    opacity: 0.6;
}

.msh-cat-link.msh-cat-active .msh-cat-dot {
    opacity: 1;
}

.msh-cat-name {
    flex: 1;
}

.msh-cat-count {
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--msh-bg-alt);
    color: var(--msh-text-sec);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    min-width: 24px;
    text-align: center;
}

.msh-cat-link.msh-cat-active .msh-cat-count {
    background: var(--msh-accent);
    color: #fff;
}

/* Category color dots */
.msh-cat-citrus .msh-cat-dot  { color: #C4622D; }
.msh-cat-berry .msh-cat-dot   { color: #A0549A; }
.msh-cat-herbal .msh-cat-dot  { color: #2C6B3A; }
.msh-cat-floral .msh-cat-dot  { color: #B84D72; }

[data-mdh-theme="dark"] .msh-cat-citrus .msh-cat-dot  { color: var(--msh-amber); }
[data-mdh-theme="dark"] .msh-cat-berry .msh-cat-dot   { color: #D98BD3; }
[data-mdh-theme="dark"] .msh-cat-herbal .msh-cat-dot  { color: #7BC47A; }
[data-mdh-theme="dark"] .msh-cat-floral .msh-cat-dot  { color: #E48DAD; }

/* Purity Badges */
.msh-purity-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.msh-purity-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 0.5rem;
    background: var(--msh-bg-alt);
    border-radius: 10px;
    border: 1px solid var(--msh-border);
    text-align: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--msh-text-sec);
    transition: all 0.25s;
}

.msh-purity-badge:hover {
    border-color: var(--msh-accent);
    color: var(--msh-accent);
}

.msh-purity-badge i {
    font-size: 0.9rem;
    color: var(--msh-forest);
}

[data-mdh-theme="dark"] .msh-purity-badge i {
    color: var(--msh-amber);
}

/* Sidebar CTA */
.msh-sidebar-cta {
    background: var(--msh-forest);
    border-color: transparent;
    text-align: center;
}

[data-mdh-theme="dark"] .msh-sidebar-cta {
    background: #1C2B26;
    border-color: rgba(232,169,64,0.1);
}

.msh-sidebar-cta-icon {
    font-size: 2.25rem;
    margin-bottom: 0.85rem;
    display: block;
}

.msh-sidebar-cta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #F0EBE3;
    margin-bottom: 0.5rem;
}

.msh-sidebar-cta p {
    font-size: 0.78rem;
    color: rgba(240,235,227,0.55);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.msh-sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--msh-amber);
    color: #1A1A18;
    padding: 0.65rem 1.25rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    transition: all 0.25s;
}

.msh-sidebar-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232,169,64,0.35);
}

/* ----------------------------------------------------------
   Toolbar
   ---------------------------------------------------------- */
.msh-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid var(--msh-border);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.msh-toolbar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.msh-results-count {
    font-size: 0.82rem;
    color: var(--msh-text-sec);
}

.msh-results-count strong {
    color: var(--msh-text);
    font-weight: 700;
}

/* Active Filter Pills */
.msh-active-filters {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.msh-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--msh-tag-bg);
    color: var(--msh-tag-text);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(196,98,45,0.2);
}

[data-mdh-theme="dark"] .msh-filter-pill {
    border-color: rgba(232,169,64,0.2);
}

.msh-pill-remove {
    color: var(--msh-tag-text);
    text-decoration: none;
    font-size: 0.65rem;
    opacity: 0.7;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
}

.msh-pill-remove:hover {
    opacity: 1;
}

.msh-clear-all {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--msh-text-sec);
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: color 0.2s;
}

.msh-clear-all:hover {
    color: var(--msh-accent);
}

/* Toolbar Right */
.msh-toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Sort Select */
.msh-sort-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.msh-sort-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--msh-text-sec);
    white-space: nowrap;
}

.msh-select-wrap {
    position: relative;
}

.msh-sort-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--msh-bg-card);
    border: 1.5px solid var(--msh-border);
    border-radius: 6px;
    color: var(--msh-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.5rem 2rem 0.5rem 0.85rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.25s;
}

.msh-sort-select:focus {
    border-color: var(--msh-accent);
}

.msh-select-caret {
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    color: var(--msh-text-sec);
    pointer-events: none;
}

/* View Toggle */
.msh-view-toggle {
    display: flex;
    gap: 0;
    border: 1.5px solid var(--msh-border);
    border-radius: 6px;
    overflow: hidden;
}

.msh-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--msh-text-sec);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.22s;
    border-right: 1.5px solid var(--msh-border);
    background: var(--msh-bg-card);
}

.msh-view-btn:last-child {
    border-right: none;
}

.msh-view-btn:hover {
    background: var(--msh-bg-alt);
    color: var(--msh-text);
}

.msh-view-btn.msh-view-active {
    background: var(--msh-accent);
    color: #fff;
}

/* Mobile Filter Btn */
.msh-mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--msh-border);
    border-radius: 6px;
    background: var(--msh-bg-card);
    color: var(--msh-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.04em;
    position: relative;
    transition: all 0.25s;
}

.msh-mobile-filter-btn:hover {
    border-color: var(--msh-accent);
    color: var(--msh-accent);
}

.msh-filter-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--msh-accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1;
}

/* ----------------------------------------------------------
   Products Grid
   ---------------------------------------------------------- */
.msh-products-wrap {
    display: grid;
}

.msh-view-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.msh-view-list {
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* ----------------------------------------------------------
   Product Card — Grid Mode
   ---------------------------------------------------------- */
.msh-product-card {
    background: var(--msh-bg-card);
    border: 1px solid var(--msh-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.msh-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--msh-shadow);
    border-color: var(--msh-accent);
}

/* Thumbnail */
.msh-card-thumb-link {
    display: block;
    text-decoration: none;
}

.msh-card-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--msh-bg-alt);
}

.msh-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.msh-product-card:hover .msh-card-img {
    transform: scale(1.04);
}

.msh-card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    transition: transform 0.4s ease;
}

.msh-product-card:hover .msh-card-thumb-placeholder {
    transform: scale(1.08);
}

.msh-placeholder-citrus { background: linear-gradient(145deg, #FEF0E0, #F5C89A); }
.msh-placeholder-berry  { background: linear-gradient(145deg, #F5E0F0, #D8A0C8); }
.msh-placeholder-herbal { background: linear-gradient(145deg, #E0F0E4, #9DC8A0); }
.msh-placeholder-floral { background: linear-gradient(145deg, #FCDDE8, #E8A0BC); }

/* Category badge */
.msh-card-cat {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.msh-cat-badge-citrus { background: #FEF0E0; color: #C4622D; }
.msh-cat-badge-berry  { background: #F5E0F0; color: #A0549A; }
.msh-cat-badge-herbal { background: #E0F0E4; color: #2C6B3A; }
.msh-cat-badge-floral { background: #FCDDE8; color: #B84D72; }

[data-mdh-theme="dark"] .msh-cat-badge-citrus { background: rgba(196,98,45,0.15); color: var(--msh-amber); }
[data-mdh-theme="dark"] .msh-cat-badge-berry  { background: rgba(160,84,154,0.15); color: #D98BD3; }
[data-mdh-theme="dark"] .msh-cat-badge-herbal { background: rgba(44,107,58,0.15); color: #7BC47A; }
[data-mdh-theme="dark"] .msh-cat-badge-floral { background: rgba(184,77,114,0.15); color: #E48DAD; }

/* Overlay */
.msh-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,24,0.45);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.msh-product-card:hover .msh-card-overlay {
    opacity: 1;
}

.msh-card-overlay-btn {
    background: #fff;
    color: #1A1A18;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s;
}

.msh-product-card:hover .msh-card-overlay-btn {
    transform: scale(1.04);
}

/* Card Body */
.msh-card-body {
    padding: 1.25rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.msh-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--msh-text);
    margin: 0 0 0.35rem;
}

.msh-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.22s;
}

.msh-card-title a:hover {
    color: var(--msh-accent);
}

.msh-card-subtitle {
    font-size: 0.78rem;
    color: var(--msh-text-sec);
    line-height: 1.55;
    margin: 0;
}

/* Flavor tags */
.msh-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.msh-card-tag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    background: var(--msh-bg-alt);
    color: var(--msh-text-sec);
    border: 1px solid var(--msh-border);
    transition: all 0.2s;
}

.msh-card-tag:hover {
    color: var(--msh-accent);
    border-color: var(--msh-accent);
}

/* Card Meta */
.msh-card-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid var(--msh-border);
}

.msh-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: var(--msh-text-sec);
}

.msh-card-meta-item i {
    font-size: 0.68rem;
    color: var(--msh-accent);
}

/* Card Footer */
.msh-card-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
}

.msh-card-primary-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: transparent;
    border: 2px solid var(--msh-border);
    color: var(--msh-text);
    padding: 0.65rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
}

.msh-card-primary-btn i {
    transition: transform 0.25s;
}

.msh-card-primary-btn:hover {
    background: var(--msh-accent);
    border-color: var(--msh-accent);
    color: #fff;
}

.msh-card-primary-btn:hover i {
    transform: translateX(3px);
}

.msh-card-wa-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 2px solid var(--msh-border);
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.25s;
}

.msh-card-wa-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: #fff;
}

.msh-view-list .msh-product-card {
    flex-direction: row;
    align-items: stretch;
    border-radius: 14px;
}

.msh-view-list .msh-product-card:hover {
    transform: translateX(4px) translateY(-2px);
}

.msh-view-list .msh-card-thumb-link {
    flex-shrink: 0;
    width: 220px;
}

.msh-view-list .msh-card-thumb {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    border-radius: 0;
    min-height: 180px;
}

.msh-view-list .msh-card-thumb-placeholder {
    height: 100%;
    min-height: 180px;
    font-size: 4rem;
}

.msh-view-list .msh-card-body {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
}

.msh-view-list .msh-card-body-top {
    flex: 1;
    min-width: 0;
}

.msh-view-list .msh-card-title {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.msh-view-list .msh-card-meta {
    border-top: none;
    padding-top: 0;
    flex-wrap: nowrap;
}

.msh-view-list .msh-card-footer {
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
    width: 160px;
    margin-top: 0;
}

.msh-view-list .msh-card-primary-btn {
    flex: unset;
    width: 100%;
}

.msh-view-list .msh-card-wa-btn {
    width: 100%;
    height: 36px;
    border-radius: 6px;
}

/* ----------------------------------------------------------
   Pagination
   ---------------------------------------------------------- */
.msh-pagination {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--msh-border);
    text-align: center;
}

.msh-pagination-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.msh-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.25rem;
    border: 1.5px solid var(--msh-border);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--msh-text);
    text-decoration: none;
    background: var(--msh-bg-card);
    transition: all 0.25s;
}

.msh-page-btn:hover {
    border-color: var(--msh-accent);
    color: var(--msh-accent);
}

.msh-page-numbers {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.msh-page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--msh-text-sec);
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all 0.22s;
}

.msh-page-num:hover {
    background: var(--msh-bg-alt);
    color: var(--msh-text);
    border-color: var(--msh-border);
}

.msh-page-current {
    background: var(--msh-accent);
    color: #fff;
    font-weight: 700;
    border-color: var(--msh-accent);
}

.msh-page-ellipsis {
    width: 32px;
    text-align: center;
    color: var(--msh-text-sec);
    font-size: 0.9rem;
}

.msh-pagination-info {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--msh-text-sec);
}

/* ----------------------------------------------------------
   Empty State
   ---------------------------------------------------------- */
.msh-empty-state {
    text-align: center;
    padding: 6rem 2rem;
}

.msh-empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.5;
}

.msh-empty-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--msh-text);
    margin-bottom: 0.75rem;
}

.msh-empty-desc {
    font-size: 0.9rem;
    color: var(--msh-text-sec);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 2rem;
}

.msh-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--msh-accent);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
}

.msh-empty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196,98,45,0.35);
}

/* ----------------------------------------------------------
   Mobile Overlay (sidebar)
   ---------------------------------------------------------- */
.msh-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.msh-sidebar-overlay.msh-overlay-visible {
    opacity: 1;
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 1100px) {
    .msh-view-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .msh-shop-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .msh-shop-layout {
        grid-template-columns: 1fr;
    }

    .msh-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(340px, 88vw);
        background: var(--msh-bg-card);
        z-index: 1000;
        overflow-y: auto;
        padding: 5rem 1.5rem 2rem;
        transform: translateX(-105%);
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 32px rgba(0,0,0,0.15);
        border-right: 1px solid var(--msh-border);
    }

    .msh-sidebar.msh-sidebar-open {
        transform: translateX(0);
    }

    .msh-sidebar-overlay {
        display: block;
    }

    .msh-mobile-filter-btn {
        display: inline-flex;
    }

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

    .msh-sort-label {
        display: none;
    }
}

@media (max-width: 640px) {
    .msh-wrap {
        padding: 0 1.25rem;
    }

    .msh-shop-hero {
        padding: 2.5rem 0 2rem;
    }

    .msh-view-grid {
        grid-template-columns: 1fr;
    }

    .msh-view-list .msh-product-card {
        flex-direction: column;
    }

    .msh-view-list .msh-card-thumb-link {
        width: 100%;
    }

    .msh-view-list .msh-card-thumb {
        aspect-ratio: 16 / 9;
        min-height: unset;
    }

    .msh-view-list .msh-card-thumb-placeholder {
        height: 100%;
        min-height: unset;
    }

    .msh-view-list .msh-card-body {
        flex-direction: column;
        align-items: stretch;
    }

    .msh-view-list .msh-card-footer {
        width: 100%;
        flex-direction: row;
    }

    .msh-view-list .msh-card-wa-btn {
        width: 44px;
        flex-shrink: 0;
    }

    .msh-toolbar {
        gap: 0.75rem;
    }

    .msh-pagination-inner {
        gap: 0.35rem;
    }
}