/* customer.css — Premium Commercial Storefront Styling */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand palette — clean, clinical, premium fuchsia-cyan */
    --brand-primary: #ff007f;
    --brand-secondary: #00f2fe;
    --brand-accent: #00f2fe;
    --brand-grad: linear-gradient(135deg, #ff007f 0%, #00f2fe 100%);
    --brand-grad-green: linear-gradient(135deg, #10b981 0%, #059669 100%);

    /* Dark biotech space surface */
    --bg-page: #0b0f19;
    --bg-card: rgba(17, 24, 39, 0.75);
    --bg-card-alt: rgba(15, 23, 42, 0.5);
    --bg-nav: rgba(10, 15, 26, 0.85);

    /* Text */
    --text-dark: #f3f4f6;
    --text-body: #9ca3af;
    --text-muted: #6b7280;
    --text-light: #4b5563;

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-focus: #ff007f;

    /* Status */
    --green: #10b981;
    --red: #f43f5e;
    --amber: #f59e0b;
    --indigo: #ff007f;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.5);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.6);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.7);
    --shadow-glow: 0 0 15px rgba(255, 0, 127, 0.25);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-page);
    background-image: 
        radial-gradient(at 10% 10%, rgba(255, 0, 127, 0.12) 0px, transparent 50%),
        radial-gradient(at 90% 10%, rgba(0, 242, 254, 0.1) 0px, transparent 50%),
        radial-gradient(at 50% 90%, rgba(255, 0, 127, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-body);
    font-family: var(--font-body);
    min-height: 100vh;
}

/* ─── NAV ─────────────────────────────────────────── */
.store-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-nav);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 2.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--brand-grad);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

.nav-brand-text h1 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.nav-brand-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--brand-grad);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(99,102,241,0.25);
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99,102,241,0.35);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    transition: var(--transition);
}

.cart-count.hidden { display: none; }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #070a13 0%, #110e2b 50%, #060e1c 100%);
    color: white;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    min-height: 520px; /* Force a taller container so contained images scale up significantly */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99,102,241,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(16,185,129,0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg-left {
    position: absolute;
    left: 0;
    top: -10%;
    width: 450px; /* Increased to allow wider proportional scaling */
    height: 120%;
    background-image: url('hero-left.png');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    mix-blend-mode: screen; /* Blends out pure black backgrounds completely */
    filter: brightness(0.65); /* Controls neon intensity without making a grey outline */
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
}

.hero-bg-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 450px; /* Increased to allow wider proportional scaling */
    height: 100%;
    background-image: url('hero-right.jpg');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    mix-blend-mode: screen; /* Blends out pure black backgrounds completely */
    filter: brightness(0.65); /* Controls neon intensity without making a grey outline */
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
}

.hero-content {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.3);
    color: #a5b4fc;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero h2 span {
    background: linear-gradient(90deg, #818cf8, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--brand-grad);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(99,102,241,0.35);
    transition: var(--transition);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99,102,241,0.45);
}

/* ─── MAIN CONTENT ─────────────────────────────────── */
.store-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
}

/* ─── CATALOG FILTERS ─────────────────────────────── */
.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.catalog-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
}

.catalog-title span {
    color: var(--brand-primary);
}

.catalog-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-pill:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.filter-pill.active {
    background: var(--brand-grad);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(99,102,241,0.25);
}

.catalog-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.search-wrapper {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-glow);
}

