/* =============================================
   LIYA JASTIP SHOP - Pink Peach Theme
   ============================================= */

:root {
    --lj-pink: #ff6b9d;
    --lj-peach: #ffab76;
    --lj-rose: #ff8fab;
    --lj-light: #fff0f5;
    --lj-light2: #fff8fb;
    --lj-text: #4a2535;
    --lj-muted: #9b7389;
    --lj-gradient: linear-gradient(135deg, #ff6b9d 0%, #ffab76 100%);
    --lj-gradient-soft: linear-gradient(135deg, #ffe0ec 0%, #ffe8d6 100%);
    --lj-shadow: 0 4px 20px rgba(255, 107, 157, 0.15);
    --lj-shadow-hover: 0 8px 30px rgba(255, 107, 157, 0.25);
    --lj-radius: 16px;
    --lj-radius-sm: 10px;
}

* { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--lj-light2);
    color: var(--lj-text);
    margin: 0;
    padding: 0;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.shop-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(255, 107, 157, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.shop-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.shop-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.shop-brand-logo {
    height: 32px;
    max-height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.shop-brand-icon {
    font-size: 1.3rem;
    color: var(--lj-pink);
    line-height: 1;
}

.shop-brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--lj-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.shop-search-bar {
    flex: 1;
    max-width: 420px;
}

.shop-search-bar form {
    display: flex;
}

.shop-search-input {
    flex: 1;
    border: 2px solid #ffe0ec;
    border-right: none;
    border-radius: 25px 0 0 25px;
    padding: 10px 18px;
    font-size: 14px;
    outline: none;
    background: var(--lj-light);
    color: var(--lj-text);
    transition: border-color .2s;
    min-width: 0;
}

.shop-search-input:focus { border-color: var(--lj-pink); }

.shop-search-btn {
    background: var(--lj-gradient);
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 10px 18px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    transition: opacity .2s;
    flex-shrink: 0;
}

.shop-search-btn:hover { opacity: .85; }

/* Mobile search toggle (shown only on small screens) */
.shop-search-toggle {
    display: none;
    background: var(--lj-light);
    border: 2px solid #ffe0ec;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: var(--lj-pink);
    font-size: 15px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
}

.shop-search-toggle:hover { background: #ffe0ec; }

/* Mobile search row */
.shop-search-mobile {
    display: none;
    padding: 0 0 12px;
}

.shop-search-mobile.visible { display: flex; }

.shop-search-mobile form {
    display: flex;
    width: 100%;
}

.shop-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cart-btn {
    position: relative;
    background: var(--lj-gradient);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: box-shadow .2s, transform .2s;
    white-space: nowrap;
}

.cart-btn:hover {
    color: #fff;
    box-shadow: var(--lj-shadow-hover);
    transform: translateY(-1px);
}

.cart-badge {
    background: #fff;
    color: var(--lj-pink);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}

/* =============================================
   HERO BANNER
   ============================================= */
.shop-hero {
    background: var(--lj-gradient);
    padding: 40px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}

.shop-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 50%;
    height: 180%;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}

.shop-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.shop-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.shop-hero p {
    color: rgba(255,255,255,.9);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.shop-hero-search {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,.15);
}

.shop-hero-search input {
    flex: 1;
    border: none;
    padding: 14px 22px;
    font-size: 15px;
    outline: none;
    min-width: 0;
}

.shop-hero-search button {
    background: var(--lj-text);
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.shop-hero-search button:hover { background: #3a1828; }

/* =============================================
   CATEGORY PILLS
   ============================================= */
.category-bar {
    background: #fff;
    border-bottom: 1px solid #ffe0ec;
    padding: 12px 0;
    position: sticky;
    top: 60px;
    z-index: 999;
}

.category-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-pills::-webkit-scrollbar { display: none; }

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    background: var(--lj-light);
    color: var(--lj-muted);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
    transition: all .2s;
    flex-shrink: 0;
}

.category-pill:hover {
    background: #ffe0ec;
    color: var(--lj-pink);
}

.category-pill.active {
    background: var(--lj-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 12px rgba(255,107,157,.3);
}

/* =============================================
   MAIN LAYOUT
   ============================================= */
.shop-main {
    padding: 30px 0 60px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: start;
}

/* =============================================
   SIDEBAR
   ============================================= */
.shop-sidebar {
    background: #fff;
    border-radius: var(--lj-radius);
    padding: 20px;
    box-shadow: var(--lj-shadow);
    position: sticky;
    top: 130px;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--lj-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--lj-light);
}

.sidebar-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-cat-list li + li { margin-top: 4px; }

.sidebar-cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: var(--lj-radius-sm);
    text-decoration: none;
    color: var(--lj-text);
    font-size: 14px;
    transition: all .2s;
}

.sidebar-cat-list a:hover, .sidebar-cat-list a.active {
    background: var(--lj-light);
    color: var(--lj-pink);
    font-weight: 600;
}

.sidebar-cat-count {
    font-size: 11px;
    background: var(--lj-light);
    color: var(--lj-muted);
    padding: 2px 8px;
    border-radius: 20px;
}

/* Sort Bar */
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.sort-bar .results-text {
    font-size: 14px;
    color: var(--lj-muted);
    margin: 0;
}

.sort-bar .results-text strong { color: var(--lj-pink); }

.sort-select {
    border: 2px solid #ffe0ec;
    border-radius: 25px;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--lj-text);
    background: #fff;
    outline: none;
    cursor: pointer;
    transition: border-color .2s;
}

.sort-select:focus { border-color: var(--lj-pink); }

/* =============================================
   PRODUCT GRID
   ============================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-grid-related {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    background: #fff;
    border-radius: var(--lj-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(255,107,157,.08);
    transition: all .3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lj-shadow-hover);
}

.product-img-wrap {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--lj-light);
}

.product-img-wrap img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-ready {
    background: rgba(16, 185, 129, .15);
    color: #059669;
    border: 1px solid rgba(16,185,129,.3);
    backdrop-filter: blur(4px);
}

.badge-not-ready {
    background: rgba(239, 68, 68, .12);
    color: #dc2626;
    border: 1px solid rgba(239,68,68,.2);
    backdrop-filter: blur(4px);
}

.product-info { padding: 14px; }

.product-category-tag {
    font-size: 11px;
    color: var(--lj-pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--lj-text);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.product-price {
    font-size: 1rem;
    font-weight: 800;
    background: var(--lj-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.add-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 12px;
    background: var(--lj-gradient);
    color: #fff;
    border: none;
    border-radius: var(--lj-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.add-cart-btn:hover { color: #fff; opacity: .88; transform: scale(1.02); }

.add-cart-btn:disabled, .add-cart-btn.disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Empty state */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--lj-peach);
    margin-bottom: 12px;
    opacity: .6;
}

.empty-state h4 { color: var(--lj-text); margin-bottom: 8px; }
.empty-state p { color: var(--lj-muted); }

/* me-1 helper */
.me-1 { margin-right: 4px; }

/* =============================================
   PAGINATION
   ============================================= */
.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 8px 14px;
    border: 2px solid #ffe0ec;
    border-radius: var(--lj-radius-sm);
    background: #fff;
    color: var(--lj-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
}

.page-btn:hover, .page-btn.active {
    background: var(--lj-gradient);
    border-color: transparent;
    color: #fff;
}

/* =============================================
   CART PAGE
   ============================================= */
.cart-page-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--lj-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}
.cart-container > :first-child {
    min-width: 0;
}

