/* ================================================================
   MUSELUXE STORE ENHANCEMENTS — CSS
   Version 1.0.0
   ================================================================ */

:root {
    --mse-black: #1a1a1a;
    --mse-gold: #c9a96e;
    --mse-light: #f8f6f3;
    --mse-border: #e5e5e5;
    --mse-text: #333;
    --mse-muted: #888;
    --mse-danger: #dc3545;
    --mse-success: #28a745;
    --mse-shadow: 0 4px 20px rgba(0,0,0,.1);
    --mse-radius: 4px;
    --mse-font: 'Georgia', serif;
}

/* ================================================================
   #7: BREADCRUMBS
   ================================================================ */
.mse-breadcrumbs {
    padding: 12px 0;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--mse-muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mse-breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.mse-breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.mse-breadcrumb-item a {
    color: var(--mse-muted);
    text-decoration: none;
    transition: color .2s;
}

.mse-breadcrumb-item a:hover {
    color: var(--mse-black);
}

.mse-breadcrumb-sep {
    margin: 0 8px;
    color: #ccc;
    font-size: 16px;
}

.mse-breadcrumb-current {
    color: var(--mse-black);
    font-weight: 500;
}

/* ================================================================
   #6: PRODUCT FILTERS
   ================================================================ */
.mse-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--mse-black);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: var(--mse-radius);
    margin-bottom: 15px;
    transition: background .2s;
    font-family: inherit;
}

.mse-filter-toggle:hover {
    background: #333;
}

.mse-filter-count {
    background: var(--mse-gold);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.mse-filter-sidebar {
    position: fixed;
    top: 0;
    left: -380px;
    width: 360px;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    transition: left .3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(0,0,0,.15);
    padding: 0;
}

.mse-filter-sidebar.mse-open {
    left: 0;
}

.mse-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 9999;
    display: none;
    backdrop-filter: blur(2px);
}

.mse-filter-overlay.mse-open {
    display: block;
}

.mse-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--mse-border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.mse-filter-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--mse-black);
}

.mse-filter-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--mse-muted);
    padding: 0;
    line-height: 1;
}

.mse-filter-form {
    padding: 20px 24px;
}

.mse-filter-group {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mse-filter-group:last-of-type {
    border-bottom: none;
}

.mse-filter-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--mse-black);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.mse-filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.mse-filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--mse-text);
    cursor: pointer;
    padding: 4px 0;
}

.mse-filter-label input[type="checkbox"] {
    accent-color: var(--mse-black);
    width: 16px;
    height: 16px;
}

.mse-filter-count-badge {
    color: var(--mse-muted);
    font-size: 12px;
    margin-left: auto;
}

.mse-size-options {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
}

.mse-size-pill {
    border: 1px solid var(--mse-border);
    border-radius: 4px;
    padding: 6px 12px !important;
    font-size: 13px;
    transition: all .2s;
}

.mse-size-pill:has(input:checked) {
    background: var(--mse-black);
    color: #fff;
    border-color: var(--mse-black);
}

.mse-size-pill input[type="checkbox"] {
    display: none;
}

.mse-price-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mse-price-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--mse-border);
    border-radius: var(--mse-radius);
    font-size: 14px;
}

.mse-price-sep {
    color: var(--mse-muted);
}

.mse-filter-actions {
    display: flex;
    gap: 10px;
    padding-top: 10px;
    position: sticky;
    bottom: 0;
    background: #fff;
    padding-bottom: 20px;
}

.mse-filter-apply {
    flex: 1;
    background: var(--mse-black);
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--mse-radius);
    transition: background .2s;
}

.mse-filter-apply:hover {
    background: #333;
}

.mse-filter-clear {
    padding: 12px 20px;
    color: var(--mse-muted);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.mse-filter-clear:hover {
    color: var(--mse-black);
}

/* ================================================================
   #9: IMAGE ZOOM
   ================================================================ */
.mse-zoom-container {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.mse-zoom-container img {
    transition: transform .1s ease-out;
    will-change: transform;
}

.mse-zoom-lens {
    position: absolute;
    border: 2px solid var(--mse-gold);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    pointer-events: none;
    background: rgba(201, 169, 110, 0.1);
    display: none;
    z-index: 10;
}

.mse-zoom-container:hover .mse-zoom-lens {
    display: block;
}

.mse-zoom-result {
    position: absolute;
    top: 0;
    right: -420px;
    width: 400px;
    height: 400px;
    border: 1px solid var(--mse-border);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 100;
    box-shadow: var(--mse-shadow);
    display: none;
    pointer-events: none;
}

.mse-zoom-container:hover + .mse-zoom-result,
.mse-zoom-active .mse-zoom-result {
    display: block;
}

/* ================================================================
   #10: SIZE GUIDE (includes modal)
   ================================================================ */
.mse-size-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--mse-text);
    text-decoration: underline;
    cursor: pointer;
    margin: 8px 0;
    transition: color .2s;
}

