:root {
    --bg-1: #0B1220;
    --bg-2: #111827;
    --surface-1: rgba(249, 250, 251, 0.04);
    --surface-2: rgba(249, 250, 251, 0.06);
    --card: rgba(26, 35, 51, 0.88);
    --card-strong: rgba(17, 24, 39, 0.96);
    --stroke: #2A3441;
    --stroke-soft: rgba(42, 52, 65, 0.82);
    --text: #F9FAFB;
    --muted: #9CA3AF;
    --accent: #F59E0B;
    --accent-2: #D97706;
    --accent-warm: #B45309;
    --accent-danger: #cf1f33;
    --accent-violet: #2A3441;
    --accent-blue: #1F2937;
    --text-soft: #D1D5DB;
    --text-faint: #94A3B8;
    --text-on-accent: #1F1405;
    --radius-sm: 0.7rem;
    --radius-md: 1rem;
    --radius-lg: 1.25rem;
    --shadow-soft: 0 18px 38px rgba(0, 0, 0, 0.22);
    --shadow-strong: 0 28px 60px rgba(0, 0, 0, 0.36);
    --easing-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", "Noto Sans", "Segoe UI Symbol", sans-serif;
    background:
        radial-gradient(circle at 16% 0%, rgba(245, 158, 11, 0.12) 0%, rgba(17, 24, 39, 0.92) 24%, rgba(11, 18, 32, 0.98) 56%, #070b14 100%);
    color: var(--text);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    letter-spacing: 0.005em;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1220px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

p,
.text-secondary,
small,
.small,
li,
label,
input,
textarea,
select,
button {
    letter-spacing: 0;
}

::selection {
    background: rgba(245, 158, 11, 0.28);
    color: var(--text);
}

.topbar-shell,
.header-shell,
.main-shell,
.footer-shell {
    transition: opacity 220ms ease, transform 220ms ease;
}

html.ui-booting .topbar-shell,
html.ui-booting .header-shell,
html.ui-booting .main-shell,
html.ui-booting .footer-shell {
    opacity: 0;
    transform: translateY(8px);
}

@keyframes orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {

    .topbar-shell,
    .header-shell,
    .main-shell,
    .footer-shell,
    .page-loader,
    .loader-orbit {
        transition: none;
        animation: none;
    }
}

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(transparent 96%, rgba(249, 250, 251, 0.03) 97%),
        linear-gradient(90deg, transparent 96%, rgba(42, 52, 65, 0.18) 97%);
    background-size: 42px 42px;
    opacity: 0.09;
    z-index: -1;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 2600;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.scroll-progress>span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-warm), var(--accent-2) 45%, var(--accent));
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.42);
    transition: width 90ms linear;
}

.quick-cart-drawer {
    width: min(380px, 92vw);
    background:
        radial-gradient(circle at 90% 6%, rgba(245, 183, 0, 0.15), transparent 32%),
        linear-gradient(165deg, rgba(4, 18, 34, 0.96), rgba(2, 12, 24, 0.97));
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.quick-cart-drawer .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-cart-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 0.8rem;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.7rem;
}

.quick-cart-thumb-wrap {
    width: 84px;
    height: 84px;
    border-radius: 0.7rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
}

.quick-cart-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-cart-thumb-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--text-faint);
    font-size: 1.35rem;
}

.quick-cart-name {
    font-weight: 700;
}

.quick-cart-price {
    color: var(--accent);
    font-weight: 700;
}

.quick-cart-qty {
    color: var(--muted);
    font-size: 0.9rem;
}

.quick-cart-message {
    color: var(--text-soft);
    font-size: 0.93rem;
}

.cart-count-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    color: #101014;
    font-weight: 800;
    min-width: 1.35rem;
    height: 1.35rem;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 0 0.4rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.quick-saved-item {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 0.55rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.72rem;
    padding: 0.45rem;
    background: rgba(255, 255, 255, 0.04);
}

.quick-saved-thumb {
    width: 54px;
    height: 54px;
    border-radius: 0.55rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-saved-meta a {
    color: #eef7ff;
    text-decoration: none;
    font-size: 0.88rem;
}

.quick-saved-meta a:hover {
    color: #fff;
}

.quick-saved-meta p {
    margin: 0.15rem 0 0;
    color: var(--accent);
    font-size: 0.83rem;
    font-weight: 700;
}

.premium-tools-dock {
    position: fixed;
    left: 1.25rem;
    right: auto;
    bottom: 6.5rem;
    /* Reduced z-index to stay behind mobile menu but above status bars */
    z-index: 1030;
    display: grid;
    gap: 0.75rem;
}

.premium-tool-btn {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 999px;
    border: 1px solid rgba(42, 52, 65, 0.95);
    background: linear-gradient(155deg, rgba(26, 35, 51, 0.96), rgba(11, 18, 32, 0.98));
    color: var(--text);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    display: grid;
    place-items: center;
    position: relative;
    backdrop-filter: blur(12px);
    transition: transform 180ms var(--easing-premium), box-shadow 180ms var(--easing-premium), border-color 180ms var(--easing-premium), background 180ms var(--easing-premium);
}

.premium-tool-btn:hover,
.premium-tool-btn:focus-visible {
    color: var(--text);
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(245, 158, 11, 0.38);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
    background: linear-gradient(155deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.99));
}

.premium-tool-count {
    position: absolute;
    right: -0.25rem;
    top: -0.22rem;
    min-width: 1.08rem;
    height: 1.08rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    color: #101014;
    font-size: 0.68rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.premium-tool-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.premium-tool-label {
    color: var(--text-soft);
    font-size: 0.68rem;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    line-height: 1;
    transition: color 0.2s ease;
}

.premium-tool-label:hover {
    color: var(--text);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Premium Feature List Ã¢â€â‚¬Ã¢â€â‚¬ */

.feature-list {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    text-decoration: none;
    transition: all 220ms var(--easing-premium);
    padding: 4px 8px;
    border-radius: 8px;
}

.feature-item i {
    font-size: 17px;
    color: var(--accent-2);
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 220ms var(--easing-premium);
}

.feature-item:hover {
    color: #ffffff;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-item:hover i {
    color: var(--accent);
    opacity: 1;
}

.feature-item:active {
    transform: translateY(0);
}

.premium-toast-stack {
    z-index: 2605;
}

.premium-toast {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(155deg, rgba(26, 35, 51, 0.96), rgba(11, 18, 32, 0.98));
    color: var(--text);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.premium-toast .bi {
    color: #7de7a5;
}

.wishlist-page-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.wishlist-page-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.04);
}

.compare-table th,
.compare-table td {
    min-width: 165px;
    vertical-align: top;
}

.compare-print-shell {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.72), rgba(17, 24, 39, 0.84));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 20px 42px rgba(0, 0, 0, 0.24);
}

.compare-table {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.compare-header-row {
    display: none;
}

#comparePageBody {
    display: block;
    width: 100%;
}

.compare-grid-row {
    display: grid;
    grid-template-columns: 220px repeat(var(--compare-cols, 1), minmax(0, 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
    width: 100%;
}

.compare-grid-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.compare-grid-row:last-child {
    border-bottom: 0;
}

.compare-grid-message {
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--text-soft);
}

.compare-attribute-name {
    position: sticky;
    left: 0;
    z-index: 2;
    padding: 18px 16px;
    font-weight: 600;
    color: #9CA3AF;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(11, 18, 32, 0.98));
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.73rem;
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.04);
}

.compare-data-cell {
    padding: 18px 16px;
    text-align: center;
    color: var(--text);
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 0.94rem;
    line-height: 1.55;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.22), rgba(17, 24, 39, 0.06));
}

.compare-data-cell+.compare-data-cell {
    border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-grid-row:first-child .compare-data-cell {
    display: flex;
    flex-direction: column;
}

.compare-product-header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    flex: 1;
}

.compare-product-image,
.compare-product-image-placeholder {
    width: 100%;
    max-width: 220px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 16px;
    margin: 0 auto;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06), 0 10px 24px rgba(0, 0, 0, 0.08);
}

.compare-product-image {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.compare-product-image-placeholder {
    color: #64748b;
    font-size: 2rem;
}

.compare-product-name {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--text);
    max-width: 22ch;
}

.compare-product-price {
    margin: 0;
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
}

.compare-product-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    width: 100%;
}

.compare-view-product,
.compare-remove-product {
    min-height: 36px;
    border-radius: 999px;
    padding-inline: 0.8rem;
    font-weight: 600;
}

.compare-view-product {
    border-color: rgba(245, 158, 11, 0.24);
    background: rgba(245, 158, 11, 0.1);
    color: #fbd38d;
}

.compare-view-product:hover,
.compare-view-product:focus-visible {
    background: rgba(245, 158, 11, 0.16);
    border-color: rgba(245, 158, 11, 0.36);
    color: #fff3d1;
}

.compare-remove-product {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
}

.compare-remove-product:hover,
.compare-remove-product:focus-visible {
    border-color: rgba(239, 68, 68, 0.34);
    background: rgba(239, 68, 68, 0.1);
    color: #fecaca;
}

.compare-price-cell {
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 700;
}

.compare-data-cell .compare-check,
.compare-data-cell .compare-cross {
    justify-content: center;
}

.compare-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.18);
    color: var(--accent);
    font-size: 1.8rem;
}

.compare-toolbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.7rem;
}

.compare-attribute-col {
    width: 150px;
    min-width: 150px;
    color: var(--text);
    font-weight: 700;
    position: sticky;
    left: 0;
    background: rgba(17, 24, 39, 0.96);
    z-index: 2;
}

.compare-product-cell h6 {
    margin-bottom: 0.35rem;
}

.compare-product-cell p {
    margin-bottom: 0.25rem;
    color: var(--muted);
}

.compare-stock-in {
    color: #9df1b8;
}

.compare-stock-out {
    color: #ffb8c2;
}

.compare-product-head {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0.55rem;
    align-items: start;
}

.compare-thumb {
    width: 56px;
    height: 56px;
    border-radius: 0.55rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.compare-thumb-fallback {
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-faint);
}

.compare-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.compare-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.18rem 0.48rem;
    font-size: 0.67rem;
    font-weight: 700;
    border: 1px solid;
}

.compare-chip.best-price {
    color: #fff2ca;
    border-color: rgba(245, 183, 0, 0.58);
    background: rgba(245, 183, 0, 0.18);
}

.compare-chip.best-stock {
    color: var(--text-soft);
    border-color: rgba(148, 163, 184, 0.38);
    background: rgba(148, 163, 184, 0.14);
}

.compare-best {
    background: rgba(245, 183, 0, 0.13);
    box-shadow: inset 0 0 0 1px rgba(245, 183, 0, 0.35);
    font-weight: 700;
}

.compare-check,
.compare-cross {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.52rem;
    font-size: 0.75rem;
    border: 1px solid;
    font-weight: 700;
}

.compare-check {
    color: #b8f1c6;
    border-color: rgba(80, 203, 138, 0.56);
    background: rgba(80, 203, 138, 0.14);
}

.compare-cross {
    color: #ffc4cc;
    border-color: rgba(215, 38, 61, 0.56);
    background: rgba(215, 38, 61, 0.14);
}

#wishlistPageGrid .btn,
#comparePageBody .btn {
    line-height: 1.2;
}

.mobile-page-actionbar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 2296;
    display: none;
    gap: 0.45rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.58rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(160deg, rgba(2, 13, 26, 0.95), rgba(2, 16, 32, 0.98));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(9px);
}

.mobile-page-meta {
    font-size: 0.82rem;
    color: #d7eaf9;
    white-space: nowrap;
}

.mobile-page-btn {
    min-height: 40px;
    padding: 0.46rem 0.7rem;
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-actionbar-space {
    position: relative;
}

.mobile-more-actions {
    display: none;
    position: relative;
}

.mobile-more-actions>summary {
    list-style: none;
    cursor: pointer;
    min-width: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-more-actions>summary::-webkit-details-marker {
    display: none;
}

.mobile-more-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.35rem);
    min-width: 130px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.72rem;
    padding: 0.35rem;
    background: linear-gradient(160deg, rgba(3, 18, 33, 0.97), rgba(2, 12, 24, 0.98));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32);
    display: grid;
    gap: 0.3rem;
    z-index: 3;
}

.wishlist-btn.is-active,
.compare-btn.is-active {
    border-color: rgba(245, 183, 0, 0.72);
    background: rgba(245, 183, 0, 0.16);
    color: #fff2ca;
}

.quick-view-modal {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 1rem;
    background:
        radial-gradient(circle at 88% 10%, rgba(245, 183, 0, 0.15), transparent 32%),
        linear-gradient(160deg, rgba(6, 24, 43, 0.96), rgba(2, 12, 23, 0.98));
    color: var(--text);
}

.quick-view-image-wrap {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.85rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    aspect-ratio: 1 / 1;
}

.quick-view-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-image-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #94b0c8;
    font-size: 2rem;
}

.filter-count-badge {
    display: inline-grid;
    place-items: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: #eff8ff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.filter-reset-link {
    color: #ffd173;
}

.mobile-filter-dock {
    position: fixed;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 2295;
    display: none;
    gap: 0.55rem;
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.9rem;
    background: linear-gradient(170deg, rgba(2, 13, 25, 0.92), rgba(2, 16, 32, 0.98));
    backdrop-filter: blur(9px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.mobile-filter-dock .btn {
    border-radius: 0.72rem;
}

.has-skeleton .skeleton-on-load {
    position: relative;
    overflow: hidden;
}

.has-skeleton .skeleton-on-load::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 62%),
        rgba(255, 255, 255, 0.06);
    background-size: 220% 100%, auto;
    animation: skeleton-shimmer 1s linear infinite;
    z-index: 4;
    pointer-events: none;
}

.has-skeleton .skeleton-on-load>* {
    opacity: 0.2;
}

.has-skeleton.is-hydrated .skeleton-on-load::before {
    opacity: 0;
    transition: opacity 200ms ease;
    animation: none;
}

.has-skeleton.is-hydrated .skeleton-on-load>* {
    opacity: 1;
    transition: opacity 200ms ease;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 150% 0, 0 0;
    }

    100% {
        background-position: -80% 0, 0 0;
    }
}

.footer-social-links .social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-soft);
    font-size: 1.15rem;
    transition: all 200ms ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-links .social-icon-link:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    color: #0b1220;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}