/* ─── PRODUCT GRID ─────────────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-grad);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 254, 0.1);
    transform: translateY(-4px);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.out-of-stock {
    opacity: 0.7;
}

.product-card.out-of-stock::before {
    display: none;
}

.product-image-container {
    width: 100%;
    height: 200px;
    margin: 0.5rem 0 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(10, 15, 26, 0.4);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    container-type: size;
}

.product-image-container.placeholder {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(0, 242, 254, 0.03) 100%);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.product-card:hover .product-image-container {
    border-color: rgba(0, 242, 254, 0.25);
    background: rgba(10, 15, 26, 0.5);
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 0.25rem;
    transition: transform 0.4s ease;
}

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

.placeholder-icon {
    color: rgba(99, 102, 241, 0.4);
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.25));
    transition: var(--transition);
}

.product-card:hover .placeholder-icon {
    color: rgba(0, 242, 254, 0.6);
    filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.45));
    transform: scale(1.08);
}

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.product-code {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.stock-badge.in-stock {
    background: rgba(16,185,129,0.1);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.2);
}

.stock-badge.out {
    background: rgba(244,63,94,0.08);
    color: #be123c;
    border: 1px solid rgba(244,63,94,0.15);
}

.product-name {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-category-tag {
    display: inline-block;
    background: rgba(99,102,241,0.08);
    color: var(--brand-primary);
    border: 1px solid rgba(99,102,241,0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.85rem;
    background: var(--bg-card-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 1.25rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.68rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value.price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--brand-primary);
}

.product-card-footer {
    margin-top: auto;
}

.qty-add-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-card);
}

.qty-btn {
    width: 32px;
    height: 34px;
    border: none;
    background: var(--bg-card-alt);
    color: var(--text-body);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.qty-btn:hover {
    background: #e0e7ff;
    color: var(--brand-primary);
}

.qty-input {
    width: 42px;
    height: 34px;
    border: none;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--bg-card);
}

.qty-input:focus { outline: none; }

.add-to-cart-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    background: var(--brand-grad);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 4px 10px rgba(99,102,241,0.2);
}

.add-to-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99,102,241,0.3);
}

.add-to-cart-btn:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ─── CART SIDEBAR ─────────────────────────────────── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.5);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    max-width: 100vw;
    height: 100vh;
    background: var(--bg-card);
    z-index: 201;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: var(--transition);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
}

.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cart-close-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.cart-close-btn:hover {
    background: #f1f5f9;
    color: var(--text-dark);
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.cart-item-info {
    flex: 1;
}

.cart-item-code {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cart-item-name {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.cart-item-price {
    font-size: 0.78rem;
    color: var(--brand-primary);
    font-weight: 600;
    margin-top: 0.25rem;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.cart-item-total {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cart-remove-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    gap: 0.25rem;
    padding: 0.2rem 0;
}

.cart-remove-btn:hover { color: var(--red); }

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
    flex: 1;
}

.cart-empty-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-card-alt);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.cart-summary {
    margin-bottom: 1.25rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cart-summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.cart-summary-row.total span:last-child {
    color: var(--brand-primary);
    font-family: var(--font-heading);
}

.checkout-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--brand-grad);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 16px rgba(99,102,241,0.25);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(99,102,241,0.35);
}

.checkout-btn:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ─── CHECKOUT MODAL ───────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.6);
    backdrop-filter: blur(8px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.92);
    transition: var(--transition);
}

.modal-overlay.open .modal-box {
    transform: scale(1);
}

.modal-box-header {
    padding: 1.75rem 2rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.modal-box-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}

.modal-box-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.modal-box-body {
    padding: 1.75rem 2rem;
}

.order-summary-mini {
    background: var(--bg-card-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.order-summary-mini h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.order-mini-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
    color: var(--text-body);
}

.order-mini-item strong { color: var(--text-dark); }

.order-mini-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    color: var(--text-dark);
}

.order-mini-total span:last-child { color: var(--brand-primary); }

/* Form fields — light theme */
.form-group {
    margin-bottom: 1.1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group { flex: 1; }

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-glow);
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

.modal-box-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background: var(--bg-card-alt);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.btn-cancel {
    padding: 0.7rem 1.5rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    color: var(--text-body);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.btn-place-order {
    padding: 0.7rem 1.75rem;
    background: var(--brand-grad-green);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(16,185,129,0.25);
}

.btn-place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16,185,129,0.35);
}

/* ─── CONFIRMATION SCREEN ──────────────────────────── */
#confirmationScreen {
    display: none;
    min-height: 70vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

#confirmationScreen.show {
    display: flex;
    flex-direction: column;
}

.confirm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
    border: 2px solid rgba(16,185,129,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--green);
    animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.confirm-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.confirm-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 auto 0.75rem;
    line-height: 1.6;
}

.confirm-order-id {
    display: inline-block;
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.2);
    color: var(--brand-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.btn-shop-again {
    padding: 0.85rem 2rem;
    background: var(--brand-grad);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(99,102,241,0.25);
}

.btn-shop-again:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(99,102,241,0.35);
}

/* ─── FOOTER ───────────────────────────────────────── */
.store-footer {
    background: #0f172a;
    color: #64748b;
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
    margin-top: 4rem;
}

.store-footer span { color: #818cf8; font-weight: 600; }

/* ─── EMPTY STATE ──────────────────────────────────── */
.catalog-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
}

.catalog-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-card-alt);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ─── RESTOCK SECTION & ITEMS ───────────────────────── */
.restock-section {
    width: 100%;
}

.restock-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.restock-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    transition: var(--transition);
}

