@import url('https://fonts.maateen.me/kalpurush/font.css');

body {
    background: #f8f9fa;
    font-family: "Inter", sans-serif;
}
.storefront-body {
    font-size: 14px;
}
.storefront-body h1,
.storefront-body h2,
.storefront-body h3,
.storefront-body h4,
.storefront-body h5,
.storefront-body h6,
.storefront-body .hero-title,
.storefront-body .product-title,
.storefront-body .product-premium-title,
.storefront-body .quick-view-title,
.storefront-body .section-heading-premium,
.storefront-body .premium-p-name,
.storefront-body .vendor-cover-copy h1,
.storefront-body .checkout-summary-title,
.storefront-body .payment-response-card h1 {
    font-size: calc(1em - 2px);
}
a {
    transition: color 0.2s ease;
}
a:hover {
    color: var(--brand-cyan);
}
.p-price,
.product-price-current,
.quick-view-price {
    color: var(--brand-cyan) !important;
}
.product-card .old-price {
    color: #6c757d;
    font-size: 0.9rem;
    margin-left: 0.35rem;
    text-decoration: line-through;
}
.product-card .p-name {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 2.66rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.product-card .p-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-cyan);
}
.product-card .ratings {
    font-size: 0.85rem;
}
.product-card .img-hldr img {
    transition: transform 0.35s ease;
}
.product-card .img-hldr::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
}
.product-card:hover .img-hldr::after {
    background: rgba(0, 0, 0, 0.1);
}
.product-card:hover .img-hldr img {
    transform: scale(1.04);
}
.product-card:hover .img-hldr img {
    transform: scale(1.04);
}
.product-card {
    background: #fff !important;
    border-radius: 24px !important;
    border: none !important;
    box-shadow: 0 12px 48px rgba(0,0,0,0.06) !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
}
.product-card .wishlist-trigger.active {
    color: #dc3545;
}
.trading-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
    border-radius: 28px;
    border: 1px solid rgba(0, 67, 97, 0.08);
    box-shadow: 0 18px 42px rgba(0, 67, 97, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.trading-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 67, 97, 0.14);
    border-color: rgba(0, 67, 97, 0.16);
}
.trading-card-media {
    position: relative;
    height: 238px;
    overflow: hidden;
    z-index: 1;
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.65), transparent 35%),
        linear-gradient(135deg, #f1f5f0 0%, #e3ede7 100%);
}
.trading-card-media-frame {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.trading-card-image {
    width: 108%;
    height: 108%;
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
    object-position: center bottom;
    transform: translateY(6px);
    transition: transform 0.45s ease;
}
.trading-product-card:hover .trading-card-image {
    transform: translateY(2px) scale(1.03);
}
.trading-card-discount {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #01979a;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(0, 67, 97, 0.25);
}
.trading-card-stock-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(153, 27, 27, 0.92);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(153, 27, 27, 0.2);
}
.trading-card-wishlist {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #01979a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}
.trading-card-wishlist i {
    width: 18px;
    height: 18px;
}
.trading-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.85rem 0.9rem 0.9rem;
    position: relative;
    z-index: 3;
}
.trading-card-copy {
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
}
.trading-card-title {
    margin: 0;
    color: #111827;
    font-size: 0.95rem;
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 1.18rem;
}
.trading-card-title.is-bengali {
    font-family: "Kalpurush", "Hind Siliguri", "Noto Serif Bengali", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: 0;
    min-height: 1.12rem;
}
.trading-card-size-suffix {
    font-size: 0.82em;
    font-weight: 500;
    color: #6b7280;
    margin-left: 4px;
}
.trading-card-subtitle {
    display: block;
    color: #6b7280;
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.1;
    min-height: 0.78rem;
}
.trading-card-subtitle.is-bengali {
    font-family: "Kalpurush", "Hind Siliguri", "Noto Serif Bengali", serif;
    font-size: 0.84rem;
    font-weight: 600;
}
.trading-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    min-height: 0;
}
.trading-card-size,
.trading-card-stock {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0.15rem 0.52rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
}
.trading-card-size {
    background: #eef5ef;
    color: #01979a;
}
.trading-card-size.is-bengali {
    font-family: "Kalpurush", "Hind Siliguri", "Noto Serif Bengali", serif;
    font-size: 0.92rem;
    font-weight: 400;
}
.trading-card-stock.is-in-stock {
    background: rgba(0, 67, 97, 0.08);
    color: #01979a;
}
.trading-card-stock.is-out-stock {
    background: rgba(153, 27, 27, 0.08);
    color: #991b1b;
}
.trading-card-rating {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    color: #ff8c42;
    min-height: 0;
}
.trading-card-stars {
    letter-spacing: 0.02em;
    font-size: 0.82rem;
    line-height: 1;
}
.trading-card-rating-value,
.trading-card-reviews {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 600;
}
.trading-card-price-row {
    margin-top: auto;
    display: grid;
    gap: 0.45rem;
}
.trading-card-price-stack {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem;
    min-height: 22px;
}
.trading-card-price {
    color: #0f172a;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
}
.trading-card-old-price {
    color: #8a8f98;
    text-decoration: line-through;
    font-size: 0.76rem;
}
.trading-card-actions {
    display: grid;
    grid-template-columns: minmax(0, 84px) minmax(0, 1fr);
    gap: 0.45rem;
    align-items: center;
    position: relative;
    z-index: 4;
}
.trading-card-qty {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 38px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 67, 97, 0.08);
    background: #f3f7f4;
}
.trading-card-qty-btn {
    height: 100%;
    border: 0;
    background: transparent;
    color: #01979a;
    font-size: 0.95rem;
    font-weight: 500;
}
.trading-card-qty-value {
    min-width: 28px;
    text-align: center;
    color: #0f172a;
    font-size: 0.84rem;
    font-weight: 700;
}
.trading-card-order-btn {
    min-height: 38px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #01979a 0%, #004361 100%);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0 0.6rem;
    box-shadow: 0 14px 30px rgba(0, 67, 97, 0.18);
    position: relative;
    z-index: 5;
}
.trading-card-order-btn:disabled {
    opacity: 0.55;
    box-shadow: none;
}
@media (max-width: 767.98px) {
    .trading-product-card {
        border-radius: 20px;
    }
    .trading-card-media {
        height: 200px;
    }
    .trading-card-media-frame {
        inset: 8px 8px 0;
    }
    .trading-card-body {
        padding: 0.8rem 0.82rem 0.85rem;
    }
    .trading-card-title {
        font-size: 0.9rem;
        min-height: 2.15rem;
    }
    .trading-card-title.is-bengali {
        font-size: 16px;
        min-height: 2.05rem;
    }
    .trading-card-price {
        font-size: 18px;
    }
    .trading-card-actions {
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 0.4rem;
    }
    .trading-card-order-btn,
    .trading-card-qty {
        min-height: 36px;
    }
}
.mini-cart-trigger {
    position: relative;
}
.mini-cart-count-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #111827; /* Dark premium look */
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex; /* Changed from none to flex for visibility */
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #fff; /* Cutout effect */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.quick-view-image-skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #eef2f6 25%, #f7f9fb 37%, #eef2f6 63%);
    background-size: 400% 100%;
    animation: quickview-shimmer 1.2s ease-in-out infinite;
}
.quick-view-image {
    opacity: 0;
    transition: opacity 0.25s ease;
}
.quick-view-image.is-loaded {
    opacity: 1;
}
.quick-view-image-skeleton.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.modal#quickViewModal {
    z-index: 2000;
}
.modal-backdrop.show {
    z-index: 1990;
}
#miniCartCanvas.offcanvas {
    z-index: 2035;
}
.offcanvas-backdrop.show {
    z-index: 2030;
}
#site-header.quick-view-open {
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
}
.quick-view-shell {
    position: relative;
    padding: 1.25rem;
    background:
        radial-gradient(circle at top left, rgba(0, 67, 97, 0.08), transparent 26%),
        linear-gradient(180deg, #fbfdff 0%, #f5f8fc 100%);
    border-radius: 28px;
}
.quick-view-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    z-index: 5;
}
.quick-view-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    min-height: 640px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
}
.quick-view-media-pane {
    padding: 1.35rem;
    background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}
.quick-view-media-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.14);
}
.quick-view-discount-badge {
    top: 1rem;
    left: 1rem;
    z-index: 3;
}
.quick-view-image-skeleton,
.quick-view-image {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 22px;
}
.quick-view-details-pane {
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quick-view-kicker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.quick-view-kicker {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}
.quick-view-vendor-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #0f4c81;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
}
.quick-view-title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 2.5vw, 2.65rem);
    line-height: 1.08;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.03em;
}
.quick-view-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
    color: #64748b;
    font-size: 0.95rem;
}
.quick-view-stars {
    display: inline-flex;
    align-items: center;
}
.quick-view-separator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cbd5e1;
}
.quick-view-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.quick-view-price {
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    font-weight: 700;
    color: var(--brand-cyan);
    letter-spacing: -0.03em;
}
.quick-view-old-price {
    font-size: 1.15rem;
    color: #94a3b8;
    text-decoration: line-through;
}
.quick-view-discount-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e11d48;
}
.quick-view-copy {
    margin: 0 0 1.5rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 0.98rem;
}
.quick-view-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.65rem;
}
.quick-view-meta-card {
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #fcfdff 0%, #f8fbff 100%);
    border: 1px solid rgba(148, 163, 184, 0.15);
}
.quick-view-meta-card span,
.quick-view-meta-card strong {
    display: block;
}
.quick-view-meta-card span {
    margin-bottom: 0.35rem;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.quick-view-meta-card strong {
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 700;
}
.quick-view-meta-card strong.is-ready {
    color: #0f9f6e;
}
.quick-view-meta-card strong.is-out {
    color: #dc2626;
}
.quick-view-actions {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.quick-view-primary-btn {
    width: 100%;
    min-height: 58px;
    border-radius: 18px;
    font-size: 1.02rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.quick-view-secondary-btn {
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 700;
}
@keyframes quickview-shimmer {
    0% {
    }
    100% {
    }
}
@media (max-width: 991.98px) {
    .quick-view-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .quick-view-image-skeleton,
    .quick-view-image {
        min-height: 380px;
    }

    .quick-view-details-pane {
        padding: 1.5rem;
    }

    .quick-view-meta-grid {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 1200px) {
    .col-xl-2-4 {
        flex: 0 0 auto;
        width: 20%;
        max-width: 20%;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1370px;
    }
}
@media (max-width: 991px) {
    .row {
        flex-wrap: wrap !important;
    }
    .col-xl-2-4, .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
}
@media (max-width: 576px) {
    .premium-search-btn-mobile {
        padding: 10px;
        margin-right: 8px;
        font-size: 1.2rem;
    }
}
/* High-End Glassmorphic Header Redesign */
:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: 15px;
    --brand-cyan: #004361;
    --brand-cyan-deep: #002d42;
    --section-spacing: 65px;
    --header-height-full: 140px;
    --header-height-scrolled: 75px;
}
#site-header {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    padding-top: 1.5rem;
    z-index: 1050;
}
.header-main-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#site-header.header-scrolled {
    padding-top: 0.75rem;
}
#site-header.header-scrolled .header-main-card {
    border-radius: 100px !important;
    margin-top: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    padding: 0 !important;
}
#site-header.header-scrolled .header-bottom-row,
#site-header.header-scrolled .header-promo-banner {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
    overflow: hidden;
}
/* Search Bar Redesign */
.premium-search-container {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 100px;
    padding: 4px 6px 4px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 600px;
    position: relative;
}
.header-shop-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    padding: 0.62rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #081423 0%, #12314c 100%);
    color: #fff;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 28px rgba(8, 20, 35, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.header-shop-cta i,
