/* Aryanta Wishlist Smart Premium CSS */
:root {
    --primary: #1d1d1f;
    --primary-hover: #3a3a3c;
    --accent: #0066cc;
    --danger: #ff3b30;
    --success: #34c759;
    --warning: #f59e0b;
    --bg-color: #f5f5f7;
    --surface: rgba(255,255,255,0.78);
    --surface-solid: #ffffff;
    --surface-2: rgba(255,255,255,0.92);
    --text-main: #1d1d1f;
    --text-muted: #6e6e73;
    --border: rgba(0,0,0,0.08);
    --shadow-sm: 0 6px 18px rgba(0,0,0,0.05);
    --shadow-md: 0 14px 34px rgba(0,0,0,0.10);
    --shadow-lg: 0 34px 80px rgba(0,0,0,0.16);
    --transition: all .35s cubic-bezier(.25,1,.5,1);
    --spring: all .45s cubic-bezier(.175,.885,.32,1.275);
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary: #f5f5f7;
        --primary-hover: #d2d2d7;
        --accent: #2997ff;
        --bg-color: #050506;
        --surface: rgba(28,28,30,0.76);
        --surface-solid: #1c1c1e;
        --surface-2: rgba(36,36,38,0.92);
        --text-main: #f5f5f7;
        --text-muted: #a1a1aa;
        --border: rgba(255,255,255,0.12);
        --shadow-sm: 0 6px 18px rgba(0,0,0,0.25);
        --shadow-md: 0 14px 34px rgba(0,0,0,0.35);
        --shadow-lg: 0 34px 80px rgba(0,0,0,0.5);
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 0%, rgba(0,102,204,.10), transparent 28%),
        radial-gradient(circle at 95% 8%, rgba(255,45,85,.08), transparent 28%),
        var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    padding-top: 92px;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
}

.w-100 { width: 100%; }
.flex-row-between { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.glass-effect {
    background: var(--surface);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    border-bottom: 1px solid var(--border);
}

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity .25s ease, visibility .25s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader h4 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-top: 4px;
}

.page-loader p {
    margin-top: 8px;
    color: var(--text-muted);
    font-weight: 700;
}

.spinner {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(134,134,139,.22);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .65s linear infinite;
    margin-bottom: 18px;
}

.spinner.inline {
    width: 32px;
    height: 32px;
    border-width: 3px;
    margin: 0 auto 10px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.top-bar {
    height: 76px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    display: grid;
    grid-template-columns: auto minmax(220px, 680px) auto;
    align-items: center;
    gap: 24px;
    padding: 0 5%;
}

.nav-left,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-actions {
    justify-content: flex-end;
}

.icon-button {
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text-main);
    border-radius: 14px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--spring);
    position: relative;
}

.icon-button:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: var(--shadow-md);
}

.menu-trigger {
    font-size: 18px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.6px;
    cursor: pointer;
    white-space: nowrap;
}

.brand-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.prime-dot {
    color: var(--accent);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,.045);
    border: 1px solid transparent;
    border-radius: 22px;
    padding: 13px 16px;
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}

@media (prefers-color-scheme: dark) {
    .nav-search { background: rgba(255,255,255,.08); }
}

.nav-search:focus-within {
    border-color: color-mix(in srgb, var(--accent) 60%, transparent);
    background: var(--surface-2);
    box-shadow: var(--shadow-md);
}

.nav-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 700;
}

.search-clear {
    border: 0;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0,0,0,.06);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--spring);
}

.search-clear:hover {
    color: var(--danger);
    transform: rotate(90deg) scale(1.06);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger);
    color: #fff;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 99px;
    display: none;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 8px 14px rgba(255,59,48,.3);
}

.badge.show { display: grid; }

.side-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(360px, 92vw);
    background: var(--surface);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    z-index: 5600;
    transform: translateX(-105%);
    transition: transform .45s cubic-bezier(.25,1,.5,1);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
}

.side-panel.open { transform: translateX(0); }

.dimmer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.42);
    backdrop-filter: blur(6px);
    z-index: 5400;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

.dimmer.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.panel-header {
    padding: 48px 24px 22px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.close-sidebar,
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.06);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--spring);
}

.close-sidebar:hover,
.modal-close:hover {
    color: var(--danger);
    transform: rotate(90deg) scale(1.08);
}

