/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #000000;
  --white: #FFFFFF;
  --blue: #0072CE;
  --light-gray: #F5F5F5;
  --mid-gray: #E0E0E0;
  --dark-gray: #333333;
  --text: #1a1a1a;
  --text-light: #666666;
  --text-muted: #999999;
  --red: #C41230;
  --border: #e8e8e8;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 4px;
  --transition: 0.2s ease;
  --font: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', Times, serif;
}
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ─── Top Banner (AnyFashion promo strip) ─── */
.top-banner { background: var(--light-gray); text-align: center; padding: 8px 16px; font-size: 12px; color: var(--text); }
.top-banner a { color: var(--text); text-decoration: underline; font-weight: 500; }

/* ─── Header ─── */
.site-header { position: sticky; top: 0; background: var(--white); z-index: 100; }
.header-top { padding: 12px 0; border-bottom: 1px solid var(--border); }
.header-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 20px; }
.logo a {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--black);
  white-space: nowrap;
  font-family: var(--font);
}
.header-search { flex: 1; max-width: 520px; position: relative; }
.header-search input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  background: var(--light-gray);
  transition: var(--transition);
  font-family: var(--font);
}
.header-search input:focus { outline: none; border-color: var(--black); background: var(--white); }
.header-search input::placeholder { color: var(--text-muted); }
.search-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.header-actions { display: flex; gap: 4px; align-items: center; margin-left: auto; }
.header-btn {
  position: relative;
  color: var(--text);
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
  transition: var(--transition);
  font-size: 12px;
}
.header-btn:hover { background: var(--light-gray); }
.btn-label { font-size: 12px; text-align: left; line-height: 1.2; color: var(--text); }
.btn-label small { color: var(--text-muted); font-size: 10px; }
.bag-count {
  position: absolute; top: 0; right: 0;
  background: var(--black); color: var(--white);
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ─── Main Nav (matches AnyFashion exactly) ─── */
.main-nav { background: var(--white); border-bottom: 1px solid var(--border); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; gap: 0; justify-content: center;
}
.nav-link {
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-link:hover { color: var(--black); }
.nav-link:hover::after {
  content: ''; position: absolute; bottom: 0; left: 24px; right: 24px;
  height: 2px; background: var(--black);
}
.sale-link { color: var(--red); }
.sale-link:hover { color: var(--red); }
.sale-link:hover::after { background: var(--red); }

/* ─── Hero Carousel ─── */
.hero-carousel { position: relative; overflow: hidden; background: var(--light-gray); }
.carousel-track { display: flex; transition: transform 0.5s ease; }
.carousel-slide { min-width: 100%; }
.slide-split { display: grid; grid-template-columns: 1fr 1fr; height: 75vh; min-height: 500px; max-height: 750px; }
.slide-left, .slide-right { position: relative; overflow: hidden; }
.slide-with-img { background-size: cover; background-position: center center; background-repeat: no-repeat; }
.slide-with-img .slide-overlay-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 36px; z-index: 2; }
.slide-with-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 40%, transparent 100%); }
.slide-with-img .slide-overlay-content h1 { color: var(--white); text-shadow: 0 1px 3px rgba(0,0,0,0.3); font-size: 32px; }
.slide-with-img .slide-overlay-content p { color: rgba(255,255,255,0.9); font-size: 14px; }
.slide-with-img .slide-cta { background: var(--white); color: var(--black); }
.slide-with-img .slide-cta:hover { background: var(--light-gray); }
.slide-with-img .slide-cta-outline { border-color: var(--white); color: var(--white); }
.slide-with-img .slide-cta-outline:hover { background: var(--white); color: var(--black); }
.slide-full { height: 75vh; min-height: 500px; max-height: 750px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 48px 40px; position: relative; }
.slide-overlay-content h1, .slide-center-content h1 { font-size: 36px; font-weight: 400; font-family: var(--font-serif); line-height: 1.2; margin-bottom: 12px; color: var(--black); }
.slide-overlay-content p, .slide-center-content p { font-size: 15px; color: var(--dark-gray); margin-bottom: 20px; max-width: 480px; }
.slide-eyebrow { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 10px; font-weight: 500; }
.slide-cta { display: inline-block; background: var(--black); color: var(--white); padding: 11px 24px; font-size: 13px; font-weight: 500; transition: var(--transition); border: none; cursor: pointer; text-decoration: none; }
.slide-cta:hover { background: #333; }
.slide-cta-outline { display: inline-block; background: transparent; color: var(--black); padding: 11px 24px; font-size: 13px; font-weight: 500; border: 1px solid var(--black); transition: var(--transition); cursor: pointer; text-decoration: none; margin-left: 10px; }
.slide-cta-outline:hover { background: var(--black); color: var(--white); }
.slide-actions { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.slide-center-content { max-width: 560px; }

.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: var(--white); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 10; transition: var(--transition); color: var(--text); }
.carousel-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.2); border: none; cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--black); }