.header-shop-cta svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.8;
}
.header-shop-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(8, 20, 35, 0.24);
    background: linear-gradient(135deg, #0a1b30 0%, #004361 100%);
}
.header-shop-cta--mobile {
    width: auto;
}
.premium-search-container:focus-within {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--brand-cyan);
}
.premium-search-container input {
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 0;
    width: 100%;
    font-size: 0.95rem;
}
.premium-search-btn {
    background: var(--brand-cyan-deep);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.premium-search-btn:hover {
    transform: scale(1.05);
    background: #27ae60;
}
.premium-search-suggestions {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    padding: 0.9rem;
}
.premium-search-suggestions__head {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0f766e;
    margin-bottom: 0.8rem;
    padding: 0 0.35rem;
}
.premium-search-suggestions__list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.premium-search-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
    text-decoration: none;
    color: #0f172a;
    padding: 0.55rem;
    border-radius: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.premium-search-item:hover {
    background: rgba(0, 67, 97, 0.08);
    transform: translateY(-1px);
}
.premium-search-item__image {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 14px;
    background: #f8fafc;
}
.premium-search-item__body {
    min-width: 0;
}
.premium-search-item__name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.premium-search-item__meta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #64748b;
    font-size: 0.77rem;
    margin-top: 0.25rem;
}
.premium-search-item__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}
.premium-search-item__price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-cyan-deep);
    white-space: nowrap;
}
.premium-search-view-all {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.85rem;
    padding: 0.85rem 1rem 0.2rem;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    color: #0f172a;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
}
.premium-search-view-all:hover {
    color: var(--brand-cyan-deep);
}
.premium-search-loading,
.premium-search-empty {
    padding: 1rem 0.35rem;
    color: #64748b;
    font-size: 0.88rem;
}
.premium-search-empty__title {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 0.55rem;
}
/* Header Icons */
.header-icon-link {
    text-decoration: none;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.75rem;
}
.header-icon-link i, .header-icon-link svg {
    font-size: 1.4rem;
    stroke-width: 1.5;
}
.header-icon-link:hover {
    color: var(--brand-cyan);
    transform: translateY(-2px);
}
/* Secondary Nav */
.secondary-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 10px 0;
}
.secondary-nav-item {
    text-decoration: none;
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.secondary-nav-item:hover {
    color: var(--accent-green);
}
.secondary-nav-item i, .secondary-nav-item svg {
    font-size: 1rem;
    opacity: 0.7;
}
.secondary-nav-item--seller {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
}
.secondary-nav-item--seller:hover {
    background: rgba(0, 67, 97, 0.08);
}
/* Bento Hero Section */
.bento-hero-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 40px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    color: white;
    box-shadow: 0 20px 50px rgba(46, 204, 113, 0.2);
}
.product-card {
    background: #fff !important;
    border-radius: 24px !important;
    border: none !important;
    box-shadow: 0 12px 48px rgba(0,0,0,0.06) !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.product-card .action-icons {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover .action-icons {
    opacity: 1;
}
.discount-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 4px 12px;
    border-radius: 100px;
}
.bento-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}
.bento-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.bento-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}
.bento-item-large {
    grid-column: span 2;
    grid-row: span 2;
    background: rgba(255, 255, 255, 0.2);
}
.bento-item-wide {
    grid-column: span 2;
}
.bento-item h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.bento-item p {
    opacity: 0.9;
    font-size: 1.1rem;
}
.bento-item .btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    width: fit-content;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.bento-item .btn-glass:hover {
    background: white;
    color: var(--accent-green);
}
@media (max-width: 991px) {
    .bento-grid {
    }
    .bento-item-large {
    }
}
@media (max-width: 767px) {
    .bento-grid {
    }
    .bento-item-wide, .bento-item-large {
    }
    .bento-hero-section {
    }
}
.shop-sidebar.sticky-top {
    top: 120px !important; /* Increased to avoid header overlap */
    transition: top 0.4s ease;
}
#site-header.header-scrolled + main .shop-sidebar.sticky-top,
.header-scrolled ~ main .shop-sidebar.sticky-top {
    top: 90px !important;
}
/* High-End Cart Styles */
.cart-item-card {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06) !important;
}
.qty-selector {
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.qty-selector button {
    transition: all 0.2s ease;
    opacity: 0.6;
}
.qty-selector button:hover {
    opacity: 1;
    transform: scale(1.1);
}
.qty-selector input:focus {
    outline: none;
    box-shadow: none;
}
.glass-panel {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}
.rounded-20 {
    border-radius: 20px !important;
}
.btn-glow {
    background: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.35);
    transition: all 0.3s ease;
    border: none;
}
.btn-glow:hover {
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.5);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0b5ed7 0%, #0040a8 100%);
}
.remove-item-btn {
    transition: all 0.2s ease;
    background: transparent;
    color: #ced4da;
}
.remove-item-btn:hover {
    background: #dc3545 !important;
    color: white !important;
    transform: scale(1.05);
}
.cart-action-btn {
    width: 38px;
    height: 38px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cart-feedback-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1085;
    min-width: 280px;
    max-width: 360px;
    border-radius: 16px;
    background: #ffffff;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.cart-feedback-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.cart-feedback-toast.is-success {
    border-left: 4px solid #198754;
}
.cart-feedback-toast.is-error {
    border-left: 4px solid #dc3545;
}
/* Luxury Checkout Styles */
.rounded-16 {
    border-radius: 16px !important;
}
.soft-shadow {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
}
.bg-info-subtle {
    background-color: #cff4fc !important;
}
.text-info-emphasis {
    color: #055160 !important;
}
.btn-luxury-dark {
    position: relative;
    overflow: hidden;
    border: 0;
    color: #fff !important;
    background: linear-gradient(135deg, #0f172a 0%, #111827 45%, #1e293b 100%);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-luxury-dark::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0));
    pointer-events: none;
}
.btn-luxury-dark:hover,
.btn-luxury-dark:focus-visible {
    color: #fff !important;
    background: linear-gradient(135deg, #020617 0%, #0f172a 55%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.28);
}
.btn-luxury-dark:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.45);
    outline-offset: 2px;
}
.btn-luxury-dark:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}
.checkout-floating-input {
    background-color: #f8f9fa;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}
.checkout-floating-input:focus {
    background-color: #ffffff;
    border-color: #0d6efd;
}
.zone-tile {
    cursor: pointer;
    display: block;
    border-radius: 12px;
}
.zone-tile-body {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.25s ease;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.zone-tile:hover .zone-tile-body {
    border-color: #dee2e6;
    background: #f8f9fa;
}
.zone-tile input[type="radio"]:checked + .zone-tile-body {
    border-color: #0d6efd;
    background: #f8fbff;
}
.zone-tile-icon {
    opacity: 0;
    color: #0d6efd;
    transition: opacity 0.25s ease;
}
.zone-tile input[type="radio"]:checked + .zone-tile-body .zone-tile-icon {
    opacity: 1;
}
.glass-panel-12 {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}
/* Modern Spaced Hero Carousel */
.hero-slider-wrapper {
    margin-top: 1.5rem; /* Significant spacing after header */
    width: 100%;
}
.modern-hero-carousel {
    height: 400px;
    overflow: hidden;
}
.hero-slide-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.rounded-30 {
    border-radius: 30px !important;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 1.5rem 3rem 6.5rem;
}
.fw-black {
    font-weight: 900 !important;
}
.btn-luxury-cyan {
    background: var(--brand-cyan-deep);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 67, 97, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-luxury-cyan:hover {
    background: var(--brand-cyan);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 67, 97, 0.5);
}
.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}
.btn-outline-white:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-3px);
}
/* Product Sections Refinement */
.section-title-wrap {
    position: relative;
    padding-bottom: 8px;
}
.title-accent-line {
    width: 40px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 2px;
    margin-top: 8px;
}
@media (max-width: 767px) {
    .modern-hero-carousel, .hero-slide-image {
        height: 250px;
    }
    .hero-overlay {
    }
}

@media (max-width: 1199.98px) {
    .header-shop-cta {
        padding: 0.58rem 0.82rem;
        font-size: 0.75rem;
    }

    .hero-content {
        padding: 2.75rem 1.25rem 2.75rem 5.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-content {
        padding: 2rem 1rem 2rem 4rem;
    }
}

@media (max-width: 767.98px) {
    .header-shop-cta--mobile {
        display: inline-flex;
        width: calc(100% - 1rem);
    }

    .hero-content {
        padding: 1.25rem 1rem 1.25rem 1.5rem;
    }
}
/* Shop Sidebar & Premium Grid Styles */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.02) !important;
    border-radius: 16px !important;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0,0,0,0.05) !important;
}
/* Glassmorphism Discount Pill */
.glass-discount-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1a1a1a;
    z-index: 2;
}
/* Luxury Status Badges */
.luxury-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #1a1a1a;
    color: #ffd700; /* Gold text */
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.luxury-status-badge.gold {
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    color: #000;
}
/* Refined Accordion */
.shop-sidebar .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.shop-sidebar .accordion-item:last-child {
    border-bottom: 0;
}
.shop-sidebar .accordion-button {
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Satoshi', sans-serif;
}
.shop-sidebar .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    color: var(--bs-primary);
}
.shop-sidebar .sub-category-list {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}
/* Item Count Badges */
.count-pill {
    transition: all 0.3s ease;
    opacity: 0.6;
    background: rgba(0,0,0,0.05);
}
.accordion-header:hover .count-pill,
.form-check:hover + .count-pill,
.d-flex:hover .count-pill {
    opacity: 1;
    background: rgba(0,0,0,0.1);
    color: #000;
}
.p-price {
    font-size: 1.25rem;
}
.p-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8rem;
    margin-bottom: 0.5rem;
}
.cart-feedback-body {
    padding: 0.9rem 1rem;
    font-weight: 600;
    color: #1f2937;
}
.product-detail-page {
    background: #f8f9fa;
}
.product-gallery-panel,
.product-buy-panel,
.product-side-card,
.review-summary-card,
.review-card-item,
.review-empty-card {
    background: #fff;
    border: 1px solid rgba(13, 110, 253, 0.16);
    border-radius: 18px;
}
.product-gallery-panel,
.product-buy-panel,
.product-side-card {
    padding: 1rem;
}
.product-main-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, #f9fbff 0%, #eef4ff 100%);
    border: 1px solid #dbe6ff;
    aspect-ratio: 1 / 1;
}
.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-discount-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    border-radius: 999px;
    background: #0d6efd;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
}
.product-thumb-strip {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.9rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}
.product-thumb-button {
    width: 74px;
    height: 74px;
    border-radius: 12px;
    border: 2px solid #d8e3ff;
    background: #fff;
    padding: 0;
    overflow: hidden;
    flex: 0 0 auto;
}
.product-thumb-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-thumb-button.is-active,
.product-thumb-button:hover {
    border-color: #0d6efd;
}
.product-title {
    font-size: clamp(1.75rem, 2vw, 2.25rem);
    line-height: 1.16;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.55rem;
}
.product-viewing-note {
    color: #ee6b57;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
}
.product-rating-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
}
.product-stars,
.review-summary-stars,
.review-card-stars {
    color: #f4b400;
}
.product-review-count,
.review-summary-count {
    color: #7c8798;
    font-size: 0.92rem;
}
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}
.product-price-current {
    font-size: 2.35rem;
    font-weight: 800;
    color: #111827;
}
.product-price-old {
    color: #98a2b3;
    text-decoration: line-through;
    font-size: 1.1rem;
}
.product-option-block {
    margin-bottom: 1rem;
}
.product-option-label {
    font-weight: 700;
    color: #172033;
    margin-bottom: 0.45rem;
}
.product-option-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.product-option-chip {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #344054;
    border-radius: 20px;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}