.floating-whatsapp { width: 3.25rem !important; height: 3.25rem !important; 
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    font-size: 1.45rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(145deg, #25d366, #1ea952);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 16px 34px rgba(22, 120, 57, 0.45);
    /* Ensure consistent floating */
    /* Lifted up */
    z-index: 2305;
    transition: transform 180ms var(--easing-premium), box-shadow 180ms var(--easing-premium), filter 180ms var(--easing-premium);
}

.floating-backtop { width: 3.25rem !important; height: 3.25rem !important; 
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 999px;
    border: 1px solid rgba(42, 52, 65, 0.9);
    color: var(--text);
    background: linear-gradient(145deg, rgba(26, 35, 51, 0.96), rgba(11, 18, 32, 0.98));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    display: inline-grid;
    place-items: center;
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    pointer-events: auto;
    /* Ensure consistent floating */
    /* Lifted up above whatsapp */
    z-index: 2305;
    transform: translateY(8px) scale(0.96);
    transition: opacity 180ms var(--easing-premium), transform 180ms var(--easing-premium), visibility 180ms var(--easing-premium), box-shadow 180ms var(--easing-premium);
}

.floating-backtop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-backtop:hover,
.floating-backtop:focus-visible {
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
    color: var(--text);
    border-color: rgba(245, 158, 11, 0.34);
    transform: translateY(-2px) scale(1.04);
}

.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 34px rgba(22, 120, 57, 0.5);
    filter: saturate(1.06);
}

.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: inherit;
    border: 1px solid rgba(37, 211, 102, 0.5);
    animation: whatsapp-ping 2.2s ease-out infinite;
}

@keyframes whatsapp-ping {
    0% {
        transform: scale(0.92);
        opacity: 0.65;
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

a {
    color: var(--text-soft);
    transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

a:hover {
    color: var(--text);
}

.main-shell>.container {
    padding-top: 1.6rem;
}

.main-shell section {
    scroll-margin-top: 104px;
}

.page-section {
    margin-bottom: 1.4rem;
    scroll-margin-top: 108px;
}

.text-secondary {
    color: var(--muted) !important;
}

.alert {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.95rem;
    background: var(--surface-1);
    color: var(--text);
}

.header-shell {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(11, 18, 32, 0.85);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: background 220ms var(--easing-premium), box-shadow 220ms var(--easing-premium), border-color 220ms var(--easing-premium);
}

.header-shell.is-scrolled {
    background: linear-gradient(90deg, rgba(7, 12, 22, 0.98), rgba(11, 18, 32, 0.96));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    border-bottom-color: rgba(42, 52, 65, 0.92);
}

.header-shell.is-scrolled .container {
    padding-top: 0.45rem !important;
    padding-bottom: 0.45rem !important;
}

.topbar-shell {
    border-bottom: 1px solid rgba(42, 52, 65, 0.6);
    background: rgba(11, 18, 32, 0.86);
}

.topbar-text {
    color: var(--text-faint);
    font-size: 0.77rem;
    letter-spacing: 0.02em;
}

.premium-nav .navbar-brand,
.premium-nav .nav-link {
    color: var(--text);
}

.navbar-toggler {
    color: var(--text);
}

.brand-mark {
    font-family: "Sora", sans-serif;
    letter-spacing: 0.02em;
    font-size: 1rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--text);
    transition: transform 220ms var(--easing-premium), opacity 220ms var(--easing-premium);
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 0.6rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.28rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.brand-accent {
    color: var(--accent);
    letter-spacing: 0.03em;
}

.brand-secondary {
    color: var(--text);
    opacity: 0.88;
    font-weight: 600;
    letter-spacing: 0.12em;
    font-size: 0.7em;
}

.brand-mark:hover,
.brand-mark:focus-visible {
    transform: translateY(-1px);
    opacity: 1;
}

.premium-link {
    font-weight: 600;
    font-size: 0.92rem;
    opacity: 0.92;
    position: relative;
    transition: color 180ms ease, opacity 180ms ease;
}

.premium-link::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.05rem;
    height: 1.5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-warm), var(--accent-2) 45%, var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms var(--easing-premium);
}

.premium-link:hover {
    opacity: 1;
    color: var(--text);
}

.premium-link.active {
    opacity: 1;
    color: var(--text);
}

.premium-link.active::after,
.premium-link:hover::after,
.premium-link.is-section-active::after {
    transform: scaleX(1);
}

.premium-search-form {
    z-index: 3;
    isolation: isolate;
}

.premium-search-shell {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    background: #0F172A;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: border-color 180ms var(--easing-premium), box-shadow 180ms var(--easing-premium), transform 180ms var(--easing-premium);
}

.premium-search-shell:focus-within {
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.12), 0 14px 30px rgba(0, 0, 0, 0.24);
    transform: translateY(-1px);
}

.premium-search-input {
    background: transparent !important;
    border: 0 !important;
    color: var(--text) !important;
    padding-inline: 1rem;
    min-height: 46px;
}

.premium-search-input::placeholder {
    color: var(--text-faint);
}

.premium-search-submit {
    border-color: transparent !important;
    background: transparent !important;
    color: var(--text-soft);
    min-width: 52px;
}

.premium-search-submit:hover,
.premium-search-submit:focus-visible {
    color: var(--accent);
    background: rgba(245, 158, 11, 0.06) !important;
}

.premium-search-submit i {
    color: inherit;
    font-size: 1rem;
}

.search-dropdown-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 0.55rem;
    z-index: 999;
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid #2A3441;
    border-radius: 12px;
    background: #111827;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    padding: 0.35rem;
    animation: search-dropdown-in 180ms var(--easing-premium);
    box-sizing: border-box;
}

.search-dropdown-results.d-none {
    display: none !important;
}

.search-dropdown-results::-webkit-scrollbar {
    width: 10px;
}

.search-dropdown-results::-webkit-scrollbar-track {
    background: transparent;
}

.search-dropdown-results::-webkit-scrollbar-thumb {
    background: rgba(42, 52, 65, 0.9);
    border-radius: 999px;
    border: 2px solid #111827;
}

.search-result-item {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 0.85rem;
    color: var(--text) !important;
    transition: background 180ms ease, transform 180ms ease;
    box-sizing: border-box;
}

.search-result-item+.search-result-item {
    margin-top: 0.2rem;
}

.search-result-item:hover {
    background: rgba(245, 158, 11, 0.08);
    transform: translateY(-1px);
}

.search-result-media {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(42, 52, 65, 0.95);
    background: #1A2333;
    display: grid !important;
    place-items: center;
}

.search-result-thumb {
    display: block;
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
    background: #1A2333;
}

.search-result-thumb-fallback {
    color: var(--text-faint);
    font-size: 1rem;
}

.search-result-copy {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.search-result-title {
    display: block;
    color: #F9FAFB;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
}

.search-result-category {
    display: block;
    color: #9CA3AF;
    font-size: 0.78rem;
    line-height: 1.2;
}

.search-result-price {
    flex: 0 0 auto;
    margin-left: auto;
    color: #F59E0B;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.search-dropdown-empty {
    min-height: 92px;
    display: grid;
    place-items: center;
    gap: 0.35rem;
    color: var(--muted);
    text-align: center;
    font-size: 0.86rem;
}

.search-dropdown-empty i {
    color: var(--accent);
    font-size: 1rem;
}

@keyframes search-dropdown-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-link.is-section-active {
    opacity: 1;
    color: #fff;
}

.btn-premium-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--text-on-accent);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.74rem 1.3rem;
    box-shadow: 0 10px 26px rgba(255, 106, 0, 0.24);
    transition: transform 180ms var(--easing-premium), box-shadow 180ms var(--easing-premium), filter 180ms var(--easing-premium);
}

.btn-premium-cta:hover {
    background: linear-gradient(135deg, #fbbf24, #ea580c);
    color: var(--text-on-accent);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(255, 106, 0, 0.32);
    filter: saturate(1.01);
}

.btn-premium-cta:disabled {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.5), rgba(71, 85, 105, 0.5));
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: none;
}

.btn-premium-cta:disabled:hover {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.5), rgba(71, 85, 105, 0.5));
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Premium Accent Button Styles */
.btn-accent {
    background-color: var(--accent);
    color: var(--text-on-accent) !important;
    border: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.74rem 1.3rem;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.25);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    font-family: "Sora", sans-serif;
}

.btn-accent:hover {
    background-color: var(--accent-2);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.btn-accent-dark {
    background-color: rgba(245, 158, 11, 0.08);
    color: var(--accent) !important;
    border: 1px solid rgba(245, 158, 11, 0.4);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.74rem 1.3rem;
    transition: all 180ms ease;
    font-family: "Sora", sans-serif;
}

.btn-accent-dark:hover {
    background-color: var(--accent);
    color: var(--text-on-accent) !important;
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.25);
}

/* Premium Soft Danger Action Button */
.btn-soft-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.85), rgba(220, 38, 38, 0.95)) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 110, 110, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.6rem;
}

.btn-soft-danger:hover {
    background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
    color: #ffffff !important;
    border-color: #ff8f8f !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}

.btn-soft-danger:active {
    transform: translateY(0);
}

.btn-outline-light {
    border-color: rgba(42, 52, 65, 0.9);
    color: var(--text);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.74rem 1.3rem;
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    color: var(--text);
    border-color: rgba(245, 158, 11, 0.42);
    background: rgba(245, 158, 11, 0.08);
}

.btn-outline-danger {
    border-color: rgba(215, 38, 61, 0.68);
    color: #ffd3d9;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus-visible {
    color: #fff;
    background: rgba(215, 38, 61, 0.2);
    border-color: rgba(215, 38, 61, 0.9);
}

.btn-success {
    background: linear-gradient(140deg, #2cbe7b, #21a867);
    border-color: #21a867;
}

.btn-success:hover,
.btn-success:focus-visible {
    background: linear-gradient(140deg, #34c987, #25b16f);
    border-color: #25b16f;
}

.cart-btn {
    border-radius: 999px;
    padding-inline: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cart-count-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #121521;
    min-width: 1.2rem;
    font-weight: 700;
    position: absolute;
    top: -6px;
    right: -6px;
}

.hero-premium {
    background:
        radial-gradient(circle at 82% 16%, rgba(245, 158, 11, 0.12), transparent 34%),
        radial-gradient(circle at 16% 84%, rgba(42, 52, 65, 0.28), transparent 30%),
        linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(11, 18, 32, 0.94));
    border: 1px solid rgba(42, 52, 65, 0.88);
    border-radius: 1.45rem;
    padding: 2.6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.24);
}

.hero-live {
    isolation: isolate;
    background-size: 140% 140%, 140% 140%, 170% 170%;
    animation: hero-gradient-shift 12s ease-in-out infinite alternate;
}

.hero-live::before {
    content: "";
    position: absolute;
    inset: -25% -10%;
    z-index: 0;
    opacity: 0.36;
    background:
        radial-gradient(circle at 20% 35%, rgba(42, 52, 65, 0.36), transparent 38%),
        radial-gradient(circle at 78% 68%, rgba(245, 158, 11, 0.28), transparent 36%),
        radial-gradient(circle at 48% 48%, rgba(249, 250, 251, 0.12), transparent 42%);
    filter: blur(20px);
    animation: hero-aurora-drift 18s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-live-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249, 250, 251, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 250, 251, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
    opacity: 0.28;
}

/* Product Detail Page Enhancements */
.detail-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.stock-status-badge {
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.stock-status-badge.in-stock {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stock-status-badge.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.stock-status-badge.low-stock {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

@media (max-width: 768px) {
    .detail-price {
        font-size: 1.8rem;
    }
    
    .action-btns-row {
        flex-direction: column;
        gap: 12px !important;
    }
    
    .action-btns-row .btn {
        width: 100%;
    }

    .premium-tools-dock {
        left: auto !important;
        right: 1.25rem !important;
        bottom: 14.5rem !important; /* Stacked above back-to-top */
    }

    .premium-tool-label {
        display: none !important;
    }
}

.hero-camera-main {
    width: 180px;
    height: 56px;
    right: 8%;
    top: 20%;
    border-radius: 1.2rem;
    transform: rotate(-10deg);
    box-shadow: 0 0 42px rgba(245, 158, 11, 0.08);
}

.hero-camera-main::before {
    width: 70px;
    height: 18px;
    left: -22px;
    top: 18px;
    border-radius: 999px;
    background: rgba(249, 250, 251, 0.08);
}

.hero-camera-main::after {
    width: 42px;
    height: 42px;
    right: 10px;
    top: 6px;
    border-radius: 999px;
    border: 1px solid rgba(249, 250, 251, 0.12);
    background:
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.28), transparent 26%),
        radial-gradient(circle at 50% 50%, rgba(249, 250, 251, 0.1), rgba(11, 18, 32, 0.3) 62%);
}

.hero-camera-secondary {
    width: 120px;
    height: 34px;
    left: 12%;
    bottom: 19%;
    border-radius: 999px;
    transform: rotate(8deg);
    opacity: 0.2;
}

.hero-camera-secondary::before {
    width: 22px;
    height: 22px;
    right: 10px;
    top: 5px;
    border-radius: 999px;
    border: 1px solid rgba(249, 250, 251, 0.08);
    background: radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.22), rgba(11, 18, 32, 0.26) 70%);
}

.hero-camera-secondary::after {
    width: 30px;
    height: 8px;
    left: -10px;
    top: 12px;
    border-radius: 999px;
    background: rgba(249, 250, 251, 0.06);
}

.hero-live-bg .orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.24;
    mix-blend-mode: screen;
}

.hero-live-bg .orb-a {
    width: 220px;
    height: 220px;
    left: -40px;
    top: 45%;
    background: radial-gradient(circle, rgba(42, 52, 65, 0.7) 0%, rgba(42, 52, 65, 0.08) 70%, transparent 100%);
    animation: hero-float-a 8s var(--easing-premium) infinite;
}

.hero-live-bg .orb-b {
    width: 260px;
    height: 260px;
    right: 8%;
    top: -30px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.55) 0%, rgba(245, 158, 11, 0.08) 72%, transparent 100%);
    animation: hero-float-b 10s var(--easing-premium) infinite;
}

.hero-live-bg .orb-c {
    width: 150px;
    height: 150px;
    right: 26%;
    bottom: -45px;
    background: radial-gradient(circle, rgba(107, 114, 128, 0.42) 0%, rgba(107, 114, 128, 0.06) 70%, transparent 100%);
    animation: hero-float-c 7s var(--easing-premium) infinite;
}

.hero-live-bg .beam {
    position: absolute;
    inset: -35% -20%;
    background: linear-gradient(112deg, transparent 42%, rgba(255, 255, 255, 0.12) 50%, transparent 58%);
    opacity: 0.28;
    transform: translateX(-16%);
    animation: hero-beam-sweep 6s ease-in-out infinite;
}