.mse-size-guide-link:hover {
    color: var(--mse-gold);
}

.mse-size-guide-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.mse-size-guide-modal-inner {
    background: #fff;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow-y: auto;
    animation: mse-qv-in .3s ease;
}

.mse-size-guide-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--mse-muted);
}

.mse-size-guide h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--mse-black);
}

.mse-size-note {
    color: var(--mse-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.mse-size-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 14px;
}

.mse-size-table th {
    background: var(--mse-black);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.mse-size-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
}

.mse-size-table tr:hover td {
    background: var(--mse-light);
}

.mse-size-how h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.mse-size-how ul {
    padding-left: 20px;
}

.mse-size-how li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

/* ================================================================
   #11: RECENTLY VIEWED
   ================================================================ */
.mse-recently-viewed,
.mse-also-viewed {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--mse-border);
}

.mse-recently-viewed h2,
.mse-also-viewed h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--mse-black);
    font-family: var(--mse-font);
}

.mse-rv-grid,
.mse-also-viewed-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mse-rv-item a,
.mse-also-viewed-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.mse-rv-img img,
.mse-also-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--mse-radius);
    transition: transform .3s;
}

.mse-rv-item:hover img,
.mse-also-viewed-item:hover img {
    transform: scale(1.03);
}

.mse-rv-item h4,
.mse-also-viewed-item h3 {
    font-size: 14px;
    margin: 10px 0 4px;
    font-weight: 500;
    color: var(--mse-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mse-rv-price,
.mse-also-price {
    font-size: 14px;
    color: var(--mse-text);
    font-weight: 600;
}

/* ================================================================
   #12: WISHLIST
   ================================================================ */
.mse-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
    color: #333;
}

.mse-wishlist-btn svg {
    width: 22px;
    height: 22px;
    stroke: #333;
    stroke-width: 2;
    fill: none;
}

.mse-wishlist-btn:hover {
    transform: scale(1.15);
    background: #fff;
    box-shadow: 0 3px 14px rgba(0,0,0,.35);
}

.mse-wishlist-btn:hover svg {
    stroke: #e53935;
}

.mse-wishlist-btn.mse-wishlisted svg {
    fill: #e53935;
    stroke: #e53935;
}

.mse-wishlist-btn.mse-wishlisted {
    animation: mse-heart-pop .3s ease;
}

@keyframes mse-heart-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Wishlist button for product cards — ensure relative positioning */
.products .product,
.woocommerce ul.products li.product {
    position: relative;
}

.mse-wishlist-single {
    position: static;
    width: auto;
    height: auto;
    border-radius: var(--mse-radius);
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--mse-border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--mse-text);
    box-shadow: none;
    margin-top: 10px;
}

.mse-wishlist-single:hover {
    border-color: var(--mse-danger);
    color: var(--mse-danger);
    transform: none;
}

.mse-wishlist-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

.mse-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
}

.mse-wishlist-card {
    border: 1px solid var(--mse-border);
    border-radius: var(--mse-radius);
    overflow: hidden;
    position: relative;
}

.mse-wishlist-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.mse-wishlist-card-info {
    padding: 12px;
}

.mse-wishlist-card-info h4 {
    font-size: 14px;
    margin: 0 0 6px;
}

.mse-wishlist-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255,255,255,.9);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================================
   #13: QUICK VIEW
   ================================================================ */
.mse-quick-view-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(26,26,26,.9);
    color: #fff;
    border: none;
    padding: 8px 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    opacity: 0;
    transition: all .3s;
    border-radius: var(--mse-radius);
    white-space: nowrap;
    z-index: 4;
}

.products .product:hover .mse-quick-view-btn,
.woocommerce ul.products li.product:hover .mse-quick-view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mse-qv-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.mse-qv-modal {
    background: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    animation: mse-qv-in .3s ease;
}

@keyframes mse-qv-in {
    from { opacity: 0; transform: scale(.95); }
    to { opacity: 1; transform: scale(1); }
}