.product-option-chip:hover {
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
    background: rgba(0, 67, 97, 0.03);
}
.product-option-chip.is-active {
    border-color: var(--brand-cyan);
    background: var(--brand-cyan);
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 67, 97, 0.25);
}
.product-option-hint {
    color: #98a2b3;
    font-size: 0.92rem;
}
.product-cart-row {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin: 1.15rem 0 0.95rem;
}
.product-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 26px;
    overflow: hidden;
    background: #f8f9fa;
    padding: 2px;
}
.product-qty-btn {
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #475467;
    font-size: 1.25rem;
    font-weight: 400;
    border-radius: 50%;
    transition: all 0.2s ease;
    cursor: pointer;
}
.product-qty-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #1d2939;
}
.product-qty-input {
    width: 40px;
    border: 0;
    text-align: center;
    font-weight: 600;
    color: #1d2939;
    background: transparent;
}
.product-add-cart-btn {
    flex: 1;
    background: #0d6efd;
    border: 0;
    border-radius: 12px;
    min-height: 48px;
    color: #fff;
    font-weight: 700;
}
.product-add-cart-btn:hover,
.product-add-cart-btn:focus {
    background: #0b5ed7;
    color: #fff;
}
.product-form-feedback {
    min-height: 1.4rem;
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-form-feedback.is-error {
    color: #f04438;
}
.product-form-feedback.is-success {
    color: #039855;
}
.product-meta-line {
    color: #4b5563;
    margin-bottom: 0.4rem;
}
.product-short-copy {
    color: #5f6b7a;
    line-height: 1.7;
    margin-top: 1rem;
}
.section-heading {
    font-size: 1.7rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}
.product-description-copy {
    color: #364152;
    line-height: 1.9;
    font-size: 1rem;
}
.product-description-copy ul,
.product-description-copy ol {
    padding-left: 1.25rem;
}
.review-summary-card {
    padding: 1.3rem;
}
.review-summary-score {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    color: #111827;
}
.review-band-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.65rem;
    color: #4b5563;
    font-size: 0.92rem;
}
.review-card-item {
    padding: 1.2rem;
    margin-bottom: 1rem;
}
.review-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.review-card-copy {
    color: #4b5563;
    line-height: 1.75;
}
.review-empty-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.product-vendor-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid #dbe3ee;
}
.product-vendor-badge {
    color: #198754;
    font-size: 0.84rem;
    font-weight: 600;
    margin-top: 0.25rem;
}
.product-side-shipping p,
.product-side-shipping li {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
}
@media (max-width: 991.98px) {
    .product-cart-row {
    }
    .product-qty-box {
    }
}
@media (max-width: 767.98px) {
    .cart-feedback-toast {
    }
    .product-title {
    }
    .product-price-current {
    }
    .product-cart-row {
        gap: 0.65rem;
        margin-bottom: 1.5rem;
    }
}
.product-price-current {
    font-size: 2.35rem;
    font-weight: 800;
    color: #111827;
}
.product-price-old {
    color: #98a2b3;
    text-decoration: line-through;
    font-size: 1.1rem;
}
.product-option-block {
    margin-bottom: 1rem;
}
.product-option-label {
    font-weight: 700;
    color: #172033;
    margin-bottom: 0.45rem;
}
.product-option-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.product-option-chip {
    border: 1px solid #c6d6ff;
    background: #fff;
    color: #172033;
    border-radius: 10px;
    padding: 0.45rem 0.8rem;
    font-size: 0.92rem;
    font-weight: 500;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.product-option-chip:hover,
.product-option-chip.is-active {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 10px 18px rgba(13, 110, 253, 0.18);
}
.product-option-hint {
    color: #98a2b3;
    font-size: 0.92rem;
}
.product-cart-row {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin: 1.15rem 0 0.95rem;
}
.product-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.product-qty-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: #fff;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 700;
}
.product-qty-input {
    width: 46px;
    border: 0;
    text-align: center;
    font-weight: 700;
    color: #111827;
}
.product-add-cart-btn {
    flex: 1;
    background: #0d6efd;
    border: 0;
    border-radius: 12px;
    min-height: 48px;
    color: #fff;
    font-weight: 700;
}
.product-add-cart-btn:hover,
.product-add-cart-btn:focus {
    background: #0b5ed7;
    color: #fff;
}
.product-form-feedback {
    min-height: 1.4rem;
    font-size: 0.92rem;
    font-weight: 500;
}
.product-form-feedback.is-error {
    color: #dc3545;
}
.product-form-feedback.is-success {
    color: #198754;
}
.product-meta-line {
    color: #4b5563;
    margin-bottom: 0.4rem;
}
.product-short-copy {
    color: #5f6b7a;
    line-height: 1.7;
    margin-top: 1rem;
}
.section-heading {
    font-size: 1.7rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}
.product-description-copy {
    color: #364152;
    line-height: 1.9;
    font-size: 1rem;
}
.product-description-copy ul,
.product-description-copy ol {
    padding-left: 1.25rem;
}
.review-summary-card {
    padding: 1.3rem;
}
.review-summary-score {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    color: #111827;
}
.review-band-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.65rem;
    color: #4b5563;
    font-size: 0.92rem;
}
.review-card-item {
    padding: 1.2rem;
    margin-bottom: 1rem;
}
.review-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.review-card-copy {
    color: #4b5563;
    line-height: 1.75;
}
.review-empty-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.product-vendor-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid #dbe3ee;
}
.product-vendor-badge {
    color: #198754;
    font-size: 0.84rem;
    font-weight: 600;
    margin-top: 0.25rem;
}
.product-side-shipping p,
.product-side-shipping li {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
}
@media (max-width: 991.98px) {
    .product-cart-row {
    }
    .product-qty-box {
    }
}
@media (max-width: 767.98px) {
    .cart-feedback-toast {
    }
    .product-title {
    }
    .product-price-current {
    }
    .product-cart-row {
    }
    .product-qty-box,
    .product-add-cart-btn {
    }
}
/* Premium Admin Glassmorphic Theme Design Tokens */
:root {
    --adm-bg: #090f1d;
    --adm-bg-gradient: radial-gradient(circle at 10% 20%, #0d162d 0%, #080d19 90%);
    --adm-glass-bg: rgba(13, 23, 47, 0.6);
    --adm-glass-border: rgba(255, 255, 255, 0.06);
    --adm-glass-highlight: rgba(255, 255, 255, 0.09);
    --adm-glass-blur: 24px;
    --adm-text-main: #f8fafc;
    --adm-text-muted: #94a3b8;
    --adm-accent-primary: #10b981;
    --adm-accent-cyan: #06b6d4;
    --adm-accent-blue: #3b82f6;
    --adm-accent-indigo: #6366f1;
    --adm-accent-purple: #8b5cf6;
    --adm-accent-amber: #f59e0b;
    --adm-accent-red: #ef4444;
}

/* Background Ambient Glow */
.admin-glow-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: var(--adm-bg);
}
.admin-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.16;
    mix-blend-mode: screen;
    animation: admin-float-glow 25s ease-in-out infinite alternate;
}
.admin-glow-orb--1 {
    top: -10%;
    left: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--adm-accent-cyan) 0%, transparent 70%);
}
.admin-glow-orb--2 {
    bottom: -15%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, var(--adm-accent-purple) 0%, transparent 70%);
    animation-delay: -5s;
}
.admin-glow-orb--3 {
    top: 40%;
    left: 45%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--adm-accent-blue) 0%, transparent 70%);
    animation-delay: -10s;
}
@keyframes admin-float-glow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8%, 10%) scale(1.1); }
}

/* Scrollbar Customization */
.admin-body ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.admin-body ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
.admin-body ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.admin-body ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Admin Auth & Login Screen */
.admin-auth-body {
    margin: 0;
    min-height: 100dvh;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--adm-bg-gradient);
    color: var(--adm-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.admin-login {
    width: 100%;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.admin-login__card {
    width: min(100%, 1000px);
    padding: 0;
    border-radius: 28px;
    background: rgba(13, 23, 47, 0.42);
    backdrop-filter: blur(35px) saturate(210%);
    -webkit-backdrop-filter: blur(35px) saturate(210%);
    box-shadow: 0 35px 85px rgba(0, 0, 0, 0.75), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    border: none; /* No default border, we use pseudo gradient */
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: min(580px, calc(100dvh - 2.5rem));
}

/* Ambient Corner Leak */
.admin-login__card::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -15%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
    filter: blur(12px);
    pointer-events: none;
    z-index: 0;
}

/* Masked Gradient Border */
.admin-login__card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, 
                    rgba(255, 255, 255, 0.15), 
                    rgba(255, 255, 255, 0.02) 40%, 
                    rgba(6, 182, 212, 0.25) 75%, 
                    rgba(99, 102, 241, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Left Hero Column */
.admin-login__hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.admin-login__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
                    rgba(13, 22, 47, 0.88) 0%, 
                    rgba(13, 22, 47, 0.5) 55%, 
                    rgba(99, 102, 241, 0.25) 100%);
    z-index: 1;
}
.admin-login__hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}
.admin-login__hero-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.admin-login__hero-brand i {
    font-size: 1.35rem;
    color: var(--adm-accent-cyan);
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
}
.admin-login__hero-back {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}
.admin-login__hero-back:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.admin-login__hero-back i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}
.admin-login__hero-back:hover i {
    transform: translateX(3px);
}
.admin-login__hero-body {
    position: relative;
    z-index: 2;
    margin-top: auto;
}
.admin-login__carousel {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.admin-login__carousel-slide {
    display: none;
    animation: carousel-fade 0.5s ease-in-out forwards;
}
.admin-login__carousel-slide.active {
    display: block;
}
@keyframes carousel-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.admin-login__carousel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}
.admin-login__carousel-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}
.admin-login__carousel-dots {
    display: flex;
    gap: 0.4rem;
}
.admin-login__carousel-dot {
    width: 18px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.admin-login__carousel-dot.active {
    width: 28px;
    background: var(--adm-accent-cyan);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

/* Right Form Column */
.admin-login__form-panel {
    padding: 3.2rem 3.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.admin-login__badge {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: var(--adm-accent-cyan);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 0.28rem 0.85rem;
    border-radius: 100px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.18);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
}
.admin-login__title {
    font-family: 'Outfit', sans-serif;
    margin: 0 0 0.4rem;
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
}
.admin-login__subtitle {
    margin: 0 0 1.7rem;
    color: var(--adm-text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    text-align: left;
}
.admin-login__form {
    display: grid;
    gap: 1rem;
    width: min(100%, 424px);
    padding: 1.15rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 18, 40, 0.58), rgba(10, 18, 40, 0.34));
    border: 1px solid rgba(148, 163, 184, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.admin-login__field {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0.52rem;
}
.admin-login__field-label {
    color: rgba(191, 219, 254, 0.9);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-left: 0.2rem;
}
.admin-login__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 4rem;
    padding: 0.52rem 0.7rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(8, 15, 33, 0.96), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 34px rgba(2, 6, 23, 0.24);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.admin-login__input-field {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 2.9rem;
    display: flex;
    align-items: center;
    border-radius: 12px;
    background: #16213d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
}
.admin-login__input-field--password {
    padding-right: 0.55rem;
}
.admin-login__input-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.18), rgba(6, 182, 212, 0.12));
    border: 1px solid rgba(56, 189, 248, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.admin-login__input-icon {
    font-size: 0.95rem;
    color: rgba(125, 211, 252, 0.92);
    transition: color 0.3s ease;
}
.admin-login__input.form-control {
    width: 100% !important;
    height: 2.9rem !important;
    min-height: 2.9rem !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0 1rem !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: inherit !important;
    z-index: 2;
}
.admin-login__input.form-control::placeholder {
    color: rgba(148, 163, 184, 0.48) !important;
}
.admin-login__input.form-control:focus {
    outline: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Browser autofill overrides */
.admin-login__input.form-control:-webkit-autofill,
.admin-login__input.form-control:-webkit-autofill:hover,
.admin-login__input.form-control:-webkit-autofill:focus,
.admin-login__input.form-control:-webkit-autofill:active,
.admin-login__input.form-control:autofill {
    -webkit-box-shadow: 0 0 0 1000px #16213d inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    transition: background-color 99999s ease-in-out 0s, color 99999s ease-in-out 0s !important;
    border: none !important;
    background-color: transparent !important;
    background-image: none !important;
    -webkit-background-clip: padding-box !important;
    background-clip: padding-box !important;
    border-radius: 12px !important;
}

.admin-login__input-wrapper:focus-within .admin-login__input-icon {
    color: #e0f2fe;
}
.admin-login__input-wrapper:focus-within {
    border-color: rgba(34, 211, 238, 0.34);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.18), 0 16px 34px rgba(8, 145, 178, 0.18);
    transform: translateY(-1px);
}
.admin-login__input-wrapper:focus-within .admin-login__input-badge {
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.24), rgba(59, 130, 246, 0.16));
    border-color: rgba(34, 211, 238, 0.28);
}