.hero-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.2), transparent 42%),
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 35%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-premium>.row {
    position: relative;
    z-index: 2;
}

@keyframes hero-aurora-drift {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }

    100% {
        transform: translate3d(2%, 2%, 0) scale(1.08);
    }
}

@keyframes hero-gradient-shift {
    0% {
        background-position: 0% 28%, 90% 84%, 10% 52%;
    }

    100% {
        background-position: 12% 36%, 78% 70%, 26% 46%;
    }
}

@keyframes hero-float-a {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(34px, -20px, 0);
    }
}

@keyframes hero-float-b {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-28px, 26px, 0);
    }
}

@keyframes hero-float-c {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(22px, -12px, 0) scale(1.08);
    }
}

@keyframes hero-beam-sweep {

    0%,
    100% {
        transform: translateX(-16%);
    }

    50% {
        transform: translateX(12%);
    }
}

.eyebrow {
    color: #f7b548;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.display-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.9rem, 4.6vw, 3.45rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.lead-copy {
    color: var(--muted);
    max-width: 58ch;
    font-size: 1rem;
    line-height: 1.7;
}

.premium-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.premium-stat-card {
    border: 1px solid rgba(249, 250, 251, 0.1);
    background: linear-gradient(180deg, rgba(249, 250, 251, 0.08), rgba(26, 35, 51, 0.34));
    border-radius: 1rem;
    padding: 1.05rem;
    backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(249, 250, 251, 0.06), 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: transform 180ms var(--easing-premium), box-shadow 180ms var(--easing-premium), border-color 180ms var(--easing-premium);
}

.premium-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.22);
    box-shadow: inset 0 1px 0 rgba(249, 250, 251, 0.08), 0 18px 34px rgba(0, 0, 0, 0.24);
}

.premium-stat-card h3 {
    font-size: 1.45rem;
    margin: 0;
    color: #ffffff;
}

.premium-stat-card p {
    margin: 0;
    color: var(--text-faint);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mini-info-card {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 1.05rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 1.15rem 1.15rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.mini-info-card h6 {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
    color: var(--text);
}

.mini-info-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.mini-info-card a {
    color: #f6c56a;
}

.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--text);
    background: rgba(26, 35, 51, 0.4);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-table thead th {
    padding: 1.2rem 1rem 1rem;
    border-bottom: 2px solid rgba(245, 158, 11, 0.3);
    color: var(--text-soft);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(8px);
}

.premium-table tbody td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    vertical-align: top;
    line-height: 1.45;
    background: rgba(26, 35, 51, 0.2);
    transition: all 0.3s var(--easing-premium);
}

.premium-table tbody tr:hover td {
    background: rgba(245, 158, 11, 0.08);
    border-bottom-color: rgba(245, 158, 11, 0.2);
}

.premium-table tbody tr:last-child td {
    border-bottom: 0;
    padding-bottom: 1.2rem;
}

.premium-table tbody tr:first-child td {
    padding-top: 1.3rem;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 7.25rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    transition: all 0.3s var(--easing-premium);
}

.order-status-badge.pending {
    background: rgba(255, 183, 0, 0.14);
    border-color: rgba(255, 183, 0, 0.34);
    color: #ffd56f;
}

.order-status-badge.confirmed {
    background: rgba(59, 130, 246, 0.14);
    border-color: rgba(59, 130, 246, 0.34);
    color: #9cc7ff;
}

.order-status-badge.processing {
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.28);
    color: var(--text-soft);
}

.order-status-badge.shipped {
    background: rgba(20, 184, 166, 0.14);
    border-color: rgba(20, 184, 166, 0.34);
    color: #8ef0e4;
}

.order-status-badge.delivered,
.order-status-badge.completed {
    background: rgba(46, 204, 113, 0.14);
    border-color: rgba(46, 204, 113, 0.34);
    color: #9ef0be;
}

.order-status-badge.returned {
    background: rgba(168, 85, 247, 0.14);
    border-color: rgba(168, 85, 247, 0.34);
    color: #ddbeff;
}

.order-status-badge.cancelled {
    background: rgba(215, 38, 61, 0.14);
    border-color: rgba(215, 38, 61, 0.34);
    color: #ffb3bf;
}

.shipping-meta {
    display: grid;
    gap: 0.45rem;
    min-width: 12rem;
    max-width: 14rem;
}

.shipping-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 8.25rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(4px);
    transition: all 0.3s var(--easing-premium);
}

.shipping-status-badge.not_shipped {
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.28);
    color: var(--text-soft);
}

.shipping-status-badge.packed {
    background: rgba(255, 183, 0, 0.14);
    border-color: rgba(255, 183, 0, 0.34);
    color: #ffd56f;
}

.shipping-status-badge.in_transit {
    background: rgba(59, 130, 246, 0.14);
    border-color: rgba(59, 130, 246, 0.34);
    color: #9cc7ff;
}

.shipping-status-badge.out_for_delivery {
    background: rgba(20, 184, 166, 0.14);
    border-color: rgba(20, 184, 166, 0.34);
    color: #8ef0e4;
}

.shipping-status-badge.delivered {
    background: rgba(46, 204, 113, 0.14);
    border-color: rgba(46, 204, 113, 0.34);
    color: #9ef0be;
}

.shipping-detail {
    color: #d7e9f8;
    font-size: 0.82rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.shipping-detail-label {
    color: var(--text-soft);
    font-weight: 600;
}

.shipping-detail-empty {
    color: var(--text-soft);
}

.tracking-summary-stack {
    display: grid;
    gap: 0.6rem;
    min-width: 15rem;
}

.tracking-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    color: #d7e9f8;
    font-size: 0.88rem;
}

.tracking-summary-line span {
    color: var(--text-soft);
}

.tracking-summary-muted {
    display: block;
    color: var(--text-soft);
}

.tracking-back-link {
    color: #9cc7ff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
}

.tracking-back-link:hover {
    color: #d7e9f8;
}

.tracking-page-shell {
    position: relative;
}

.tracking-page-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 191, 71, 0.12);
    background:
        radial-gradient(circle at top left, rgba(255, 166, 0, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 32%),
        linear-gradient(135deg, rgba(6, 16, 34, 0.98), rgba(8, 24, 50, 0.95));
}

.tracking-page-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.5;
    pointer-events: none;
}

.tracking-page-orb-one {
    width: 11rem;
    height: 11rem;
    right: -2rem;
    top: -3rem;
    background: radial-gradient(circle, rgba(255, 170, 0, 0.22), transparent 70%);
}

.tracking-page-orb-two {
    width: 9rem;
    height: 9rem;
    left: 42%;
    bottom: -3rem;
    background: radial-gradient(circle, rgba(0, 179, 255, 0.18), transparent 70%);
}

.tracking-page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}

.tracking-page-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    color: #f7fbff;
}

.tracking-page-subtitle {
    max-width: 38rem;
    color: #d3e0ec;
    font-size: 1.02rem;
}

.tracking-page-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.tracking-page-metric {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
}

.tracking-page-metric span {
    display: block;
    color: var(--text-soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.38rem;
}

.tracking-page-metric strong {
    color: #f6fbff;
    font-size: 0.98rem;
}

.tracking-page-spotlight {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    padding: 1.15rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(8px);
}

.tracking-page-product-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tracking-page-product-media {
    width: 5.4rem;
    height: 5.4rem;
    flex: 0 0 auto;
    border-radius: 1.1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.tracking-page-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tracking-page-product-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: #9cc7ff;
    background: linear-gradient(135deg, rgba(8, 24, 50, 0.9), rgba(10, 34, 68, 0.95));
}

.tracking-page-product-kicker {
    color: #f4ba54;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.tracking-page-product-title {
    font-family: "Sora", sans-serif;
    font-size: 1.12rem;
    line-height: 1.25;
    color: #f6fbff;
}

.tracking-page-product-meta {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.tracking-page-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tracking-page-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.tracking-page-summary-card {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 20, 40, 0.72);
}

.tracking-page-summary-card span {
    display: block;
    color: var(--text-soft);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.tracking-page-summary-card strong {
    color: #f6fbff;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
}

.tracking-page-stepper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.95rem;
    margin-top: 1.75rem;
}

.tracking-page-step {
    position: relative;
    display: grid;
    gap: 0.8rem;
    min-height: 10.5rem;
    padding: 1.15rem 1rem 1rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.tracking-page-step::after {
    content: "";
    position: absolute;
    top: 2.2rem;
    left: calc(100% - 0.22rem);
    width: 1rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.13);
}

.tracking-page-step:last-child::after {
    display: none;
}

.tracking-page-step-icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #c8d8e6;
    font-size: 1.2rem;
}

.tracking-page-step-copy {
    display: grid;
    gap: 0.28rem;
}

.tracking-page-step-copy strong {
    color: #f6fbff;
    font-size: 0.97rem;
    line-height: 1.25;
}

.tracking-page-step-copy small {
    color: var(--text-soft);
    font-size: 0.8rem;
}

.tracking-page-step.complete {
    border-color: rgba(46, 204, 113, 0.2);
    background: linear-gradient(180deg, rgba(46, 204, 113, 0.12), rgba(46, 204, 113, 0.05));
}

.tracking-page-step.complete .tracking-page-step-icon {
    border-color: rgba(46, 204, 113, 0.35);
    background: rgba(46, 204, 113, 0.2);
    color: #9ef0be;
}

.tracking-page-step.current {
    border-color: rgba(255, 191, 71, 0.28);
    background: linear-gradient(180deg, rgba(255, 191, 71, 0.16), rgba(59, 130, 246, 0.08));
    box-shadow: 0 20px 40px rgba(2, 10, 24, 0.35);
}

.tracking-page-step.current .tracking-page-step-icon {
    border-color: rgba(255, 191, 71, 0.45);
    background: rgba(255, 191, 71, 0.2);
    color: #ffd56f;
}

.tracking-page-step.upcoming .tracking-page-step-copy strong {
    color: #d7e5f2;
}

.tracking-page-panel {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(8, 22, 46, 0.94), rgba(5, 16, 36, 0.92));
}

.tracking-page-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.tracking-page-mini-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #d7e9f8;
    font-size: 0.82rem;
    font-weight: 600;
}

.tracking-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.tracking-detail-card {
    display: grid;
    gap: 0.42rem;
    padding: 1rem 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.tracking-detail-card-label {
    color: var(--text-soft);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tracking-detail-card strong {
    color: #f6fbff;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.tracking-detail-card small {
    color: #b3c2d3;
    line-height: 1.45;
}

.tracking-progress-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
}

.tracking-progress-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    min-height: 5.75rem;
}

.tracking-progress-step::after {
    content: "";
    position: absolute;
    top: 1.55rem;
    left: calc(100% - 0.3rem);
    width: 1.2rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
}

.tracking-progress-step:last-child::after {
    display: none;
}

.tracking-progress-dot {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    margin-top: 0.2rem;
    border: 2px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    flex: 0 0 auto;
}

.tracking-progress-copy {
    display: grid;
    gap: 0.2rem;
}

.tracking-progress-copy strong {
    color: #f6fbff;
    font-size: 0.94rem;
}

.tracking-progress-copy small {
    color: var(--text-soft);
}

.tracking-progress-step.complete {
    border-color: rgba(46, 204, 113, 0.22);
    background: rgba(46, 204, 113, 0.08);
}

.tracking-progress-step.complete .tracking-progress-dot {
    background: #9ef0be;
    border-color: rgba(46, 204, 113, 0.6);
}

.tracking-progress-step.current {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.08) inset;
}

.tracking-progress-step.current .tracking-progress-dot {
    background: #9cc7ff;
    border-color: rgba(59, 130, 246, 0.7);
}

.tracking-progress-step.upcoming .tracking-progress-copy strong {
    color: #c8d8e6;
}

.tracking-detail-list {
    display: grid;
    gap: 0.9rem;
}

.tracking-detail-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tracking-detail-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.tracking-detail-row span {
    color: var(--text-soft);
    font-size: 0.88rem;
}

.tracking-detail-row strong {
    color: #f6fbff;
    text-align: right;
}

.tracking-detail-address strong {
    max-width: 18rem;
    overflow-wrap: anywhere;
}

.tracking-items-grid {
    display: grid;
    gap: 0.85rem;
}

.tracking-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.tracking-item-media {
    width: 4.5rem;
    height: 4.5rem;
    flex: 0 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.tracking-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tracking-item-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #9cc7ff;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(8, 24, 50, 0.92), rgba(10, 34, 68, 0.95));
}

.tracking-item-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.tracking-page-support {
    border: 1px solid rgba(255, 191, 71, 0.12);
}

@media (max-width: 991.98px) {

    .tracking-page-hero-grid,
    .tracking-page-stepper,
    .tracking-detail-grid {
        grid-template-columns: 1fr;
    }

    .tracking-page-metrics,
    .tracking-page-summary-grid {
        grid-template-columns: 1fr;
    }

    .tracking-page-step {
        min-height: auto;
    }

    .tracking-page-step::after {
        top: auto;
        bottom: -0.6rem;
        left: 1.45rem;
        width: 2px;
        height: 0.95rem;
    }

    .tracking-progress-grid {
        grid-template-columns: 1fr;
    }

    .tracking-progress-step::after {
        top: auto;
        bottom: -0.55rem;
        left: 1.45rem;
        width: 2px;
        height: 0.9rem;
    }

    .tracking-page-panel-head,
    .tracking-page-product-card,
    .tracking-item-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .tracking-detail-row,
    .tracking-item-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .tracking-detail-row strong {
        text-align: left;
    }
}

.order-track-view {
    display: grid;
    gap: 1.5rem;
}

.order-track-hero,
.order-track-progress-panel,
.order-track-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(8, 22, 46, 0.96), rgba(4, 14, 30, 0.95));
    box-shadow: 0 24px 64px rgba(2, 10, 24, 0.28);
}

.order-track-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.96fr);
    gap: 1.5rem;
    padding: clamp(1.5rem, 2.4vw, 2.2rem);
    isolation: isolate;
}

.order-track-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 170, 0, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.18), transparent 30%);
    opacity: 0.95;
    pointer-events: none;
}

.order-track-hero-copy,
.order-track-summary {
    position: relative;
    z-index: 1;
}

.order-track-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.order-track-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1;
    color: #f7fbff;
}

.order-track-subtitle {
    max-width: 42rem;
    color: #d0ddea;
    font-size: 1.04rem;
    line-height: 1.6;
}

.order-track-status-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem;
}

