/* =============================================
   LUMIÈRE JEWELRY - Premium Shop Styles
   ALL FIXES APPLIED
   ============================================= */

:root {
    --lm-rose: #B76E79;
    --lm-rose-light: #D4A0A7;
    --lm-rose-dark: #8B4D57;
    --lm-pink-light: #FDF2F4;
    --lm-pink-soft: #F8E8EC;
    --lm-black: #1A1A1A;
    --lm-black-soft: #2D2D2D;
    --lm-white: #FFFFFF;
    --lm-cream: #FFF9F5;
    --lm-gray: #999;
    --lm-gray-dark: #666;
    --lm-transition: cubic-bezier(.4, 0, .2, 1);
    --lm-font-display: 'Playfair Display', Georgia, serif;
    --lm-font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --lm-font-accent: 'Cormorant Garamond', Georgia, serif;
}

/* ===== GLOBAL RESET ===== */
.lumiere-shop-wrapper *,
.lumiere-shop-wrapper *::before,
.lumiere-shop-wrapper *::after {
    box-sizing: border-box;
}

.lumiere-shop-wrapper a,
.lumiere-shop-wrapper a:visited,
.lumiere-shop-wrapper a:link,
.lumiere-shop-wrapper a:active,
.lumiere-shop-wrapper a:focus,
.lumiere-shop-wrapper button,
.lumiere-shop-wrapper button:focus,
.lumiere-shop-wrapper button:active {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.lumiere-shop-wrapper button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--lm-font-body);
}

.lumiere-shop-wrapper .woocommerce-result-count,
.lumiere-shop-wrapper .woocommerce-ordering,
.lumiere-shop-wrapper .woocommerce-breadcrumb,
.lumiere-shop-wrapper .woocommerce-notices-wrapper:empty {
    display: none !important;
}

.lumiere-shop-wrapper {
    background: var(--lm-cream);
    font-family: var(--lm-font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ==============================================
   HERO BANNER
   ============================================== */
.lm-hero-banner {
    position: relative;
    height: 70vh;
    min-height: 450px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2024 30%, #3d2830 60%, #1a1a1a 100%);
}

.lm-hero-banner[style*="--banner-img"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--banner-img) center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.lm-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(183,110,121,.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(212,160,167,.1) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(183,110,121,.08) 0%, transparent 50%);
    z-index: 1;
}

.lm-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.lm-particle {
    position: absolute;
    width: 2.5px;
    height: 2.5px;
    background: var(--lm-rose-light);
    border-radius: 50%;
    opacity: 0;
    animation: lmFloat 9s infinite ease-in-out;
}

@keyframes lmFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    12% { opacity: .5; }
    50% { opacity: .2; transform: translateY(-200px) scale(1); }
    88% { opacity: 0; }
}

.lm-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 700px;
    width: 100%;
}

.lm-hero-tag {
    font-family: var(--lm-font-body);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--lm-rose-light);
    margin-bottom: 18px;
    overflow: hidden;
}

.lm-hero-tag span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: lmUp .8s .3s forwards var(--lm-transition);
}

.lm-hero-title {
    font-family: var(--lm-font-display);
    font-size: clamp(2rem, 5.5vw, 4.2rem);
    font-weight: 400;
    color: var(--lm-white);
    letter-spacing: 3px;
    line-height: 1.15;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: lmUp 1s .5s forwards var(--lm-transition);
    word-wrap: break-word;
}

.lm-hero-title em {
    font-style: italic;
    color: var(--lm-rose-light);
}

.lm-hero-divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, var(--lm-rose), var(--lm-rose-light));
    margin: 0 auto 20px;
    opacity: 0;
    animation: lmUp 1s .7s forwards var(--lm-transition);
}

.lm-hero-desc {
    font-family: var(--lm-font-accent);
    font-size: clamp(.85rem, 1.2vw, 1rem);
    font-style: italic;
    color: rgba(255,255,255,.5);
    max-width: 420px;
    margin: 14px auto 0;
    line-height: 1.7;
    opacity: 0;
    animation: lmUp 1s 1.1s forwards var(--lm-transition);
    padding: 0 10px;
}

/* Breadcrumb */
.lm-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
    animation: lmUp 1s .9s forwards var(--lm-transition);
}

.lm-breadcrumb a {
    font-size: .63rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45) !important;
    text-decoration: none !important;
    transition: color .3s ease;
}