.admin-login__toggle-btn {
    position: relative;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.1);
    padding: 0;
    color: rgba(148, 163, 184, 0.78);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    z-index: 4;
}
.admin-login__toggle-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 211, 238, 0.2);
}
.admin-login__toggle-icon {
    font-size: 1rem;
}
.admin-login__alert {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fca5a5;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.15);
    animation: admin-shake 0.5s ease-in-out;
    text-align: left;
}
.admin-login__alert i {
    font-size: 1.1rem;
    color: var(--adm-accent-red);
    flex-shrink: 0;
}
@keyframes admin-shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}
.admin-login__submit-btn {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 1.02rem 1.5rem;
    font-size: 0.98rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--adm-accent-cyan), var(--adm-accent-blue));
    color: #fff;
    box-shadow: 0 12px 26px rgba(6, 182, 212, 0.28);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    margin-top: 0.35rem;
}
.admin-login__submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: none;
}
.admin-login__submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.5);
}
.admin-login__submit-btn:hover::after {
    left: 150%;
    transition: left 0.75s ease-in-out;
}
.admin-login__submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}
.admin-login__submit-btn i {
    font-size: 1.25rem;
    transition: transform 0.25s ease;
}
.admin-login__submit-btn:hover i {
    transform: translateX(4px);
}

.admin-login__footer-mobile {
    display: none;
}

/* Responsive Overrides */
@media (max-width: 880px) {
    .admin-login__card {
        grid-template-columns: 1fr;
        width: min(100%, 460px);
        min-height: auto;
    }
    .admin-login__hero {
        display: none;
    }
    .admin-login__form-panel {
        padding: 2.2rem 1.8rem 2rem;
    }
    .admin-login__footer-mobile {
        display: flex;
        justify-content: center;
        margin-top: 1.8rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 1.4rem;
    }
    .admin-login__back-link {
        color: var(--adm-text-muted);
        font-size: 0.88rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        transition: all 0.25s ease;
    }
    .admin-login__back-link i {
        font-size: 1.25rem;
        transition: transform 0.2s ease;
    }
    .admin-login__back-link:hover {
        color: #fff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
    }
    .admin-login__back-link:hover i {
        transform: translateX(-3px);
    }
}\n\n/* Core Admin Structure */
.admin-body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--adm-bg-gradient);
    color: var(--adm-text-main);
}
.admin-shell {
    display: grid;
    grid-template-columns: 290px 1fr;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Frosted Glass Sidebar Drawer */
.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 101;
    background: rgba(8, 14, 28, 0.72);
    backdrop-filter: blur(var(--adm-glass-blur));
    border-right: 1px solid var(--adm-glass-border);
    color: #fff;
    padding: 1.2rem 0.9rem 0.8rem;
    display: flex;
    flex-direction: column;
}
.admin-sidebar__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.admin-sidebar__brand .admin-sidebar__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.3rem;
    margin-top: 0;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--adm-accent-cyan);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.admin-sidebar__brand a {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}
.admin-sidebar__brand span {
    display: block;
    margin-top: 0.15rem;
    color: var(--adm-text-muted);
    font-size: 0.75rem;
}
.admin-sidebar__profile {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.8rem;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--adm-glass-border);
}
.admin-sidebar__profile img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.admin-sidebar__profile strong {
    display: block;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}
.admin-sidebar__profile span {
    display: block;
    color: var(--adm-text-muted);
    font-size: 0.7rem;
}
.admin-nav {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.8rem;
    flex-grow: 1;
}
.admin-nav__group {
    display: grid;
    gap: 0.15rem;
}
.admin-nav__group + .admin-nav__group {
    margin-top: 0.15rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--adm-glass-border);
}
.admin-nav__heading {
    padding: 0 0.4rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}
.admin-nav__link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 8px;
    padding: 0.38rem 0.65rem;
    color: var(--adm-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.admin-nav__link i {
    font-size: 0.95rem;
}
.admin-nav__link:hover,
.admin-nav__link.is-active {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.12) 0%, rgba(99, 102, 241, 0.04) 100%);
    color: #fff;
    transform: translateX(4px) scale(1.02);
    box-shadow: inset 0 0 0 1px rgba(6, 182, 212, 0.15);
}

.admin-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Floating Glass Topbar */
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    margin: 1.5rem 1.5rem 0;
    padding: 1.2rem 1.7rem;
    background: rgba(13, 23, 47, 0.45);
    border: 1px solid var(--adm-glass-border);
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 1.2rem;
    z-index: 100;
}
.admin-topbar__intro {
    display: grid;
    gap: 0.15rem;
}
.admin-topbar__eyebrow {
    color: var(--adm-accent-cyan);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.admin-topbar h1 {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: #fff;
}
.admin-topbar p {
    margin: 0;
    color: var(--adm-text-muted);
    font-size: 0.88rem;
}
.admin-topbar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.admin-topbar__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--adm-accent-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(6, 182, 212, 0.12);
}

.admin-profile-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--adm-glass-border);
    transition: all 0.2s ease;
}
.admin-profile-dropdown .dropdown-toggle:hover {
    background: rgba(255,255,255,0.08);
}
.admin-profile-dropdown img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.admin-profile-dropdown span {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    padding-right: 0.5rem;
}

.admin-content {
    padding: 1.5rem 1.5rem 2.5rem;
}

/* Bento Layout & Glass Panels */
.admin-grid {
    display: grid;
    gap: 1.5rem;
}
.admin-grid--stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.8rem;
}
.admin-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.5rem;
}
.admin-grid--bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.admin-grid--bento > section {
    grid-column: span 6;
}
.admin-grid--bento > section:nth-child(1) { grid-column: span 8; }
.admin-grid--bento > section:nth-child(2) { grid-column: span 4; }
.admin-grid--bento > section:nth-child(3) { grid-column: span 7; }
.admin-grid--bento > section:nth-child(4) { grid-column: span 5; }
.admin-grid--bento > section.admin-panel--full-width { grid-column: span 12; }

.admin-stat-card,
.admin-panel {
    border-radius: 24px;
    background: var(--adm-glass-bg);
    border: 1px solid var(--adm-glass-border);
    backdrop-filter: blur(var(--adm-glass-blur));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.admin-panel {
    padding: 1.6rem;
    margin-bottom: 1.5rem;
}
.admin-panel:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.admin-stat-card {
    position: relative;
    overflow: hidden;
    padding: 1.6rem;
}
.admin-stat-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.admin-stat-card span {
    display: block;
    color: var(--adm-text-muted);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.admin-stat-card strong {
    font-family: 'Outfit', sans-serif;
    display: block;
    margin-top: 0.8rem;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
}
.admin-stat-card small {
    display: block;
    margin-top: 0.8rem;
    color: var(--adm-text-muted);
    font-size: 0.86rem;
}
.admin-stat-card__icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.2rem;
}

/* Customized Ambient Glows inside Bento Panels */
.admin-stat-card--blue {
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 35%), var(--adm-glass-bg);
}
.admin-stat-card--blue:hover {
    border-color: rgba(59, 130, 246, 0.3);
}
.admin-stat-card--blue .admin-stat-card__icon {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}
.admin-stat-card--green {
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 35%), var(--adm-glass-bg);
}
.admin-stat-card--green:hover {
    border-color: rgba(16, 185, 129, 0.3);
}
.admin-stat-card--green .admin-stat-card__icon {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}
.admin-stat-card--violet {
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.12), transparent 35%), var(--adm-glass-bg);
}
.admin-stat-card--violet:hover {
    border-color: rgba(139, 92, 246, 0.3);
}
.admin-stat-card--violet .admin-stat-card__icon {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}
.admin-stat-card--slate {
    background: radial-gradient(circle at top right, rgba(148, 163, 184, 0.08), transparent 35%), var(--adm-glass-bg);
}
.admin-stat-card--slate:hover {
    border-color: rgba(148, 163, 184, 0.25);
}
.admin-stat-card--slate .admin-stat-card__icon {
    background: rgba(148, 163, 184, 0.15);
    color: #cbd5e1;
}

.admin-stat-card--spotlight {
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.22), transparent 34%),
        linear-gradient(135deg, #0d1e3d 0%, #071020 60%, #0c1527 100%);
    color: #fff;
    border-color: rgba(6, 182, 212, 0.15);
}
.admin-stat-card--spotlight:hover {
    border-color: rgba(6, 182, 212, 0.35);
}
.admin-stat-card--spotlight span,
.admin-stat-card--spotlight small {
    color: rgba(255, 255, 255, 0.7);
}
.admin-stat-card--spotlight .admin-stat-card__icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.admin-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.admin-panel__header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
}
.admin-panel__header h2 i {
    color: var(--adm-accent-cyan);
}
.admin-panel__header p {
    color: var(--adm-text-muted);
    font-size: 0.85rem;
    margin: 0.25rem 0 0 0;
}
.admin-panel__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--adm-accent-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid rgba(6, 182, 212, 0.15);
}
.admin-panel--premium {
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.08), transparent 30%),
        var(--adm-glass-bg);
}

/* Dashboard Hero */
.admin-dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    padding: 2.2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(6, 182, 212, 0.16), transparent 25%),
        linear-gradient(135deg, #09172c 0%, #080d19 60%, #0d1c33 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}
.admin-dashboard-hero__content {
    display: grid;
    gap: 1rem;
    align-content: center;
}
.admin-dashboard-hero__eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--adm-accent-cyan);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.admin-dashboard-hero h2 {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    font-size: clamp(2rem, 2.6vw, 2.65rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.admin-dashboard-hero p {
    max-width: 680px;
    margin: 0;
    color: var(--adm-text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}
.admin-dashboard-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.admin-dashboard-hero__chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 38px;
    padding: 0 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.admin-dashboard-hero__chips span i {
    color: var(--adm-accent-cyan);
}
.admin-dashboard-hero__orb {
    position: relative;
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 220px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}
.admin-dashboard-hero__ring {
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    border: 1px dashed rgba(255,255,255,0.08);
}
.admin-dashboard-hero__orb strong {
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 1;
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}
.admin-dashboard-hero__orb span {
    position: relative;
    z-index: 1;
    color: var(--adm-text-muted);
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Fulfillment Stages */
.admin-stage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.admin-stage-card {
    position: relative;
    overflow: hidden;
    padding: 1.15rem 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}
.admin-stage-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}
.admin-stage-card span {
    display: block;
    color: var(--adm-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.admin-stage-card strong {
    font-family: 'Outfit', sans-serif;
    display: block;
    margin-top: 0.4rem;
    color: #fff;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.admin-stage-card small {
    display: block;
    margin-top: 0.35rem;
    color: var(--adm-text-muted);
    font-size: 0.8rem;
}
.admin-stage-card.is-pending {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.04) 0%, rgba(255,255,255,0.01) 100%);
    border-color: rgba(245, 158, 11, 0.12);
}
.admin-stage-card.is-packaging {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.04) 0%, rgba(255,255,255,0.01) 100%);
    border-color: rgba(59, 130, 246, 0.12);
}
.admin-stage-card.is-shipped {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.04) 0%, rgba(255,255,255,0.01) 100%);
    border-color: rgba(16, 185, 129, 0.12);
}
.admin-stage-card.is-delivered {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.04) 0%, rgba(255,255,255,0.01) 100%);
    border-color: rgba(99, 102, 241, 0.12);
}