.restock-item:hover {
    border-color: rgba(255, 0, 127, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.restock-item-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.restock-item-code {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 80px;
}

.restock-item-name {
    font-size: 0.95rem;
    color: var(--text-body);
}

.restock-item-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.restock-item-cat {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.restock-item-size {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-request-restock {
    padding: 0.5rem 1.25rem;
    background: transparent;
    color: var(--brand-primary);
    border: 1.5px solid var(--brand-primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-request-restock:hover {
    background: var(--brand-grad);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 0, 127, 0.25);
}

@media (max-width: 768px) {
    .restock-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }
    .restock-item-meta {
        width: 100%;
        justify-content: space-between;
    }
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1200px) {
    .hero-bg-left {
        left: 0.5rem;
        width: 300px;
        filter: brightness(0.4);
    }
    .hero-bg-right {
        right: 0.5rem;
        width: 300px;
        filter: brightness(0.4);
    }
}

@media (max-width: 768px) {
    .store-nav {
        height: auto;
        padding: 0.75rem 1rem;
        display: grid;
        grid-template-areas: 
            "logo cart"
            "links links";
        grid-template-columns: 1fr auto;
        gap: 0.75rem;
        align-items: center;
    }
    
    .store-logo {
        grid-area: logo;
        justify-content: flex-start;
    }
    
    .cart-btn {
        grid-area: cart;
        justify-self: end;
    }
    
    .nav-right {
        display: contents;
    }
    
    .store-nav-links {
        grid-area: links;
        display: flex;
        overflow-x: auto;
        width: 100%;
        padding: 0.25rem 0;
        gap: 0.4rem !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .store-nav-links::-webkit-scrollbar {
        display: none;
    }
    
    .store-nav-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    
    .store-nav-link[style*="border-left"] {
        border-left: none !important;
        padding-left: 0.75rem !important;
        margin-left: 0 !important;
    }

    .hero { padding: 3rem 1rem 2.5rem 1rem; }
    .hero-inner { min-height: auto; }
    .hero-title { font-size: 2.2rem; line-height: 1.2; margin-bottom: 0.75rem; }
    .hero-subtitle { font-size: 0.95rem; line-height: 1.5; }
    
    .hero-bg-left, .hero-bg-right {
        display: none;
    }
    
    .store-main { padding: 1.5rem 1rem; }
    .catalog-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .catalog-title { font-size: 1.6rem; }
    
    .catalog-filters {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        width: 100%;
        margin-bottom: 1.25rem;
    }
    
    .catalog-filters::-webkit-scrollbar {
        display: none;
    }
    
    .filter-pill {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }
    
    .cart-drawer { width: 100%; }
    
    .product-grid { 
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
        gap: 1rem;
    }
    .product-card {
        padding: 1rem;
    }
    .product-image-container {
        height: 160px;
    }
    
    /* Reconstitution page inputs stacking */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    .calc-inputs {
        padding: 1.25rem !important;
    }
    .calc-visual {
        padding: 1.25rem !important;
    }
    
    /* Knowledge base reader layout adjustments */
    .kb-reader {
        padding: 1.25rem !important;
    }
}

/* ─── KNOWLEDGE BASE & RECONSTITUTION CALCULATOR ─── */
.store-nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.store-nav-link:hover {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.03);
}

.store-nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.view-panel {
    width: 100%;
    animation: fadeInPanel 0.35s ease;
}

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

.calc-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .calc-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.syringe-svg-container svg text {
    font-family: var(--font-body);
    font-weight: 600;
}

.kb-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .kb-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.kb-list {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.kb-list::-webkit-scrollbar {
    width: 4px;
}

.kb-list::-webkit-scrollbar-track {
    background: transparent;
}

.kb-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.kb-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.25rem;
    user-select: none;
    gap: 0.75rem;
}

.kb-list-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.kb-list-item.active {
    background: rgba(0, 242, 254, 0.08);
    border-color: rgba(0, 242, 254, 0.2);
}

.kb-list-item.active .kb-item-code {
    color: var(--brand-secondary) !important;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.kb-list-item.active .kb-item-name {
    color: white !important;
}

.kb-list-item.active .kb-item-badge {
    background: rgba(0, 242, 254, 0.15) !important;
    border-color: rgba(0, 242, 254, 0.3) !important;
}

.kb-reader {
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

.kb-article {
    animation: fadeInPanel 0.4s ease;
}

/* Dosing table styles */
.dosing-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 23, 42, 0.2);
}

.dosing-table th {
    font-family: var(--font-heading);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1.5px solid var(--border);
    padding: 0.9rem 1.25rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
}

.dosing-table td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-body);
    font-size: 0.875rem;
}

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

.dosing-table tr:hover td {
    background: rgba(255, 255, 255, 0.015);
    color: white;
}

/* ─── CHATBOT FLOATING WIDGET ─── */
.chat-toggle-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-grad);
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(255, 0, 127, 0.35);
    transition: var(--transition);
}