.lm-breadcrumb a:hover {
    color: var(--lm-rose-light) !important;
}

.lm-bread-sep {
    color: rgba(255,255,255,.2);
    font-size: .45rem;
}

.lm-bread-current {
    font-size: .63rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lm-rose-light);
}

/* Scroll */
.lm-hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: lmUp 1s 1.3s forwards;
}

.lm-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--lm-rose-light), transparent);
    animation: lmPulse 2s infinite;
}

@keyframes lmPulse {
    0%, 100% { opacity: .3; transform: scaleY(.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes lmUp { to { opacity: 1; transform: translateY(0); } }


/* ==============================================
   SHOP CONTROLS — VIEW TOGGLE REMOVED
   ============================================== */
.lm-shop-controls {
    padding: 40px 60px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.lm-results-count {
    font-size: .72rem;
    letter-spacing: 2px;
    color: var(--lm-gray);
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
}

.lm-results-count span {
    color: var(--lm-rose);
    font-weight: 600;
}

.lm-controls-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* HIDE VIEW TOGGLE BOXES COMPLETELY */
.lm-view-toggle {
    display: none !important;
}

.lm-sort-form {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.lm-sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: 1px solid #e0d5d0;
    padding: 9px 36px 9px 14px;
    font-family: var(--lm-font-body);
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lm-black-soft);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B76E79' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color .3s;
    border-radius: 0;
}

.lm-sort-select:focus {
    outline: none;
    border-color: var(--lm-rose);
}


/* ==============================================
   FILTER TAGS — HOVER TEXT VISIBLE FIX
   ============================================== */
.lm-filter-tags {
    padding: 0 60px 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lm-filter-label {
    font-size: .63rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lm-gray);
    font-weight: 500;
    margin-right: 4px;
}

/* THE BIG FIX — z-index on text + proper ::before */
.lm-filter-tag {
    padding: 7px 16px;
    border: 1px solid #e0d5d0;
    background: transparent;
    font-family: var(--lm-font-body);
    font-size: .6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lm-gray-dark) !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: all .4s var(--lm-transition);
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.lm-filter-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lm-rose);
    transform: translateX(-101%);
    transition: transform .4s var(--lm-transition);
    z-index: -1;
}

/* HOVER — text white pe force karo */
.lm-filter-tag:hover,
.lm-filter-tag.active {
    border-color: var(--lm-rose) !important;
    color: var(--lm-white) !important;
}

.lm-filter-tag:hover::before,
.lm-filter-tag.active::before {
    transform: translateX(0);
}

/* Extra safety — visited/link pe bhi */
.lm-filter-tag:visited {
    color: var(--lm-gray-dark) !important;
}

.lm-filter-tag:hover:visited,
.lm-filter-tag.active:visited {
    color: var(--lm-white) !important;
}


/* ==============================================
   PRODUCT GRID — NO GAP BETWEEN IMAGE & CONTENT
   ============================================== */
.lm-product-grid {
    padding: 0 60px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* ==============================================
   PRODUCT CARD — IMAGE GAP FIXED
   ============================================== */
.lm-product-card {
    position: relative;
    background: var(--lm-white);
    opacity: 0;
    transform: translateY(40px);
    transition: all .6s var(--lm-transition);
    overflow: hidden;
}

.lm-product-card.lm-visible {
    opacity: 1;
    transform: translateY(0);
}

.lm-product-card:hover {
    box-shadow: 0 20px 60px rgba(183,110,121,.1);
}

/* IMAGE WRAPPER — ZERO GAP FIX */
/* IMAGE WRAPPER — PERFECT SQUARE, NO GAP */
.lm-product-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%; /* 1:1 square ratio - matches image */
    background: linear-gradient(145deg, #f8f0ed, #fdf2f4, #f5eded);
    display: block;
    line-height: 0;
    font-size: 0;
    margin: 0;
}

.lm-product-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
}

.lm-product-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transition: transform 1.2s var(--lm-transition);
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    vertical-align: top !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
}

.lm-product-card:hover .lm-product-image {
    transform: scale(1.07);
}

.lm-product-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    line-height: 0;
    font-size: 0;
}

.lm-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s var(--lm-transition);
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: top;
}

.lm-product-card:hover .lm-product-image {
    transform: scale(1.07);
}

.lm-product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(26,26,26,.03));
    pointer-events: none;
    transition: all .5s;
    z-index: 1;
}