.admin-metric-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}
.admin-metric-strip > div {
    padding: 0.9rem 1.15rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--adm-glass-border);
}
.admin-metric-strip span {
    display: block;
    color: var(--adm-text-muted);
    font-size: 0.76rem;
    font-weight: 700;
}
.admin-metric-strip strong {
    font-family: 'Outfit', sans-serif;
    display: block;
    margin-top: 0.35rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
}

.admin-health-list,
.admin-recent-orders {
    display: grid;
    gap: 0.85rem;
}
.admin-health-item,
.admin-recent-order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.15rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--adm-glass-border);
    transition: all 0.2s ease;
}
.admin-health-item:hover,
.admin-recent-order:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}
.admin-health-item span,
.admin-recent-order span {
    display: block;
    color: var(--adm-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}
.admin-health-item strong {
    font-family: 'Outfit', sans-serif;
    display: block;
    margin-top: 0.25rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
}
.admin-health-item b {
    color: var(--adm-accent-cyan);
    font-size: 0.82rem;
    font-weight: 700;
}
.admin-recent-order strong {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}
.admin-recent-order b {
    font-size: 0.82rem;
}

/* Action Grid (Bento Panels) */
.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.admin-action-card {
    display: grid;
    gap: 0.5rem;
    padding: 1.15rem;
    border-radius: 18px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #fff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.admin-action-card i {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.08);
    color: var(--adm-accent-cyan);
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    transition: all 0.3s ease;
}
.admin-action-card strong {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
}
.admin-action-card span {
    color: var(--adm-text-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}
.admin-action-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
    color: #fff;
}
.admin-action-card:hover i {
    background: var(--adm-accent-cyan);
    color: #fff;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

/* Status Badges */
.admin-inline-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 32px;
    padding: 0 0.8rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.admin-inline-status--pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--adm-accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.admin-inline-status--packaging {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}
.admin-inline-status--shipped {
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.admin-inline-status--delivered {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.admin-inline-status--cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: var(--adm-accent-red);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Buttons */
.admin-primary-button,
.admin-ghost-button,
.admin-dark-button,
.admin-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 42px;
    padding: 0 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.admin-primary-button {
    border: none;
    background: linear-gradient(135deg, var(--adm-accent-cyan), var(--adm-accent-blue));
    color: #fff;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
}
.admin-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.35);
}
.admin-ghost-button {
    border: 1px solid var(--adm-glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--adm-text-main);
}
.admin-ghost-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--adm-text-main);
}
.admin-form-field.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.9rem 0.85rem;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.admin-form-field.form-floating > .form-control:focus,
.admin-form-field.form-floating > .form-control:not(:placeholder-shown),
.admin-form-field.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.admin-form-field.form-floating > .form-control:focus ~ label,
.admin-form-field.form-floating > .form-control:not(:placeholder-shown) ~ label,
.admin-form-field.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.8) translateY(-0.6rem) translateX(0.1rem);
}
.admin-form-field.form-floating > .form-control:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}
.admin-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.admin-form-field span,
.admin-checklist h3 {
    color: #475569;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}
.admin-form-field input,
.admin-form-field select,
.admin-form-field textarea {
    width: 100%;
    border: 1px solid #d9e3f0;
    border-radius: 14px;
    padding: 0.85rem 0.95rem;
    background: #fbfcff;
    color: #12203a;
}
.admin-form-field--full {
    grid-column: 1 / -1;
}
.checklist-system {
:root {
    --ds-bg-color: #F8F9FA;
    --ds-accent-cyan: #00E5FF;
    --ds-accent-emerald: #00C853;
    --ds-text-main: #1A1C1E;
    --ds-text-muted: #6C757D;
    --ds-glass-bg: rgba(255, 255, 255, 0.7);
    --ds-glass-border: rgba(255, 255, 255, 0.4);
    --ds-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --ds-shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.06);
    --ds-radius-lg: 24px;
    --ds-radius-md: 16px;
}
.premium-dashboard-shell {
    background-color: var(--ds-bg-color);
    min-height: 100vh;
}
.glass-sidebar {
    background: var(--ds-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ds-glass-border);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-medium);
    padding: 2.5rem;
}
.avatar-accent-ring {
    padding: 5px;
    background: linear-gradient(135deg, var(--ds-accent-emerald), var(--ds-accent-cyan));
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2);
}
.wallet-gradient-card {
    background: linear-gradient(135deg, var(--ds-accent-emerald), var(--ds-accent-cyan));
    border-radius: var(--ds-radius-md);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 200, 83, 0.3);
    border: none;
}
.wallet-gradient-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}
/* 1. The Floating Card (Bento Style) */
.premium-card {
    background: #ffffff;
    border: none !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
/* 2. Glassmorphism Wallet Accent */
.wallet-highlight {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1), rgba(13, 202, 240, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 202, 240, 0.2);
    color: #087990;
    font-weight: 600;
}
/* 3. Refined Typography */
.text-metadata {
    font-weight: 300;
    font-size: 0.85rem;
    color: #6c757d;
    letter-spacing: 0.01em;
}
/* 4. Action Buttons */
.btn-premium {
    border-radius: 12px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    background: #ffffff;
    border: 1px solid #e9ecef;
    color: #212529;
    transition: all 0.2s ease;
}
.btn-premium:hover {
    background: #0dcaf0;
    color: #fff;
    border-color: #0dcaf0;
}
.stat-card-minimal {
    background: #fff;
    border-radius: var(--ds-radius-md);
    box-shadow: var(--ds-shadow-soft);
    border: none;
    transition: transform 0.3s ease;
    padding: 2rem;
}
.stat-card-minimal:hover {
    transform: translateY(-5px);
}
.floating-list-card {
    background: #fff;
    border-radius: var(--ds-radius-md);
    box-shadow: var(--ds-shadow-soft);
    border: none;
    padding: 2.5rem;
}
.btn-glass-action {
    background: rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    color: var(--ds-accent-cyan);
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-glass-action:hover {
    background: rgba(0, 229, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.15);
    color: var(--ds-accent-cyan);
}
}
.admin-checklist {
    display: grid;
    gap: 0.6rem;
    align-content: start;
    max-height: 360px;
    overflow: auto;
    padding-right: 0.35rem;
}
.admin-check-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #334155;
}
.admin-image-preview img {
    width: 110px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #dbe3ee;
    box-shadow: 0 10px 24px rgba(15, 39, 79, 0.08);
}
.admin-image-preview--square img {
    width: 120px;
    height: 120px;
}
.admin-image-preview--wide img,
.admin-slide-thumb {
    width: 140px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid #dbe3ee;
    box-shadow: 0 10px 24px rgba(15, 39, 79, 0.08);
}
.simditor {
    border: 1px solid #d9e3f0;
    border-radius: 14px;
    overflow: hidden;
}
.simditor .simditor-toolbar {
    background: #f8fbff;
    border-bottom: 1px solid #d9e3f0;
}
.simditor .simditor-body {
    min-height: 260px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #12203a;
}
.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
}
.admin-variant-mode {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.admin-variant-choice {
    position: relative;
}
.admin-variant-choice input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.admin-variant-choice span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.7rem 0.95rem;
    border: 1px solid #d9e3f0;
    border-radius: 999px;
    background: #f8fbff;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 700;
}
.admin-variant-choice input:checked + span {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
}
.product-premium-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.5rem;
    align-items: start;
}
.product-premium-main {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem;
}
.product-premium-gallery,
.product-premium-content,
.product-vendor-premium-card,
.product-content-section,
.premium-review-summary-card,
.premium-review-card,
.premium-review-empty-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}
.product-premium-gallery,
.product-premium-content {
    padding: 1.25rem;
}
.premium-gallery-frame {
    border-radius: 24px;
    background:transparent;
    border: 1px solid #dce6fb;
}
.premium-discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    color: #be123c;
    border: 1px solid rgba(225, 29, 72, 0.18);
    box-shadow: 0 10px 22px rgba(225, 29, 72, 0.16);
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.vendor-mini-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.vendor-mini-bar__identity {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.vendor-mini-bar__identity img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid #dbe4f1;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}
.vendor-mini-bar__label {
    color: #0f766e;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.vendor-mini-bar__name {
    color: #111827;
    font-size: 1rem;
    font-weight: 800;
}
.product-premium-title {
    color: #0f172a;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 900;
    margin-bottom: 0.9rem;
}
.product-premium-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.product-premium-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 0.45rem 0.8rem;
    font-size: 0.84rem;
    font-weight: 700;
}
.premium-rating-row {
    margin-bottom: 1rem;
}
.premium-rating-score {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
}
.product-premium-price-row {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.product-premium-price-main {
    color: #0f172a;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.product-premium-price-stack {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-bottom: 0.3rem;
}
.product-premium-price-old {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 700;
}
.product-premium-price-save {
    color: #059669;
    font-size: 0.9rem;
    font-weight: 800;
}
.product-premium-short-copy {
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}
.product-premium-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.4rem;
}
.product-premium-trust-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: #f8fbff;
    border: 1px solid #e0eaf9;
}
.product-premium-trust-item i,
.product-premium-trust-item svg {
    width: 20px;
    height: 20px;
    color: #0f766e;
    flex: 0 0 auto;
    margin-top: 0.1rem;
}
.product-premium-trust-item strong,
.product-premium-trust-item span {
    display: block;
}
.product-premium-trust-item strong {
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 800;
}
.product-premium-trust-item span {
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-top: 0.2rem;
}
.premium-option-block {
    margin-bottom: 1.1rem;
}
.product-conversion-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: center;
    margin-top: 1.3rem;
}
.premium-qty-box {
    height: 56px;
    border-radius: 18px;
    border-color: #d8e3f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.product-add-cart-pill--premium {
    min-height: 56px;
    border-radius: 18px;
    border: none;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
}
.product-add-cart-pill--premium:hover,
.product-add-cart-pill--premium:focus {
    background: linear-gradient(135deg, #111827, #0f172a);
    color: #fff;
}
.product-urgency-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.4rem;
}
.product-urgency-card {
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #fcfdff 0%, #f5f9ff 100%);
    border: 1px solid #e3ebf8;
}
.product-urgency-card span,
.product-urgency-card strong {
    display: block;
}
.product-urgency-card span {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 800;
    margin-bottom: 0.35rem;
}
.product-urgency-card strong {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
}
.product-premium-vendor-sidebar {
    position: sticky;
    top: 100px;
}
.product-vendor-premium-card {
    padding: 1.35rem;
}
.product-vendor-premium-card__top {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1rem;
}
.product-vendor-premium-card__top img {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid #dbe4f1;
}
.product-vendor-premium-card__eyebrow {
    color: #0f766e;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.product-vendor-premium-card__top h3 {
    margin: 0;
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 900;
}
.product-vendor-premium-card__top p {
    margin: 0.2rem 0 0;
    color: #64748b;
    font-size: 0.9rem;
}
.product-vendor-premium-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.product-vendor-premium-badges span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.42rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.8rem;
    font-weight: 700;
}
.product-vendor-premium-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.product-vendor-premium-metrics div {
    padding: 0.9rem 0.8rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #fcfdff 0%, #f5f9ff 100%);
    border: 1px solid #e2e8f0;
    text-align: center;
}
.product-vendor-premium-metrics span,
.product-vendor-premium-metrics strong {
    display: block;
}
.product-vendor-premium-metrics span {
    color: #64748b;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 800;
    margin-bottom: 0.4rem;
}
.product-vendor-premium-metrics strong {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 900;
}
.product-vendor-premium-contact {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1rem;
}
.product-vendor-premium-contact div {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #475569;
    font-size: 0.92rem;
}
.product-vendor-premium-contact i,
.product-vendor-premium-contact svg {
    width: 18px;
    height: 18px;
    color: #0f766e;
}
.product-vendor-premium-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f766e, #0d9488);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 0.9rem 1rem;
}
.product-vendor-premium-cta:hover {
    color: #fff;
}
.product-vendor-premium-cta--ghost {
    width: auto;
    min-height: 42px;
    padding: 0.7rem 1rem;
    background: #fff;
    border: 1px solid #d7e2ef;
    color: #0f172a;
}
.product-content-sections {
    display: grid;
    gap: 1.4rem;
    margin-top: 1.5rem;
}
.product-content-section {
    padding: 1.4rem;
}
.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1rem;
}
.section-kicker {
    display: inline-block;
    color: #0f766e;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}
.section-heading-premium {
    color: #0f172a;
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
}
.premium-description-copy {
    color: #334155;
    font-size: 1rem;
    line-height: 1.9;
}
.seller-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}
.seller-snapshot-card {
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #fcfdff 0%, #f5f9ff 100%);
    border: 1px solid #e2e8f0;
}
.seller-snapshot-card span,
.seller-snapshot-card strong {
    display: block;
}
.seller-snapshot-card span {
    color: #64748b;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 800;
    margin-bottom: 0.35rem;
}
.seller-snapshot-card strong {
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 800;
}
.premium-review-summary-card {
    padding: 1.4rem;
}
.premium-review-card {
    padding: 1.2rem 1.25rem;
    margin-bottom: 1rem;
}
.premium-review-empty-card {
    padding: 2.8rem 1.5rem;
    text-align: center;
}
.premium-review-empty-card i,
.premium-review-empty-card svg {
    width: 46px;
    height: 46px;
    color: #0f766e;
    margin-bottom: 0.9rem;
}
.premium-review-empty-card h3 {
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.premium-review-empty-card p {
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}
.vendor-storefront-page {
    background: #f6f8fc;
}
.vendor-cover-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 32px;
    background: linear-gradient(135deg, #0f172a 0%, #172554 52%, #0f766e 100%);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}
.vendor-cover-backdrop,
.vendor-cover-pattern {
    position: absolute;
    inset: 0;
}
.vendor-cover-backdrop {
    background: radial-gradient(circle at 80% 20%, rgba(15, 118, 110, 0.15) 0%, transparent 50%);
}
.vendor-cover-pattern {
    opacity: 0.15;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}
.vendor-cover-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    gap: 1.4rem;
    min-height: 320px;
    padding: 2rem;
}
.vendor-profile-badge {
    flex: 0 0 auto;
    width: 132px;
    height: 132px;
    padding: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.24);
}
.vendor-profile-badge img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}
.vendor-cover-copy {
    color: #fff;
}
.vendor-cover-eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}
.vendor-cover-copy h1 {
    margin: 0;
    font-size: clamp(2rem, 2.2vw, 2.5rem);
    line-height: 1.02;
    letter-spacing: 0.025em;
    font-weight: 700;
}
.vendor-cover-owner {
    margin: 0.55rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
}
.vendor-cover-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}
.vendor-cover-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
}
.vendor-storefront-body {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.vendor-storefront-sidebar {
    position: sticky;
    top: 120px;
}
.vendor-storefront-card,
.vendor-empty-state {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}
.vendor-storefront-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
}
.vendor-storefront-card h2,
.vendor-storefront-toolbar h2 {
    margin: 0 0 1rem;
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
}
.vendor-storefront-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.vendor-storefront-stat-grid div {
    padding: 0.9rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #fcfdff 0%, #f5f9ff 100%);
    border: 1px solid #e2e8f0;
}
.vendor-storefront-stat-grid span,
.vendor-storefront-stat-grid strong {
    display: block;
}
.vendor-storefront-stat-grid span {
    color: #64748b;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 800;
    margin-bottom: 0.35rem;
}
.vendor-storefront-stat-grid strong {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
}
.vendor-storefront-stat-grid--premium {
    grid-template-columns: 1fr;
    align-items: stretch;
}
.vendor-stat-card {
    position: relative;
    overflow: hidden;
    min-height: 0;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1rem 0.85rem 1.15rem !important;
    border: 1px solid var(--adm-glass-border) !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 var(--adm-glass-highlight) !important;
    backdrop-filter: blur(var(--adm-glass-blur)) !important;
}
.vendor-stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-radius: 999px;
}
.vendor-stat-card span {
    margin-bottom: 0 !important;
    color: var(--adm-text-muted) !important;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 800;
}
.vendor-stat-card strong {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: right;
    color: var(--adm-text-main) !important;
}
.vendor-stat-card small {
    display: block;
    color: var(--adm-text-muted) !important;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
}
.vendor-stat-card--products {
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 35%), var(--adm-glass-bg) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
}
.vendor-stat-card--products::before {
    background: linear-gradient(180deg, #10b981, #34d399);
}
.vendor-stat-card--status {
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.12), transparent 35%), var(--adm-glass-bg) !important;
    border-color: rgba(79, 70, 229, 0.2) !important;
}
.vendor-stat-card--status::before {
    background: linear-gradient(180deg, #4f46e5, #818cf8);
}
.vendor-stat-card--rating {
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 35%), var(--adm-glass-bg) !important;
    border-color: rgba(245, 158, 11, 0.28) !important;
}
.vendor-stat-card--rating::before {
    background: linear-gradient(180deg, #f59e0b, #fbbf24);
}
.vendor-storefront-contact {
    display: grid;
    gap: 0.7rem;
}
.vendor-storefront-contact div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #475569;
    font-size: 0.92rem;
}
.vendor-storefront-contact i,
.vendor-storefront-contact svg {
    width: 18px;
    height: 18px;
    color: #0f766e;
}
.vendor-storefront-contact--premium {
    gap: 0.8rem;
}
.vendor-contact-chip {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}
.vendor-contact-chip span {
    color: #475569;
    font-weight: 700;
    line-height: 1.45;
    word-break: break-word;
}
.vendor-featured-mini-list {
    display: grid;
    gap: 0.8rem;
}
.vendor-featured-mini-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem;
    border-radius: 18px;
    transition: background 0.2s ease;
}
.vendor-featured-mini-item:hover {
    background: #f8fbff;
}
.vendor-featured-mini-item img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid #dbe4f1;
}
.vendor-featured-mini-item strong,
.vendor-featured-mini-item span {
    display: block;
}
.vendor-featured-mini-item strong {
    color: #0f172a;
    font-size: 0.9rem;
    line-height: 1.45;
}
.vendor-featured-mini-item span {
    color: #0f766e;
    font-size: 0.84rem;
    font-weight: 800;
    margin-top: 0.2rem;
}
.vendor-storefront-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.1rem;
}
.vendor-storefront-kicker {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: #0f766e;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.vendor-storefront-toolbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 800;
}
.vendor-storefront-toolbar-btn:hover {
    color: #fff;
}
.vendor-star-input-wrap {
    display: inline-flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #f4f8fb);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 18px 40px rgba(15, 23, 42, 0.06);
}
.vendor-star-input {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}
.vendor-star-button {
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 18px;
    background: #f8fafc;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.vendor-star-button i {
    font-size: 1.25rem;
}
.vendor-star-button:hover,
.vendor-star-button.is-active {
    background: linear-gradient(145deg, #fff7d6, #ffe58f);
    color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.18);
}
.vendor-star-button:focus-visible {
    outline: 2px solid #0f766e;
    outline-offset: 3px;
}
.vendor-star-input-text {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.vendor-empty-state {
    padding: 2.6rem 1.5rem;
    text-align: center;
}
.vendor-empty-state h3 {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.vendor-empty-state p {
    color: #64748b;
    margin: 0;
}
@media (max-width: 991.98px) {
    .product-premium-main,
    .product-premium-trust-row,
    .seller-snapshot-grid {
    }
    .product-vendor-premium-metrics,
    .product-urgency-grid {
    }
    .vendor-cover-content {
    }
}
@media (max-width: 767.98px) {
    .product-premium-gallery,
    .product-premium-content,
    .product-vendor-premium-card,
    .product-content-section,
    .premium-review-summary-card,
    .premium-review-card,
    .premium-review-empty-card {
    }
    .product-premium-gallery,
    .product-premium-content,
    .product-vendor-premium-card,
    .product-content-section {
    }
    .product-conversion-panel {
    }
    .product-vendor-premium-metrics,
    .product-urgency-grid {
    }
    .product-premium-title {
    }
    .product-premium-price-main {
    }
    .vendor-cover-card,
    .vendor-cover-content {
    }
    .vendor-profile-badge {
    }
    .vendor-storefront-stat-grid {
    }
    .vendor-storefront-toolbar {
    }
}
@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }
    .admin-grid--stats,
    .admin-grid--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-grid--stats-wide,
    .admin-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-page-hero {
        align-items: start;
    }
    .admin-dashboard-hero,
    .admin-action-grid,
    .admin-stage-grid,
    .admin-metric-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        position: relative;
        height: auto;
    }
    .admin-topbar {
        top: 0.75rem;
    }
}
/* Premium Bento Featured Products Grid */
.bento-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.bento-card-large {
    grid-column: span 2;
    grid-row: span 2;
}
.premium-product-card {
    background: #ffffff !important;
    border-radius: 24px !important;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 48px rgba(0,0,0,0.06) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none !important;
}
.premium-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.premium-product-card .image-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f9f9f9;
}
.bento-card-large .image-wrapper {
    aspect-ratio: auto;
    flex-grow: 1;
}
.premium-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); /* Slower zoom */
}
.premium-product-card:hover img {
    transform: scale(1.15); /* Stronger Zoom */
}
/* Actions Overlay (No Blur) */
.card-actions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Consistent 0.1 opacity overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}
.premium-product-card:hover .card-actions-overlay,
.product-card:hover .card-actions-overlay {
    opacity: 1;
}
.action-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}
.action-btn i,
.action-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.9;
}
.action-btn:hover {
    background: var(--brand-cyan);
    color: white;
    transform: scale(1.1);
}
.premium-card-body {
    padding: 1.5rem;
}
.premium-p-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8rem;
    line-height: 1.4;
}
.premium-p-price {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--brand-cyan);
    text-shadow: 0 0 15px rgba(0, 67, 97, 0.2);
}
@media (max-width: 991px) {
    .bento-product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 1rem !important;
    }
    .bento-card-large {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
    }
}
@media (max-width: 575px) {
    .bento-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    .bento-card-large {
        grid-column: span 2 !important;
    }
    .premium-p-name {
        font-size: 0.95rem;
        height: 2.6rem;
    }
    .premium-card-body {
        padding: 0.75rem;
    }
}
.premium-card-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: transparent;
    border-radius: inherit;
}
.trading-product-card [data-card-action="true"],
.trading-product-card .trading-card-qty,
.trading-product-card .trading-card-qty-btn,
.trading-product-card .trading-card-order-btn {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}
.trading-product-card .wishlist-trigger {
    position: absolute;
    z-index: 5;
    pointer-events: auto;
}
.premium-card-link-overlay:focus-visible {
    outline: 2px solid var(--brand-cyan);
    outline-offset: -2px;
}
.premium-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #be123c;
    border: 1px solid rgba(225, 29, 72, 0.18);
    box-shadow: 0 12px 24px rgba(225, 29, 72, 0.18);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 8px;
    z-index: 10;
    pointer-events: none;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content; /* Ensure it doesn't stretch */
    border: 1px solid rgba(255, 255, 255, 0.8); /* Ultra-thin distinct border */
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15); /* Large-spread lift shadow */
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); /* Essential for white on white glass */
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-product-card:hover .premium-discount-badge,
.product-card:hover .premium-discount-badge {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
}
/* Swiper Custom Navigation */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a1a1a;
    z-index: 10;
}
.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--brand-cyan);
    border-color: var(--brand-cyan);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 67, 97, 0.2);
}
.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* --- ASYMMETRIC EDITORIAL PDP --- */
.pdp-editorial-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}
.pdp-editorial-gallery {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.pdp-editorial-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 64px;
    flex-shrink: 0;
}
.pdp-editorial-thumb-btn {
    width: 64px;
    height: 64px;
    padding: 0;
    border: 1px solid #f1f3f5;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
}
.pdp-editorial-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pdp-editorial-thumb-btn.is-active {
    border-color: var(--brand-cyan);
    box-shadow: 0 4px 12px rgba(0, 67, 97, 0.15);
}