.order-track-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.order-track-fact,
.order-track-summary-card,
.order-track-detail-card,
.order-track-contact-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.order-track-fact {
    padding: 0.95rem 1rem;
}

.order-track-fact span,
.order-track-summary-card span,
.order-track-detail-card span,
.order-track-contact-card span {
    display: block;
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.38rem;
}

.order-track-fact strong,
.order-track-summary-card strong,
.order-track-detail-card strong,
.order-track-contact-card strong {
    color: #f7fbff;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.order-track-summary {
    padding: 1.2rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(12px);
}

.order-track-summary-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.order-track-summary-icon,
.order-track-support-icon {
    width: 3.3rem;
    height: 3.3rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 1rem;
    border: 1px solid rgba(255, 191, 71, 0.2);
    background: linear-gradient(135deg, rgba(255, 191, 71, 0.18), rgba(59, 130, 246, 0.12));
    color: #ffd67b;
    font-size: 1.3rem;
}

.order-track-summary-title {
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
    color: #f7fbff;
}

.order-track-summary-copy {
    color: #c5d4e4;
    line-height: 1.55;
}

.order-track-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.order-track-summary-card,
.order-track-detail-card,
.order-track-contact-card {
    padding: 1rem;
}

.order-track-progress-panel,
.order-track-panel {
    padding: clamp(1.35rem, 2.2vw, 1.8rem);
}

.order-track-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.order-track-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #d7e9f8;
    font-size: 0.82rem;
    font-weight: 600;
}

.order-track-progress-rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.order-track-progress-rail::before {
    display: none;
}

.order-track-progress-step {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.85rem;
    min-height: 9.25rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.order-track-progress-step::after {
    content: "";
    position: absolute;
    top: 2.42rem;
    left: calc(100% + 0.14rem);
    width: 0.72rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(180, 193, 208, 0.28), rgba(123, 143, 166, 0.18));
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.08);
    pointer-events: none;
}

.order-track-progress-step:last-child::after {
    display: none;
}

.order-track-progress-node {
    width: 2.85rem;
    height: 2.85rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #d8e7f5;
    font-size: 1.1rem;
}

.order-track-progress-copy {
    display: grid;
    gap: 0.28rem;
}

.order-track-progress-copy strong {
    color: #f7fbff;
    font-size: 0.98rem;
    line-height: 1.28;
}

.order-track-progress-copy small {
    color: #b7c8d9;
    font-size: 0.82rem;
}

.order-track-progress-step.complete {
    border-color: rgba(46, 204, 113, 0.22);
    background: linear-gradient(180deg, rgba(46, 204, 113, 0.14), rgba(46, 204, 113, 0.05));
}

.order-track-progress-step.complete::after {
    background: linear-gradient(90deg, rgba(113, 232, 157, 0.72), rgba(255, 191, 71, 0.24));
    box-shadow: 0 0 14px rgba(46, 204, 113, 0.14);
}

.order-track-progress-step.complete .order-track-progress-node {
    border-color: rgba(46, 204, 113, 0.42);
    background: rgba(46, 204, 113, 0.22);
    color: #aef5c8;
}

.order-track-progress-step.current {
    border-color: rgba(255, 191, 71, 0.28);
    background: linear-gradient(180deg, rgba(255, 191, 71, 0.18), rgba(59, 130, 246, 0.08));
    box-shadow: 0 16px 36px rgba(2, 10, 24, 0.24);
}

.order-track-progress-step.current::after {
    background: linear-gradient(90deg, rgba(255, 210, 116, 0.62), rgba(158, 179, 201, 0.18));
    box-shadow: 0 0 14px rgba(255, 191, 71, 0.14);
}

.order-track-progress-step.current .order-track-progress-node {
    border-color: rgba(255, 191, 71, 0.42);
    background: rgba(255, 191, 71, 0.22);
    color: #ffd979;
}

.order-track-progress-step.upcoming .order-track-progress-copy strong {
    color: #d7e4f2;
}

.order-track-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
    margin-top: 1.5rem;
}

.order-track-detail-card {
    display: grid;
    gap: 0.45rem;
}

.order-track-detail-card small {
    color: #b5c4d5;
    line-height: 1.55;
}

.order-track-item-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.order-track-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.order-track-item-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.order-track-item-thumb {
    width: 5rem;
    height: 5rem;
    flex: 0 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.order-track-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.order-track-item-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #9cc7ff;
    font-size: 1.25rem;
    background: linear-gradient(135deg, rgba(8, 24, 50, 0.92), rgba(10, 34, 68, 0.95));
}

.order-track-item-copy {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.order-track-item-copy strong {
    color: #f7fbff;
    font-size: 1rem;
}

.order-track-item-copy span,
.order-track-item-price span {
    color: #b4c4d4;
    font-size: 0.9rem;
}

.order-track-item-price {
    display: grid;
    gap: 0.25rem;
    text-align: right;
    flex: 0 0 auto;
}

.order-track-item-price strong {
    color: #f7fbff;
    font-size: 1rem;
}

.order-track-empty {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    color: #c6d5e5;
    background: rgba(255, 255, 255, 0.03);
}

.order-track-address-card {
    margin-top: 1.5rem;
    padding: 1.15rem 1.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.order-track-address-card h3 {
    color: #f7fbff;
    font-size: 1.15rem;
}

.order-track-address-card p {
    color: #c7d5e4;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.order-track-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.order-track-support {
    display: grid;
    gap: 0.8rem;
}

.order-track-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.order-action-cell {
    width: 9.5rem;
    text-align: right;
    vertical-align: middle;
}

.order-action-group {
    display: grid;
    gap: 0.65rem;
    width: min(100%, 8.5rem);
    margin-left: auto;
    margin-top: 0;
}

.order-action-group .btn {
    width: 100%;
}

.invoice-page-shell {
    display: grid;
    gap: 1.5rem;
}

.invoice-page-hero,
.invoice-document {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(8, 22, 46, 0.96), rgba(4, 14, 30, 0.95));
    box-shadow: 0 24px 64px rgba(2, 10, 24, 0.28);
}

.invoice-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.85fr);
    gap: 1.4rem;
    padding: clamp(1.45rem, 2.4vw, 2.1rem);
}

.invoice-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 170, 0, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.18), transparent 30%);
    pointer-events: none;
}

.invoice-page-hero-copy,
.invoice-page-actions {
    position: relative;
    z-index: 1;
}

.invoice-page-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.invoice-page-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1;
    color: #f7fbff;
}

.invoice-page-subtitle {
    max-width: 40rem;
    color: #cfdeec;
    line-height: 1.6;
}

.invoice-page-statuses {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem;
}

.invoice-page-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.invoice-meta-card,
.invoice-party-card,
.invoice-summary-card,
.invoice-note-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.invoice-meta-card {
    padding: 0.95rem 1rem;
}

.invoice-meta-card span,
.invoice-party-label {
    display: block;
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.invoice-meta-card strong {
    display: block;
    margin-top: 0.35rem;
    color: #f7fbff;
    font-size: 1rem;
}

.invoice-page-actions {
    display: grid;
    align-content: start;
    gap: 0.75rem;
}

.invoice-document {
    padding: clamp(1.45rem, 2.4vw, 2.2rem);
}

.invoice-document-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.95fr);
    gap: 1.2rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.invoice-brand-block {
    padding: 1.2rem 1.3rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(245, 166, 35, 0.18);
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.14), rgba(255, 255, 255, 0.03));
}

.invoice-brand-title {
    font-family: "Sora", sans-serif;
    font-size: 1.8rem;
    color: #f7fbff;
}

.invoice-brand-copy {
    color: #c7d6e5;
    line-height: 1.65;
}

.invoice-identity-block {
    display: grid;
    gap: 0.75rem;
    padding: 1.2rem 1.25rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.invoice-kv-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.invoice-kv-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.invoice-kv-row span {
    color: var(--text-soft);
    font-size: 0.86rem;
}

.invoice-kv-row strong {
    color: #f7fbff;
    text-align: right;
}

.invoice-party-grid,
.invoice-ledger-grid {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.4rem;
}

.invoice-party-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.invoice-party-card {
    padding: 1.15rem 1.2rem;
}

.invoice-party-title {
    color: #f7fbff;
    font-size: 1.15rem;
}

.invoice-party-card p,
.invoice-note-card p {
    color: #ccd9e7;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.invoice-ledger-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.75fr);
    align-items: start;
}

.invoice-ledger-card,
.invoice-summary-card {
    padding: 1.2rem 1.25rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.invoice-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.invoice-doc-chip,
.invoice-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #d7e9f8;
    font-size: 0.82rem;
    font-weight: 600;
}

.invoice-status-pill {
    border-color: rgba(245, 166, 35, 0.22);
    color: #ffd979;
}

.invoice-table-wrap {
    overflow-x: auto;
}

.invoice-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.invoice-table thead th {
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #d7e9f8;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.invoice-table thead th:first-child {
    border-top-left-radius: 0.95rem;
}

.invoice-table thead th:last-child {
    border-top-right-radius: 0.95rem;
}

.invoice-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #edf4fb;
    vertical-align: top;
}

.invoice-table tbody tr:last-child td {
    border-bottom: 0;
}

.invoice-table tbody td:not(:first-child) {
    white-space: nowrap;
}

.invoice-summary-rows {
    display: grid;
    gap: 0.75rem;
}

.invoice-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7e5f2;
}

.invoice-summary-row strong {
    color: #f7fbff;
}

.invoice-summary-row.total {
    padding-top: 0.3rem;
    color: #f7fbff;
}

.invoice-summary-row.total strong {
    color: #ffd979;
    font-size: 1.18rem;
}

.invoice-note-card {
    padding: 1rem 1.05rem;
    margin-top: 1rem;
}

@media (max-width: 1199.98px) {
    .order-track-hero {
        grid-template-columns: 1fr;
    }

    .order-track-title-row {
        flex-direction: column;
    }

    .order-track-status-pills {
        justify-content: flex-start;
    }

    .order-track-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .invoice-page-hero,
    .invoice-document-head,
    .invoice-ledger-grid {
        grid-template-columns: 1fr;
    }

    .invoice-page-title-row {
        flex-direction: column;
    }

    .invoice-page-statuses {
        justify-content: flex-start;
    }

    .invoice-page-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {

    .order-track-progress-rail,
    .order-track-detail-grid,
    .order-track-summary-grid,
    .order-track-contact-grid {
        grid-template-columns: 1fr;
    }

    .order-track-progress-rail::before {
        display: none;
    }

    .order-track-progress-step {
        min-height: auto;
    }

    .order-track-progress-step::after {
        top: calc(100% + 0.18rem);
        left: 2.42rem;
        width: 2px;
        height: 0.72rem;
        background: linear-gradient(180deg, rgba(180, 193, 208, 0.28), rgba(123, 143, 166, 0.16));
    }

    .order-track-progress-step.complete::after {
        background: linear-gradient(180deg, rgba(113, 232, 157, 0.72), rgba(255, 191, 71, 0.24));
    }

    .order-track-progress-step.current::after {
        background: linear-gradient(180deg, rgba(255, 210, 116, 0.62), rgba(158, 179, 201, 0.18));
    }

    .order-track-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .invoice-party-grid,
    .invoice-page-meta-grid {
        grid-template-columns: 1fr;
    }

    .invoice-section-head,
    .invoice-kv-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .invoice-kv-row strong {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .order-track-facts {
        grid-template-columns: 1fr;
    }

    .order-track-item-row,
    .order-track-item-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-track-item-price {
        text-align: left;
    }

    .order-track-actions {
        flex-direction: column;
    }

    .order-action-cell {
        width: auto;
    }

    .order-action-group {
        width: 100%;
    }

    .invoice-page-actions {
        grid-template-columns: 1fr;
    }
}

@media print {

    .topbar-shell,
    .header-shell,
    .pre-footer-contact,
    .footer-shell,
    .account-sidebar,
    .invoice-print-hide,
    .compare-widget,
    .wishlist-widget,
    .scroll-progress,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }

    body {
        background: #ffffff !important;
        color: #111827 !important;
    }

    .main-shell {
        padding-bottom: 0 !important;
    }

    .main-shell>.container,
    .account-layout,
    .invoice-page-shell {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .glass-card,
    .invoice-page-hero,
    .invoice-document,
    .invoice-brand-block,
    .invoice-identity-block,
    .invoice-party-card,
    .invoice-ledger-card,
    .invoice-summary-card,
    .invoice-note-card,
    .invoice-meta-card {
        background: #ffffff !important;
        color: #111827 !important;
        border-color: #d6dce5 !important;
        box-shadow: none !important;
    }

    .invoice-page-title,
    .invoice-brand-title,
    .invoice-party-title,
    .invoice-table tbody td,
    .invoice-summary-row strong,
    .invoice-kv-row strong,
    .invoice-meta-card strong {
        color: #111827 !important;
    }

    .invoice-page-subtitle,
    .invoice-brand-copy,
    .invoice-party-card p,
    .invoice-note-card p,
    .invoice-kv-row span,
    .invoice-summary-row,
    .invoice-meta-card span {
        color: #4b5563 !important;
    }
}

.order-item-line {
    display: block;
    color: #d7e9f8;
    line-height: 1.45;
    overflow-wrap: anywhere;
    min-width: 200px;
    padding: 0.2rem 0;
    border-radius: 0.3rem;
    transition: all 0.2s ease;
}

.order-item-line:hover {
    color: var(--text);
    background: rgba(245, 158, 11, 0.05);
    padding-left: 0.3rem;
}

.order-item-line+.order-item-line {
    margin-top: 0.45rem;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: #f5b700;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 15px rgba(245, 183, 0, 0.4), 0 0 30px rgba(245, 183, 0, 0.2);
}

.glass-card {
    border: 1px solid var(--stroke-soft);
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(26, 35, 51, 0.88), rgba(17, 24, 39, 0.94));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1;
    transition: border-color 220ms var(--easing-premium), transform 220ms var(--easing-premium), background 220ms var(--easing-premium);
}

.glass-card:hover {
    border-color: rgba(245, 158, 11, 0.2);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(17, 24, 39, 0.96));
}

.main-shell {
    position: relative;
}

.premium-input,
.form-control.premium-input,
.form-select.premium-input,
input.premium-input,
textarea.premium-input {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    border-radius: 0.9rem;
    min-height: 48px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color: rgba(255, 106, 0, 0.52);
    box-shadow: 0 0 0 0.22rem rgba(255, 106, 0, 0.12);
    outline: none;
    background: rgba(255, 255, 255, 0.06);
}