.lm-product-card:hover .lm-product-image-overlay {
    background: linear-gradient(to bottom, transparent 40%, rgba(26,26,26,.07));
}

/* Badge */
.lm-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    font-size: .53rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 3;
    font-family: var(--lm-font-body);
    line-height: 1.4;
}

.badge-new { background: var(--lm-black); color: var(--lm-white) !important; }
.badge-sale { background: var(--lm-rose); color: var(--lm-white) !important; }
.badge-exclusive { background: linear-gradient(135deg, var(--lm-rose), var(--lm-rose-light)); color: var(--lm-white) !important; }
.badge-bestseller { background: transparent; border: 1px solid var(--lm-rose); color: var(--lm-rose) !important; }

/* Wishlist */
.lm-wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none !important;
    background: rgba(255,255,255,.9) !important;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transform: translateY(-8px);
    transition: all .4s var(--lm-transition);
    padding: 0;
}

.lm-product-card:hover .lm-wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}

.lm-wishlist-btn svg {
    width: 16px;
    height: 16px;
    color: var(--lm-black-soft) !important;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: all .3s;
}

.lm-wishlist-btn:hover svg { color: var(--lm-rose) !important; }
.lm-wishlist-btn.active svg { fill: var(--lm-rose); color: var(--lm-rose) !important; }

/* Quick Actions */
.lm-quick-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 3;
    transform: translateY(100%);
    transition: transform .5s var(--lm-transition);
}

.lm-product-card:hover .lm-quick-actions {
    transform: translateY(0);
}

.lm-action-btn {
    font-family: var(--lm-font-body);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 10px;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    line-height: 1;
}

.lm-add-cart-btn {
    flex: 1;
    background: var(--lm-black) !important;
    color: var(--lm-white) !important;
    text-decoration: none !important;
}

.lm-add-cart-btn:hover {
    background: var(--lm-rose) !important;
    color: var(--lm-white) !important;
}

.lm-add-cart-btn:visited,
.lm-add-cart-btn:link,
.lm-add-cart-btn:active,
.lm-add-cart-btn:focus {
    color: var(--lm-white) !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.lm-add-cart-btn.adding {
    pointer-events: none;
    opacity: .7;
    background: var(--lm-black) !important;
    color: var(--lm-white) !important;
}

.lm-add-cart-btn.added {
    background: #2d7d3a !important;
    color: var(--lm-white) !important;
}

.lm-quick-view-btn {
    background: rgba(255,255,255,.95) !important;
    color: var(--lm-black) !important;
    max-width: 46px;
    min-width: 46px;
    border-left: 1px solid #eee !important;
    text-decoration: none !important;
}

.lm-quick-view-btn:hover {
    background: var(--lm-pink-light) !important;
    color: var(--lm-rose) !important;
}

.lm-quick-view-btn:visited,
.lm-quick-view-btn:link,
.lm-quick-view-btn:active {
    color: var(--lm-black) !important;
    text-decoration: none !important;
}

.lm-quick-view-btn svg {
    width: 15px;
    height: 15px;
    color: inherit !important;
}


/* === PRODUCT INFO — ZERO GAP FROM IMAGE === */
.lm-product-info {
    padding: 18px 18px 22px;
    text-align: center;
    margin: 0;
    border: 0;
    line-height: normal;
    font-size: 1rem;
}

.lm-product-category {
    font-size: .55rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lm-rose) !important;
    margin: 0 0 5px 0;
    padding: 0;
}

.lm-product-name-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.lm-product-name-link:hover,
.lm-product-name-link:visited,
.lm-product-name-link:active,
.lm-product-name-link:link {
    text-decoration: none !important;
    color: inherit !important;
}

.lm-product-name {
    font-family: var(--lm-font-display);
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--lm-black) !important;
    letter-spacing: .5px;
    margin: 0 0 4px 0;
    padding: 0;
    transition: color .3s;
}

.lm-product-card:hover .lm-product-name {
    color: var(--lm-rose-dark) !important;
}

.lm-product-subtitle {
    font-family: var(--lm-font-accent);
    font-size: .8rem;
    font-style: italic;
    color: var(--lm-gray) !important;
    margin: 0 0 10px 0;
    padding: 0;
}

.lm-product-price {
    font-size: .85rem;
    font-weight: 600;
    color: var(--lm-black) !important;
    letter-spacing: .5px;
    margin: 0;
    padding: 0;
}