@media (max-width: 1199.98px) {
    .pdp-editorial-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 991.98px) {
    .pdp-editorial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pdp-editorial-gallery {
        flex-direction: column-reverse;
    }
    .pdp-editorial-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .pdp-editorial-thumb-btn {
        flex-shrink: 0;
    }
}

.pdp-editorial-main-img-wrap {
    flex-grow: 1;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03), 0 2px 10px rgba(0, 0, 0, 0.01);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pdp-editorial-main-img-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.pdp-editorial-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.pdp-editorial-main-img-wrap:hover .pdp-editorial-main-img {
    transform: scale(1.03);
}
/* Editorial Typography */
.storefront-body .pdp-editorial-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #1d2939;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 767.98px) {
    .storefront-body .pdp-editorial-title {
        font-size: 1.45rem !important;
    }
}
.pdp-section-title {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #86868b;
    margin-bottom: 24px;
    display: block;
}
.pdp-editorial-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.pdp-price-amount {
    color: var(--brand-cyan);
    font-weight: 700;
}
.pdp-price-original {
    font-size: 1.15rem;
    color: #98a2b3;
    text-decoration: line-through;
    font-weight: 400;
}
.premium-badge-brand {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0, 67, 97, 0.08);
    color: var(--brand-cyan);
    padding: 6px 14px;
    border-radius: 20px;
}
.premium-badge-sku {
    font-size: 11px;
    font-weight: 500;
    background: #f2f4f7;
    color: #344054;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: monospace;
}
/* Premium Glassmorphism Bento Sidebar */
.pdp-sidebar-bento {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: sticky;
    top: 100px;
}
.pdp-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.pdp-sidebar-vendor-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 4px;
    background: #fff;
    object-fit: contain;
}
.ghost-btn-cyan-minimal {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border: 1px solid rgba(0, 67, 97, 0.3);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.ghost-btn-cyan-minimal:hover {
    background: var(--brand-cyan);
    color: #fff;
    border-color: var(--brand-cyan);
    box-shadow: 0 4px 12px rgba(0, 67, 97, 0.2);
}
.pdp-sidebar-trust-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-technical-pair {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 300;
    color: #718096;
}
.trust-technical-pair strong {
    font-weight: 500;
    color: #1a1a1a;
}
.pdp-sidebar-services {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.service-grid-item {
    display: flex;
    gap: 12px;
    align-items: center;
}
.service-grid-item i {
    width: 18px;
    height: 18px;
    color: #adb5bd;
    stroke-width: 1.5;
}
.service-grid-item .title {
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
    display: block;
}
.service-grid-item .subtext {
    font-size: 11px;
    font-weight: 300;
    color: #718096;
    display: block;
}
/* Low-Profile Vendor Card */
.vendor-low-profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid #f1f3f5;
}
.vendor-low-profile-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.vendor-low-profile-identity img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #f1f3f5;
}
.vendor-low-profile-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}
.vendor-low-profile-label {
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    color: #adb5bd;
    letter-spacing: 0.05em;
}
/* Conversion Pill */
.pdp-editorial-cta {
    height: 52px;
    background: linear-gradient(135deg, #01979a 0%, #004361 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 26px;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(0, 67, 97, 0.2);
    transition: all 0.3s ease;
}
.pdp-editorial-cta:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 67, 97, 0.3);
}
/* Swiper Shadow Fix */
.similarProductsSwiper {
    padding: 20px 0 !important;
    margin: -20px 0 !important;
    /* Removed overflow:visible and negative horizontal margins to prevent page overflow */
}
.similarProductsSwiper .swiper-wrapper {
    z-index: 1;
}
/* --- 60BYTE SHOP PREMIUM DASHBOARD SYSTEM --- */
:root {
    --ds-bg-color: #F8F9FA;
    --ds-accent-cyan: #00E5FF;
    --ds-accent-emerald: #00C853;
    --ds-text-main: #1A1C1E;
    --ds-text-muted: #6C757D;
    --ds-glass-bg: rgba(255, 255, 255, 0.7);
    --ds-glass-border: rgba(255, 255, 255, 0.4);
    --ds-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --ds-shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.06);
    --ds-radius-lg: 24px;
    --ds-radius-md: 16px;
}
.premium-dashboard-shell {
    background-color: var(--ds-bg-color);
    min-height: 100vh;
}
.glass-sidebar {
    background: var(--ds-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ds-glass-border);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-medium);
    padding: 2.5rem;
}
.avatar-accent-ring {
    padding: 5px;
    background: linear-gradient(135deg, var(--ds-accent-emerald), var(--ds-accent-cyan));
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2);
}
.wallet-gradient-card {
    background: linear-gradient(135deg, var(--ds-accent-emerald), var(--ds-accent-cyan));
    border-radius: var(--ds-radius-md);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 200, 83, 0.3);
    border: none;
}
.wallet-gradient-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}
/* 1. The Floating Card (Bento Style) */
.premium-card {
    background: #ffffff;
    border: none !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
/* 2. Glassmorphism Wallet Accent */
.wallet-highlight {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1), rgba(13, 202, 240, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 202, 240, 0.2);
    color: #087990;
    font-weight: 600;
}
/* 3. Refined Typography */
.text-metadata {
    font-weight: 300;
    font-size: 0.85rem;
    color: #6c757d;
    letter-spacing: 0.01em;
}
/* 4. Action Buttons */
.btn-premium {
    border-radius: 12px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    background: #ffffff;
    border: 1px solid #e9ecef;
    color: #212529;
    transition: all 0.2s ease;
}
.btn-premium:hover {
    background: #0dcaf0;
    color: #fff;
    border-color: #0dcaf0;
}
.stat-card-minimal {
    background: #fff;
    border-radius: var(--ds-radius-md);
    box-shadow: var(--ds-shadow-soft);
    border: none;
    transition: transform 0.3s ease;
    padding: 2rem;
}
.stat-card-minimal:hover {
    transform: translateY(-5px);
}
.floating-list-card {
    background: #fff;
    border-radius: var(--ds-radius-md);
    box-shadow: var(--ds-shadow-soft);
    border: none;
    padding: 2.5rem;
}
.btn-glass-action {
    background: rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    color: var(--ds-accent-cyan);
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-glass-action:hover {
    background: rgba(0, 229, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.15);
    color: var(--ds-accent-cyan);
}
/* Timeline/Order Styles */
.order-timeline {
    position: relative;
    padding-left: 40px;
}
.order-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #f1f3f5;
}
.timeline-item {
    position: relative;
    margin-bottom: 32px;
}
.timeline-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ds-accent-cyan);
    border: 3px solid #fff;
    z-index: 2;
}