/* ─── Top Picks for You ─── */
.top-picks { padding: 32px 20px 24px; max-width: 1280px; margin: 0 auto; }
.top-picks h2 { font-size: 24px; font-weight: 400; font-style: italic; font-family: var(--font-serif); margin-bottom: 14px; }
.picks-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 20px; overflow-x: auto; }
.picks-tab { padding: 10px 0; margin-right: 24px; font-size: 13px; color: var(--text-light); background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; font-family: var(--font); transition: var(--transition); }
.picks-tab:hover { color: var(--black); }
.picks-tab.active { color: var(--black); border-bottom-color: var(--black); font-weight: 500; }
.picks-carousel-wrap { position: relative; }
.picks-carousel { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 0; }
.picks-carousel::-webkit-scrollbar { display: none; }
.picks-arrow { position: absolute; top: 40%; transform: translateY(-50%); width: 36px; height: 36px; background: var(--white); border: 1px solid var(--border); border-radius: 50%; font-size: 20px; color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: var(--transition); }
.picks-arrow:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.picks-arrow-left { left: -4px; }
.picks-arrow-right { right: -4px; }
.pick-card { min-width: 180px; max-width: 180px; cursor: pointer; flex-shrink: 0; }
.pick-card:hover .pick-img img { transform: scale(1.03); }
.pick-img { aspect-ratio: 3/4; overflow: hidden; background: var(--light-gray); border-radius: 2px; margin-bottom: 8px; position: relative; }
.pick-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.pick-badge { position: absolute; bottom: 6px; left: 6px; background: var(--white); font-size: 10px; font-weight: 500; padding: 2px 6px; border-radius: 2px; }
.pick-brand { font-size: 12px; color: var(--text-light); margin-bottom: 1px; }
.pick-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pick-price { font-size: 13px; }
.pick-tag { font-size: 10px; color: var(--red); font-weight: 500; margin-top: 2px; }

/* ─── Category Row ─── */
.category-row { padding: 36px 20px; background: var(--white); border-bottom: 1px solid var(--border); }
.category-row-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.cat-item { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; transition: var(--transition); }
.cat-item:hover { transform: translateY(-2px); }
.cat-item:hover .cat-circle { border-color: var(--black); }
.cat-circle { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; border: 2px solid var(--border); transition: var(--transition); }
.cat-circle img { width: 100%; height: 100%; object-fit: cover; }
.cat-item span { font-size: 12px; color: var(--text); }

/* ─── Trending Section ─── */
.trending-section { padding: 40px 20px; max-width: 1280px; margin: 0 auto; }
.trending-section h2 { font-size: 24px; font-weight: 400; font-style: italic; font-family: var(--font-serif); margin-bottom: 24px; }
.trending-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trending-card { cursor: pointer; transition: var(--transition); }
.trending-card:hover { transform: translateY(-2px); }
.trending-img { background: var(--light-gray); border-radius: 2px; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 8px; }
.trending-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.trending-card:hover .trending-img img { transform: scale(1.03); }
.trending-brand { font-size: 12px; color: var(--text-light); }
.trending-name { font-size: 13px; font-weight: 500; margin: 2px 0; }
.trending-price { font-size: 13px; }
.trending-tag { display: inline-block; font-size: 10px; padding: 2px 6px; background: var(--light-gray); color: var(--text-light); border-radius: 2px; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.3px; }

