/** Shopify CDN: Minification failed

Line 1284:0 Comments in CSS use "/* ... */" instead of "//"
Line 1648:0 Unexpected "="
Line 1761:0 Unexpected "="
Line 1775:1 Unexpected "/"

**/

  @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Share+Tech+Mono&family=Lora:ital@0;1&display=swap');

  * {
    /* Background: Listens to the theme background, falls back to your setting */
    --lh-bg: #f9f8f6; 
    
    /* Text: Listens to theme foreground/text, falls back to your setting */
    --lh-text: #0f172a;
    
    /* Secondary/Muted: Often used for labels or borders */
    --lh-border: rgba(var(--color-foreground), 0.1);
  }

  .lh-archive-wrapper {
    padding: 0; 
    background: transparent; 
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif; 
    display:none;
  }

  .lh-archive-header-area {
    padding: 0 40px; margin-bottom: 30px;
    margin-left: auto; margin-right: auto;
  }

  .lh-archive-title {
    font-size: 13px; font-weight: 800; letter-spacing: 0.3em;
    text-transform: uppercase; color: #0f172a; margin-bottom: 25px;
  }

  .lh-search-bar-container { display: flex; gap: 15px; align-items: center; }

  .lh-standard-search {
    flex: 1; display: flex; align-items: center;
    color: var(--lh-text); border: 1px solid #e2e8f0; border-radius: 100px;
    padding: 10px 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .lh-standard-search:focus-within {
    border-color: #0f172a; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }
  .lh-standard-search svg { color: #64748b; margin-right: 15px; transition: color 0.3s; }
  .lh-standard-search:focus-within svg { color: #0f172a; }
  .lh-standard-search input {
    flex: 1; border: none; background: transparent;
    font-family: inherit; font-size: 15px; color: #0f172a; outline: none; padding: 10px 0;
  }

  .lh-ai-trigger-btn {
    display: flex; align-items: center; gap: 10px;
    background: #0f172a; color: #ffffff; border: none;
    padding: 18px 30px; border-radius: 100px;
    font-family: inherit; font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap; position: relative; overflow: hidden;
  }
  .lh-ai-trigger-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%); transition: transform 0.6s;
  }
  .lh-ai-trigger-btn:hover::before { transform: translateX(100%); }
  .lh-ai-trigger-btn:hover {
    transform: translateY(-3px); background: #1e293b;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
  }
  .lh-ai-trigger-btn svg { animation: lhSparkle 3s ease-in-out infinite; }
  @keyframes lhSparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.15) rotate(15deg); opacity: 0.85; }
  }

  .lh-active-filter-pill {
    display: none; align-items: center; gap: 10px;
    background: #f1f5f9; border: 1px solid #e2e8f0; padding: 10px 20px;
    border-radius: 100px; width: fit-content; margin: 20px 40px 0 auto;
    font-size: 13px; font-weight: 600; color: #0f172a;
  }
  .lh-active-filter-pill.is-visible { display: flex; animation: lhFadeIn 0.4s ease forwards; }
  .lh-active-filter-pill span { font-style: italic; font-family: 'Lora', serif; color: #64748b; }

  .lh-clear-filter-btn {
    background: transparent; border: none; color: #ef4444; font-size: 20px;
    line-height: 1; cursor: pointer; margin-left: 5px; transition: transform 0.2s;
  }
  .lh-clear-filter-btn:hover { transform: scale(1.2) rotate(90deg); }

  .lh-ai-modal-overlay {
    position: fixed; inset: 0; background: #ffffff; z-index: 999 !important;
    display: flex; flex-direction: column; align-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .lh-ai-modal-overlay.is-active { opacity: 1; pointer-events: auto; }

  .lh-ai-modal-container {
    width: 100%; height: 100dvh; 
    display: flex; flex-direction: column; padding: 0 20px; position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .lh-ai-modal-overlay.is-active .lh-ai-modal-container { transform: translateY(0) scale(1); }


  /* --- SIDEBAR & LAYOUT UPGRADES --- */
  .lh-ai-modal-container {
    flex-direction: row !important; /* Switch to side-by-side */
    padding: 0 !important;
    background: var(--lh-bg);
    color: var(--lh-text);
    overflow: hidden;
  }

  .lh-ai-sidebar {
    width: 300px;
    background: #F9F8F6; 
    color: var(--lh-text);
    border-right: 1px solid #d6d4d0;
    color: #000;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
  }

  .lh-ai-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .lh-ai-sidebar-logo {
    display: block;
    width: 100%;
    padding: 10px 0;
    transition: opacity 0.3s ease; flex-shrink:0;
  }
  
  .lh-ai-sidebar-logo:hover {
    opacity: 0.8;
  }

  .lh-ai-sidebar-logo img {
    max-height: 50px; /* Adjust this to match your logo's height preferences */
    object-fit: contain;
  }

  /* Adjust header padding if needed when logo is present */
  .lh-ai-sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .lh-ai-new-chat-btn {
    flex: 1;
    background: var(--lh-text);
    color: var(--lh-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
  }
  .lh-ai-new-chat-btn:hover { background: rgba(255,255,255,0.2); }

  .lh-ai-sidebar-list {
    flex: 1;
    overflow-y: auto;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .lh-ai-session-btn {
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    color: #000;
    padding: 12px 15px;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s;
    font-family: inherit;
  }
  .lh-ai-session-btn:hover { background: rgba(0, 0, 0, 0.05); color: #fff; }
  .lh-ai-session-btn.is-active { background: var(--lh-text);
    color: var(--lh-bg); font-weight: 600; }

  .lh-ai-main-chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--lh-bg);
    color: var(--lh-text);
    height: 100dvh;
    position: relative; /* Anchor for the absolute chat history */
    min-width: 0;
    overflow: hidden;
  }

  .lh-ai-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #0f172a;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
  }

  /* Responsive Mobile Sliding Sidebar */
  @media (max-width: 768px) {
    .lh-ai-mobile-toggle { display: block; }
    .lh-ai-sidebar {
      position: absolute;
      top: 0; bottom: 0; left: 0;
      z-index: 20;
      transform: translateX(-100%);
      border-right: 1px inset solid rgba(0,0,0,0.1);
    }
    .lh-ai-sidebar.is-open { transform: translateX(0); }
    .lh-ai-modal-header { padding: 20px; }
  }
  

  .lh-ai-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.05);
    background: rgba(var(--color-background), 0.7); /* Semi-transparent */
    backdrop-filter: blur(12px); /* The "Glass" effect */
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 10; /* Sits above the chat */
    flex-shrink: 0;
  }
  .lh-header-left {
    margin: 0; font-size: 16px; font-weight: 800; 
    letter-spacing: 1px; display: inline-flex; align-items: center; gap: 8px; color: #0f172a;
    flex-wrap: nowrap; flex-shrink:0;
  }
  .lh-header-left h3 {
  font-size: 1.25rem; font-weight: bold;}
  .lh-header-left svg { animation: lhSparkle 3s ease-in-out infinite; }

  .lh-ai-status {
    display: inline-flex; align-items: center; gap: 6px; margin-left: 12px;
    font-size: 11px; font-weight: 600; color: #64748b; letter-spacing: 0.5px;
    background: rgba(0,0,0,0.1); border-radius: 20px; padding: 0.25rem 0.5rem;
  }
  .lh-ai-status::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #10b981;
    animation: lhPulseDot 2s ease-in-out infinite;
  }

  .lh-ai-sla-pill {
    display: inline-flex; align-items: center; gap: 6px; margin-left: 12px;
    font-size: 11px; font-weight: 600; color: #64748b; letter-spacing: 0.5px;
    background: rgba(0,0,0,0.05); border-radius: 0.5rem; padding: 0.25rem 0.5rem;
  }

  .beta-pill {
    position: relative; display: inline-flex; align-items: center; gap: 6px;
    margin-left: 12px; font-size: 11px; font-weight: 600;
    color: #64748b; letter-spacing: 0.5px;
    background: rgba(0,0,0,0); border-radius: 0.5rem;
    padding: 0.25rem 0.5rem; cursor: help;
  }
  .beta-pill::after {
    content: "This feature is in BETA mode and may produce unexpected results";
    position: absolute; top: calc(100% + 8px); left: 0; width: 200px;
    padding: 10px; background: #0f172a; color: #ffffff;
    font-size: 10px; line-height: 1.4; border-radius: 8px; z-index: 10;
    visibility: hidden; opacity: 0; transform: translateY(5px);
    transition: all 0.3s ease; pointer-events: none;
  }
  .beta-pill:hover::after { visibility: visible; opacity: 1; transform: translateY(0); }

  @keyframes lhPulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  }

  .lh-ai-close-btn {
    background: transparent; border: none; font-size: 38px; color: #94a3b8;
    cursor: pointer; line-height: 1; transition: all 0.3s; padding: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
  }
  .lh-ai-close-btn:hover { color: #0f172a; background: #f1f5f9; transform: rotate(90deg); }

  .lh-ai-chat-history {
    position: absolute; /* Takes up full container space */
    inset: 0;
    z-index: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* CRITICAL: Top/Bottom padding must match header/footer height */
    padding: 100px 15px 120px 15px; 
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    background: var(--lh-bg);
  }
  .lh-ai-chat-history::-webkit-scrollbar { display: none; }

  .lh-ai-bubble {
    display: flex; gap: 15px; align-items: flex-start;
    animation: lhBubbleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    flex-direction: column; width: 100%;
  }
  .lh-ai-bubble-row { display: flex; gap: 15px; align-items: flex-start; width: 100%; }

  .lh-ai-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-size: 12px; font-weight: 800;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15); position: relative;
  }
  .lh-ai-avatar.is-thinking::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #0f172a; border-right-color: #0f172a;
    animation: lhSpin 0.8s linear infinite;
  }
  @keyframes lhSpin { to { transform: rotate(360deg); } }

  .lh-ai-bubble-text {
    background: #ffffffff; border: 1px solid #e2e8f0; padding: 16px 22px;
    border-radius: 4px 20px 20px 20px; font-size: 15px; color: #0f172a;
    line-height: 1.6; font-weight: 500; max-width: 85%; min-height: 24px;
  }
  .lh-ai-bubble-text a {
    color: #0f172a; font-weight: 700; text-decoration: underline;
    text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: color 0.2s;
  }
  .lh-ai-bubble-text a:hover { color: #6366f1; }

  .lh-user-bubble {
    align-self: flex-end;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff; padding: 16px 22px;
    border-radius: 20px 4px 20px 20px;
    font-size: 15px; font-weight: 500; max-width: 85%;
    animation: lhUserBubbleIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
  }

  .lh-typing-dots { display: inline-flex; gap: 5px; padding: 4px 0; align-items: center; }
  .lh-typing-dots span {
    width: 7px; height: 7px; border-radius: 50%; background: #94a3b8;
    animation: lhTypingBounce 1.3s ease-in-out infinite;
  }
  .lh-typing-dots span:nth-child(1) { animation-delay: 0s; }
  .lh-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
  .lh-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes lhTypingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
  }

  .lh-typewriter-cursor::after {
    content: '▊'; animation: lhBlink 0.9s steps(2) infinite;
    color: #0f172a; margin-left: 2px; font-size: 0.85em;
    display: inline-block; transform: translateY(-1px);
  }
  @keyframes lhBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

  @keyframes lhFadeIn {
    from { filter: blur(10px); opacity: 0; transform: translateY(10px); }
    to { filter: blur(0px); opacity: 1; transform: translateY(0); }
  }
  @keyframes lhBubbleIn {
    from { opacity: 0; transform: translateY(12px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes lhUserBubbleIn {
    from { opacity: 0; transform: translateX(20px) scale(0.8); }
    to { opacity: 1; transform: translateX(0) scale(1); }
  }

  .lh-panel-carousel {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box !important;
    padding: 12px 20px 12px 55px; 
    animation: lhFadeIn 0.4s ease forwards;
  }
  .lh-panel-carousel::-webkit-scrollbar { display: none; }
  .lh-panel-carousel .lh-product-panel,
  .lh-panel-carousel .lh-allergen-panel {
    flex: 0 0 85% !important; 
    max-width: 340px !important;
    margin: 0 !important; 
    scroll-snap-align: center;
    animation: none !important; 
  }

  @media (max-width: 768px) {
    .lh-product-panel, .lh-allergen-panel { margin-left: 0; }
    .lh-panel-carousel { padding-left: 0; }
    .lh-ai-follow-prompts, .lh-ai-inline-carousel, .lh-ai-suggestions { padding-left: 0; }
  }


  .lh-ai-inline-carousel::-webkit-scrollbar { display: none; }
  @keyframes lhCarouselIn {
    from { filter: blur(10px); opacity: 0; transform: translateY(15px) scale(0.85); }
    to { filter: blur(0px); opacity: 1; transform: translateY(0) scale(1); }
  }




  /* ─── STAGGERED CAROUSEL CARDS ────────────────────────────────── */
  
  .lh-ai-inline-carousel {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%; 
    box-sizing: border-box !important; 
    padding: 14px 20px 20px 55px; 
    animation: lhCarouselIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
  }
  .lh-ai-inline-carousel::-webkit-scrollbar { display: none; }

  .lh-ai-inline-carousel .lh-ai-card {
    /* "both" ensures the 0% keyframe (opacity 0) is applied during the delay */
    animation: lhCardSpringUp 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both; scroll-snap-align: center;
  }

  /* Stagger the delay for each dynamic card. */
  .lh-ai-inline-carousel .lh-ai-card:nth-child(1) { animation-delay: 0.10s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(2) { animation-delay: 0.18s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(3) { animation-delay: 0.26s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(4) { animation-delay: 0.34s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(5) { animation-delay: 0.42s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(6) { animation-delay: 0.50s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(7) { animation-delay: 0.58s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(8) { animation-delay: 0.66s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(9) { animation-delay: 0.74s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(10) { animation-delay: 0.82s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(11) { animation-delay: 0.90s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(12) { animation-delay: 0.98s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(13) { animation-delay: 1.06s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(14) { animation-delay: 1.14s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(15) { animation-delay: 1.22s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(16) { animation-delay: 1.30s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(17) { animation-delay: 1.38s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(18) { animation-delay: 1.46s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(19) { animation-delay: 1.54s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(20) { animation-delay: 1.62s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(21) { animation-delay: 1.70s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(22) { animation-delay: 1.78s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(23) { animation-delay: 1.86s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(24) { animation-delay: 1.94s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(25) { animation-delay: 2.02s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(26) { animation-delay: 2.10s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(27) { animation-delay: 2.18s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(28) { animation-delay: 2.26s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(29) { animation-delay: 2.34s; }
  .lh-ai-inline-carousel .lh-ai-card:nth-child(30) { animation-delay: 2.42s; }

  @keyframes lhCardSpringUp {
    0% {
      filter: blur(10px);
      opacity: 0;
      transform: translateY(25px) scale(0.95);
    }
    100% {
      filter: blur(0px);
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }



  .lh-ai-suggestions {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 4px 0 0 55px;
    animation: lhFadeIn 0.5s ease 0.2s backwards;
  }
  .lh-ai-suggestion-chip {
    background: #fff; border: 1px solid #e2e8f0;
    padding: 8px 16px; border-radius: 100px;
    font-family: inherit; font-size: 13px; font-weight: 600; color: #0f172a;
    cursor: pointer; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .lh-ai-suggestion-chip:hover {
    background: #0f172a; color: #fff; border-color: #0f172a;
    transform: translateY(-2px); box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
  }

  .lh-ai-card {
    flex: 0 0 220px !important; 
    max-width: 220px !important;
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
    overflow: hidden; text-decoration: none; color: inherit;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    scroll-snap-align: start;
    /* Spring animation setup */
    animation: lhCardSpringUp 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }
  .lh-ai-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
  }



  .lh-ai-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
  }
  .lh-ai-card-media {
    position: relative; aspect-ratio: 4/5; overflow: hidden; background: #f1f5f9;
  }
  .lh-ai-card-media img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
  }
  .lh-ai-card:hover .lh-ai-card-media img { transform: scale(1.04); }
  .lh-ai-card-media-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 60px; font-weight: 800; color: #cbd5e1;
  }
  .lh-ai-card-tag {
    position: absolute; top: 10px; left: 10px;
    background: #fff; color: #0f172a; padding: 4px 10px;
    border-radius: 100px; font-size: 10px; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .lh-ai-card-tag--product { background: #0f172a; color: #fff; }
  .lh-ai-card-tag--out { background: #fef2f2; color: #b91c1c; left: auto; right: 10px; }
  .lh-ai-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; }
  .lh-ai-card-title { font-size: 15px; font-weight: 800; color: #0f172a; line-height: 1.2; }
  .lh-ai-card-subtitle {
    font-size: 11px; font-weight: 700; color: #64748b;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .lh-ai-card-price { font-size: 14px; font-weight: 800; color: #0f172a; }
  .lh-ai-card-desc {
    font-size: 12px; line-height: 1.45; color: #64748b;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .lh-ai-card-cta {
    margin-top: auto; padding-top: 6px;
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 800; letter-spacing: 0.15em;
    text-transform: uppercase; color: #0f172a;
  }
  .lh-ai-card-cta svg { width: 12px; height: 12px; transition: transform 0.2s; }
  .lh-ai-card:hover .lh-ai-card-cta svg { transform: translateX(3px); }

  .lh-product-panel {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
    overflow: hidden; animation: lhFadeIn 0.4s ease forwards; font-size: 14px; max-height: fit-content;
  }
  .lh-product-panel + .lh-product-panel { margin-top: 12px; }
  .lh-product-panel-header {
    display: flex; gap: 14px; padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    overflow:hidden;
    background: linear-gradient(to bottom, #fafbfc, #fff); position: relative;
  }
  .lh-product-panel-header .lh-product-panel-img-bg {
    position: absolute; inset:0; width: 100%; height: 100%; filter: blur(20px); z-index:0; transform: translateY(-100%); opacity:0.3;
  }
  .lh-product-panel-header .lh-product-panel-img-bg img { max-width: 100%; object-fit: cover; }

  .lh-product-panel-img {
    flex: 0 0 70px; width: 70px; height: 70px;
    border-radius: 10px; overflow: hidden; background: #f1f5f9;z-index:1;
  }
  .lh-product-panel-img img { width: 100%; height: 100%; object-fit: cover; }
  .lh-product-panel-meta {
    display: flex; flex-direction: column; gap: 4px;
    justify-content: center; min-width: 0; flex: 1;z-index:1;
  }
  .lh-product-panel-title {
    font-size: 16px; font-weight: 800; color: #0f172a; line-height: 1.25;z-index:1;
  }
  .lh-product-panel-subtitle {
    font-size: 11px; font-weight: 700; color: #64748b;
    text-transform: uppercase; letter-spacing: 0.08em;z-index:1;z-index:1;
  }
  .lh-product-panel-price { font-size: 14px; font-weight: 700; color: #0f172a;z-index:1; }
  .lh-product-panel-stock {
    font-size: 11px; font-weight: 700; color: #dc2626;
    text-transform: uppercase; letter-spacing: 0.1em;z-index:1;
  }
  .lh-product-panel-stock--in { color: #15803d;z-index:1; }
  .lh-product-panel-section { padding: 14px 16px; border-bottom: 1px solid #f1f5f9; }
  .lh-product-panel-section:last-of-type { border-bottom: none; }
  .lh-product-panel-label {
    font-size: 10px; font-weight: 800; letter-spacing: 0.15em;
    text-transform: uppercase; color: #64748b; margin-bottom: 6px;
  }
  .lh-product-panel-text { font-size: 13px; line-height: 1.55; color: #334155; }
  .lh-product-panel-variants { display: flex; flex-wrap: wrap; gap: 6px; }
  .lh-product-panel-variant {
    font-size: 11px; font-weight: 700; color: #475569;
    background: #f1f5f9; padding: 5px 10px; border-radius: 100px;
  }
  .lh-product-panel-variant--out { opacity: 0.5; text-decoration: line-through; }
  .lh-product-panel-cta {
    display: flex; align-items: center; gap: 8px; justify-content: center;
    padding: 14px 18px; background: #0f172a; color: #fff;
    text-decoration: none; font-size: 12px; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase; transition: background 0.2s;
  }
  .lh-product-panel-cta:hover { background: #1e293b; }
  .lh-product-panel-cta svg { width: 14px; height: 14px; }

  .lh-allergen-panel {
    margin: 12px 0 4px 55px;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
    overflow: hidden; animation: lhFadeIn 0.4s ease forwards; font-size: 14px;
  }
  .lh-allergen-panel + .lh-allergen-panel { margin-top: 12px; }
  .lh-allergen-panel-header {
    padding: 14px 18px; background: #f8fafc; border-bottom: 1px solid #e2e8f0;
    font-size: 14px; font-weight: 800; color: #0f172a;
  }
  .lh-allergen-section { padding: 14px 18px; border-bottom: 1px solid #f1f5f9; }
  .lh-allergen-section:last-child { border-bottom: none; }
  .lh-allergen-label {
    font-size: 10px; font-weight: 800; letter-spacing: 0.15em;
    text-transform: uppercase; color: #64748b; margin-bottom: 6px;
  }
  .lh-allergen-text { color: #334155; line-height: 1.5; font-size: 13px; }
  .lh-ingredients {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px; color: #475569; line-height: 1.6; word-break: break-word;
  }
  .lh-allergen-warning { background: #fffbeb; }
  .lh-allergen-warning .lh-allergen-label { color: #92400e; }
  .lh-allergen-warning .lh-allergen-text { color: #78350f; }

  .lh-ai-follow-prompts {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding: 12px 0 0 55px;
    animation: lhFadeIn 0.5s ease 0.3s backwards;
  }
  .lh-ai-follow-prompt {
    background: transparent; border: 1px solid #cbd5e1;
    padding: 7px 13px; border-radius: 100px;
    font-family: inherit; font-size: 12px; font-weight: 600; color: #475569;
    cursor: pointer; transition: all 0.2s;
  }
  .lh-ai-follow-prompt:hover {
    background: #0f172a; color: #fff; border-color: #0f172a;
  }

  @media (max-width: 768px) {
    .lh-product-panel, .lh-allergen-panel { margin-left: 0; }
    .lh-ai-follow-prompts, .lh-ai-inline-carousel, .lh-ai-suggestions { padding-left: 0; }
  }

  .lh-ai-footer {
    display: inline-flex;
    justify-content:center;
    margin-top: auto; /* Pushes to bottom of flex container */
    padding: 20px 15px;
    background: rgba(var(--color-background), 0.7); /* Semi-transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(var(--color-foreground), 0.05);
    position: relative;
    z-index: 10; /* Sits above the chat */
    flex-shrink: 0;
  }
  .lh-ai-input-area { display: flex; gap: 10px; position: relative; align-items: center; width: 100%; max-width: 1000px; }
  .lh-ai-input-area input {
    flex: 1; background: #f1f5f9; border: 1px solid #e2e8f0;
    padding: 20px 30px; border-radius: 100px;
    font-family: inherit; font-size: 16px; color: #0f172a;
    outline: none; transition: all 0.3s;
  }
  .lh-ai-input-area input:focus {
    background: #fff; border-color: #0f172a;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }
  .lh-ai-input-area input:disabled { opacity: 0.6; cursor: not-allowed; }

  .lh-ai-submit-btn {
    background: #0f172a; color: #fff; border: none;
    width: 60px; height: 60px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
  }
  .lh-ai-submit-btn:hover:not(:disabled) {
    transform: scale(1.06) rotate(-8deg);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
  }
  .lh-ai-submit-btn:active:not(:disabled) { transform: scale(0.96); }
  .lh-ai-submit-btn:disabled {
    background: #cbd5e1; cursor: not-allowed; transform: none; box-shadow: none;
  }
  .lh-ai-submit-btn svg { transition: transform 0.2s; }
  .lh-ai-submit-btn:hover:not(:disabled) svg { transform: translateX(2px); }

  .lh-ai-reset-history {
    display: block; width: 100%; text-align: center;
    font-size: 12px; color: #64748b;
    text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
    margin-top: 20px; cursor: pointer;
    border: none; background: transparent;
    text-decoration: underline; text-underline-offset: 4px;
    transition: color 0.2s;
  }
  .lh-ai-reset-history:hover { color: #0f172a; }

  .lh-scent-reel {
    display: flex; gap: 20px; padding: 0 40px 40px 40px; overflow-x: auto;
    scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none;
  }
  .lh-scent-reel::-webkit-scrollbar { display: none; }

  .lh-scent-entry {
    position: relative; width: 340px; min-width: 340px; aspect-ratio: 3 / 4;
    border-radius: 16px; overflow: hidden;
    scroll-snap-align: center; flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
    opacity: 1; transform: scale(1); border: 1px solid rgba(0,0,0,0.05);
  }
  .lh-scent-entry.is-hidden { display: none; }

  .lh-entry-img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .lh-scent-entry:hover .lh-entry-img { transform: scale(1.05); }

  .lh-entry-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: center; z-index: 2;
  }
  .lh-title-wrap {
    position: relative; text-align: center; padding: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .lh-entry-title {
    position: relative; font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px; font-weight: 800;
    margin: 0; line-height: 0.9; text-transform: uppercase; z-index: 2;
  }
  .lh-entry-title-shadow {
    position: absolute; top: 50%; left: 50%; transform: translate(-49%, -49%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px; font-weight: 800;
    text-transform: uppercase; color: rgba(0,0,0,0.15);
    filter: blur(3px); z-index: 1; white-space: nowrap;
  }

  .lh-entry-details {
    position: absolute; bottom: -100%; left: 0; width: 100%;
    padding: 60px 30px 30px;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column; gap: 15px;
  }
  .lh-entry-details p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; font-weight: 500; line-height: 1.6; margin: 0;
  }

  .lh-shop-tag-btn {
    display: inline-flex; justify-content: center; align-items: center;
    background: #ffffff; color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 14px 24px; border-radius: 100px;
    text-decoration: none; transition: all 0.3s ease; width: fit-content;
  }
  .lh-shop-tag-btn:hover {
    transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #0f172a; color: #fff;
  }

  .lh-scent-entry:hover .lh-entry-details { bottom: 0; }
  .lh-scent-entry:hover .lh-title-wrap { transform: translateY(-30px); }

  .lh-no-results {
    width: 100%; text-align: center; padding: 60px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px; font-weight: 600; color: #64748b; display: none;
  }
  .lh-no-results.is-visible { display: block; animation: lhFadeIn 0.4s ease forwards; }

  @media (max-width: 768px) {
    .lh-archive-header-area { padding: 0 20px; }
    .lh-search-bar-container { flex-direction: column; align-items: stretch; }
    .lh-scent-reel { padding: 0 20px 40px 20px; gap: 15px; }
    .lh-scent-entry { width: 300px; min-width: 300px; }
    .lh-ai-modal-container { padding: 0 20px; }
    .lh-ai-modal-header h3 { font-size: 14px; }
    .lh-ai-status { font-size: 0.9rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }






  /* ─── MEMORY PILL ─────────────────────────────────────────────── */
  .lh-memory-pill {
    position: absolute; top: 90px; left: 16px; right: auto; z-index: 9;
    display: none; align-items: center; gap: 10px;
    padding: 9px 14px;
    background: linear-gradient(135deg, rgba(15,23,42,0.04) 0%, rgba(99,102,241,0.07) 100%);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 100px;
    font-size: 12px; font-weight: 600; color: #1e293b;
    overflow: hidden;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    width: fit-content; max-width: calc(100% - 32px);
    box-shadow: 0 4px 12px rgba(99,102,241,0.08);
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .lh-memory-pill.is-active { display: inline-flex; animation: lhMemPillIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  @keyframes lhMemPillIn { from { opacity: 0; transform: translateY(-8px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
  .lh-memory-pill::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(99,102,241,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: lhMemShimmer 5s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes lhMemShimmer { 0%, 100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }
  .lh-memory-pill-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #fff;
    box-shadow: 0 2px 6px rgba(99,102,241,0.35);
    position: relative;
  }
  .lh-memory-pill-label { color: #64748b; font-weight: 500; position: relative; }
  .lh-memory-pill-value { color: #0f172a; font-weight: 700; position: relative; max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .lh-memory-pill-clear { background: transparent; border: none; color: #64748b; font-size: 16px; line-height: 1; cursor: pointer; padding: 0; transition: all 0.2s; border-radius: 50%; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; font-family: inherit; }
  .lh-memory-pill-clear:hover { color: #ef4444; background: rgba(239,68,68,0.1); transform: rotate(90deg); }
  .lh-ai-chat-history.has-memory-pill { padding-top: 150px; }

  /* ─── MULTI-STAGE THINKING ────────────────────────────────────── */
  .lh-thinking-stages {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; color: #475569; font-weight: 500;
    min-height: 24px; padding: 4px 0;
  }
  .lh-thinking-orb {
    width: 14px; height: 14px; border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    flex-shrink: 0; position: relative;
    animation: lhThinkOrb 1.5s ease-in-out infinite;
  }
  .lh-thinking-orb::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    border: 1.5px solid rgba(99,102,241,0.35);
    animation: lhThinkRing 1.5s ease-in-out infinite;
  }
  @keyframes lhThinkOrb { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.8); opacity: 0.75; } }
  @keyframes lhThinkRing { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(2); opacity: 0; } }
  .lh-thinking-stage-text { transition: opacity 0.25s ease, transform 0.25s ease; display: inline-block; }
  .lh-thinking-stage-text.is-leaving { opacity: 0; transform: translateY(-4px); }

  /* ─── STREAMING BUBBLE BORDER ─────────────────────────────────── */
  .lh-ai-bubble-text.lh-is-streaming { border-color: transparent !important; background: #ffffff; position: relative; }
  .lh-ai-bubble-text.lh-is-streaming::after {
    content: ''; position: absolute; inset: -1px; padding: 1px;
    border-radius: 4px 20px 20px 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899, #6366f1);
    background-size: 300% 300%;
    animation: lhStreamGrad 3s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }
  @keyframes lhStreamGrad { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }

  /* ─── INLINE ACTION BUTTONS ───────────────────────────────────── */
  .lh-action-row {
    display: flex; gap: 8px; flex-wrap: wrap;
    padding: 12px 16px;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
  }
  .lh-action-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 10px; 
    background: #fff;
    border: 1px solid #e2e8f0; border-radius: 100px;
    font-family: inherit; font-size: 12px; font-weight: 700;
    color: #0f172a; cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.05em; white-space: nowrap; text-decoration:none;
  }
  .lh-action-btn svg { width: 13px; height: 13px; }
  .lh-action-btn:hover { background: #0f172a; color: #fff; border-color: #0f172a; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(15,23,42,0.15); }
  .lh-action-btn--primary { background: #0f172a; color: #fff; border-color: #0f172a; }
  .lh-action-btn--primary:hover { background: #6366f1; border-color: #6366f1; }
  .lh-action-btn:disabled { opacity: 0.6; cursor: wait; transform: none; }
  .lh-action-btn--success { background: #15803d !important; color: #fff !important; border-color: #15803d !important; }

  /* ─── TOAST ───────────────────────────────────────────────────── */
  .lh-toast-container { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 999999999999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
  .lh-toast {
    pointer-events: auto;
    background: #0f172a; color: #fff;
    padding: 14px 20px; border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    box-shadow: 0 10px 30px rgba(15,23,42,0.3);
    display: inline-flex; align-items: center; gap: 10px;
    animation: lhToastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    max-width: 90vw;
  }
  .lh-toast.lh-toast--leaving { animation: lhToastOut 0.3s cubic-bezier(0.7, 0, 0.84, 0) forwards; }
  .lh-toast--success { background: #15803d; }
  .lh-toast--error { background: #b91c1c; }
  .lh-toast svg { width: 18px; height: 18px; flex-shrink: 0; }
  @keyframes lhToastIn { from { opacity: 0; transform: translateY(20px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
  @keyframes lhToastOut { from { opacity: 1; transform: translateY(0) scale(1); } to { opacity: 0; transform: translateY(20px) scale(0.9); } }

  /* ─── CLARIFICATION CHIPS ─────────────────────────────────────── */
  .lh-clarify-row { display: flex; gap: 8px; flex-wrap: wrap; padding: 12px 0 0 55px; animation: lhFadeIn 0.5s ease 0.2s backwards; }
  .lh-clarify-btn {
    background: #fff; border: 1.5px solid #6366f1;
    padding: 9px 18px; border-radius: 100px;
    font-family: inherit; font-size: 13px; font-weight: 700;
    color: #6366f1; cursor: pointer; transition: all 0.2s;
  }
  .lh-clarify-btn:hover { background: #6366f1; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(99,102,241,0.25); }
  .lh-clarify-btn--secondary { border-color: #cbd5e1; color: #475569; }
  .lh-clarify-btn--secondary:hover { background: #475569; border-color: #475569; }

  /* ─── PRODUCT COUNT PILL ON SCENT CARDS ──────────────────────── */
  .lh-ai-card-products-pill {
    position: absolute;
    top: 10px; right: 10px;
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 9px;
    background: rgba(15,23,42,0.85);
    color: #fff;
    border-radius: 100px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.06em;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .lh-ai-card-products-pill svg { width: 10px; height: 10px; }

  /* ─── CART ICON ON ALL PRODUCT CARDS ──────────────────────────── */
  .lh-ai-card { position: relative; }
  .lh-ai-card-cart-btn {
    position: absolute;
    bottom: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #0f172a;
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(15,23,42,0.25);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
  }
  .lh-ai-card-cart-btn:hover { background: #6366f1; transform: scale(1.08) rotate(-6deg); }
  .lh-ai-card-cart-btn:active { transform: scale(0.94); }
  .lh-ai-card-cart-btn:disabled { opacity: 0.7; cursor: wait; }
  .lh-ai-card-cart-btn svg { width: 16px; height: 16px; }
  .lh-ai-card-cart-btn.is-success { background: #15803d !important; }

  /* ─── FORMAT PIVOT CHIPS (when in a mode and exhausted results) ── */
  .lh-mode-banner {
    display: inline-flex; align-items: center; gap: 8px;
    margin: 6px 0 10px 55px;
    padding: 7px 13px;
    background: rgba(99,102,241,0.08);
    border: 1px dashed rgba(99,102,241,0.3);
    border-radius: 100px;
    font-size: 11px; font-weight: 600; color: #475569;
  }
  .lh-mode-banner-dot { width: 6px; height: 6px; border-radius: 50%; background: #6366f1; }
  @media (max-width: 768px) { .lh-mode-banner { margin-left: 0; } }

  /* ─── CLARIFICATION (extends existing clarify-row) ────────────── */
  .lh-clarify-row .lh-clarify-btn { white-space: normal; line-height: 1.3; }

  /* ─── COMBO PANEL ─────────────────────────────────────────────── */
  .lh-combo-panel {
    margin: 12px 0 4px 55px;
    background: #fff;
    border: 1px solid #e2e8f0; border-radius: 14px;
    overflow: hidden;
    animation: lhFadeIn 0.4s ease forwards;
    font-size: 14px;
  }
  .lh-combo-header {
    padding: 16px 18px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    flex-wrap: wrap;
  }
  .lh-combo-header-left { display: flex; flex-direction: column; gap: 4px; }
  .lh-combo-budget-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.6; }
  .lh-combo-budget-value { font-size: 18px; font-weight: 800; }
  .lh-combo-total-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.6; text-align: right; }
  .lh-combo-total-value { font-size: 18px; font-weight: 800; text-align: right; }
  .lh-combo-savings { font-size: 11px; font-weight: 700; padding: 4px 10px; background: #15803d; color: #fff; border-radius: 100px; display: inline-block; margin-top: 4px; }
  .lh-combo-overspend { font-size: 11px; font-weight: 700; padding: 4px 10px; background: #b45309; color: #fff; border-radius: 100px; display: inline-block; margin-top: 4px; }
  .lh-combo-items { padding: 4px 0; }
  .lh-combo-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
  }
  .lh-combo-item:last-child { border-bottom: none; }
  .lh-combo-item-img { width: 50px; height: 50px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #f1f5f9; }
  .lh-combo-item-img img { width: 100%; height: 100%; object-fit: cover; }
  .lh-combo-item-meta { flex: 1; min-width: 0; }
  .lh-combo-item-title { font-size: 14px; font-weight: 700; color: #0f172a; line-height: 1.2; }
  .lh-combo-item-subtitle { font-size: 11px; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
  .lh-combo-item-price { font-size: 14px; font-weight: 800; color: #0f172a; flex-shrink: 0; }
  .lh-combo-actions {
    display: flex; gap: 8px; padding: 14px 18px;
    background: #fafbfc; border-top: 1px solid #f1f5f9;
  }
  .lh-combo-actions .lh-action-btn { flex: 1; justify-content: center; }
  @media (max-width: 768px) {
    .lh-clarify-row { padding-left: 0; }
    .lh-combo-panel { margin-left: 0; }
  }

  /* ════════════════════════════════════════════════════════════════
     V5 — SESSION MENU, STORAGE WARNING, THINKING TRACE, REWARDS
     ════════════════════════════════════════════════════════════════ */

  /* ─── SESSION BUTTON WITH 3-DOT MENU ─────────────────────────── */
  .lh-ai-session-btn-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: visible;
  }
  .lh-ai-session-btn-wrap .lh-ai-session-btn {
    flex: 1;
    padding-right: 38px; /* room for 3-dot menu */
  }
  .lh-ai-session-menu-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.15s;
    z-index: 2;
    font-family: inherit;
  }
  .lh-ai-session-menu-btn:hover {
    background: rgba(0,0,0,0.08);
    color: #0f172a;
  }
  .lh-ai-session-btn-wrap.is-active .lh-ai-session-menu-btn { color: rgba(255,255,255,0.85); }
  .lh-ai-session-btn-wrap.is-active .lh-ai-session-menu-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }

  .lh-session-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(15,23,42,0.18);
    min-width: 160px;
    overflow: hidden;
    z-index: 1000;
    animation: lhDropdownIn 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes lhDropdownIn { from { opacity: 0; transform: translateY(-6px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
  .lh-session-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.15s;
  }
  .lh-session-dropdown-item:hover { background: #f1f5f9; }
  .lh-session-dropdown-item--danger { color: #dc2626; }
  .lh-session-dropdown-item--danger:hover { background: #fef2f2; }
  .lh-session-dropdown-item svg { width: 14px; height: 14px; }

  /* ─── CONFIRMATION MODAL (delete session) ─────────────────────── */
  .lh-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.5);
    z-index: 999999999999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .lh-confirm-overlay.is-active {
    display: flex;
    animation: lhConfirmFade 0.25s ease forwards;
  }
  @keyframes lhConfirmFade { from { opacity: 0; } to { opacity: 1; } }
  .lh-confirm-box {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    max-width: 420px;
    width: calc(100% - 32px);
    box-shadow: 0 30px 80px rgba(15,23,42,0.3);
    animation: lhConfirmSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  @keyframes lhConfirmSlide { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
  .lh-confirm-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #fef2f2;
    color: #dc2626;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .lh-confirm-icon svg { width: 26px; height: 26px; }
  .lh-confirm-title { font-size: 18px; font-weight: 800; color: #0f172a; margin: 0 0 8px 0; }
  .lh-confirm-message { font-size: 14px; line-height: 1.55; color: #475569; margin: 0 0 22px 0; }
  .lh-confirm-actions { display: flex; gap: 10px; justify-content: flex-end; }
  .lh-confirm-btn {
    padding: 10px 18px;
    border-radius: 100px;
    font-family: inherit;
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
  }
  .lh-confirm-btn--cancel {
    background: #f1f5f9;
    color: #475569;
  }
  .lh-confirm-btn--cancel:hover { background: #e2e8f0; }
  .lh-confirm-btn--danger {
    background: #dc2626;
    color: #fff;
    box-shadow: 0 4px 12px rgba(220,38,38,0.3);
  }
  .lh-confirm-btn--danger:hover { background: #b91c1c; transform: translateY(-1px); }

  /* ─── STORAGE WARNING IN SIDEBAR ─────────────────────────────── */
  .lh-storage-warning {
    margin: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border: 1px solid #fbbf24;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1.45;
    color: #78350f;
    display: none;
  }
  .lh-storage-warning.is-active { display: block; }
  .lh-storage-warning--critical {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #ef4444;
    color: #7f1d1d;
  }
  .lh-storage-warning-title {
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 4px;
  }
  .lh-storage-warning-title svg { width: 12px; height: 12px; }
  .lh-storage-bar {
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 100px;
    overflow: hidden;
    margin-top: 6px;
  }
  .lh-storage-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 100px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .lh-storage-warning--critical .lh-storage-bar-fill { background: #dc2626; }
//* ─── VISIBLE THINKING TRACE ─────────────────────────────────── */
  .lh-think-trace {
    margin: 8px 0 12px 55px;
    background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(139,92,246,0.08));
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: lhTraceIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

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

  .lh-think-trace-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 10px;
    font-weight: 800;
    color: #6366f1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
  }

  .lh-think-trace-header svg { width: 12px; height: 12px; animation: lhSparkle 3s ease-in-out infinite; }

  /* THE GRID ANIMATION CORE */
  .lh-think-trace-body {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 1;
  }

  .lh-think-trace.is-collapsed {
    border-color: rgba(99,102,241,0.1);
    background: rgba(99,102,241,0.03);
  }

  .lh-think-trace.is-collapsed .lh-think-trace-body {
    grid-template-rows: 0fr;
    opacity: 0;
  }

  .lh-think-trace-inner {
    overflow: hidden; /* Required for the 0fr height trick */
  }

  .lh-think-trace-steps {
    padding: 0 16px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .lh-think-trace-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #475569;
    animation: lhTraceStep 0.4s ease forwards;
  }

  @keyframes lhTraceStep { from { opacity: 0; transform: translateX(-5px); } to { opacity: 1; transform: translateX(0); } }

  .lh-think-trace-step-icon {
    flex-shrink: 0;
    width: 14px; height: 14px;
    margin-top: 2px;
    color: #10b981;
  }

  .lh-think-trace-step--pending .lh-think-trace-step-icon {
    color: #6366f1;
    animation: lhSpin 1s linear infinite;
  }

  .lh-think-trace-step-detail {
    color: #94a3b8;
    font-size: 11px;
    font-family: 'Share Tech Mono', monospace;
    margin-top: 2px;
    background: rgba(255,255,255,0.4);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
  }

  .lh-think-trace-toggle {
    margin-left: auto;
    background: transparent;
    border: none;
    color: #6366f1;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .lh-think-trace.is-collapsed .lh-think-trace-toggle { transform: rotate(-180deg); }

  @media (max-width: 768px) {
    .lh-think-trace { margin: 8px 0 12px 0; }
  }

  /* ─── REWARDS WALLET CARD (matches admin styling) ─────────────── */
  .lh-rewards-panel {
    margin: 12px 0 4px 55px;
    background: var(--lh-bg, #fff);
    border-radius: 24px;
    overflow: hidden;
    animation: lhFadeIn 0.4s ease forwards;
    border: 1px solid #e2e8f0;
  }
  .lh-rewards-card {
    background: radial-gradient(farthest-side at 100% 0%, #9f9fff 0%, #61c0ff 25%, #ff7aed 50%, #b6b3ff 75%, #8585ff 100%),
                radial-gradient(farthest-side at 0% 100%, #c2c2ff 0%, #c2e7ff 25%, #ffd1f9 50%, #ecebff 75%, #c2c2ff 100%),
                radial-gradient(farthest-corner at 100% 100%, #a3a3ff 0%, #d3d1ff 25%, #fa99ed 50%, #a8dcff 75%, #aaaafd 100%);
    background-blend-mode: overlay;
    padding: 24px;
    color: #0f172a;
    position: relative;
    overflow: hidden;
  }
  .lh-rewards-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    animation: cardUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  @keyframes cardUp {
    0% {
        height:0px;
    }
    100% {
        height:300px;
    }
  }
  .lh-rewards-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }
  .lh-rewards-card-chip {
    width: 32px; height: 32px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(5px);
  }
  .lh-rewards-card-chip svg { width: 18px; height: 18px; animation: startSpin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards }


  @keyframes startSpin {
    0% {
        transform: scale(0) rotate(-180deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
  }

  .lh-rewards-card-tier {
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.5);
    padding: 5px 12px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
  }
  .lh-rewards-balance-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    position: relative;
    z-index: 1;
  }
  .lh-rewards-balance {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 4px 0 0 0;
    color: #0f172a;
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .lh-rewards-balance-symbol { opacity: 0.6; font-weight: 700; }
  .lh-rewards-name {
    font-size: 13px;
    font-weight: 700;
    margin-top: 6px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
  }
  .lh-rewards-actions {
    display: flex;
    gap: 8px;
    padding: 14px 18px;
    background: #fafbfc;
    border-top: 1px solid #f1f5f9;
  }
  .lh-rewards-actions .lh-action-btn { flex: 1; justify-content: center; }

  .lh-rewards-vouchers {
    padding: 4px 0;
    background: #fff;
  }
  .lh-rewards-voucher {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
  }
  .lh-rewards-voucher:last-child { border-bottom: none; }
  .lh-rewards-voucher-icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.18));
    display: flex; align-items: center; justify-content: center;
    color: #6366f1;
  }
  .lh-rewards-voucher-icon svg { width: 18px; height: 18px; }
  .lh-rewards-voucher-meta {
    flex: 1;
    min-width: 0;
  }
  .lh-rewards-voucher-name {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
  }
  .lh-rewards-voucher-code {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: #6366f1;
    margin-top: 2px;
    user-select: all;
  }
  .lh-rewards-voucher-status {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .lh-rewards-voucher-status--active { background: #e0f2fe; color: #0369a1; }
  .lh-rewards-voucher-status--used { background: #f1f5f9; color: #475569; }

  .lh-rewards-empty {
    padding: 18px;
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
    font-style: italic;
  }

  .lh-rewards-loginprompt {
    padding: 18px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    font-size: 13px;
    color: #475569;
  }
  .lh-rewards-loginprompt a {
    color: #6366f1;
    font-weight: 700;
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .lh-rewards-panel { margin-left: 0; }
    .lh-think-trace { margin-left: 0; }
  }





/* The base style for the spring words */
.lh-spring-word {
  display: inline-block; /* Required to allow translateY to work */
  opacity: 0; /* Start hidden */
  /* The cubic-bezier numbers dictate the "spring" physics (overshoot and settle) */
  animation: lhSpringUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Stagger the delays so they pop up one after the other */
.lh-spring-word:nth-child(1) { animation-delay: 0.2s; }
.lh-spring-word:nth-child(2) { animation-delay: 0.35s; }
.lh-spring-word:nth-child(3) { animation-delay: 0.5s; }

/* The Keyframe */
@keyframes lhSpringUp {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}







.lh-price-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.lh-price-card-img { width: 52px; height: 52px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.lh-price-card-img img { width: 100%; height: 100%; object-fit: cover; }
.lh-price-card-body { flex: 1; min-width: 0; }
.lh-price-card-name { font-weight: 700; font-size: 13px; color: #0f172a; }
.lh-price-card-type { font-size: 11px; color: #94a3b8; margin-bottom: 2px; }
.lh-price-card-price { font-size: 16px; font-weight: 800; color: #0f172a; letter-spacing: -0.5px; }
.lh-price-card-stock { font-size: 11px; color: #94a3b8; margin-top: 2px; }
.lh-price-card-stock--in { color: #22c55e; }
.lh-price-card-addbtn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 4px;
  background: #0f172a; color: #fff;
  border: none; border-radius: 8px; padding: 7px 10px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: background 0.15s;
}
.lh-price-card-addbtn:hover { background: #1e293b; }
.lh-price-card-addbtn svg { flex-shrink: 0; }

=== AI CART PANEL ===

.lh-ai-cart-btn {
  position: relative;
  background: none; border: none; cursor: pointer;
  padding: 4px 6px; margin-right: 4px;
  color: #0f172a; display: flex; align-items: center;
}
.lh-ai-cart-badge {
  position: absolute; top: -2px; right: -2px;
  background: #ef4444; color: #fff;
  font-size: 9px; font-weight: 800; line-height: 1;
  border-radius: 99px; min-width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.15s, transform 0.15s;
}
.lh-ai-cart-badge.is-visible { opacity: 1; transform: scale(1); }

.lh-ai-cart-panel {
  position: absolute; inset: 0;
  background: #fff;
  z-index: 20;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  border-radius: 0 0 16px 16px; /* match container */
}
.lh-ai-cart-panel.is-open { transform: translateX(0); }

.lh-ai-cart-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.lh-ai-cart-panel-title {
  display: flex; align-items: center; gap: 7px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.5px;
}
.lh-ai-cart-panel-close {
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: #64748b; line-height: 1; padding: 2px 6px;
}

.lh-ai-cart-items-list {
  flex: 1; overflow-y: auto; padding: 12px 16px;
}
.lh-ai-cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; height: 100%; color: #94a3b8; text-align: center; font-size: 13px;
}

.lh-ai-cart-item {
  border: 1px solid #f1f5f9; border-radius: 12px; overflow: hidden; margin-bottom: 10px;
  background: #fff;
}
.lh-ai-cart-item-main {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  cursor: pointer;
}
.lh-ai-cart-item-img {
  width: 48px; height: 48px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
  background: #f8fafc;
}
.lh-ai-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.lh-ai-cart-item-info { flex: 1; min-width: 0; }
.lh-ai-cart-item-title { font-weight: 700; font-size: 12px; color: #0f172a; }
.lh-ai-cart-item-type { font-size: 10px; color: #94a3b8; }
.lh-ai-cart-item-price { font-size: 13px; font-weight: 800; color: #0f172a; margin-top: 2px; }
.lh-ai-cart-item-controls { display: flex; align-items: center; gap: 4px; }
.lh-ai-cart-expand-btn, .lh-ai-cart-remove-btn {
  background: none; border: 1px solid #e2e8f0; border-radius: 6px; cursor: pointer;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  color: #64748b; flex-shrink: 0;
}
.lh-ai-cart-expand-btn svg { transition: transform 0.2s; }
.lh-ai-cart-item.is-expanded .lh-ai-cart-expand-btn svg { transform: rotate(180deg); }
.lh-ai-cart-remove-btn:hover { border-color: #ef4444; color: #ef4444; }

.lh-ai-cart-item-details {
  display: none; border-top: 1px solid #f1f5f9; padding: 10px 12px;
  background: #f8fafc;
}
.lh-ai-cart-item.is-expanded .lh-ai-cart-item-details { display: block; }
.lh-ai-cart-detail-row { margin-bottom: 8px; }
.lh-ai-cart-detail-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px; color: #94a3b8;
  text-transform: uppercase; margin-bottom: 2px;
}
.lh-ai-cart-detail-text { font-size: 12px; color: #475569; line-height: 1.5; }
.lh-ai-cart-detail-link {
  display: inline-block; margin-top: 6px; font-size: 11px; font-weight: 700;
  color: #0f172a; text-decoration: none;
}

.lh-ai-cart-panel-footer {
  padding: 14px 16px; border-top: 1px solid #f1f5f9; flex-shrink: 0;
}
.lh-ai-cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 14px; color: #0f172a; margin-bottom: 10px;
}
.lh-ai-cart-total-val { font-size: 16px; }
.lh-ai-cart-view-btn {
  display: block; width: 100%; text-align: center;
  background: #0f172a; color: #fff; border-radius: 10px;
  padding: 12px; font-size: 13px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.3px;
}
.lh-ai-cart-view-btn:hover { background: #1e293b; }

=== HOW TO USE PANEL ===
(uses existing .lh-product-panel styles — no new CSS needed)

=== PICTOGRAM STRIP ===

.lh-allergen-pictogram-strip {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 12px 16px; background: #fffbeb;
  border-bottom: 1px solid #fde68a;
}
.lh-allergen-pictogram-strip img,
.lh-allergen-pictogram-strip svg {
  width: 48px; height: 48px; display: block;
}
*/
</style>