.form-check-input {
    border-color: rgba(255, 255, 255, 0.34);
    background-color: rgba(255, 255, 255, 0.04);
}

.form-check-input:checked {
    border-color: var(--accent);
    background-color: var(--accent);
}

.premium-input:focus {
    border-color: rgba(255, 106, 0, 0.52);
    box-shadow: 0 0 0 0.22rem rgba(255, 106, 0, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.premium-input::placeholder {
    color: var(--text-faint);
}

.premium-input,
.form-control.premium-input,
.form-select.premium-input {
    border-radius: 0.9rem;
    min-height: 48px;
    padding: 0.72rem 0.95rem;
}

.filter-dock {
    position: sticky;
    top: 118px;
    align-self: flex-start;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.active-filter-chip {
    font-size: 0.79rem;
    line-height: 1;
    border-radius: 999px;
    color: #fde7bd;
    border: 1px solid rgba(245, 158, 11, 0.34);
    background: rgba(245, 158, 11, 0.12);
    padding: 0.42rem 0.62rem;
}

.active-filter-clear {
    font-size: 0.8rem;
    text-decoration: none;
    color: #ffd67c;
    border-bottom: 1px dashed rgba(255, 214, 124, 0.6);
}

.premium-input option {
    color: #101014;
}

.category-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.95rem;
    padding: 0.72rem 0.82rem;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.category-pill.active,
.category-pill:hover {
    background: rgba(255, 106, 0, 0.12);
    border-color: rgba(255, 106, 0, 0.3);
    color: #fff7dc;
}

.premium-list {
    margin: 0;
    padding-left: 1rem;
    color: var(--muted);
}

.product-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --lift-y: 0px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(249, 250, 251, 0.04), rgba(26, 35, 51, 0.94));
    transition: all 0.25s ease;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    transform: translateY(var(--lift-y)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    will-change: transform;
}

.product-card[data-href] {
    cursor: pointer;
}

.product-card-body {
    flex: 1;
}

.product-card:hover {
    --lift-y: -4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(245, 158, 11, 0.3);
}

.product-card.is-tilting {
    transition: transform 110ms linear, box-shadow 180ms var(--easing-premium), border-color 180ms var(--easing-premium);
}

.product-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.product-image,
.detail-image {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    max-height: 180px;
    transition: transform 320ms var(--easing-premium), filter 320ms var(--easing-premium);
}

.product-card:hover .product-image {
    transform: scale(1.04);
    filter: saturate(1.04);
}


.product-title {
    min-height: 3.2rem;
    margin-bottom: 0.35rem;
    line-height: 1.32;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: var(--text);
    text-decoration: none;
}

.product-price {
    color: #F59E0B;
    font-weight: 700;
    font-size: 20px;
}

.product-card .small.text-secondary.mb-1 {
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #9CA3AF !important;
}

.product-card p.small.text-secondary.mb-3 {
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .d-flex.justify-content-between.align-items-center.mt-auto {
    align-items: flex-end !important;
}

.stock-pill {
    width: fit-content;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 20px;
    padding: 4px 10px;
    border: 1px solid;
}

.stock-pill.in {
    border-color: rgba(34, 197, 94, 0.18);
    color: #22C55E;
    background: rgba(34, 197, 94, 0.15);
}

.stock-pill.out {
    border-color: rgba(255, 107, 107, 0.5);
    color: #ffc1c1;
    background: rgba(255, 107, 107, 0.12);
}

.stock-pill.low {
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.product-card .btn-premium-cta.btn-sm {
    min-height: 40px;
    padding-inline: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-card .wishlist-btn,
.product-card .compare-btn {
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.product-card .wishlist-btn i,
.product-card .compare-btn i {
    font-size: 14px;
}

.product-card .wishlist-btn:hover,
.product-card .wishlist-btn:focus-visible,
.product-card .compare-btn:hover,
.product-card .compare-btn:focus-visible {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.08);
    color: var(--text);
}

/* Ã¢â€ â‚¬Ã¢â€ â‚¬ Premium Dropdown Ã¢â€ â‚¬Ã¢â€ â‚¬ */

.nav-shop-dropdown {
    position: relative;
}

.shop-dropdown-panel {
    width: min(780px, calc(100vw - 2rem));
    left: auto;
    right: 0;
    margin-top: 0.9rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.1rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(42, 52, 65, 0.24), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(245, 158, 11, 0.16), transparent 24%),
        linear-gradient(150deg, rgba(17, 24, 39, 0.98), rgba(11, 18, 32, 0.96));
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
}

.nav-shop-dropdown .shop-dropdown-panel[data-bs-popper] {
    left: auto;
    right: 0;
    margin-top: 0.9rem;
}

.shop-dropdown-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.3fr);
    list-style: none;
}

.shop-dropdown-intro {
    padding: 1.35rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.shop-dropdown-kicker,
.footer-kicker {
    color: #f7b548;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
}

.shop-dropdown-title {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.25;
}

.shop-dropdown-copy {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.shop-dropdown-featured {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0.8rem;
    align-items: center;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(245, 158, 11, 0.18);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(251, 146, 60, 0.12));
    color: var(--text);
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 600;
}

.shop-dropdown-featured:hover,
.shop-dropdown-featured:focus-visible {
    color: #fff;
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(251, 146, 60, 0.18));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.shop-dropdown-featured strong,
.shop-dropdown-link strong {
    display: block;
    font-size: 0.95rem;
}

.shop-dropdown-featured small,
.shop-dropdown-link small {
    display: block;
    color: #92a9c0;
    font-size: 0.78rem;
    margin-top: 0.15rem;
}

.shop-dropdown-featured-icon,
.shop-dropdown-link-icon,
.footer-signal-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.85rem;
    display: inline-grid;
    place-items: center;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffd36c;
    font-size: 22px;
    flex-shrink: 0;
}

.shop-dropdown-links {
    padding: 1.35rem;
}

.shop-dropdown-section-label,
.footer-column-label {
    color: #cfe4f6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    font-weight: 700;
}

.shop-dropdown-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 0.8rem;
}

.shop-dropdown-link {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    text-decoration: none;
    transition: all 0.25s ease;
}

.shop-dropdown-link:hover,
.shop-dropdown-link:focus-visible {
    color: #fff;
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(255, 106, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.shop-dropdown-featured .btn,
.shop-dropdown-featured button,
.shop-dropdown-links .btn {
    background: linear-gradient(135deg, #F59E0B, #FB923C);
    font-weight: 600;
    border-radius: 10px;
}

/* Ã¢â€ â‚¬Ã¢â€ â‚¬ Overlaid image badges (category + stock) Ã¢â€ â‚¬Ã¢â€ â‚¬ */
.pc-badge {
    position: absolute;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    line-height: 1.4;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    white-space: nowrap;
}

.pc-badge-category {
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(15, 25, 40, 0.82);
    color: var(--accent, #ffb703);
    border: 1px solid rgba(255, 183, 3, 0.35);
}

.pc-badge-stock {
    top: 0.5rem;
    right: 0.5rem;
}

.pc-badge-stock.in {
    background: rgba(30, 90, 60, 0.82);
    color: #8ff2b7;
    border: 1px solid rgba(71, 230, 138, 0.4);
}

.pc-badge-stock.out {
    background: rgba(90, 20, 20, 0.82);
    color: #ffc1c1;
    border: 1px solid rgba(255, 107, 107, 0.4);
}

.placeholder-image {
    display: grid;
    place-items: center;
    color: var(--muted);
    height: 100%;
}

.compact-product,
.compact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.95rem;
    padding: 0.82rem 0.9rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.compact-product:hover,
.compact-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(115, 230, 222, 0.2);
    transform: translateY(-1px);
    color: #ffffff;
}

.detail-image {
    max-height: 460px;
    border-radius: 0.7rem;
}

.detail-price {
    font-size: 1.8rem;
    font-family: "Sora", sans-serif;
    color: #ffffff;
    font-weight: 700;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.48rem 0.8rem;
    background: rgba(255, 106, 0, 0.08);
    color: #e4f3ff;
    font-size: 0.8rem;
    font-weight: 600;
}

.spec-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 180, 0, 0.24);
    background: rgba(255, 180, 0, 0.1);
    color: #ffe3a4;
    font-size: 0.78rem;
    font-weight: 600;
}

.qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.28rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qty-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    display: inline-grid;
    place-items: center;
    line-height: 1;
    font-weight: 700;
}

.qty-btn:hover,
.qty-btn:focus-visible {
    background: rgba(255, 106, 0, 0.14);
    border-color: rgba(255, 106, 0, 0.26);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.72rem;
    color: #b7cadd;
    font-size: 0.96rem;
}

.summary-line strong {
    color: #f4fbff;
    white-space: nowrap;
}

.sticky-summary {
    position: sticky;
    top: 118px;
}

.account-layout {
    margin-bottom: 2rem;
}

.account-sidebar {
    position: sticky;
    top: 118px;
}

.account-sidebar-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.account-sidebar-meta {
    min-width: 0;
    flex: 1 1 auto;
}

.account-sidebar-meta h5 {
    font-size: 1rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.account-sidebar-meta p {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.account-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.account-avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 146, 60, 0.08));
    color: #f8fafc;
    font-size: 1.4rem;
    font-weight: 700;
}

.account-verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.account-verify-badge.verified {
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.14);
}

.account-verify-badge.pending {
    color: #fde68a;
    background: rgba(245, 158, 11, 0.14);
}

.account-nav {
    display: grid;
    gap: 0.45rem;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.95rem;
    border-radius: 0.9rem;
    color: var(--text-soft);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.account-nav-link:hover,
.account-nav-link.active {
    color: var(--text);
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.22);
}

.account-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.account-panel-link {
    display: block;
    text-decoration: none;
    color: var(--text);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-panel-link:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.account-panel-link h3 {
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
}

.account-panel-link p {
    margin: 0;
    color: var(--text-soft);
}

.account-panel-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 0.95rem;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    font-size: 1.2rem;
}

.account-address-card {
    position: relative;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
}

.account-address-card h4 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.account-address-card p {
    margin-bottom: 0.3rem;
    color: var(--text-soft);
}

.account-inline-card {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
}

.account-support-card {
    border: 1px solid rgba(245, 158, 11, 0.14);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.03));
}

.address-default-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
    background: rgba(34, 197, 94, 0.14);
    color: #86efac;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.info-note {
    border: 1px solid rgba(255, 106, 0, 0.18);
    background: rgba(255, 106, 0, 0.08);
    color: #ffe8d1;
    border-radius: 0.95rem;
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
}

.premium-tabs {
    gap: 0.55rem;
    border-bottom: 0;
}

.premium-tabs .nav-link {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #d7e8f7;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.72rem 1rem;
    font-weight: 600;
}

.premium-tabs .nav-link.active,
.premium-tabs .nav-link:hover {
    color: #221104;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: transparent;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.premium-feature-card {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 1rem;
    background: rgba(255, 106, 0, 0.1);
    color: #ffbf74;
    font-size: 1.1rem;
}

.feature-title {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.feature-description {
    margin: 0;
    color: #9bb1c5;
    font-size: 0.9rem;
    line-height: 1.55;
}

.display-amount {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    color: #ffbe54;
    letter-spacing: -0.04em;
}

.payment-gateway-container {
    border: 1px dashed rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04) !important;
}

.table-responsive {
    border-radius: 1rem;
}

.btn-sm {
    border-radius: 999px;
    padding: 0.52rem 0.92rem;
}

.sticky-detail-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.25rem;
    width: min(940px, calc(100% - 2.5rem));
    height: 72px;
    /* Fixed height for better alignment consistency */
    z-index: 2300;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding: 0 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.98));
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
}

.sticky-detail-meta {
    min-width: 240px;
    display: grid;
    gap: 0.15rem;
}

.sticky-detail-meta strong {
    color: var(--text);
    font-size: 0.94rem;
}

.sticky-detail-meta span {
    color: #f7b548;
    font-size: 0.88rem;
    font-weight: 700;
}

/* Stock Status Badge Styles */
.stock-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.95rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    transition: all 0.2s ease;
}

.stock-available {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.stock-available:hover {
    background: rgba(34, 197, 94, 0.18);
    border-color: rgba(34, 197, 94, 0.5);
}

.stock-urgent {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
    animation: pulse-urgent 2s infinite;
}

@keyframes pulse-urgent {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.stock-low {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.stock-low:hover {
    background: rgba(245, 158, 11, 0.18);
    border-color: rgba(245, 158, 11, 0.5);
}

.stock-out {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.stock-out:hover {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.5);
}

.checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.checkout-step {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.8rem;
    padding: 0.65rem 0.7rem;
    color: #9cb3cb;
    display: flex;
    gap: 0.45rem;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
}

.checkout-step span {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    font-size: 0.75rem;
}

.checkout-step.active {
    color: #fff;
    border-color: rgba(255, 183, 3, 0.45);
    background: rgba(255, 183, 3, 0.12);
}

.checkout-step.active span {
    border-color: rgba(255, 183, 3, 0.7);
    color: #ffce5f;
}

.checkout-step.done {
    color: var(--text-soft);
    border-color: rgba(148, 163, 184, 0.42);
    background: rgba(148, 163, 184, 0.14);
}

.checkout-step.done span {
    border-color: rgba(148, 163, 184, 0.55);
    color: var(--text-soft);
}

.checkout-live-progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.checkout-live-progress-bar {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    transition: width 220ms var(--easing-premium);
}

.checkout-field.is-valid {
    border-color: rgba(80, 203, 138, 0.65);
    box-shadow: 0 0 0 0.2rem rgba(80, 203, 138, 0.18);
}

.checkout-field.is-invalid {
    border-color: rgba(215, 38, 61, 0.7);
    box-shadow: 0 0 0 0.2rem rgba(215, 38, 61, 0.16);
}

.service-tier-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.05rem;
    background: rgba(5, 20, 36, 0.72);
    padding: 1.22rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.services-page {
    position: relative;
    margin-top: 0.7rem;
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 196, 107, 0.12), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(67, 97, 157, 0.16), transparent 30%),
        linear-gradient(145deg, rgba(5, 12, 22, 0.96), rgba(10, 20, 34, 0.94) 42%, rgba(16, 31, 51, 0.92));
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.services-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.025), transparent 24%, transparent 76%, rgba(255, 196, 107, 0.05)),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 42%);
    pointer-events: none;
}

.services-page>* {
    position: relative;
    z-index: 1;
}

.services-page .page-section {
    margin-bottom: 1.15rem;
}