/* ─── Personal Shopper CTA ─── */
.personal-shopper-cta { background: var(--light-gray); padding: 56px 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ps-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ps-eyebrow { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.ps-text h2 { font-size: 28px; font-weight: 400; font-style: italic; font-family: var(--font-serif); margin-bottom: 14px; }
.ps-text p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.ps-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ps-visual { display: flex; justify-content: center; }
.ps-card { width: 300px; background: var(--white); border-radius: 8px; box-shadow: var(--shadow-lg); overflow: hidden; }
.ps-card-header { background: var(--black); color: var(--white); padding: 10px 14px; font-size: 13px; font-weight: 500; }
.ps-chat-preview { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.ps-msg { padding: 8px 12px; border-radius: 12px; font-size: 12px; max-width: 85%; line-height: 1.4; }
.ps-msg-bot { background: var(--light-gray); align-self: flex-start; border-bottom-left-radius: 3px; }
.ps-msg-user { background: var(--black); color: var(--white); align-self: flex-end; border-bottom-right-radius: 3px; }
.ps-quick-replies { display: flex; flex-wrap: wrap; gap: 4px; }
.ps-quick-replies span { padding: 4px 10px; border: 1px solid var(--border); border-radius: 12px; font-size: 10px; color: var(--text-muted); }

/* ─── Personas ─── */
.persona-section { padding: 56px 20px; text-align: center; background: var(--white); }
.persona-section h2 { font-size: 24px; font-weight: 400; font-style: italic; font-family: var(--font-serif); margin-bottom: 6px; }
.section-sub { color: var(--text-light); font-size: 13px; margin-bottom: 32px; }
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; max-width: 1080px; margin: 0 auto; }
.persona-card { background: var(--white); border-radius: var(--radius); padding: 20px; text-align: left; cursor: pointer; transition: var(--transition); border: 1px solid var(--border); }
.persona-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--black); }
.persona-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; margin-bottom: 10px; background: var(--light-gray); }
.persona-avatar img { width: 100%; height: 100%; object-fit: cover; }
.persona-name { font-size: 16px; font-weight: 500; margin-bottom: 2px; }
.persona-style { font-size: 11px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.persona-bio { font-size: 12px; color: var(--text-light); line-height: 1.5; margin-bottom: 10px; }
.persona-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.persona-tag { font-size: 10px; padding: 2px 8px; background: var(--light-gray); border-radius: 8px; color: var(--text-muted); }

/* ─── How It Works ─── */
.how-it-works { padding: 56px 20px; text-align: center; max-width: 1080px; margin: 0 auto; }
.how-it-works h2 { font-size: 24px; font-weight: 400; font-style: italic; font-family: var(--font-serif); margin-bottom: 36px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { text-align: left; }
.step-number { font-size: 28px; font-weight: 200; color: var(--text-muted); margin-bottom: 8px; }
.step-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ─── Buttons ─── */
.btn-primary { background: var(--black); color: var(--white); padding: 11px 24px; font-size: 13px; font-weight: 500; transition: var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { background: #333; }
.btn-secondary { background: transparent; color: var(--black); padding: 11px 24px; font-size: 13px; font-weight: 500; border: 1px solid var(--black); transition: var(--transition); cursor: pointer; }
.btn-secondary:hover { background: var(--black); color: var(--white); }

/* ─── Footer ─── */
.site-footer { background: var(--light-gray); border-top: 1px solid var(--border); padding: 40px 20px 0; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 28px; }
.footer-col h4 { font-size: 12px; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 12px; color: var(--text-light); margin-bottom: 6px; transition: var(--transition); }
.footer-col a:hover { color: var(--black); text-decoration: underline; }
.footer-bottom { border-top: 1px solid var(--border); padding: 14px 0; text-align: center; font-size: 11px; color: var(--text-muted); }

/* ─── Chat Widget ─── */
.chat-fab { position: fixed; bottom: 20px; right: 20px; width: 48px; height: 48px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,0.25); z-index: 200; cursor: pointer; transition: var(--transition); }
.chat-fab:hover { transform: scale(1.05); }

.chat-panel { position: fixed; right: 0; top: 0; bottom: 0; width: 400px; background: var(--white); box-shadow: -2px 0 20px rgba(0,0,0,0.12); z-index: 300; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.3s ease; }
.chat-panel.open { transform: translateX(0); }

.chat-header { padding: 12px 16px; background: var(--black); color: var(--white); display: flex; justify-content: space-between; align-items: center; }
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar { font-size: 20px; }
.chat-title { font-size: 14px; font-weight: 500; }
.chat-status { font-size: 10px; opacity: 0.5; }
.chat-header-actions { display: flex; gap: 4px; }
.chat-header-actions button { color: var(--white); opacity: 0.5; padding: 4px; transition: var(--transition); }
.chat-header-actions button:hover { opacity: 1; }

.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }

.message { max-width: 88%; animation: fadeIn 0.25s ease; }
.message.user { align-self: flex-end; }
.message.assistant { align-self: flex-start; }
.message-bubble { padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.5; }
.message.user .message-bubble { background: var(--black); color: var(--white); border-bottom-right-radius: 3px; }
.message.assistant .message-bubble { background: var(--light-gray); color: var(--text); border-bottom-left-radius: 3px; }
.message-bubble p { margin-bottom: 6px; }
.message-bubble p:last-child { margin-bottom: 0; }

/* Chat product cards */
.chat-product-card { display: flex; gap: 12px; background: var(--white); border: 1px solid var(--border); border-radius: 6px; margin: 6px 0; cursor: pointer; transition: var(--transition); overflow: hidden; }
.chat-product-card:hover { border-color: var(--black); box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.chat-product-img { width: 90px; min-height: 110px; background: var(--light-gray); overflow: hidden; flex-shrink: 0; }
.chat-product-img img { width: 100%; height: 100%; object-fit: cover; }
.chat-product-info { padding: 10px 12px 10px 0; display: flex; flex-direction: column; justify-content: center; }
.chat-product-info h4 { font-size: 13px; font-weight: 600; margin-bottom: 1px; }
.chat-product-info .brand { font-size: 11px; color: var(--text-muted); }
.chat-product-info .price { font-size: 13px; font-weight: 600; margin-top: 3px; }
.chat-product-info .desc { font-size: 11px; color: var(--text-light); line-height: 1.4; margin-top: 3px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Quick replies */
.quick-replies { padding: 6px 12px; display: flex; flex-wrap: wrap; gap: 5px; }
.quick-reply-btn { padding: 6px 12px; border: 1px solid var(--border); border-radius: 14px; font-size: 12px; color: var(--text); background: var(--white); transition: var(--transition); cursor: pointer; }
.quick-reply-btn:hover { border-color: var(--black); background: var(--black); color: var(--white); }

/* Chat input */
.chat-input-area { border-top: 1px solid var(--border); }
.chat-form { display: flex; padding: 10px 12px; gap: 6px; }
.chat-form input { flex: 1; padding: 8px 14px; border: 1px solid var(--border); border-radius: 18px; font-size: 13px; font-family: var(--font); }
.chat-form input:focus { outline: none; border-color: var(--black); }
.chat-form button { color: var(--black); padding: 6px; }

/* Typing indicator */
.typing-indicator { display: flex; gap: 3px; padding: 10px 14px; }
.typing-dot { width: 6px; height: 6px; background: var(--mid-gray); border-radius: 50%; animation: typing 1.4s infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

.product-link { color: var(--blue); font-weight: 500; cursor: pointer; }
.product-link:hover { text-decoration: underline; }

/* ─── Style Comparison Cards ─── */
.style-comparison { display: flex; gap: 8px; align-items: stretch; margin: 4px 0; }
.style-option { flex: 1; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; cursor: pointer; transition: all 0.25s ease; background: var(--white); }
.style-option:hover { border-color: var(--black); transform: translateY(-2px); box-shadow: 0 3px 10px rgba(0,0,0,0.08); }
.style-option-img { aspect-ratio: 3/4; overflow: hidden; }
.style-option-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.style-option:hover .style-option-img img { transform: scale(1.03); }
.style-option-info { padding: 8px 10px; }
.style-option-vibe { font-size: 12px; font-weight: 600; margin-bottom: 2px; }
.style-option-desc { font-size: 10px; color: var(--text-light); line-height: 1.3; }
.style-vs { display: flex; align-items: center; font-size: 11px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.style-option-selected { border-color: var(--black); background: #f0f7ff; }
.style-option-dimmed { opacity: 0.3; }
.style-comparison-msg .message-bubble { background: transparent !important; padding: 0 !important; }

/* Style Profile Result */
.style-profile-result { background: linear-gradient(135deg, #f8f6f3 0%, #ebe7e0 100%); border-radius: 8px; padding: 18px; margin-bottom: 10px; text-align: center; }
.style-profile-badge { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.style-profile-name { font-size: 20px; font-weight: 400; margin-bottom: 6px; }
.style-profile-desc { font-size: 12px; color: var(--text-light); line-height: 1.5; margin-bottom: 12px; }
.style-profile-brands { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; }
.style-profile-label { font-size: 10px; color: var(--text-muted); width: 100%; margin-bottom: 2px; }
.style-brand-tag { font-size: 10px; padding: 3px 8px; background: var(--white); border-radius: 10px; color: var(--text); border: 1px solid var(--border); }

/* ─── Shopping Bag Sidebar ─── */
.bag-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 400; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.bag-overlay.open { opacity: 1; pointer-events: auto; }
.bag-sidebar { position: fixed; right: 0; top: 0; bottom: 0; width: 360px; background: var(--white); z-index: 500; transform: translateX(100%); transition: transform 0.3s ease; display: flex; flex-direction: column; }
.bag-sidebar.open { transform: translateX(0); }
.bag-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.bag-header h2 { font-size: 16px; font-weight: 400; }
.bag-header button { font-size: 18px; color: var(--text-muted); }
.bag-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.bag-empty { text-align: center; color: var(--text-muted); padding: 40px 0; font-size: 13px; }
.bag-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--light-gray); }
.bag-item-img { width: 60px; height: 60px; background: var(--light-gray); border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.bag-item-img img { width: 100%; height: 100%; object-fit: cover; }
.bag-item-details { flex: 1; }
.bag-item-name { font-size: 13px; font-weight: 500; }
.bag-item-brand { font-size: 11px; color: var(--text-muted); }
.bag-item-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.bag-item-price { font-size: 13px; font-weight: 600; margin-top: 2px; }
.bag-item-remove { font-size: 11px; color: var(--text-muted); cursor: pointer; margin-top: 2px; }
.bag-item-remove:hover { color: var(--red); }
.bag-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.bag-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 500; margin-bottom: 12px; }
.bag-checkout { width: 100%; text-align: center; }

/* ─── Store Cards ─── */
.store-card { display: flex; gap: 12px; padding: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 6px; margin: 6px 0; cursor: pointer; transition: var(--transition); }
.store-card:hover { border-color: var(--black); box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.store-card-img { width: 70px; height: 70px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.store-card-img img { width: 100%; height: 100%; object-fit: cover; }
.store-card-info { flex: 1; }
.store-card-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.store-card-addr { font-size: 11px; color: var(--text-light); }
.store-card-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.store-card-badge { font-size: 10px; color: var(--black); font-weight: 500; margin-top: 3px; }

/* ─── Appointment Slots ─── */
.appt-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.appt-header { padding: 14px 16px; background: var(--black); color: var(--white); }
.appt-store-name { font-size: 14px; font-weight: 500; }
.appt-store-addr { font-size: 11px; opacity: 0.7; margin-top: 2px; }
.appt-section { padding: 12px 16px; border-bottom: 1px solid var(--light-gray); }
.appt-section:last-of-type { border-bottom: none; }
.appt-date-label { font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.appt-slots { display: flex; flex-wrap: wrap; gap: 6px; }
.appt-slot { padding: 6px 14px; border: 1px solid var(--border); border-radius: 16px; font-size: 12px; background: var(--white); cursor: pointer; transition: var(--transition); font-family: var(--font); }
.appt-slot:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.appt-slot-taken { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
.appt-slot-taken:hover { border-color: var(--border); background: var(--white); color: var(--text); }
.appt-note { padding: 10px 16px; font-size: 11px; color: var(--text-muted); background: var(--light-gray); text-align: center; }

/* ─── Appointment Confirmation ─── */
.appt-confirmation { background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 100%); border-radius: 8px; padding: 20px; text-align: center; }
.appt-confirm-icon { font-size: 32px; color: #2e7d32; margin-bottom: 6px; }
.appt-confirm-title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.appt-confirm-id { font-size: 11px; color: var(--text-muted); margin-bottom: 14px; }
.appt-confirm-details { text-align: left; }
.appt-confirm-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.appt-confirm-row:last-child { border-bottom: none; }
.appt-confirm-label { color: var(--text-muted); }
.appt-confirm-note { font-size: 12px; color: var(--text-light); margin-top: 12px; font-style: italic; }

/* ─── Animations ─── */
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .slide-split { grid-template-columns: 1fr; }
  .slide-right { display: none; }
  .trending-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-inner { grid-template-columns: 1fr; }
  .ps-visual { display: none; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .slide-overlay-content h1, .slide-center-content h1 { font-size: 24px; }
  .slide-split, .slide-full { height: 50vh; min-height: 320px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .chat-panel { width: 100%; }
  .bag-sidebar { width: 100%; }
  .header-search { display: none; }
  .sign-in-btn .btn-label, .store-btn .btn-label { display: none; }
  .nav-inner { overflow-x: auto; }
  .category-row-inner { gap: 16px; }
  .trending-grid { grid-template-columns: repeat(2, 1fr); }
  .persona-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