.lm-product-price del {
    font-size: .74rem;
    color: var(--lm-gray) !important;
    font-weight: 400;
    margin-right: 6px;
}

.lm-product-price ins {
    text-decoration: none !important;
    color: var(--lm-rose-dark) !important;
    font-weight: 600;
    background: none !important;
}

.lm-product-price .woocommerce-Price-amount {
    color: inherit !important;
}

/* Rating */
.lm-product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-top: 8px;
}

.lm-star { color: var(--lm-rose-light) !important; font-size: .65rem; line-height: 1; }
.lm-star.empty { color: #e0d5d0 !important; }
.lm-rating-count { font-size: .6rem; color: var(--lm-gray) !important; margin-left: 3px; }


/* ==============================================
   NO PRODUCTS
   ============================================== */
.lm-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 70px 20px;
}

.lm-no-products-icon { margin-bottom: 20px; }

.lm-no-products h3 {
    font-family: var(--lm-font-display);
    font-size: 1.5rem;
    color: var(--lm-black);
    margin-bottom: 10px;
}

.lm-no-products p {
    font-size: .82rem;
    color: var(--lm-gray);
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto 24px;
}

.lm-btn-primary {
    display: inline-flex;
    padding: 13px 36px;
    background: var(--lm-rose) !important;
    color: var(--lm-white) !important;
    font-family: var(--lm-font-body);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background .3s;
}

.lm-btn-primary:hover { background: var(--lm-rose-dark) !important; color: var(--lm-white) !important; }
.lm-btn-primary:visited, .lm-btn-primary:active, .lm-btn-primary:link { color: var(--lm-white) !important; text-decoration: none !important; }


/* ==============================================
   PAGINATION
   ============================================== */
.lm-pagination-section {
    text-align: center;
    padding: 10px 60px 80px;
}

.lm-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.lm-pagination a,
.lm-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e0d5d0;
    background: transparent;
    font-family: var(--lm-font-body);
    font-size: .72rem;
    letter-spacing: 1px;
    color: var(--lm-black-soft) !important;
    text-decoration: none !important;
    transition: all .3s;
}

.lm-pagination span.current {
    background: var(--lm-rose);
    border-color: var(--lm-rose);
    color: var(--lm-white) !important;
}

.lm-pagination a:hover {
    border-color: var(--lm-rose);
    color: var(--lm-rose) !important;
}

.lm-pagination .prev,
.lm-pagination .next {
    border: none;
    color: var(--lm-rose) !important;
    font-size: .65rem;
    letter-spacing: 2px;
}

.lm-page-info {
    margin-top: 16px;
    font-size: .65rem;
    color: var(--lm-gray);
    letter-spacing: 2px;
}


/* ==============================================
   SINGLE PRODUCT PAGE
   ============================================== */
.lm-single-product { background: var(--lm-cream); }

/* Breadcrumb */
.lm-single-breadcrumb-wrap {
    padding: 24px 60px;
    background: var(--lm-white);
    border-bottom: 1px solid rgba(0,0,0,.04);
}

.lm-single-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lm-single-breadcrumb a {
    font-size: .62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--lm-gray) !important;
    text-decoration: none !important;
    transition: color .3s;
}

.lm-single-breadcrumb a:hover { color: var(--lm-rose) !important; }

.lm-single-breadcrumb .lm-bc-sep { font-size: .4rem; color: #ccc; }

.lm-single-breadcrumb .lm-bc-current {
    font-size: .62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--lm-rose);
    font-weight: 500;
}

/* Layout */
.lm-single-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 70vh;
}

/* Gallery */
.lm-single-gallery {
    position: relative;
    background: linear-gradient(145deg, #f8f0ed, #fdf2f4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    min-height: 600px;
}

.lm-single-main-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform .5s var(--lm-transition);
}

.lm-single-main-img:hover { transform: scale(1.03); }

.lm-single-thumbnails {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.lm-single-thumb {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .3s;
    overflow: hidden;
    background: var(--lm-white);
}

.lm-single-thumb.active,
.lm-single-thumb:hover { border-color: var(--lm-rose); }

.lm-single-thumb img { width: 100%; height: 100%; object-fit: cover; }

.lm-single-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 6px 14px;
    font-size: .55rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

/* Details */
.lm-single-details {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--lm-white);
}

.lm-single-category {
    font-size: .58rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lm-rose);
    font-weight: 500;
    margin-bottom: 10px;
}