.services-page .hero-premium {
    background:
        radial-gradient(circle at 82% 16%, rgba(245, 158, 11, 0.12), transparent 34%),
        radial-gradient(circle at 18% 85%, rgba(42, 52, 65, 0.24), transparent 30%),
        linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(11, 18, 32, 0.96));
}

.support-page .page-section {
    margin-bottom: 1.15rem;
}

.faq-page .page-section {
    margin-bottom: 1.15rem;
}

.orders-page .page-section {
    margin-bottom: 1.15rem;
}

.support-page>.page-section:first-child,
.orders-page>.page-section:first-child {
    margin-top: 0.65rem;
}

.support-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.service-tier-card.featured {
    border-color: rgba(245, 158, 11, 0.45);
    background: linear-gradient(165deg, rgba(245, 158, 11, 0.12), rgba(26, 35, 51, 0.92));
}

.tier-tag {
    width: fit-content;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fbd38d;
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.service-tier-card h4 {
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-tier-card p {
    color: var(--muted);
    margin-bottom: 0.65rem;
}

.service-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-soft);
}

.service-list li {
    margin-bottom: 0.28rem;
}

.service-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.timeline-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.035);
}

.timeline-item span {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.2);
    color: #fbd38d;
    font-size: 0.78rem;
    margin-bottom: 0.45rem;
}

.timeline-item h6 {
    margin-bottom: 0.35rem;
}

.timeline-item p {
    margin-bottom: 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.quote-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.035);
    padding: 1.05rem;
}

.quote-card p {
    margin-bottom: 0.55rem;
    color: var(--text);
}

.quote-card small {
    color: var(--text-faint);
}

.service-cta {
    border-color: rgba(245, 158, 11, 0.28);
    background: linear-gradient(125deg, rgba(245, 158, 11, 0.12), rgba(26, 35, 51, 0.92));
}

.support-cta-stack .btn {
    padding-top: 0.44rem;
    padding-bottom: 0.44rem;
    font-size: 1rem;
}

.support-cta-stack .support-primary-cta {
    font-weight: 650;
}

.pre-footer-contact {
    margin-top: 1.4rem;
}

.pre-footer-contact-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.2rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1.35fr auto;
    gap: 1.15rem;
    align-items: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.12), transparent 40%),
        linear-gradient(122deg, rgba(26, 35, 51, 0.9), rgba(17, 24, 39, 0.96));
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
}

.pre-footer-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem;
}

.pre-footer-actions .btn {
    padding: 0.58rem 1.08rem;
    font-size: 0.96rem;
    line-height: 1.15;
    border-radius: 0.72rem;
}

.footer-shell {
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 14% 0%, rgba(42, 52, 65, 0.22), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(245, 158, 11, 0.1), transparent 20%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(11, 18, 32, 0.99));
    overflow: hidden;
}

.footer-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    opacity: 0.5;
    pointer-events: none;
}

.footer-top-band,
.footer-main-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-top-band {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr);
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1.35rem;
}

.footer-brand-block,
.footer-contact-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.footer-brand-block {
    padding: 1.4rem 1.45rem;
}

.footer-title {
    color: var(--text);
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    line-height: 1.18;
}

.footer-copy,
.footer-contact-meta {
    color: var(--muted);
    line-height: 1.6;
}

.footer-signal-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-signal-card {
    display: grid;
    grid-template-columns: 2.6rem 1fr;
    gap: 0.8rem;
    align-items: center;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
}

.footer-signal-card strong {
    display: block;
    color: var(--text);
    font-size: 0.96rem;
}

.footer-signal-card small {
    color: var(--text-faint);
    font-size: 0.8rem;
}

.footer-main-grid {
    align-items: start;
}

.footer-contact-card {
    padding: 1.25rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.1), transparent 35%),
        rgba(249, 250, 251, 0.04);
}

.footer-contact-primary,
.footer-contact-secondary {
    display: block;
    text-decoration: none;
}

.footer-contact-primary {
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.footer-contact-secondary {
    color: #ffd36c;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.footer-link {
    color: var(--text-soft);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-policy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.footer-policy-tile {
    display: block;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    text-decoration: none;
    transition: transform 220ms var(--easing-premium), border-color 220ms var(--easing-premium), background 220ms var(--easing-premium);
}

.footer-policy-tile strong {
    display: block;
    font-size: 0.92rem;
}

.footer-policy-tile small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-faint);
    font-size: 0.77rem;
    line-height: 1.45;
}

.footer-policy-tile:hover,
.footer-policy-tile:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    border-color: rgba(245, 183, 0, 0.28);
    background: rgba(245, 183, 0, 0.07);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.14);
}

.support-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

/* Ã¢â€ â‚¬Ã¢â€ â‚¬ FAQ Redesign Styles Ã¢â€ â‚¬Ã¢â€ â‚¬ */

.faq-page .premium-accordion .accordion-item {
    border-radius: 0.82rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    transition: transform 240ms var(--easing-premium), border-color 240ms var(--easing-premium), box-shadow 240ms var(--easing-premium), background 240ms var(--easing-premium);
    margin-bottom: 0.75rem;
}

.faq-page .premium-accordion .accordion-item:hover {
    border-color: rgba(245, 158, 11, 0.24) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq-page .premium-accordion .accordion-button {
    font-weight: 600;
    color: var(--text) !important;
    background-color: transparent !important;
    border-bottom: 1px solid transparent !important;
    padding: 1.15rem 1.25rem;
    box-shadow: none !important;
    font-size: 1.05rem;
    transition: color 240ms var(--easing-premium);
}

.faq-page .premium-accordion .accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(245, 158, 11, 0.24) !important;
}

.faq-page .premium-accordion .accordion-button:not(.collapsed) {
    color: #fff !important;
    background-color: rgba(245, 158, 11, 0.06) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.faq-page .premium-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23aab8c2'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    transition: transform 320ms var(--easing-premium);
}

.faq-page .premium-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F59E0B'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    transform: rotate(180deg);
}

.faq-page .premium-accordion .accordion-body {
    padding: 1.15rem 1.25rem;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.96rem;
    background-color: transparent !important;
}

.faq-page .faq-category-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0.82rem;
    padding: 1.05rem 1.2rem;
    color: var(--text) !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 500;
    transition: all 220ms var(--easing-premium);
    background: rgba(255, 255, 255, 0.03) !important;
    margin-bottom: 0.5rem;
}

.faq-page .faq-category-card:hover {
    background: rgba(255, 183, 3, 0.12) !important;
    border-color: rgba(255, 183, 3, 0.35) !important;
    color: #fff !important;
    transform: translateX(4px);
}

.faq-page .faq-badge {
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 220ms var(--easing-premium);
}

.faq-page .faq-category-card:hover .faq-badge {
    background: rgba(255, 183, 3, 0.2);
    border-color: rgba(255, 183, 3, 0.5);
    color: #ffb703;
}