/* Cart Table */
.cart-table-wrap {
    background: #fff;
    border-radius: var(--lj-radius);
    box-shadow: var(--lj-shadow);
    overflow: hidden;
}
.cart-table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}

.cart-table thead th {
    background: var(--lj-light);
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--lj-muted);
    border-bottom: 2px solid #ffe0ec;
}

.cart-table tbody td {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid #fce8f1;
}

.cart-table tbody tr:last-child td { border-bottom: none; }

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--lj-radius-sm);
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--lj-text);
    margin-bottom: 3px;
}

.cart-item-cat { font-size: 11px; color: var(--lj-pink); }

/* Qty Controls */
.qty-wrap {
    display: inline-flex;
    align-items: center;
    border: 2px solid #ffe0ec;
    border-radius: var(--lj-radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 32px;
    height: 34px;
    border: none;
    background: var(--lj-light);
    color: var(--lj-text);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.qty-btn:hover { background: #ffe0ec; }

.qty-input {
    width: 44px;
    height: 34px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--lj-text);
    background: #fff;
}

/* Cart Remove */
.cart-remove-btn {
    background: #fff0f5;
    border: none;
    color: #dc2626;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all .2s;
}

.cart-remove-btn:hover { background: #dc2626; color: #fff; }

/* Cart Actions */
.cart-actions {
    display: flex;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid #fce8f1;
    flex-wrap: wrap;
}

.btn-back-shop {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 2px solid #ffe0ec;
    border-radius: 25px;
    background: #fff;
    color: var(--lj-pink);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.btn-back-shop:hover { background: var(--lj-light); }

.btn-clear-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 2px solid #ffe0ec;
    border-radius: 25px;
    background: #fff;
    color: #9b7389;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.btn-clear-cart:hover { border-color: #dc2626; color: #dc2626; }

/* Customer Form */
.customer-form-card {
    background: #fff;
    border-radius: var(--lj-radius);
    box-shadow: var(--lj-shadow);
    padding: 24px;
    margin-top: 20px;
}

.customer-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lj-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.customer-form-title i { color: var(--lj-pink); }

.cust-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lj-input {
    width: 100%;
    border: 2px solid #ffe0ec;
    border-radius: var(--lj-radius-sm);
    padding: 11px 15px;
    font-size: 14px;
    color: var(--lj-text);
    background: var(--lj-light2);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.lj-input:focus {
    border-color: var(--lj-pink);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,107,157,.12);
}

.lj-input.is-invalid { border-color: #dc2626; }

.lj-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--lj-text);
    margin-bottom: 6px;
}

.lj-form-group { margin-bottom: 16px; }

/* Cart Summary */
.cart-summary-card {
    background: #fff;
    border-radius: var(--lj-radius);
    box-shadow: var(--lj-shadow);
    padding: 24px;
    position: sticky;
    top: 130px;
}

.summary-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lj-text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--lj-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.summary-row.total {
    border-top: 2px solid var(--lj-light);
    margin-top: 8px;
    padding-top: 14px;
    font-size: 1.1rem;
    font-weight: 800;
}

.summary-label { color: var(--lj-muted); }

.summary-value { font-weight: 700; color: var(--lj-text); }

.summary-value.highlight {
    background: var(--lj-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
}

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--lj-gradient);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(255,107,157,.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,107,157,.4);
}

.checkout-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* WA Note */
.wa-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--lj-radius-sm);
    padding: 12px;
    font-size: 12px;
    color: #065f46;
    margin-top: 12px;
}