.lm-single-title {
    font-family: var(--lm-font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--lm-black);
    margin-bottom: 6px;
    line-height: 1.2;
}

.lm-single-subtitle {
    font-family: var(--lm-font-accent);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--lm-gray);
    margin-bottom: 20px;
}

.lm-single-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.lm-single-rating .lm-star { font-size: .78rem; }
.lm-single-rating .lm-rating-text { font-size: .7rem; color: var(--lm-gray); margin-left: 6px; }

.lm-single-price-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.lm-single-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--lm-black);
    letter-spacing: 1px;
}

.lm-single-price del { font-size: 1.1rem; color: var(--lm-gray); font-weight: 400; }
.lm-single-price ins { text-decoration: none; background: none; color: var(--lm-rose-dark); }

.lm-single-desc {
    font-size: .84rem;
    color: var(--lm-gray-dark);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 28px;
}

/* Actions — WISHLIST BOX REMOVED FROM LAYOUT */
.lm-single-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    align-items: center;
}

.lm-qty-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e0d5d0;
}

.lm-qty-btn {
    width: 40px;
    height: 46px;
    background: transparent !important;
    border: none !important;
    font-size: 1rem;
    color: var(--lm-black-soft) !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    padding: 0;
}

.lm-qty-btn:hover { background: var(--lm-pink-light) !important; color: var(--lm-rose) !important; }

.lm-qty-input {
    width: 50px;
    height: 46px;
    text-align: center;
    border: none;
    border-left: 1px solid #e0d5d0;
    border-right: 1px solid #e0d5d0;
    font-family: var(--lm-font-body);
    font-size: .85rem;
    color: var(--lm-black);
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
}

.lm-qty-input::-webkit-outer-spin-button,
.lm-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.lm-single-add-btn {
    flex: 1;
    padding: 14px 30px;
    background: var(--lm-black) !important;
    color: var(--lm-white) !important;
    font-family: var(--lm-font-body);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    border: none !important;
    cursor: pointer;
    transition: all .4s var(--lm-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
}

.lm-single-add-btn:hover { background: var(--lm-rose) !important; color: var(--lm-white) !important; }
.lm-single-add-btn:visited, .lm-single-add-btn:active, .lm-single-add-btn:focus { color: var(--lm-white) !important; text-decoration: none !important; outline: none !important; }
.lm-single-add-btn.adding { opacity: .7; pointer-events: none; }
.lm-single-add-btn.added { background: #2d7d3a !important; }
.lm-single-add-btn svg { width: 16px; height: 16px; }

/* HIDE WISHLIST BOX ON SINGLE PRODUCT */
.lm-single-wishlist {
    display: none !important;
}

/* Meta */
.lm-single-meta {
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,.06);
}

.lm-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: .72rem;
}

.lm-meta-label {
    font-weight: 500;
    color: var(--lm-black);
    letter-spacing: 1px;
    min-width: 80px;
}

.lm-meta-value { color: var(--lm-gray-dark); font-weight: 300; }
.lm-meta-value a { color: var(--lm-rose) !important; text-decoration: none !important; transition: color .3s; }
.lm-meta-value a:hover { color: var(--lm-rose-dark) !important; }

/* Guarantees */
.lm-guarantees {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 50px 60px;
    background: var(--lm-white);
    border-top: 1px solid rgba(0,0,0,.04);
}

.lm-guarantee { text-align: center; padding: 20px 10px; }
.lm-guarantee-icon { color: var(--lm-rose); margin-bottom: 12px; }
.lm-guarantee-icon svg { width: 28px; height: 28px; }
.lm-guarantee-title { font-size: .65rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--lm-black); margin-bottom: 4px; }
.lm-guarantee-text { font-size: .7rem; color: var(--lm-gray); font-weight: 300; }

/* Tabs */
.lm-tabs-section { padding: 60px; background: var(--lm-cream); }

.lm-tabs-nav {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #e0d5d0;
    margin-bottom: 30px;
}

.lm-tab-btn {
    padding: 12px 0;
    font-family: var(--lm-font-body);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lm-gray) !important;
    background: none !important;
    border: none !important;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all .3s;
    margin-bottom: -1px;
}

.lm-tab-btn.active,
.lm-tab-btn:hover {
    color: var(--lm-black) !important;
    border-bottom-color: var(--lm-rose);
}

.lm-tab-content { display: none; animation: lmUp .5s forwards; }
.lm-tab-content.active { display: block; }