.faq-page .support-glass-card {
    background: linear-gradient(145deg, rgba(26, 35, 51, 0.9), rgba(11, 18, 32, 0.96)) !important;
    border: 1px solid rgba(245, 158, 11, 0.18) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.faq-page .support-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faq-page .support-glass-card>* {
    position: relative;
    z-index: 1;
}

.order-item-row {
    color: var(--text-soft);
    margin-bottom: 0.2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    transition: opacity 520ms var(--easing-premium), transform 520ms var(--easing-premium);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 992px) {
    .hero-premium {
        padding: 2.1rem 1.45rem;
    }

    .shop-dropdown-panel {
        width: min(680px, calc(100vw - 2rem));
    }

    .shop-dropdown-grid,
    .footer-top-band {
        grid-template-columns: 1fr;
    }

    .shop-dropdown-intro {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-policy-grid {
        grid-template-columns: 1fr 1fr;
    }

    .premium-features-grid {
        grid-template-columns: 1fr;
    }

    .premium-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .feature-list {
        gap: 20px;
    }

    .feature-item {
        font-size: 13px;
        gap: 6px;
    }

    .feature-item i {
        font-size: 16px;
    }

    .trust-chip {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .shop-dropdown-panel {
        width: min(100vw - 1.25rem, 420px);
    }

    .shop-dropdown-link-grid,
    .footer-policy-grid {
        grid-template-columns: 1fr;
    }

    .shop-dropdown-intro,
    .shop-dropdown-links,
    .footer-brand-block,
    .footer-contact-card {
        padding: 1rem;
    }

    .brand-mark {
        font-size: 0.92rem;
        gap: 0.45rem;
    }

    .brand-logo {
        width: 30px;
        height: 30px;
    }

    .hero-premium {
        padding: 1.65rem 1rem;
        margin-bottom: 1.5rem;
        border-radius: 1rem;
    }

    .hero-camera {
        display: none;
    }

    .hero-grid {
        opacity: 0.16;
    }

    .premium-table {
        min-width: 580px;
    }

    .premium-table thead th,
    .premium-table tbody td {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .support-flow {
        grid-template-columns: 1fr;
    }

    .premium-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .premium-stat-card {
        padding: 1rem;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .stat-label {
        font-size: 0.8rem;
        text-align: left;
    }

    .hero-premium .btn-premium-cta,
    .hero-premium .btn-outline-light {
        padding: 0.72rem 1.15rem;
        font-size: 0.9rem;
    }

    .trust-row {
        gap: 0.5rem;
    }

    .trust-chip {
        padding: 0.35rem 0.5rem;
        font-size: 0.75rem;
    }

    .feature-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 20px;
    }

    .feature-item {
        font-size: 14px;
        gap: 8px;
        padding: 6px 0;
        width: 100%;
    }

    .feature-item i {
        font-size: 16px;
    }

    .feature-item:hover {
        transform: none;
        background: transparent;
    }

    .feature-item:hover i {
        color: var(--accent);
    }

    .filter-header-btn {
        padding: 0.8rem 1rem;
    }

    .display-title {
        font-size: clamp(1.7rem, 8.5vw, 2.1rem);
        line-height: 1.08;
    }

    .lead-copy {
        font-size: 0.96rem;
    }

    .topbar-shell {
        display: none;
    }

    .main-shell>.container {
        padding-top: 1.1rem;
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .active-filters {
        gap: 0.42rem;
    }

    .active-filter-chip {
        font-size: 0.72rem;
        padding: 0.36rem 0.52rem;
    }

    .product-card {
        border-radius: 0.98rem;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    }

    .product-card:hover {
        --lift-y: -2px;
    }

    .product-title {
        min-height: 0;
    }

    .product-image-wrap {
        aspect-ratio: 16 / 11;
    }


    .category-pill {
        font-size: 0.88rem;
    }

    .compact-product,
    .compact-row {
        font-size: 0.83rem;
    }

    .detail-image {
        max-height: 320px;
    }

    .hero-live::before {
        opacity: 0.26;
    }

    .hero-live-bg .orb {
        opacity: 0.17;
    }

    .hero-live-bg .beam {
        opacity: 0.1;
    }

    .product-detail-page {
        padding-bottom: 5.25rem;
    }

    .sticky-summary {
        position: static;
    }

    .sticky-detail-bar {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        transform: none;
        bottom: 0;
        height: auto;
        min-height: 80px;
        z-index: 2310;
        padding: 0.85rem 1rem;
        display: flex;
        gap: 0.75rem;
        background: linear-gradient(180deg, rgba(7, 12, 21, 0.95), rgba(2, 6, 12, 1));
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        backdrop-filter: blur(12px);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    }

    .floating-whatsapp { width: 3.25rem !important; height: 3.25rem !important; 
        /* Lifted match tools dock */
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.5rem;
        z-index: 1000;
    }

    .floating-backtop { width: 3.25rem !important; height: 3.25rem !important; 
        width: 2.7rem;
        height: 2.7rem;
        z-index: 1000;
    }

    .premium-tools-dock {
        left: 1.25rem;
        bottom: 11.5rem;
        /* Lifted even higher to match mobile sticky bar height */
        z-index: 1000;
    }

    #wishlistPageGrid .btn,
    #comparePageBody .btn,
    .compare-toolbar .btn {
        min-height: 42px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .desktop-secondary-btn {
        display: none !important;
    }

    .mobile-more-actions {
        display: inline-block;
    }

    .navbar-collapse {
        z-index: 2400;
        position: relative;
        background: var(--bg-1);
    }

    .mobile-page-actionbar {
        display: flex;
        flex-wrap: wrap;
    }

    .compare-toolbar>div {
        display: none;
    }

    .mobile-actionbar-space {
        padding-bottom: 5.4rem;
    }

    .premium-toast-stack {
        left: 0.75rem;
        right: 0.75rem;
        top: auto !important;
        bottom: 1rem;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .shop-dropdown-panel {
        width: calc(100vw - 1rem);
    }

    .mobile-page-actionbar {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        padding: 0.5rem;
        border-radius: 0.7rem;
    }

    .mobile-page-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }

    .mobile-more-actions>summary {
        min-width: 74px;
    }

    .mobile-more-panel {
        min-width: 120px;
    }

    .faq-page .premium-accordion .accordion-button {
        padding: 0.9rem 1.1rem;
        font-size: 0.95rem;
    }

    .faq-page .premium-accordion .accordion-body {
        padding: 0.9rem 1.1rem;
    }

    .faq-page .faq-category-card {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .faq-page .faq-badge {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .hero-premium {
        padding: 1.3rem 0.82rem;
        border-radius: 0.75rem;
    }

    .mini-info-card {
        padding: 0.9rem;
    }

    .premium-table {
        min-width: 580px;
    }

    .order-status-badge {
        min-width: 6.25rem;
        padding-inline: 0.65rem;
    }

    .premium-stat-card {
        padding: 0.8rem;
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
        text-align: left;
    }

    .hero-premium .btn-premium-cta,
    .hero-premium .btn-outline-light {
        width: 100%;
        margin-bottom: 0.55rem;
    }

    .trust-chip {
        padding: 0.3rem 0.45rem;
        font-size: 0.7rem;
    }
}

/* Ã¢â€ â‚¬Ã¢â€ â‚¬ Premium Technical Specifications Section Ã¢â€ â‚¬Ã¢â€ â‚¬ */

.tech-specs-section {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.88), rgba(26, 35, 51, 0.92));
    border: 1px solid rgba(42, 52, 65, 0.88);
    border-radius: 1.2rem;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tech-specs-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(245, 158, 11, 0.45),
            transparent);
}

.specs-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.specs-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.specs-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    opacity: 0.9;
}

.specs-container {
    margin: 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 280ms cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0.6rem;
    position: relative;
}

.spec-row:hover {
    background: rgba(245, 158, 11, 0.08);
    border-bottom-color: rgba(245, 158, 11, 0.2);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
    flex: 0 0 auto;
    min-width: 140px;
    text-transform: capitalize;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-soft);
    text-align: right;
    flex: 1;
    margin-left: 20px;
    word-break: break-word;
    text-transform: capitalize;
}

.spec-value-boolean {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-value-boolean.available {
    background: rgba(76, 175, 80, 0.15);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.spec-value-boolean.not-available {
    background: rgba(244, 67, 54, 0.15);
    color: #e57373;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.spec-value-boolean i {
    font-size: 0.9rem;
}

.specs-footer {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive Design */
@media (max-width: 992px) {
    .tech-specs-section {
        padding: 2rem;
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .spec-label {
        min-width: 120px;
        font-size: 0.9rem;
    }

    .spec-value {
        font-size: 0.9rem;
        margin-left: 16px;
    }

    .spec-row {
        padding: 14px 16px;
    }
}

@media (max-width: 768px) {
    .tech-specs-section {
        padding: 1.5rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px;
        border-radius: 0.8rem;
    }

    .spec-row:hover {
        transform: translateY(-2px);
        background: rgba(245, 158, 11, 0.06);
        box-shadow: 0 6px 16px rgba(245, 158, 11, 0.12);
    }

    .spec-label {
        width: 100%;
        min-width: auto;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
        color: #f7b548;
        font-weight: 700;
    }

    .spec-value {
        width: 100%;
        margin-left: 0;
        text-align: left;
        font-size: 0.95rem;
        color: #fff;
        font-weight: 600;
    }

    .spec-value-boolean {
        justify-content: flex-start;
    }

    .specs-title {
        font-size: 1.3rem;
    }

    .specs-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .tech-specs-section {
        padding: 1rem;
    }

    .specs-title {
        font-size: 1.2rem;
    }

    .spec-row {
        padding: 14px;
    }

    .spec-label {
        font-size: 0.75rem;
    }

    .spec-value {
        font-size: 0.9rem;
    }

    .specs-grid {
        gap: 12px;
    }
}

/* ==========================================================================
   Premium Policy Document Styles
   ========================================================================== */

.policy-page-hero {
    text-align: center;
    padding: 3rem 1rem 4rem;
    position: relative;
}

.badge-premium {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.25) 100%);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}

.text-primary-gradient {
    background: linear-gradient(135deg, #FFF 0%, #F3F4F6 50%, #D1D5DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.policy-document {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    padding: 4rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.policy-update-stamp {
    font-family: monospace;
    color: var(--text-faint);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.policy-update-stamp i {
    color: var(--accent);
}

.legal-section-styled {
    margin-bottom: 3.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.legal-section-styled::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
    border-radius: 3px;
    opacity: 0.6;
}

.legal-section-styled h2 {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 1.45rem;
    letter-spacing: -0.01em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-section-styled h2 i {
    color: var(--accent);
    font-size: 1.2rem;
}

.legal-section-styled p {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.policy-modern-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.policy-modern-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.6;
}

.policy-modern-list li::before {
    content: '\F633';
    /* Bootstrap check-circle-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .policy-document {
        padding: 2rem 1.5rem;
    }

    .policy-page-hero {
        padding: 2rem 1rem 3rem;
    }

    .legal-section-styled {
        padding-left: 1rem;
    }
}

@media print {
    .tech-specs-section {
        background: #fff !important;
        border: 1px solid #ccc !important;
        color: #000 !important;
    }

    .specs-title {
        color: #000 !important;
    }

    .specs-subtitle {
        color: #666 !important;
    }

    .spec-label {
        color: #333 !important;
    }

    .spec-value {
        color: #000 !important;
    }

    .spec-row:hover {
        background: transparent !important;
    }
}

/* Premium Modal Styles */
.premium-modal .modal-content {
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    padding: 1rem;
}

.premium-modal .modal-header {
    border-bottom: 1px solid var(--stroke-soft);
    padding-bottom: 1.5rem;
}

.premium-modal .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.premium-modal .modal-body {
    padding: 2rem 0;
}

.premium-modal .modal-footer {
    border-top: none;
    gap: 1rem;
}

.btn-modal-cancel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--stroke);
    color: var(--text-soft);
}

.btn-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.btn-modal-confirm {
    background: var(--accent-danger);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* -- Premium Verification & Checkout Enhancements -- */

.badge-premium-verify {
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--easing-premium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-premium-verify.pending {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    cursor: pointer;
}

.badge-premium-verify.pending:hover {
    background: rgba(245, 158, 11, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.badge-premium-verify.verified {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.cod-restriction-box {
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.03);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: slideInUp 0.4s var(--easing-premium);
}

.cod-restriction-box i {
    font-size: 1.25rem;
    color: var(--accent);
}

.success-roadmap {
    display: flex;
    justify-content: space-between;
    margin: 2.5rem 0;
    position: relative;
    padding: 0 1rem;
}

.success-roadmap::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.roadmap-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    transition: all 0.4s var(--easing-premium);
}

.roadmap-step.active .step-dot {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--bg-1);
    box-shadow: 0 0 15px var(--accent);
}

.roadmap-step.complete .step-dot {
    border-color: #10b981;
    background: #10b981;
    color: white;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-faint);
}

.roadmap-step.active .step-label {
    color: var(--text);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Star Rating Input */
.premium-star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.premium-star-rating input {
    display: none;
}

.premium-star-rating label {
    font-size: 1.5rem;
    color: var(--stroke);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.premium-star-rating label:hover,
.premium-star-rating label:hover~label,
.premium-star-rating input:checked~label {
    color: var(--accent);
}

.premium-star-rating label:hover {
    transform: scale(1.15);
}

/* Rating Stars display */
.rating-stars i.text-warning {
    color: var(--accent) !important;
}

/* Tiny text utility */
.tiny {
    font-size: 0.7rem;
}

.border-accent {
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.text-accent {
    color: var(--accent);
}

.search-result-active {
    background-color: var(--surface-2);
}

/* Premium Search Enhancements */
.premium-search-shell {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-search-shell:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.premium-search-input.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: var(--text);
    padding: 0.65rem 1rem;
}

.premium-search-submit {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-soft);
    padding: 0 1.25rem;
    transition: all 0.2s ease;
}

.premium-search-submit:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

/* Product Detail Page Missing Classes */
.rating-stars i.text-warning {
    color: var(--accent) !important;
}

.avatar-sm {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

/* Hard refresh CSS optimization */
.marketplace-hero-shell *,
.marketplace-media-stage *,
.marketplace-info-stage *,
.marketplace-buy-stage * {
    transform: translateZ(0) !important;
    will-change: transform !important;
}

/* Enhanced animations for premium feel */
@keyframes premiumFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

.marketplace-value-card {
    animation: premiumFloat 6s ease-in-out infinite;
}

.marketplace-value-card:nth-child(2) {
    animation-delay: 2s;
}

.marketplace-value-card:nth-child(3) {
    animation-delay: 4s;
}

.marketplace-value-card:nth-child(4) {
    animation-delay: 6s;
}


/* Wishlist Button Active State */
.wishlist-btn.active {
    background-color: rgba(245, 158, 11, 0.1) !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.wishlist-btn.active i {
    color: var(--accent) !important;
}

/* Premium Technical Specifications Redesign */
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.trust-badge-mini {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
}

.spec-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    gap: 1.5rem;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-meta {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    min-width: 140px;
    flex-shrink: 0;
}

.spec-icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 0.5rem;
    color: var(--accent);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.spec-label {
    color: var(--text-faint);
    font-size: 0.88rem;
    font-weight: 500;
    padding-top: 4px;
    line-height: 1.4;
}

.spec-value-box {
    flex: 1;
    text-align: right;
    min-width: 0;
}

.spec-value {
    color: var(--text-soft);
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.4;
    padding-top: 3px;
    word-break: break-word;
    display: inline-block;
}



@media (max-width: 991px) {
    .spec-premium-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .spec-row:nth-last-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* Premium Navigation & Status Indicators */
.back-catalog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.6rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 2.5rem;
    color: #ffffff;
    text-decoration: none !important;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s var(--easing-premium);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.back-catalog-btn i {
    font-size: 1.15rem;
    transition: transform 0.3s var(--easing-premium);
}

.back-catalog-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateX(-6px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.25);
}

.back-catalog-btn:hover i {
    transform: translateX(-3px);
}

.stock-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.45rem 1.15rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.stock-status-badge i {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    margin-top: -1px;
    /* Optical adjustment for vertical centering */
}

.stock-status-badge.in-stock {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.stock-status-badge.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* --- Review Section Styles --- */
.border-white-05 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.last-child-no-border:last-child {
    border-bottom: none !important;
}

.bg-white-5 {
    background: rgba(255, 255, 255, 0.03);
}

.avatar-circle {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.verified-badge {
    color: #10b981;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
}

.text-accent-gold {
    color: #f59e0b;
}

.smaller {
    font-size: 0.75rem;
}

.opacity-30 {
    opacity: 0.3;
}

.trust-pill-large {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Interactive Star Rating */
.star-rating-input label {
    cursor: pointer;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input:checked~label {
    color: #f59e0b;
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

/* Animation for review appearance */
.review-item {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* --- Premium Quantity Selector --- */
.detail-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-soft);
    opacity: 0.85;
}

.quantity-selector-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.premium-qty-input {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 4px;
    backdrop-filter: blur(20px);
    transition: all 0.4s var(--easing-premium);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    width: fit-content;
}

.premium-qty-input:hover,
.premium-qty-input:focus-within {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}

.qty-control {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    flex: 0 0 38px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s var(--easing-premium);
    padding: 0;
    margin: 0;
}

.qty-control:hover {
    background: var(--accent);
    color: var(--bg-2);
    transform: scale(1.05);
}

.qty-control:active {
    transform: scale(0.95);
}

.qty-field {
    width: 44px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0;
    margin: 0 8px;
    outline: none;
    appearance: none;
    -moz-appearance: textfield;
}

.qty-field:hover {
    color: var(--accent);
}

.qty-field:focus {
    outline: none;
}

.qty-field::-webkit-outer-spin-button,
.qty-field::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.premium-qty-input.small-scale {
    padding: 0.2rem;
}

.premium-qty-input.small-scale .qty-control {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
}

.premium-qty-input.small-scale .qty-field {
    width: 36px;
    font-size: 0.9rem;
}
.wishlist-btn, .compare-btn {
    flex: 1 1 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Product Gallery Styles */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.main-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-1);
    border: 1px solid var(--stroke);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--easing-premium);
}

.main-image-container:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.main-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.5s var(--easing-premium);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 6px;
}

.thumbnail-item {
    aspect-ratio: 1/1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: var(--surface-1);
    transition: all 0.2s ease;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.thumbnail-item:hover img {
    opacity: 1;
}

.thumbnail-item.active {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.thumbnail-item.active img {
    opacity: 1;
}

@media (max-width: 768px) {
    .thumbnail-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* --- Final Mobile Layout Reset --- */
@media (max-width: 991px) {
    .premium-tools-dock {
        left: 1.25rem !important;
        right: auto !important;
        bottom: 14.5rem !important;
        z-index: 3000 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .premium-tool-label {
        display: none !important;
    }
    
    .floating-backtop { width: 3.25rem !important; height: 3.25rem !important; 
    }
    
    .floating-whatsapp { width: 3.25rem !important; height: 3.25rem !important; 
    }
}

/* --- Premium Breadcrumb Component --- */
.premium-breadcrumb-wrapper {
    margin-bottom: 1.5rem;
    padding: 0.4rem 0;
}

.premium-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a,
.breadcrumb-item span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
    backdrop-filter: none;
}

.breadcrumb-item a i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    background: none;
    border-color: transparent;
    color: rgba(255, 255, 255, 0.75);
    transform: none;
    box-shadow: none;
}

.breadcrumb-item a:hover i {
    transform: none;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.55rem;
    padding: 0 0.5rem;
}

.breadcrumb-item.active span {
    background: none;
    border: none;
    color: rgba(245, 158, 11, 0.7);
    cursor: default;
    box-shadow: none;
    font-weight: 600;
}

/* Responsive Breadcrumb adjustments */
@media (max-width: 576px) {
    .premium-breadcrumb {
        gap: 0.5rem;
    }
    
    .breadcrumb-item a, 
    .breadcrumb-item span {
        padding: 5px 12px;
        font-size: 0.65rem;
        letter-spacing: 0.04em;
    }
    
    .breadcrumb-item:not(:nth-last-child(-n+2)) {
        display: none; /* Show only last two levels on very small screens */
    }
}

/* --- Premium Quick View Modal Enhancements --- */
.quick-view-modal-premium {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(10, 15, 28, 0.98)) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 1.5rem !important;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.quick-view-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-gallery {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-image-main img {
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.quick-view-image-fallback {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.1);
}

.quick-view-details {
    padding: 0.5rem 0;
}

.quick-view-desc {
    line-height: 1.6;
    max-height: 100px;
    overflow-y: auto;
    padding-right: 8px;
}

.quick-view-desc::-webkit-scrollbar {
    width: 4px;
}

.quick-view-desc::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Specs Grid in Modal */
.quick-view-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-view-spec-item {
    display: flex;
    flex-direction: column;
}

.quick-view-spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-faint);
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.quick-view-spec-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-soft);
}

@media (max-width: 768px) {
    .quick-view-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-view-image-main img {
        max-height: 250px;
    }
}



.address-type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(245, 166, 35, 0.13);
    color: #f5a623;
    border: 1px solid rgba(245, 166, 35, 0.3);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: normal;
}

/* Premium Notification Drawer Styles */
.premium-drawer.offcanvas {
    background: linear-gradient(180deg, #111827 0%, #0b1220 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    color: #f3f4f6;
    box-shadow: -10px 0 25px rgba(0,0,0,0.5);
}

.premium-drawer .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.premium-drawer .bg-un-read {
    background: rgba(245, 158, 11, 0.12) !important;
    border-left: 2px solid #f59e0b;
}

.premium-drawer .notification-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 200ms ease;
    cursor: pointer;
}

.premium-drawer .notification-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.premium-drawer .text-secondary {
    color: #9ca3af !important;
}

.premium-drawer a {
    color: #f59e0b;
}
.premium-drawer a:hover {
    color: #fbbf24;
}




.address-type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(245, 166, 35, 0.13);
    color: #f5a623;
    border: 1px solid rgba(245, 166, 35, 0.3);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: normal;
}

/* Premium Notification Drawer Styles */
.premium-drawer.offcanvas {
    background: rgba(11, 18, 32, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    color: #f3f4f6;
    box-shadow: -10px 0 40px rgba(0,0,0,0.6);
}

.premium-drawer .offcanvas-body {
    padding: 1rem !important;
}

.notification-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.notification-item.is-unread {
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.2);
}
.notification-item.is-unread:hover {
    background: rgba(245, 158, 11, 0.1);
}

.notif-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.notif-icon-box.type-order {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.notif-icon-box.type-offer {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.notif-icon-box.type-alert {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.notif-title {
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: #f9fafb;
    line-height: 1.3;
}

.notif-message {
    color: #9ca3af;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notif-time {
    font-size: 0.7rem;
    white-space: nowrap;
}

.unread-dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
    border-color: #0b1220 !important;
}

.btn-premium-cta-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-premium-cta-outline:hover {
    background: var(--accent);
    color: var(--text-on-accent);
}

.empty-notif-state {
    padding: 3rem 1rem;
    text-align: center;
}
.empty-notif-icon {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.05);
    background: -webkit-linear-gradient(-45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    margin-bottom: 1rem;
}

/* --- Flipkart-Style Top Category Navigation --- */
.top-category-nav-wrapper {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.top-category-nav {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding: 0.5rem 0.5rem;
    justify-content: center;
}

.top-category-nav::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

@media (max-width: 992px) {
    .top-category-nav {
        justify-content: flex-start;
        gap: 1.5rem;
    }
}

.category-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 80px;
    flex-shrink: 0;
}

.category-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.category-icon-wrap i {
    font-size: 1.75rem;
    color: var(--accent);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.2));
}

.category-nav-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-soft);
    text-align: center;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Hover & Active States */
.category-nav-item:hover {
    transform: translateY(-5px);
}

.category-nav-item:hover .category-icon-wrap {
    background: linear-gradient(135deg, var(--accent), #b91c1c);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

.category-nav-item:hover .category-icon-wrap i {
    color: #fff;
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.category-nav-item:hover .category-nav-label {
    color: #fff;
}

.category-nav-item.active .category-icon-wrap {
    background: linear-gradient(135deg, var(--accent), #b91c1c);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.category-nav-item.active .category-icon-wrap i {
    color: #fff;
}

.category-nav-item.active .category-nav-label {
    color: var(--accent);
    font-weight: 700;
}

/* ================================================================
   PREMIUM CATEGORY NAV — Below Hero Version
   ================================================================ */
.cat-nav-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(10, 15, 28, 0.85));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cat-nav-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
}

/* --- Section Header --- */
.cat-nav-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.cat-nav-eyebrow {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
}

.cat-nav-divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.3), transparent);
}

/* --- Scrollable Track --- */
.cat-nav-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
    justify-content: space-between;
}

.cat-nav-track::-webkit-scrollbar {
    display: none;
}

@media (max-width: 992px) {
    .cat-nav-track {
        justify-content: flex-start;
        gap: 1.5rem;
    }
    .cat-nav-section {
        padding: 1.5rem 1.25rem;
        border-radius: 1rem;
    }
}

/* --- Individual Pill --- */
.cat-nav-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 90px;
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
    position: relative;
}

.cat-nav-pill:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.03);
}

/* --- Double-Ring Icon --- */
.cat-nav-icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(255, 255, 255, 0.05));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.cat-nav-icon-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(22, 33, 55, 0.95), rgba(10, 15, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.cat-nav-icon-wrap i {
    font-size: 1.6rem;
    color: rgba(245, 158, 11, 0.75);
    transition: all 0.35s ease;
}

/* --- Labels --- */
.cat-nav-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
    max-width: 90px;
}

.cat-nav-count {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 2px 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

/* --- Hover States --- */
.cat-nav-pill:hover .cat-nav-icon-ring {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.6), rgba(239, 68, 68, 0.4));
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.25), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cat-nav-pill:hover .cat-nav-icon-wrap {
    background: linear-gradient(145deg, rgba(30, 45, 70, 0.9), rgba(15, 23, 42, 0.95));
}

.cat-nav-pill:hover .cat-nav-icon-wrap i {
    color: var(--accent);
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
}

.cat-nav-pill:hover .cat-nav-name {
    color: #fff;
}

.cat-nav-pill:hover .cat-nav-count {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--accent);
}

/* --- Active States --- */
.cat-nav-pill.active .cat-nav-icon-ring {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow:
        0 0 0 4px rgba(245, 158, 11, 0.12),
        0 0 30px rgba(245, 158, 11, 0.35),
        0 8px 24px rgba(0, 0, 0, 0.3);
    animation: activeRingPulse 2.5s ease-in-out infinite;
}

.cat-nav-pill.active .cat-nav-icon-wrap {
    background: linear-gradient(145deg, #1a2d50, #0f1828);
}

.cat-nav-pill.active .cat-nav-icon-wrap i {
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.8));
}

.cat-nav-pill.active .cat-nav-name {
    color: var(--accent);
    font-weight: 700;
}

.cat-nav-pill.active .cat-nav-count {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    color: var(--accent);
}

@keyframes activeRingPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12), 0 0 30px rgba(245, 158, 11, 0.35), 0 8px 24px rgba(0,0,0,0.3); }
    50%       { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.20), 0 0 45px rgba(245, 158, 11, 0.5),  0 8px 24px rgba(0,0,0,0.3); }
}