.wa-note-icon { font-size: 1rem; flex-shrink: 0; color: #16a34a; }

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--lj-peach);
    margin-bottom: 12px;
    opacity: .6;
}

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.product-detail-wrap {
    background: #fff;
    border-radius: var(--lj-radius);
    box-shadow: var(--lj-shadow);
    overflow: hidden;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-detail-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.product-detail-info { padding: 28px; }

.product-detail-cat {
    font-size: 13px;
    color: var(--lj-pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.product-detail-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--lj-text);
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--lj-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.product-detail-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-detail-desc {
    font-size: 14px;
    color: var(--lj-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 2px solid #ffe0ec;
    border-radius: 25px;
    overflow: hidden;
}

.qty-control button {
    width: 38px;
    height: 42px;
    border: none;
    background: var(--lj-light);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    color: var(--lj-text);
    transition: background .2s;
}

.qty-control button:hover { background: #ffe0ec; }

.qty-control input {
    width: 50px;
    height: 42px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--lj-text);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.shop-testimonials {
    position: relative;
    background: linear-gradient(160deg, #fff0f7 0%, #fff 50%, #fff5f0 100%);
    padding: 40px 0 36px;
    overflow: hidden;
}
.testi-bg-dec {
    position: absolute;
    border-radius: 50%;
    opacity: .07;
    pointer-events: none;
}
.testi-dec-1 {
    width: 400px; height: 400px;
    background: var(--lj-pink);
    top: -120px; left: -100px;
}
.testi-dec-2 {
    width: 300px; height: 300px;
    background: #ffab76;
    bottom: -80px; right: -60px;
}
.testi-header {
    text-align: center;
    margin-bottom: 28px;
}
.testi-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff0f7;
    color: var(--lj-pink);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #ffd6eb;
    margin-bottom: 14px;
    letter-spacing: .3px;
}
.testi-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 6px;
}
.testi-subtitle {
    font-size: 14px;
    color: var(--lj-muted);
    margin: 0;
}
.testi-stage {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
}
.testi-track-wrap {
    flex: 1;
    overflow: hidden;
    border-radius: 24px;
}
.testi-track {
    display: flex;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.testi-slide {
    min-width: 100%;
    box-sizing: border-box;
}
.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 8px 40px rgba(255,107,157,.1), 0 2px 8px rgba(0,0,0,.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.testi-quote-icon {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: .8;
    color: #ffd6eb;
    font-weight: 900;
    user-select: none;
}
.testi-stars { display: flex; gap: 4px; }
.star-on  { color: #f59e0b; font-size: 15px; }
.star-off { color: #e2e8f0; font-size: 15px; }
.testi-body {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}
.testi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #fce8f1;
    margin-top: 2px;
}
.testi-ava {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #ffd6eb;
}
.testi-ava-init {
    background: var(--lj-gradient);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testi-info { display: flex; flex-direction: column; gap: 2px; }
.testi-info strong { font-size: 14px; color: #1e293b; }
.testi-info span   { font-size: 12px; color: var(--lj-muted); }
.testi-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ffd6eb;
    color: var(--lj-pink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: all .2s;
    box-shadow: 0 2px 12px rgba(255,107,157,.12);
}
.testi-arrow:hover {
    background: var(--lj-pink);
    color: #fff;
    border-color: var(--lj-pink);
    transform: scale(1.05);
}
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd6eb;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s;
}
.testi-dot.active {
    background: var(--lj-pink);
    width: 28px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .shop-testimonials { padding: 24px 0 20px; }
    .testi-header { margin-bottom: 16px; }
    .testi-title { font-size: 1.15rem; }
    .testi-subtitle { font-size: 12px; }
    .testi-badge { font-size: 11px; padding: 4px 10px; margin-bottom: 8px; }
    .testi-card { padding: 16px 14px; gap: 8px; }
    .testi-quote-icon { font-size: 2rem; }
    .testi-body { font-size: 13px; line-height: 1.65; }
    .testi-footer { padding-top: 10px; }
    .testi-ava { width: 36px; height: 36px; }
    .testi-stage { gap: 6px; }
    .testi-arrow { width: 30px; height: 30px; font-size: 11px; }
    .testi-dots { margin-top: 12px; }
    .testi-dec-1, .testi-dec-2 { display: none; }
}

/* =============================================
   FOOTER
   ============================================= */
.shop-footer {
    background: #fff;
    border-top: 1px solid #ffe0ec;
    padding: 30px 0;
    margin-top: 40px;
}

.shop-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.shop-footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--lj-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-footer-brand i { color: var(--lj-pink); -webkit-text-fill-color: var(--lj-pink); }

.shop-footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.shop-footer-links a {
    color: var(--lj-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}

.shop-footer-links a:hover { color: var(--lj-pink); }

.shop-footer-copy { font-size: 12px; color: var(--lj-muted); }

/* =============================================
   NOTIFICATION TOAST
   ============================================= */
.lj-toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.lj-toast {
    background: #fff;
    border-radius: var(--lj-radius-sm);
    padding: 12px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    font-size: 14px;
    font-weight: 500;
    color: var(--lj-text);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: toastIn .3s ease;
    pointer-events: auto;
    max-width: 300px;
    border-left: 4px solid var(--lj-pink);
}

.lj-toast .toast-icon { font-size: 1rem; flex-shrink: 0; }
.lj-toast.success { border-left-color: #10b981; }
.lj-toast.success .toast-icon { color: #10b981; }
.lj-toast.error { border-left-color: #ef4444; }
.lj-toast.error .toast-icon { color: #ef4444; }
.lj-toast.warning { border-left-color: #f59e0b; }
.lj-toast.warning .toast-icon { color: #f59e0b; }
.lj-toast.info .toast-icon { color: var(--lj-pink); }

@keyframes toastIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* =============================================
   RESPONSIVE — TABLET (≤ 992px)
   ============================================= */
@media (max-width: 992px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { display: none; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .product-grid-related { grid-template-columns: repeat(3, 1fr); }
    .cart-container { grid-template-columns: 1fr; }
    .cart-summary-card { position: static; }
    .category-bar { top: 60px; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
    /* Navbar: hide desktop search, show toggle button */
    .shop-search-bar { display: none !important; }
    .shop-search-toggle { display: flex; }
    .cart-btn-text { display: none; }
    .cart-btn { padding: 10px 14px; gap: 4px; }
    .shop-brand-text { font-size: 1.15rem; }

    /* Hero */
    .shop-hero { padding: 28px 0 35px; }
    .shop-hero h1 { font-size: 1.6rem; }
    .shop-hero p { font-size: .95rem; }

    /* Product grid */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-grid-related { grid-template-columns: repeat(2, 1fr); }

    /* Product detail: stack */
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-detail-img { min-height: 260px; max-height: 320px; }
    .product-detail-info { padding: 20px; }
    .product-detail-name { font-size: 1.3rem; }
    .product-detail-price { font-size: 1.6rem; }

    /* Cart table: tighter padding on mobile */
    .cart-table tbody td { padding: 12px 10px; }
    .cart-table thead th { padding: 12px 10px; }
    .cart-item-img { width: 48px; height: 48px; }

    /* Cart summary */
    .cart-summary-card { top: auto; }

    /* Footer */
    .shop-footer-content { flex-direction: column; align-items: flex-start; gap: 10px; }
    .shop-footer-links { gap: 14px; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 576px)
   ============================================= */
@media (max-width: 576px) {
    /* Customer form: stack to 1 col */
    .cust-form-grid { grid-template-columns: 1fr; }

    /* Cart container: tighten */
    .cart-container { gap: 16px; }
    .customer-form-card { padding: 16px; }

    /* Cart title */
    .cart-page-title { font-size: 1.4rem; }
}

/* =============================================
   RESPONSIVE — EXTRA SMALL (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
    .product-grid { gap: 8px; }
    .product-info { padding: 10px; }
    .product-name { font-size: 12px; min-height: 30px; }
    .product-price { font-size: .9rem; }
    .add-cart-btn { font-size: 12px; padding: 7px 8px; }

    .shop-hero { padding: 22px 0 28px; }
    .shop-hero h1 { font-size: 1.25rem; }
    .shop-hero p { font-size: .88rem; margin-bottom: 16px; }
    .shop-hero-search input { padding: 11px 16px; font-size: 14px; }
    .shop-hero-search button { padding: 11px 16px; font-size: 14px; }

    .lj-toast-container { right: 12px; left: 12px; }
    .lj-toast { max-width: 100%; }
}