.lm-tab-content p {
    font-size: .84rem;
    color: var(--lm-gray-dark);
    line-height: 1.9;
    font-weight: 300;
    max-width: 700px;
}

.lm-tab-content h4 {
    font-family: var(--lm-font-display);
    font-size: 1.1rem;
    color: var(--lm-black);
    margin-bottom: 12px;
}

.lm-tab-content ul { list-style: none; padding: 0; }

.lm-tab-content ul li {
    font-size: .82rem;
    color: var(--lm-gray-dark);
    font-weight: 300;
    line-height: 2;
    padding-left: 18px;
    position: relative;
}

.lm-tab-content ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--lm-rose-light);
    font-size: .45rem;
    top: 2px;
}

/* Related Products */
.lm-related-section { padding: 80px 60px; background: var(--lm-cream); }

.lm-related-header { text-align: center; margin-bottom: 50px; }

.lm-related-tag {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--lm-rose);
    margin-bottom: 10px;
}

.lm-related-title {
    font-family: var(--lm-font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--lm-black);
}

.lm-related-title em { font-style: italic; color: var(--lm-rose); }

.lm-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}


/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1200px) {
    .lm-product-grid, .lm-related-grid { grid-template-columns: repeat(3, 1fr); }
    .lm-guarantees { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .lm-shop-controls, .lm-filter-tags, .lm-product-grid, .lm-pagination-section,
    .lm-single-breadcrumb-wrap, .lm-guarantees, .lm-tabs-section, .lm-related-section {
        padding-left: 24px;
        padding-right: 24px;
    }
    .lm-product-grid, .lm-related-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .lm-hero-banner { height: 55vh; min-height: 380px; }
    .lm-single-layout { grid-template-columns: 1fr; }
    .lm-single-gallery { min-height: 400px; padding: 40px 24px; }
    .lm-single-details { padding: 40px 24px; }
    .lm-single-title { font-size: 1.8rem; }
}

@media (max-width: 600px) {
    .lm-hero-banner { height: 50vh; min-height: 320px; max-height: 500px; }
    .lm-hero-content { padding: 0 16px; }
    .lm-hero-tag { font-size: .55rem; letter-spacing: 4px; }
    .lm-hero-scroll-indicator { display: none; }

    .lm-shop-controls, .lm-filter-tags, .lm-product-grid, .lm-pagination-section {
        padding-left: 14px;
        padding-right: 14px;
    }
    .lm-shop-controls { flex-direction: column; align-items: flex-start; gap: 12px; }
    .lm-filter-tags { gap: 6px; padding-bottom: 24px; }
    .lm-filter-tag { padding: 6px 12px; font-size: .55rem; }

    .lm-product-grid, .lm-related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .lm-product-info { padding: 12px 10px 16px; }
    .lm-product-name { font-size: .85rem; }
    .lm-product-subtitle { font-size: .7rem; margin-bottom: 6px; }
    .lm-product-price { font-size: .76rem; }
    .lm-badge { top: 8px; left: 8px; padding: 4px 8px; font-size: .48rem; }
    .lm-wishlist-btn { top: 8px; right: 8px; width: 30px; height: 30px; }
    .lm-wishlist-btn svg { width: 13px; height: 13px; }

    .lm-quick-actions { position: relative; transform: none; }
    .lm-add-cart-btn { padding: 10px 8px; font-size: .52rem; letter-spacing: 1.5px; }
    .lm-quick-view-btn { min-width: 38px; max-width: 38px; }

    .lm-single-gallery { min-height: 300px; padding: 30px 16px; }
    .lm-single-details { padding: 30px 16px; }
    .lm-single-title { font-size: 1.5rem; }
    .lm-single-actions { flex-wrap: wrap; }
    .lm-single-add-btn { font-size: .6rem; padding: 13px 20px; letter-spacing: 2.5px; }
    .lm-guarantees { grid-template-columns: 1fr 1fr; gap: 12px; padding: 30px 14px; }
    .lm-tabs-nav { gap: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .lm-tab-btn { font-size: .6rem; letter-spacing: 2px; white-space: nowrap; }
    .lm-pagination a, .lm-pagination span { min-width: 34px; height: 34px; font-size: .65rem; padding: 0 8px; }
}

@media (max-width: 380px) {
    .lm-product-grid, .lm-related-grid { grid-template-columns: 1fr; gap: 18px; }
    .lm-guarantees { grid-template-columns: 1fr; }
}