/* --- 60BYTE SHOP PREMIUM DASHBOARD SYSTEM --- */
:root {
    --ds-bg-color: #F8F9FA;
    --ds-accent-cyan: #00E5FF;
    --ds-accent-emerald: #00C853;
    --ds-text-main: #1A1C1E;
    --ds-text-muted: #6C757D;
    --ds-glass-bg: rgba(255, 255, 255, 0.7);
    --ds-glass-border: rgba(255, 255, 255, 0.4);
    --ds-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --ds-shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.06);
    --ds-radius-lg: 24px;
    --ds-radius-md: 16px;
}

.premium-dashboard-shell {
    background-color: var(--ds-bg-color);
    min-height: 100vh;
}

.glass-sidebar {
    background: var(--ds-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ds-glass-border);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-medium);
    padding: 2.5rem;
}

.avatar-accent-ring {
    padding: 5px;
    background: linear-gradient(135deg, var(--ds-accent-emerald), var(--ds-accent-cyan));
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2);
}

.wallet-gradient-card {
    background: linear-gradient(135deg, var(--ds-accent-emerald), var(--ds-accent-cyan));
    border-radius: var(--ds-radius-md);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 200, 83, 0.3);
    border: none;
}

.wallet-gradient-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.premium-card {
    background: #ffffff;
    border: none !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.wallet-highlight {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1), rgba(13, 202, 240, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 202, 240, 0.2);
    color: #087990;
    font-weight: 600;
}

.text-metadata {
    font-weight: 300;
    font-size: 0.85rem;
    color: #6c757d;
    letter-spacing: 0.01em;
}

.btn-premium {
    border-radius: 12px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    background: #ffffff;
    border: 1px solid #e9ecef;
    color: #212529;
    transition: all 0.2s ease;
}

.btn-premium:hover {
    background: #0dcaf0;
    color: #fff;
    border-color: #0dcaf0;
}

.stat-card-minimal {
    background: #fff;
    border-radius: var(--ds-radius-md);
    box-shadow: var(--ds-shadow-soft);
    border: none;
    transition: transform 0.3s ease;
    padding: 2rem;
}

.stat-card-minimal:hover {
    transform: translateY(-5px);
}

.floating-list-card {
    background: #fff;
    border-radius: var(--ds-radius-md);
    box-shadow: var(--ds-shadow-soft);
    border: none;
    padding: 2.5rem;
}

.btn-glass-action {
    background: rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    color: var(--ds-accent-cyan);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-glass-action:hover {
    background: rgba(0, 229, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.15);
    color: var(--ds-accent-cyan);
}

.order-timeline {
    position: relative;
    padding-left: 40px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #f1f3f5;
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ds-accent-cyan);
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px #f1f3f5;
    z-index: 2;
}