.user-profile-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.avatar-wrapper {
    position: relative;
    flex: 0 0 auto;
}

.avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    background: var(--surface-solid);
}

.prime-badge {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--warning);
    border: 2px solid var(--surface-solid);
}

.user-greeting {
    min-width: 0;
}

.user-greeting span {
    display: block;
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-greeting small {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-weight: 700;
}

.panel-links {
    padding: 20px 14px;
    overflow-y: auto;
    flex: 1;
}

.panel-links a {
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border-radius: 16px;
    font-weight: 800;
    margin-bottom: 5px;
    transition: var(--transition);
}

.panel-links a.active,
.panel-links a:hover {
    background: var(--surface-2);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.panel-links a i {
    width: 20px;
    text-align: center;
    color: var(--accent);
}

.sidebar-footer {
    border-top: 1px solid var(--border);
    padding: 22px;
}

.btn-sidebar-logout {
    width: 100%;
    border: 0;
    color: var(--danger);
    background: rgba(255,59,48,.10);
    border-radius: 16px;
    padding: 15px;
    font-weight: 900;
    cursor: pointer;
}

.main-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 26px 5% 90px;
}

.wishlist-hero {
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(255,255,255,.80), rgba(255,255,255,.48)),
        radial-gradient(circle at 92% 18%, rgba(0,102,204,.18), transparent 35%),
        radial-gradient(circle at 12% 20%, rgba(255,45,85,.14), transparent 30%);
    border-radius: 34px;
    padding: clamp(24px, 4vw, 44px);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 26px;
    overflow: hidden;
    position: relative;
}

@media (prefers-color-scheme: dark) {
    .wishlist-hero {
        background:
            linear-gradient(135deg, rgba(28,28,30,.88), rgba(28,28,30,.62)),
            radial-gradient(circle at 92% 18%, rgba(41,151,255,.18), transparent 35%),
            radial-gradient(circle at 12% 20%, rgba(255,45,85,.12), transparent 30%);
    }
}

.wishlist-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -70px;
    top: -90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,102,204,.18), rgba(255,45,85,.14));
    filter: blur(2px);
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 900;
    color: var(--danger);
    margin-bottom: 14px;
}

.wishlist-hero h1 {
    font-size: clamp(34px, 6vw, 64px);
    font-weight: 950;
    letter-spacing: -2.4px;
    line-height: .95;
}

.wishlist-hero p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    z-index: 1;
}

.count-pill {
    background: var(--primary);
    color: var(--bg-color);
    border-radius: 99px;
    padding: 13px 18px;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.toolbar-card {
    margin: 22px 0;
    border: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--shadow-sm);
    border-radius: 24px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.toolbar-left {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scrollbar-width: none;
}

.toolbar-left::-webkit-scrollbar { display: none; }

.filter-pill {
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text-main);
    border-radius: 99px;
    padding: 11px 16px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--spring);
}

.filter-pill.active,
.filter-pill:hover {
    background: var(--primary);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-prime,
.btn-outline,
.btn-danger,
.btn-danger-soft,
.btn-add-cart,
.btn-buy-now,
.btn-list-buy,
.btn-list-add,
.btn-back {
    border: 0;
    border-radius: 16px;
    padding: 14px 18px;
    font-weight: 950;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: var(--spring);
    text-decoration: none;
}

.btn-prime,
.btn-buy-now,
.btn-list-buy {
    background: var(--primary);
    color: var(--bg-color);
    box-shadow: var(--shadow-md);
}

.btn-outline,
.btn-back,
.btn-list-add,
.btn-add-cart {
    background: var(--surface-2);
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-danger {
    background: var(--danger);
    color: #fff;
    box-shadow: 0 12px 30px rgba(255,59,48,.25);
}

.btn-danger-soft {
    color: var(--danger);
    background: rgba(255,59,48,.10);
    border: 1px solid rgba(255,59,48,.14);
    white-space: nowrap;
}

.btn-prime:hover,
.btn-outline:hover,
.btn-danger:hover,
.btn-danger-soft:hover,
.btn-add-cart:hover,
.btn-buy-now:hover,
.btn-list-buy:hover,
.btn-list-add:hover,
.btn-back:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.product-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.list-item-card {
    background: var(--surface);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 18px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--spring);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
}

.list-item-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,102,204,.22);
}