.chat-toggle-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 0, 127, 0.45);
}

.chat-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--brand-secondary);
    color: #0b0f19;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.4rem;
    border-radius: 50px;
    border: 2px solid var(--bg-page);
}

.chat-window {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 520px;
    max-height: calc(100vh - 140px);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUpChat 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUpChat {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
    padding: 1rem 1.25rem;
    background: rgba(10, 15, 26, 0.6);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-bot-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--brand-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.chat-close-btn:hover { color: white; }

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) transparent;
}

.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 10px; }

.chat-msg {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    line-height: 1.45;
}

.chat-msg.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-dark);
    border-top-left-radius: 0;
    text-align: left;
}

.chat-msg.user {
    align-self: flex-end;
    background: var(--brand-grad);
    color: white;
    border-top-right-radius: 0;
    box-shadow: 0 4px 12px rgba(255, 0, 127, 0.15);
    text-align: left;
}

.chat-msg.typing {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.85rem;
}

.chat-msg.typing span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingDots 1.4s infinite;
}

.chat-msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDots {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.chat-input-area {
    padding: 0.85rem 1.25rem;
    background: rgba(10, 15, 26, 0.4);
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.5rem;
}

.chat-input-area input {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.85rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: var(--transition);
}

.chat-input-area input:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.chat-send-btn {
    background: var(--brand-grad);
    border: none;
    border-radius: var(--radius-sm);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.chat-send-btn:hover {
    transform: scale(1.04);
}

.variant-select {
    padding: 0.35rem 2rem 0.35rem 0.65rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 0.85em;
}

.variant-select:hover, .variant-select:focus {
    border-color: var(--brand-secondary);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.25);
}

.variant-select option {
    background: #0d121f;
    color: white;
}

/* ── VIAL LABEL DYNAMIC OVERLAY ──────────────────────── */
.vial-overlay-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -36%);
    width: 32cqw;
    height: 38cqh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.1;
    overflow: hidden;
    user-select: none;
}

.vial-overlay-brand {
    font-size: 2.8cqw;
    font-weight: 800;
    color: #00f2fe; /* cyan */
    letter-spacing: 0.05em;
    margin-bottom: 0.5cqh;
    text-shadow: 0 0 4px rgba(0, 242, 254, 0.6);
    text-transform: uppercase;
}

.vial-overlay-subbrand {
    font-size: 1.5cqw;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 1.2cqh;
    opacity: 0.7;
    text-transform: uppercase;
}

.vial-overlay-name {
    font-size: 3.2cqw;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    word-break: break-all;
    max-height: 14cqh;
    line-height: 1.0;
    overflow: hidden;
    margin-bottom: 1cqh;
    letter-spacing: 0.02em;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

.vial-overlay-size {
    font-size: 2.6cqw;
    font-weight: 800;
    color: #ff007f; /* fuchsia */
    letter-spacing: 0.02em;
    margin-bottom: 0.8cqh;
    text-shadow: 0 0 4px rgba(255, 0, 127, 0.4);
}

.vial-overlay-footer {
    font-size: 1.4cqw;
    font-weight: 600;
    color: #ff007f;
    opacity: 0.8;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ── PAYMENT METHODS ────────────────────────────────── */
.payment-method-option {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
}
.payment-method-option:hover {
    border-color: rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.04);
}
.payment-method-option:has(input:checked) {
    border-color: var(--brand-secondary) !important;
    background: rgba(0, 242, 254, 0.06) !important;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

/* ── ACCESSORIES OVERLAY ────────────────────────────── */
.product-image-container.accessory-product {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.03) 0%, rgba(255, 0, 127, 0.03) 100%);
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.accessory-icon-container {
    opacity: 0.1;
    position: absolute;
    transform: scale(2);
    filter: blur(0.5px);
    transition: var(--transition);
    color: var(--brand-secondary);
}

.product-card:hover .accessory-icon-container {
    opacity: 0.2;
    transform: scale(2.2);
    color: #ff007f;
}

.accessory-overlay-label {
    position: absolute;
    width: 86%;
    height: 84%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(8, 12, 21, 0.75);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
    line-height: 1.25;
}

.accessory-overlay-brand {
    font-size: 0.7rem;
    font-weight: 800;
    color: #ff007f; /* fuchsia */
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.accessory-overlay-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    max-height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.accessory-overlay-size {
    font-size: 0.8rem;
    font-weight: 800;
    color: #00f2fe; /* cyan */
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.accessory-overlay-footer {
    font-size: 0.62rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