.mse-qv-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    z-index: 2;
    transition: color .2s;
}

.mse-qv-close:hover {
    color: #000000;
}

.mse-qv-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.mse-qv-gallery {
    background: var(--mse-light);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mse-qv-main-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: var(--mse-radius);
}

.mse-qv-thumbs {
    display: flex;
    gap: 8px;
}

.mse-qv-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color .2s;
}

.mse-qv-thumb:hover,
.mse-qv-thumb.active {
    border-color: var(--mse-gold);
}

.mse-qv-info {
    padding: 30px;
    overflow-y: auto;
}

.mse-qv-cats {
    color: #000000;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.mse-qv-title {
    font-size: 22px;
    font-weight: 600;
    color: #000000 !important;
    margin: 0 0 12px;
    font-family: var(--mse-font);
}

.mse-qv-price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000000 !important;
}

.mse-qv-price .woocommerce-Price-amount,
.mse-qv-price .woocommerce-Price-currencySymbol,
.mse-qv-price .amount,
.mse-qv-price span {
    color: #000000 !important;
}

/* Override dark mode global white price inside quick view (white background modal) */
html.museluxe-dark-mode .mse-qv-modal .mse-qv-price,
html.museluxe-dark-mode .mse-qv-modal .mse-qv-price .woocommerce-Price-amount,
html.museluxe-dark-mode .mse-qv-modal .mse-qv-price .woocommerce-Price-currencySymbol,
html.museluxe-dark-mode .mse-qv-modal .mse-qv-price .amount,
html.museluxe-dark-mode .mse-qv-modal .mse-qv-price span,
html.museluxe-dark-mode .mse-qv-modal .mse-qv-price bdi {
    color: #000000 !important;
}

html.museluxe-dark-mode .mse-qv-modal .mse-qv-title {
    color: #000000 !important;
}

html.museluxe-dark-mode .mse-qv-modal .mse-qv-cats {
    color: #000000 !important;
}

html.museluxe-dark-mode .mse-qv-modal .mse-qv-stock {
    color: #000000 !important;
}

html.museluxe-dark-mode .mse-qv-modal .mse-qv-view {
    color: #000000 !important;
    border-color: #000000 !important;
}

html.museluxe-dark-mode .mse-qv-modal .mse-qv-sku {
    color: #666 !important;
}

.mse-qv-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--mse-text);
    margin-bottom: 20px;
}

.mse-qv-sku {
    font-size: 12px;
    color: var(--mse-muted);
    margin-bottom: 12px;
}

.mse-qv-stock {
    font-size: 13px;
    margin-bottom: 16px;
}

.mse-qv-stock.in-stock {
    color: #000000 !important;
}

.mse-qv-stock.out-of-stock {
    color: var(--mse-danger);
}

.mse-qv-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.mse-qv-atc {
    flex: 1;
    background: var(--mse-black);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--mse-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background .2s;
    text-align: center;
    text-decoration: none;
}

.mse-qv-atc:hover {
    background: #333;
    color: #fff;
}

.mse-qv-view {
    padding: 14px 24px;
    border: 1px solid #000000;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    border-radius: var(--mse-radius);
    text-decoration: none;
    color: #000000;
    text-align: center;
    transition: all .2s;
}

.mse-qv-view:hover {
    border-color: #000000;
    color: #000000;
    background: #f5f5f5;
}

/* ================================================================
   #14: STOCK URGENCY
   ================================================================ */
.mse-stock-urgency {
    margin: 10px 0;
    padding: 8px 14px;
    border-radius: var(--mse-radius);
    font-size: 14px;
    font-weight: 500;
}

.mse-urgency-critical {
    color: var(--mse-danger);
    background: #fff5f5;
    padding: 8px 14px;
    border-radius: var(--mse-radius);
    display: inline-block;
}

.mse-urgency-low {
    color: #e67e00;
    background: #fff8e1;
    padding: 8px 14px;
    border-radius: var(--mse-radius);
    display: inline-block;
}

.mse-urgency-badge {
    display: inline-block;
    background: var(--mse-danger);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 600;
    margin-top: 4px;
}

/* ================================================================
   #15: FREE SHIPPING BAR
   ================================================================ */
.mse-shipping-bar {
    background: var(--mse-light);
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: var(--mse-radius);
    border: 1px solid var(--mse-border);
}

.mse-shipping-msg {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--mse-text);
}