@media (max-width: 991.98px) { .admin-grid--bento { grid-template-columns: 1fr; } .admin-grid--bento > section, .admin-grid--bento > section:nth-child(n) { grid-column: span 12 !important; } }
@media (max-width: 767.98px) {
    .admin-content {
        padding: 1rem 0.85rem 1.35rem;
    }
    .admin-topbar {
        margin: 0.85rem 0.85rem 0;
        padding: 1rem;
        border-radius: 22px;
        flex-direction: column;
        align-items: flex-start;
    }
    .admin-topbar__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .admin-topbar__badge,
    .admin-ghost-button {
        justify-content: center;
        width: 100%;
    }
    .admin-grid--stats,
    .admin-grid--two,
    .admin-grid--stats-wide,
    .admin-filter-grid,
    .admin-dashboard-hero,
    .admin-action-grid,
    .admin-stage-grid,
    .admin-metric-strip {
        grid-template-columns: 1fr;
    }
    .admin-dashboard-hero {
        padding: 1.25rem;
        border-radius: 26px;
    }
    .admin-panel,
    .admin-stat-card {
        border-radius: 24px;
    }
    .admin-health-item,
    .admin-recent-order {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Modern Uploader */
.admin-modern-uploader {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    border: 2px dashed #e2e8f0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}
.admin-modern-uploader:hover {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.04);
}
.admin-modern-uploader img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.admin-modern-uploader input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.admin-modern-uploader i {
    font-size: 1.5rem;
    color: #94a3b8;
}
.admin-panel .admin-form-actions {
    background: transparent;
    padding: 1rem 0 0 0;
    box-shadow: none;
    justify-content: flex-end;
}

.has-password-toggle {
    position: relative;
}

input.has-password-toggle-input {
    padding-right: 3.35rem !important;
}

.password-toggle-btn {
    position: absolute;
    right: 0.95rem;
    transform: translateY(-50%);
    width: 2.15rem;
    height: 2.15rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 4;
}

.password-toggle-btn:hover {
    background: rgba(14, 165, 233, 0.14);
    color: #0f172a;
}

.password-toggle-btn:focus-visible {
    outline: 2px solid rgba(14, 165, 233, 0.35);
    outline-offset: 2px;
}

.password-toggle-btn i {
    font-size: 1rem;
    line-height: 1;
}

/* Mobile Filter Offcanvas */
@media (max-width: 991.98px) {
    .shop-sidebar {
        position: fixed;
        top: 0 !important;
        left: -320px;
        width: 320px;
        height: 100vh;
        z-index: 1055 !important;
        background: #fff;
        overflow-y: auto;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 0 30px rgba(0,0,0,0.1);
        padding: 0 !important;
        border-radius: 0 !important;
    }
    .shop-sidebar.show {
        left: 0;
    }
    .mobile-filter-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }
    .mobile-filter-overlay.show {
        opacity: 1;
        visibility: visible;
    }
}

/* Customer list admin view styles */
.admin-customer-cell {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.admin-customer-thumb {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 1.5px solid var(--adm-glass-border, rgba(255, 255, 255, 0.08));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.admin-customer-badge {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    margin-left: 0.35rem;
    letter-spacing: 0.03em;
}
.admin-customer-badge--admin {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
}
.admin-customer-badge--vendor {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

/* Premium Dark Glassmorphic Inputs, Selects, and Textareas */
.admin-body input[type="text"],
.admin-body input[type="number"],
.admin-body input[type="email"],
.admin-body input[type="password"],
.admin-body input[type="search"],
.admin-body select,
.admin-body textarea,
.admin-body .dataTables_filter input,
.admin-body .dataTables_length select {
    background: rgba(13, 22, 47, 0.4) !important;
    border: 1px solid var(--adm-glass-border) !important;
    border-radius: 12px !important;
    color: var(--adm-text-main) !important;
    padding: 0.65rem 0.95rem !important;
    font-size: 0.92rem !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.25s ease !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Specific styling for select dropdowns to ensure the dropdown arrow and options list look neat */
.admin-body select {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 1rem !important;
    padding-right: 2.25rem !important;
}

/* Ensure dropdown options have readable dark backgrounds */
.admin-body select option {
    background-color: #0d162d !important;
    color: var(--adm-text-main) !important;
}

/* Input Focus States */
.admin-body input[type="text"]:focus,
.admin-body input[type="number"]:focus,
.admin-body input[type="email"]:focus,
.admin-body input[type="password"]:focus,
.admin-body input[type="search"]:focus,
.admin-body select:focus,
.admin-body textarea:focus,
.admin-body .dataTables_filter input:focus,
.admin-body .dataTables_length select:focus {
    border-color: var(--adm-accent-cyan) !important;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.25) !important;
    background: rgba(13, 22, 47, 0.7) !important;
}

/* Form labels styling inside admin forms and filters */
.admin-body label,
.admin-body .admin-filter-field label {
    color: var(--adm-text-muted) !important;
    font-weight: 700 !important;
    font-size: 0.76rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 0.4rem !important;
    display: inline-block !important;
}

/* Admin Filter Panel Layout and buttons styling */
.admin-filter-panel {
    background: var(--adm-glass-bg) !important;
    border: 1px solid var(--adm-glass-border) !important;
    border-radius: 18px !important;
    padding: 1.25rem !important;
    margin-bottom: 1.5rem !important;
    backdrop-filter: blur(var(--adm-glass-blur)) !important;
}

.admin-filter-grid {
    display: grid;
    align-items: end;
    gap: 1.25rem;
}

.admin-filter-grid--orders {
    grid-template-columns: 1fr 1fr 1fr auto;
}

.admin-filter-grid--customers {
    grid-template-columns: 1fr 1fr auto;
}

@media (max-width: 1100px) {
    .admin-filter-grid--orders,
    .admin-filter-grid--customers {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767.98px) {
    .admin-filter-grid--orders,
    .admin-filter-grid--customers {
        grid-template-columns: 1fr !important;
    }
}

.admin-filter-field {
    display: flex;
    flex-direction: column;
}

.admin-filter-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Button Custom Styles matching modern UI */
.admin-dark-button {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--adm-glass-border) !important;
    color: var(--adm-text-main) !important;
}

.admin-dark-button:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--adm-accent-cyan) !important;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15) !important;
}

.admin-outline-button {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--adm-text-muted) !important;
}

/* Responsive Table Container & Scroll Wrappers */
.admin-table-wrap {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin-bottom: 1.5rem !important;
    border-radius: 14px !important;
}

/* Scrollbar customization for the table container */
.admin-table-wrap::-webkit-scrollbar,
.dt-layout-table::-webkit-scrollbar {
    height: 6px !important;
}
.admin-table-wrap::-webkit-scrollbar-track,
.dt-layout-table::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 999px !important;
}
.admin-table-wrap::-webkit-scrollbar-thumb,
.dt-layout-table::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12) !important;
    border-radius: 999px !important;
}
.admin-table-wrap::-webkit-scrollbar-thumb:hover,
.dt-layout-table::-webkit-scrollbar-thumb:hover {
    background: var(--adm-accent-cyan, #00E5FF) !important;
}

/* If DataTables is initialized, scroll the table row specifically so controls stay fixed */
.admin-table-wrap:has(.dt-container) {
    overflow-x: visible !important;
}
.admin-table-wrap .dt-container {
    width: 100% !important;
}
.admin-table-wrap .dt-layout-table,
.admin-table-wrap .dt-layout-row:nth-child(2) {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 0.5rem !important;
}

/* Core Table Responsiveness & Alignment */
.admin-table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 0 !important;
}
.admin-table th,
.admin-table td {
    white-space: nowrap !important;
    vertical-align: middle !important;
    padding: 0.95rem 1.25rem !important;
}
.admin-table th {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--adm-text-muted) !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    border-bottom: 1px solid var(--adm-glass-border) !important;
}
.admin-table td {
    color: var(--adm-text-main) !important;
    font-size: 0.88rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
}
.admin-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.01) !important;
}

/* DataTable controls positioning */
.dataTables_length,
.dataTables_filter {
    margin-bottom: 1rem !important;
    color: var(--adm-text-muted) !important;
}

.dataTables_filter input {
    margin-left: 0.5rem !important;
}

/* Inline link custom styling to avoid default blue/underlined links */
.admin-inline-link {
    color: var(--adm-accent-cyan) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.admin-inline-link:hover {
    color: #22d3ee !important;
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.45) !important;
}

/* Order and list filter tabs styled to match premium glassmorphic system */
.admin-order-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--adm-glass-border);
    padding-bottom: 0.75rem;
    flex-wrap: wrap;
}

.admin-order-tab {
    padding: 0.55rem 1.15rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--adm-text-muted) !important;
    text-decoration: none !important;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.admin-order-tab:hover {
    color: var(--adm-text-main) !important;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--adm-glass-border);
}

.admin-order-tab.is-active {
    color: #fff !important;
    background: rgba(6, 182, 212, 0.15) !important;
    border-color: var(--adm-accent-cyan) !important;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.15) !important;
}

/* Custom Premium Glassmorphic Modal */
.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.admin-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 22, 47, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.admin-modal__container {
    position: relative;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    background: rgba(20, 29, 58, 0.95);
    border: 1px solid var(--adm-glass-border, rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2110;
}

.admin-modal.is-open .admin-modal__container {
    transform: scale(1) translateY(0);
}

.admin-modal__header {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-modal__header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--adm-text-main, #fff);
}

.admin-modal__close {
    background: transparent;
    border: none;
    color: var(--adm-text-muted, #94a3b8);
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.admin-modal__close:hover {
    color: var(--adm-text-main, #fff);
}

.admin-modal__body {
    padding: 1.75rem;
    overflow-y: auto;
    flex: 1;
}

.admin-modal__body::-webkit-scrollbar {
    width: 6px;
}
.admin-modal__body::-webkit-scrollbar-track {
    background: transparent;
}
.admin-modal__body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
.admin-modal__body::-webkit-scrollbar-thumb:hover {
    background: var(--adm-accent-cyan, #00E5FF);
}

.admin-modal__body .admin-form-actions {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Action Row and Icon Buttons inside Admin Tables */
.admin-action-row {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--adm-text-main, #fff) !important;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    padding: 0 !important;
    box-shadow: none !important;
}

.admin-icon-button i {
    font-size: 1rem;
    line-height: 1;
}

.admin-icon-button:hover {
    background: rgba(6, 182, 212, 0.15) !important;
    border-color: var(--adm-accent-cyan, #00E5FF) !important;
    color: var(--adm-accent-cyan, #00E5FF) !important;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2) !important;
    transform: translateY(-1px);
}

.admin-icon-button--danger {
    color: #f87171 !important;
}

.admin-icon-button--danger:hover {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: #ef4444 !important;
    color: #ef4444 !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.2) !important;
}

/* --- PREMIUM ABOUT THE PRODUCT CARD --- */
.premium-about-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.product-description-content {
    font-size: 14px;
    line-height: 1.85;
    color: #344054;
    font-weight: 400;
}
.product-description-content p {
    margin-bottom: 1.25rem;
}
.product-description-content ul, 
.product-description-content ol {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}
.product-description-content li {
    margin-bottom: 0.5rem;
}

/* --- PDP EXTRA INFO & COMPACT VENDOR CARD --- */
.pdp-extra-info-wrap {
    border-color: rgba(0, 0, 0, 0.05) !important;
}
.info-metric-card {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.info-metric-label {
    font-size: 11px;
    color: #667085;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}
.info-metric-label i {
    color: var(--brand-cyan);
}
.info-metric-value {
    font-size: 13px;
    color: #1d2939;
    font-weight: 600;
}
.vendor-compact-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.vendor-compact-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    object-fit: contain;
}
.vendor-compact-title {
    font-size: 13px;
    font-weight: 600;
    color: #1d2939;
    line-height: 1.2;
}
.vendor-compact-subtitle {
    font-size: 11px;
    color: #667085;
    margin-top: 2px;
}

/* --- TRUST PILLARS CARD --- */
.pdp-trust-pillars {
    background: rgba(0, 67, 97, 0.03);
    border: 1px solid rgba(0, 67, 97, 0.1);
}
.trust-pillar-item i {
    color: var(--brand-cyan) !important;
}
.text-cyan {
    color: var(--brand-cyan) !important;
}

/* --- PREMIUM PDP ADVERTISEMENT & RECENT CARD --- */
.premium-pdp-advertisement {
    background: linear-gradient(135deg, #0b1528, #162235);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.adv-product-img {
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.premium-pdp-advertisement:hover .adv-product-img {
    transform: scale(1.1) translateY(-4px);
}
.premium-pdp-recent-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}
.premium-pdp-recent-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
.recent-product-item {
    transition: all 0.2s ease;
    border-radius: 10px;
    border: 1px solid transparent;
}
.recent-product-item:hover {
    background: rgba(0, 67, 97, 0.04);
    border-color: rgba(0, 67, 97, 0.08);
}
.recent-product-item:hover .recent-name {
    color: var(--brand-cyan) !important;
}
.animate-pulse {
    animation: pulseKeyframe 2s infinite ease-in-out;
}
@keyframes pulseKeyframe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

/* --- OVERRIDES FOR PDP SECTION HEADINGS --- */
.storefront-body .section-kicker,
.section-kicker {
    display: inline-block !important;
    color: var(--brand-cyan) !important;
    font-family: "Inter", sans-serif !important;
    font-size: 0.76rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-bottom: 0.35rem !important;
}
.storefront-body .section-heading-premium,
.section-heading-premium {
    color: #1e293b !important;
    font-family: "Poppins", "Inter", sans-serif !important;
    font-size: clamp(1.3rem, 1.8vw, 1.55rem) !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

/* --- BENGALI FONT UTILITY --- */
.is-bengali {
    font-family: "Kalpurush", "Hind Siliguri", "Noto Serif Bengali", serif !important;
}