.fade-in-up {
    animation: fadeInUp .45s ease both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.list-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.42), rgba(255,255,255,.08)),
        var(--bg-color);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.list-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform .45s ease;
}

.list-item-card:hover .list-image img {
    transform: scale(1.05);
}

.remove-wish {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--text-muted);
    background: var(--surface-2);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    z-index: 4;
    transition: var(--spring);
}

.remove-wish:hover {
    color: var(--danger);
    transform: rotate(90deg) scale(1.06);
}

.sponsored-badge,
.discount-floating {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: rgba(0,0,0,.74);
    color: #fff;
    border-radius: 99px;
    padding: 7px 10px;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.discount-floating {
    top: 52px;
    background: var(--danger);
}

.list-info {
    padding: 16px 2px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}

.category-mini,
.stock-chip {
    font-size: 11px;
    font-weight: 900;
    padding: 6px 9px;
    border-radius: 99px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    max-width: 52%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stock-chip.ok { color: var(--success); }
.stock-chip.low { color: var(--warning); }
.stock-chip.out { color: var(--danger); }

.list-info h4 {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -.4px;
    min-height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.stars {
    color: var(--warning);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.muted-star {
    color: #cbd5e1;
}

.seller-line {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.seller-line i {
    color: var(--accent);
}

.price {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 14px;
}

.price strong {
    font-weight: 950;
}

.mrp-small {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: line-through;
    font-weight: 700;
}

.list-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.panel-box {
    grid-column: 1 / -1;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 30px;
    padding: clamp(34px, 6vw, 70px) 22px;
    box-shadow: var(--shadow-sm);
}

.empty-state {
    text-align: center;
}

.empty-state > i {
    display: block;
    font-size: 58px;
    color: #cbd5e1;
    margin-bottom: 18px;
}

.empty-state.error > i {
    color: var(--danger);
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 950;
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-muted);
    font-weight: 700;
    line-height: 1.6;
    margin: 0 auto 22px;
    max-width: 520px;
}

.full-page {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 7000;
    transform: translateX(100%);
    transition: transform .48s cubic-bezier(.25,1,.5,1);
    overflow-y: auto;
}

.full-page.open {
    transform: translateX(0);
}

.full-page-header {
    min-height: 72px;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 12px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.full-page-body {
    padding: 34px 5% 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: start;
}

.product-visual,
.product-data {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    border-radius: 34px;
}

.product-visual {
    min-height: 540px;
    padding: 24px;
    position: sticky;
    top: 94px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.prime-visual-bg {
    background:
        radial-gradient(circle at 25% 15%, rgba(0,102,204,.12), transparent 34%),
        radial-gradient(circle at 86% 88%, rgba(255,45,85,.10), transparent 30%),
        var(--surface);
}

.main-prod-img {
    width: 100%;
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 28px 40px rgba(0,0,0,.16));
}

.thumb-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-top: 20px;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.thumb-row::-webkit-scrollbar { display: none; }

.thumb-row img {
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 14px;
    background: var(--surface-solid);
    border: 2px solid transparent;
    padding: 5px;
    cursor: pointer;
}

.thumb-row img.active {
    border-color: var(--accent);
}

.product-data {
    padding: clamp(24px, 4vw, 42px);
}

.product-meta-line {
    align-items: flex-start;
    margin-bottom: 16px;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 99px;
    padding: 9px 13px;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .7px;
    background: var(--primary);
    color: var(--bg-color);
}

.wishlist-heart {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: var(--danger);
    background: rgba(255,59,48,.10);
    cursor: pointer;
    font-size: 18px;
    transition: var(--spring);
}

.wishlist-heart:hover {
    transform: scale(1.1);
}

.display-title {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 950;
    margin-bottom: 16px;
}

.seller-info {
    color: var(--text-muted);
    font-weight: 800;
    line-height: 1.7;
    margin-bottom: 18px;
}

.seller-info strong {
    color: var(--text-main);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 950;
    margin-top: 6px;
}

.admin-badge {
    background: rgba(0,102,204,.10);
    color: var(--accent);
}

.seller-badge {
    background: rgba(52,199,89,.10);
    color: var(--success);
}

.price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px 14px;
    margin: 18px 0;
}

.display-price {
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -1.6px;
    font-weight: 950;
}

.mrp-display {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: .42em;
    margin-right: 10px;
    font-weight: 800;
}

.discount-chip {
    background: rgba(52,199,89,.12);
    color: var(--success);
    padding: 7px 10px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 950;
}

.inclusive-taxes {
    flex-basis: 100%;
    color: var(--text-muted);
    font-weight: 800;
    font-size: 13px;
}

.divider-elegant {
    height: 1px;
    background: var(--border);
    margin: 22px 0;
}

.display-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 700;
}

.smart-panel {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.smart-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.45;
}

.smart-row i {
    color: var(--accent);
    margin-top: 2px;
}

.action-dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.badge-item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 10px;
    display: grid;
    gap: 7px;
    justify-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 900;
}

.badge-item i {
    color: var(--accent);
    font-size: 18px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-box {
    position: relative;
    width: min(460px, 100%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 38px 26px 26px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(.94) translateY(14px);
    transition: var(--spring);
}

.modal-overlay.show .modal-box {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: rgba(0,102,204,.12);
    color: var(--accent);
    font-size: 26px;
}

.modal-icon.danger {
    background: rgba(255,59,48,.12);
    color: var(--danger);
}

.modal-box h3 {
    font-size: 24px;
    font-weight: 950;
    margin-bottom: 10px;
}

.modal-box p {
    color: var(--text-muted);
    font-weight: 700;
    line-height: 1.65;
    margin-bottom: 24px;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.toast-notification {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 120px);
    background: rgba(20,20,22,.92);
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-weight: 900;
    z-index: 10020;
    transition: var(--spring);
    max-width: calc(100vw - 28px);
}

.toast-notification.show {
    transform: translate(-50%, 0);
}

.toast-notification.error i {
    color: var(--danger);
}

.toast-notification.info i {
    color: var(--accent);
}

.toast-notification i {
    color: var(--success);
}

@media (max-width: 1100px) {
    .product-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-hero {
        grid-template-columns: 1fr;
    }

    .product-visual {
        position: relative;
        top: 0;
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    body {
        padding-top: 136px;
    }

    .top-bar {
        grid-template-columns: 1fr auto;
        height: 76px;
        padding: 0 15px;
        gap: 12px;
    }

    .wishlist-search {
        position: fixed;
        left: 15px;
        right: 15px;
        top: 86px;
        z-index: 4999;
        padding: 15px 16px;
        border-radius: 18px;
    }

    .nav-actions {
        gap: 8px;
    }

    .brand-logo span {
        font-size: 19px;
    }

    .brand-img {
        width: 32px;
        height: 32px;
    }

    .main-content {
        padding: 18px 15px 80px;
    }

    .wishlist-hero {
        border-radius: 26px;
        display: block;
        padding: 24px;
    }

    .wishlist-hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-actions {
        margin-top: 18px;
        justify-content: flex-start;
    }

    .toolbar-card {
        align-items: stretch;
        flex-direction: column;
        padding: 12px;
    }

    .toolbar-left {
        width: 100%;
    }

    .btn-danger-soft {
        width: 100%;
    }

    .product-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .list-item-card {
        border-radius: 24px;
        padding: 14px;
    }

    .list-image {
        border-radius: 18px;
    }

    .list-info h4 {
        font-size: 16px;
        min-height: auto;
    }

    .full-page-header {
        padding: 12px 15px;
    }

    .full-page-body {
        padding: 20px 15px 80px;
    }

    .product-visual,
    .product-data {
        border-radius: 26px;
    }

    .product-visual {
        min-height: 340px;
        padding: 18px;
    }

    .display-title {
        letter-spacing: -1.4px;
    }

    .action-dock,
    .trust-badges,
    .modal-actions {
        grid-template-columns: 1fr;
    }

    .btn-add-cart,
    .btn-buy-now {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .top-bar {
        grid-template-columns: 1fr auto;
    }

    .nav-left {
        gap: 8px;
    }

    .brand-logo {
        gap: 8px;
    }

    .icon-button {
        width: 40px;
        height: 40px;
    }

    .list-actions {
        grid-template-columns: 1fr;
    }

    .price {
        font-size: 18px;
    }
}