.mse-shipping-free {
    color: var(--mse-success) !important;
}

.mse-shipping-progress {
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
}

.mse-shipping-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--mse-gold), #d4af37);
    border-radius: 3px;
    transition: width .5s ease;
}

.mse-shipping-bar-mini {
    text-align: center;
    font-size: 12px;
    padding: 8px 0;
    color: var(--mse-text);
    border-top: 1px solid var(--mse-border);
    margin-top: 10px;
}

/* ================================================================
   #19: MOBILE STICKY ADD TO CART
   ================================================================ */
.mse-sticky-atc {
    position: fixed;
    bottom: -80px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--mse-border);
    z-index: 9998;
    transition: bottom .3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}

.mse-sticky-atc.mse-visible {
    bottom: 0;
}

.mse-sticky-atc-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.mse-sticky-product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.mse-sticky-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--mse-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mse-sticky-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--mse-black);
}

.mse-sticky-btn {
    background: var(--mse-black);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: var(--mse-radius);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
    margin-left: 12px;
}

.mse-sticky-btn:hover {
    background: #333;
    color: #fff;
}

.mse-sticky-oos {
    background: var(--mse-muted);
    cursor: not-allowed;
}

/* ================================================================
   #20: TRUST SIGNALS
   ================================================================ */
.mse-trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.mse-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--mse-muted);
    white-space: nowrap;
}

.mse-trust-item svg {
    color: var(--mse-gold);
    flex-shrink: 0;
}

/* ================================================================
   #21: EMAIL POPUP
   ================================================================ */
.mse-email-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.mse-email-popup-inner {
    background: #fff;
    width: 90%;
    max-width: 480px;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    text-align: center;
    animation: mse-qv-in .3s ease;
}

.mse-email-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--mse-muted);
}

.mse-email-content h3 {
    font-size: 26px;
    font-family: var(--mse-font);
    color: var(--mse-black);
    margin: 0 0 12px;
}

.mse-email-content p {
    font-size: 14px;
    color: var(--mse-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.mse-email-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mse-email-input {
    padding: 14px 16px;
    border: 1px solid var(--mse-border);
    border-radius: var(--mse-radius);
    font-size: 15px;
    text-align: center;
    outline: none;
    transition: border-color .2s;
}

.mse-email-input:focus {
    border-color: var(--mse-black);
}

.mse-email-submit {
    background: var(--mse-black);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--mse-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background .2s;
}

.mse-email-submit:hover {
    background: #333;
}

.mse-email-note {
    font-size: 12px !important;
    color: var(--mse-muted) !important;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
}

.mse-email-success {
    color: var(--mse-success);
    font-size: 16px;
    padding: 20px;
}

/* ================================================================
   #23: PHOTO REVIEWS
   ================================================================ */
.mse-review-photo-field {
    margin-top: 12px;
}

.mse-review-photo-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.mse-review-photo-field input[type="file"] {
    font-size: 13px;
}

.mse-review-photo {
    margin-top: 12px;
}

.mse-review-photo img {
    max-width: 200px;
    height: auto;
    border-radius: var(--mse-radius);
    border: 1px solid var(--mse-border);
    cursor: pointer;
    transition: transform .2s;
}

.mse-review-photo img:hover {
    transform: scale(1.05);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .mse-rv-grid,
    .mse-also-viewed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mse-wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mse-qv-content {
        grid-template-columns: 1fr;
    }

    .mse-qv-gallery {
        max-height: 250px;
    }

    .mse-trust-signals {
        gap: 8px;
    }

    .mse-trust-item {
        font-size: 11px;
    }

    .mse-filter-sidebar {
        width: 100%;
        left: -100%;
    }

    .mse-sticky-atc-inner {
        padding: 8px 12px;
    }

    .mse-sticky-name {
        font-size: 12px;
    }

    .mse-sticky-price {
        font-size: 14px;
    }

    .mse-sticky-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .mse-email-popup-inner {
        padding: 30px 20px;
    }

    .mse-email-content h3 {
        font-size: 22px;
    }

    .mse-breadcrumbs {
        font-size: 12px;
    }

    .mse-breadcrumb-sep {
        margin: 0 5px;
    }

    .mse-zoom-result {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .mse-rv-grid,
    .mse-also-viewed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .mse-wishlist-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Utility: Hide on desktop, show on mobile */
@media (min-width: 769px) {
    .mse-sticky-atc {
        display: none;
    }
}