/* --- Premium Order History Cards (Flipkart Style) --- */
.order-history-cards {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.order-premium-card {
    background: var(--card);
    border: 1px solid var(--stroke-soft);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s var(--easing-premium);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.order-premium-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-soft);
    background: var(--card-strong);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.order-id-badge {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
}

.order-date-meta {
    font-size: 0.85rem;
    color: var(--muted);
}

.order-card-grid {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .order-card-grid {
        grid-template-columns: 80px 1fr;
        gap: 1.25rem;
    }
}

.order-item-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.order-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.order-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--text);
}


.floating-buttons {
    position: fixed !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
}


.order-item-info p {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 0.15rem;
}

.order-item-status-col {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 991px) {
    .order-item-status-col {
        grid-column: 1 / -1;
        text-align: left;
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 1.25rem;
        margin-top: 0.25rem;
    }
    .order-item-status-col > div, .order-item-status-col > p {
        margin-bottom: 0 !important;
    }
}

.status-dot-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.status-dot.pending { background: #f59e0b; box-shadow: 0 0 10px rgba(245, 158, 11, 0.4); }
.status-dot.confirmed { background: #3b82f6; box-shadow: 0 0 10px rgba(59, 130, 246, 0.4); }
.status-dot.processing { background: #8b5cf6; box-shadow: 0 0 10px rgba(139, 92, 246, 0.4); }
.status-dot.shipped { background: #0ea5e9; box-shadow: 0 0 10px rgba(14, 165, 233, 0.4); }
.status-dot.delivered { background: #10b981; box-shadow: 0 0 10px rgba(16, 185, 129, 0.4); }
.status-dot.cancelled { background: #ef4444; box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }

.order-price-summary {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.order-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .order-card-footer {
        justify-content: stretch;
    }
    .order-card-footer .btn {
        flex: 1;
    }
}

/* Premium Delivery Tracking Rail */
.delivery-progress-rail {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 1rem 0;
}

.delivery-progress-rail::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10px;
    right: 10px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
    border-radius: 999px;
}

.delivery-progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.delivery-progress-step::before {
    content: '';
    position: absolute;
    top: 19px;
    left: -50%;
    right: 50%;
    height: 4px;
    background: var(--success, #10b981);
    z-index: -1;
    border-radius: 999px;
    transition: all 0.5s ease;
    opacity: 0;
}

.delivery-progress-step:first-child::before {
    display: none;
}

.delivery-progress-step.complete::before, 
.delivery-progress-step.current::before {
    opacity: 1;
}

.delivery-node {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-1, #0B1220);
    border: 3px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
    z-index: 5;
}

.delivery-progress-step.complete .delivery-node {
    background: var(--success, #10b981);
    border-color: var(--success, #10b981);
    color: white;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.delivery-progress-step.current .delivery-node {
    border-color: var(--success, #10b981);
}

.pulsing-dot {
    width: 14px;
    height: 14px;
    background: var(--success, #10b981);
    border-radius: 50%;
    animation: pulse-success 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.inactive-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

@keyframes pulse-success {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.delivery-copy strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-soft, #D1D5DB);
    margin-bottom: 0.15rem;
    transition: color 0.3s ease;
}

.delivery-progress-step.current .delivery-copy strong,
.delivery-progress-step.complete .delivery-copy strong {
    color: white;
    font-weight: 700;
}

.delivery-copy small {
    display: block;
    font-size: 0.75rem;
    color: var(--muted, #9CA3AF);
    max-width: 120px;
    margin: 0 auto;
    line-height: 1.3;
}

.delivery-progress-step.current .delivery-copy small {
    color: var(--success, #10b981);
    font-weight: 600;
}

@media (max-width: 768px) {
    .delivery-progress-rail {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 1.5rem;
    }
    .delivery-progress-rail::before {
        top: 20px;
        bottom: 20px;
        left: 16px;
        width: 4px;
        height: auto;
    }
    .delivery-progress-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        width: 100%;
        min-height: 50px;
    }
    .delivery-progress-step::before {
        top: -50%;
        bottom: 50%;
        left: 16px;
        width: 4px;
        height: auto;
    }
    .delivery-node {
        margin-bottom: 0;
        margin-right: 1.5rem;
        z-index: 2;
    }
    .delivery-copy small {
        margin: 0;
        max-width: 100%;
    }
}

/* FINAL OVERRIDE FOR FLOATING BUTTON ALIGNMENT */

.floating-buttons {
    position: fixed !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 0.75rem !important;
    width: auto !important;
    height: auto !important;
}

.floating-whatsapp, .floating-backtop, #chatbot-bubble {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 3.25rem !important;
    height: 3.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
}


/* --- ULTIMATE ALIGNMENT FIX --- */
/* We force the container to be the only thing with fixed position */
.floating-buttons {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 12px !important;
    z-index: 999999 !important;
    width: auto !important;
    height: auto !important;
    pointer-events: none !important; /* Allow clicking through the container itself if needed */
}

/* We force ALL children to be relative and aligned */
.floating-buttons > * {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
}

#chatbot-bubble {
    background: #ffc107 !important;
    color: #000 !important;
}

.floating-whatsapp {
    background: linear-gradient(145deg, #25d366, #1ea952) !important;
}

.floating-backtop {
    background: linear-gradient(145deg, #1a2333, #0b1220) !important;
}


/* --- ABSOLUTE FINAL ALIGNMENT FIX --- */
body .floating-buttons {
    position: fixed !important;
    right: 20px !important;
    bottom: 7.8rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 15px !important;
    z-index: 999999 !important;
    width: auto !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

body .floating-buttons > * {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important; /* Standardize border for all */
    box-sizing: border-box !important;
    padding: 0 !important;
    transform: none !important;
}

#chatbot-bubble {
    background: #ffc107 !important;
    color: #000 !important;
    cursor: pointer !important;
}

.floating-whatsapp {
    background: linear-gradient(145deg, #25d366, #1ea952) !important;
    color: #fff !important;
}

.floating-backtop {
    background: linear-gradient(145deg, #1a2333, #0b1220) !important;
    color: #fff !important;
}
/* ════════════════════════════════════════════════════════
   ULTRA PREMIUM MOBILE EXPERIENCE
   ======================================================== */

@media (max-width: 991px) {
    :root {
        --mobile-nav-height: 70px;
    }

    body {
        padding-bottom: var(--mobile-nav-height); /* Space for bottom dock */
    }

    /* --- Refined Typography --- */
    h1 { font-size: 2.25rem !important; }
    h2 { font-size: 1.85rem !important; }
    h3 { font-size: 1.55rem !important; }
    .catalog-title { font-size: 1.4rem !important; }

    /* --- Premium Burger Menu --- */
    .toggler-icon-wrap {
        width: 32px;
        height: 24px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .toggler-bar {
        height: 3px;
        width: 100%;
        background: #fff;
        border-radius: 10px;
        transition: 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }
    .toggler-bar:nth-child(2) { width: 75%; align-self: flex-end; }
    .navbar-toggler:hover .toggler-bar:nth-child(2) { width: 100%; }

    /* --- Premium Mobile Drawer (Offcanvas) --- */
    .premium-mobile-drawer {
        background: rgba(11, 18, 32, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
        width: 85% !important;
    }
    .mobile-drawer-search {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 0.8rem 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .mobile-drawer-search i { color: var(--accent); }
    .mobile-drawer-search input {
        background: transparent;
        border: none;
        color: #fff;
        width: 100%;
        outline: none;
        font-size: 0.95rem;
    }
    .mobile-nav-list {
        display: flex;
        flex-direction: column;
    }
    .mobile-nav-link {
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-weight: 500;
        transition: 0.2s;
        border-left: 3px solid transparent;
    }
    .mobile-nav-link i { font-size: 1.25rem; color: var(--accent); opacity: 0.8; }
    .mobile-nav-link:active, .mobile-nav-link.active {
        background: rgba(245, 158, 11, 0.08);
        color: #fff;
        border-left-color: var(--accent);
    }
    .mobile-nav-heading {
        padding: 0 1.5rem;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--muted);
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    /* --- Mobile Bottom Dock --- */
    .mobile-bottom-dock {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: var(--mobile-nav-height);
        background: rgba(15, 23, 42, 0.92);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 2000;
        padding-bottom: env(safe-area-inset-bottom);
    }
    .dock-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.65rem;
        font-weight: 600;
        gap: 4px;
        background: none;
        border: none;
        padding: 8px;
        transition: 0.3s;
    }
    .dock-item i { font-size: 1.4rem; }
    .dock-item.active { color: var(--accent); }
    .dock-item:active { transform: scale(0.9); }
    .dock-badge {
        position: absolute;
        top: 4px;
        right: 12px;
        background: var(--accent);
        color: #000;
        font-size: 0.6rem;
        font-weight: 800;
        min-width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #0f172a;
    }

    /* --- Product Card Adjustments --- */
    .product-card {
        border-radius: 1.25rem !important;
        margin-bottom: 0.5rem;
    }
    .product-image-wrap { height: 180px !important; }
    .product-info-block { padding: 1rem !important; }
    
    /* --- Catalog Adjustments --- */
    .catalog-header-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
}

/* ════════════════════════════════════════════════════════
   FINAL POLISH FOR PREMIUM FEEL
   ======================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--easing-premium), transform 0.6s var(--easing-premium);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Refinement */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}
