/* ============================================
   FruitRx — Frutiger Aero Stylesheet
   Inspired by Windows Vista/7, Web 2.0 era
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&family=PT+Sans:wght@400;700&family=Nunito:wght@400;600;700;800&family=Cabin:wght@400;600;700&display=swap');

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --aero-sky-top: #1a7ad4;
  --aero-sky-mid: #4aafe0;
  --aero-sky-light: #b8e4f9;
  --aero-green: #6dba3a;
  --aero-green-dark: #4a8c22;
  --aero-glass-bg: rgba(255, 255, 255, 0.45);
  --aero-glass-bg-strong: rgba(255, 255, 255, 0.62);
  --aero-glass-border: rgba(255, 255, 255, 0.7);
  --aero-glass-shadow: rgba(0, 60, 120, 0.15);
  --aero-text: #1a2e3d;
  --aero-text-light: #3a5a6e;
  --aero-highlight: rgba(255, 255, 255, 0.85);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'PT Sans', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--aero-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background: #1a7ad4;
}

a { color: inherit; }

/* ---------- BACKGROUND LAYERS ---------- */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg,
      #0d5baa 0%,
      #2389d4 15%,
      #57b8ea 30%,
      #8dd5f5 45%,
      #c8ecfb 55%,
      #d4eec4 65%,
      #8cc63f 80%,
      #5a9e2a 100%
    );
}

/* Clouds layer */
.clouds {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.cloud {
  position: absolute;
  background: radial-gradient(ellipse, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.3) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
}

/* Bokeh layer */
.bokeh-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bokeh-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(255,255,255,0.5),
    rgba(255,255,255,0.15) 40%,
    rgba(255,255,255,0.05) 70%,
    transparent
  );
  border: 1px solid rgba(255,255,255,0.2);
  animation: bokehFloat 20s ease-in-out infinite alternate;
}
@keyframes bokehFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-30px) scale(1.05); opacity: 0.7; }
  100% { transform: translateY(10px) scale(0.95); opacity: 0.3; }
}

/* ---------- GLASS PANEL ---------- */
.glass {
  background: var(--aero-glass-bg);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--aero-glass-border);
  border-radius: 10px;
  box-shadow:
    0 4px 20px var(--aero-glass-shadow),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.glass-strong {
  background: var(--aero-glass-bg-strong);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid var(--aero-glass-border);
  border-radius: 10px;
  box-shadow:
    0 6px 30px var(--aero-glass-shadow),
    inset 0 1px 0 var(--aero-highlight);
}

/* ---------- AERO BUTTONS (Skeuomorphic) ---------- */
.btn-aero {
  display: inline-block;
  padding: 10px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 -1px 1px rgba(0,0,0,0.3);
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.15s ease;

  /* The classic Frutiger Aero gradient: lighter at top, darker at bottom */
  background: linear-gradient(180deg,
    #5ec0f0 0%,
    #3ca0e0 35%,
    #2080cc 65%,
    #1a6cb8 100%
  );
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 -1px 2px rgba(0,0,0,0.12) inset,
    0 2px 6px rgba(0,60,120,0.3);
}
/* Glossy highlight bar on top half */
.btn-aero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.08) 100%
  );
  border-radius: 5px 5px 50% 50%;
  pointer-events: none;
}
.btn-aero:hover {
  background: linear-gradient(180deg,
    #72ccf8 0%,
    #4ab0e8 35%,
    #2890d8 65%,
    #2078c4 100%
  );
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 -1px 2px rgba(0,0,0,0.12) inset,
    0 4px 12px rgba(0,60,120,0.35);
}
.btn-aero:active {
  background: linear-gradient(180deg,
    #1a6cb8 0%,
    #2080cc 50%,
    #3ca0e0 100%
  );
}

/* Green variant */
.btn-aero-green {
  background: linear-gradient(180deg,
    #8ed85c 0%,
    #6dba3a 35%,
    #529e22 65%,
    #448818 100%
  );
  border-color: rgba(0,0,0,0.2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 -1px 2px rgba(0,0,0,0.12) inset,
    0 2px 6px rgba(40,100,0,0.3);
}
.btn-aero-green:hover {
  background: linear-gradient(180deg,
    #9ee86c 0%,
    #7dca4a 35%,
    #62ae32 65%,
    #4e9820 100%
  );
}

/* Silver/neutral variant */
.btn-aero-silver {
  background: linear-gradient(180deg,
    #f0f0f0 0%,
    #dcdcdc 35%,
    #c4c4c4 65%,
    #b0b0b0 100%
  );
  color: #333;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
  border-color: rgba(0,0,0,0.15);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 -1px 2px rgba(0,0,0,0.08) inset,
    0 2px 6px rgba(0,0,0,0.12);
}

/* ---------- ORB (Frutiger Aero signature element) ---------- */
.aero-orb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,120,220,0.4);
  flex-shrink: 0;
}
.aero-orb::before {
  content: '';
  position: absolute;
  width: 68%;
  height: 50%;
  left: 16%;
  top: 2%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.1) 100%);
  z-index: 2;
}
.aero-orb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 20px 8px rgba(0,100,200,0.3);
  z-index: 1;
}
.aero-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: linear-gradient(180deg,
    rgba(120,190,240,0.75) 0%,
    rgba(60,140,210,0.65) 50%,
    rgba(30,100,180,0.7) 100%
  );
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    0 2px 12px rgba(0,40,80,0.2),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
/* Top gloss highlight */
.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
  pointer-events: none;
}
.nav-brand {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,40,80,0.4);
  text-decoration: none;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  position: relative;
  z-index: 1;
}
.nav-links a {
  display: block;
  padding: 6px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 4px;
  text-shadow: 0 -1px 1px rgba(0,0,0,0.2);
  transition: background 0.15s;
  border: 1px solid transparent;
}
.nav-links a:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.25);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 100px 30px 60px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(1px);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20,90,170,0.4) 0%,
    rgba(20,90,170,0.15) 40%,
    rgba(100,180,100,0.15) 70%,
    rgba(80,160,60,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}
.hero-card {
  padding: 50px 60px;
}
.hero h1 {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0d3a5c;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--aero-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ---------- NATURE PHOTO STRIP ---------- */
.nature-strip {
  position: relative;
  z-index: 2;
  height: 180px;
  overflow: hidden;
  display: flex;
}
.nature-strip img {
  height: 100%;
  width: 25%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ---------- SECTIONS ---------- */
.section {
  position: relative;
  z-index: 2;
  padding: 60px 18em;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-title {
  font-family: 'Cabin', 'Segoe UI', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #0d3a5c;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.section-desc {
  font-size: 1rem;
  color: var(--aero-text-light);
  max-width: 550px;
  margin: 0 auto;
}

/* ---------- COMPARISON PANEL ---------- */
.comparison-panel {
  padding: 35px 40px;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 30px;
}
.comparison-panel .orb-container {
  flex-shrink: 0;
}
.comparison-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0d3a5c;
  margin-bottom: 16px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.price-label {
  font-size: 0.88rem;
  color: var(--aero-text-light);
  width: 180px;
  flex-shrink: 0;
}
.price-old {
  font-size: 1.2rem;
  color: #b44;
  text-decoration: line-through;
}
.price-new {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--aero-green-dark);
}
.savings-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 16px;
  background: linear-gradient(180deg, #8ed85c, #5a9e2a);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  text-shadow: 0 -1px 1px rgba(0,0,0,0.2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 2px 4px rgba(40,100,0,0.25);
}

/* ---------- DRUG GRID ---------- */
.drug-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.drug-card {
  padding: 0;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}
.drug-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 12px 40px var(--aero-glass-shadow),
    0 0 0 1px rgba(255,255,255,0.15),
    inset 0 1px 0 var(--aero-highlight);
}
.drug-card-bg {
  position: absolute;
  inset: -10px;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.drug-card:hover .drug-card-bg {
  transform: scale(1.06);
}
/* Glass overlay so text is readable */
.drug-card-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  /* 10% wider on sides and bottom so parallax shifts don't expose image edges */
  margin-left: -10%;
  margin-right: -10%;
  margin-bottom: -10%;
  padding: 20px calc(10% + 18px) calc(10% + 18px);
  background: linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 8%,
    rgba(255,255,255,0.65) 25%,
    rgba(255,255,255,0.82) 55%,
    rgba(255,255,255,0.92) 100%
  );
  backdrop-filter: blur(10px) saturate(1.3);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  border-top: 1px solid rgba(255,255,255,0.4);
  transition: transform 0.15s ease-out;
  will-change: transform;
}
/* Glass shine accent */
.drug-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.06) 40%,
    transparent 100%
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drug-card:hover::after {
  opacity: 1;
}
.drug-card-name {
  font-family: 'Cabin', 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0d3a5c;
  margin-bottom: 2px;
}
.drug-card-generic {
  font-size: 0.78rem;
  color: var(--aero-text-light);
  margin-bottom: 10px;
}
.drug-card-price {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--aero-green-dark);
  margin-bottom: 2px;
}
.drug-card-original {
  font-size: 0.82rem;
  color: #b44;
  text-decoration: line-through;
  margin-bottom: 8px;
}
.drug-card-savings {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #8ed85c, #5a9e2a);
  border-radius: 3px;
  text-shadow: 0 -1px 1px rgba(0,0,0,0.15);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset;
}
.drug-card-link {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--aero-sky-top);
}

/* ---------- QUOTE ---------- */
.quote-panel {
  padding: 40px 50px;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
}
.quote-mark {
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 4rem;
  color: rgba(0,120,200,0.12);
  font-family: Georgia, serif;
  line-height: 1;
}
.quote-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--aero-text);
  font-style: italic;
  position: relative;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d3a5c;
  margin: 28px 0 12px;
  padding-left: 4px;
}
.faq-item {
  margin-bottom: 6px;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--aero-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  transition: background 0.15s;
}
.faq-q:hover {
  background: rgba(255,255,255,0.5);
}
.faq-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s;
  color: var(--aero-text-light);
}
.faq-q.open .faq-arrow {
  transform: rotate(90deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.9rem;
  color: var(--aero-text-light);
  line-height: 1.7;
  padding: 0 20px;
}
.faq-a.open {
  max-height: 250px;
  padding: 12px 20px 16px;
}

/* ---------- NOTIFY PANEL ---------- */
.notify-panel {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}
.notify-panel h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0d3a5c;
  margin-bottom: 10px;
}
.notify-panel p {
  font-size: 0.95rem;
  color: var(--aero-text-light);
  margin-bottom: 20px;
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 30px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.footer a:hover { text-decoration: underline; }
.footer-parody {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- IMAGE PANELS ---------- */
.nature-panel {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,40,80,0.2);
}
.nature-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nature-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,40,80,0.5));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.nature-panel-overlay p {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .section { padding: 60px 6em; }
}
@media (max-width: 768px) {
  body { }
  .hero h1 { font-size: 1.9rem; }
  .hero-card { padding: 30px 25px; }
  .hero { min-height: 70vh; padding-top: 80px; }
  .comparison-panel { flex-direction: column; text-align: center; padding: 25px; }
  .price-row { flex-direction: column; gap: 2px; }
  .price-label { width: auto; }
  .drug-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .section { padding: 40px 16px; }
  .nav { padding: 0 16px; }
  .nature-strip { height: 100px; }
  .nature-strip img { width: 50%; }
  .quote-panel { padding: 30px; }
}
@media (max-width: 480px) {
  .drug-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
}

/* ---------- WATER REFLECTION BAR ---------- */
.reflection-bar {
  height: 60px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.1),
    rgba(100,200,255,0.15),
    rgba(255,255,255,0.05)
  );
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.reflection-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.05) 40px,
    rgba(255,255,255,0.05) 80px
  );
  animation: reflectionSlide 8s linear infinite;
}
@keyframes reflectionSlide {
  0% { transform: translateX(-80px); }
  100% { transform: translateX(0); }
}

/* ---------- PARODY BANNER ---------- */
.parody-banner {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #f8f0c0, #e8d88a);
  text-align: center;
  padding: 6px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b5800;
  border-bottom: 1px solid #d4c478;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.5);
}
.parody-banner a {
  color: #4a3d00;
  text-decoration: underline;
}

/* ---------- OUTLOOK 2007 CONTACT CARD ---------- */
.outlook-card {
  max-width: 420px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  border: 1px solid #8db2e3;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}
.outlook-titlebar {
  background: linear-gradient(180deg, #c6d9f1 0%, #a5c0e6 40%, #8aafdc 100%);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #7a9cc7;
}
.outlook-titlebar span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a3660;
}
.outlook-titlebar-btns {
  display: flex;
  gap: 2px;
}
.outlook-titlebar-btn {
  width: 18px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.2);
  background: linear-gradient(180deg, #f0f4fa, #d8e4f2);
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a6a8a;
  cursor: default;
}
.outlook-body {
  background: linear-gradient(180deg, #f8fafd, #eef3fa);
  padding: 18px;
  display: flex;
  gap: 16px;
}
.outlook-avatar {
  width: 72px;
  height: 72px;
  border-radius: 0;
  border: 2px solid #b8cce4;
  background: linear-gradient(135deg, #d4e4f7, #a5c0e6);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.outlook-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outlook-info {
  flex: 1;
  min-width: 0;
}
.outlook-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a3660;
  margin-bottom: 2px;
}
.outlook-title {
  font-size: 0.78rem;
  color: #4a6a8a;
  margin-bottom: 8px;
}
.outlook-field {
  font-size: 0.75rem;
  color: #3a5a7a;
  margin-bottom: 3px;
  display: flex;
  gap: 8px;
}
.outlook-field-label {
  color: #7a8a9a;
  width: 55px;
  flex-shrink: 0;
  text-align: right;
}
.outlook-field-value {
  color: #1a3660;
}
.outlook-field-value a {
  color: #2060b0;
  text-decoration: none;
}
.outlook-field-value a:hover { text-decoration: underline; }
.outlook-toolbar {
  background: linear-gradient(180deg, #e8eef6, #d0dbed);
  padding: 6px 10px;
  display: flex;
  gap: 4px;
  border-top: 1px solid #b8cce4;
}
.outlook-tool-btn {
  padding: 3px 10px;
  font-size: 0.7rem;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-weight: 600;
  color: #2a4a6a;
  background: linear-gradient(180deg, #f8fafd, #e0e8f2);
  border: 1px solid #a0b8d4;
  border-radius: 2px;
  cursor: default;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset;
}

/* ---------- VISTA SIDEBAR GADGET ---------- */
.vista-gadget {
  width: 220px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.4);
  font-family: 'Segoe UI', Tahoma, sans-serif;
}
.vista-gadget-header {
  background: linear-gradient(180deg,
    rgba(40,40,40,0.85) 0%,
    rgba(20,20,20,0.9) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.vista-gadget-header span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.vista-gadget-close {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e66, #c44);
  border: 1px solid rgba(0,0,0,0.3);
  font-size: 0;
  cursor: default;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset;
}
.vista-gadget-body {
  background: linear-gradient(180deg,
    rgba(30,30,30,0.8),
    rgba(10,10,10,0.85)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  line-height: 1.6;
}
.vista-gadget-body .gadget-quote {
  font-style: italic;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.7);
}
.vista-gadget-body .gadget-attr {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-align: right;
}

/* ---------- ASSISTANT (Clippy-era helper) ---------- */
.assistant-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}
.assistant-bubble {
  pointer-events: auto;
  max-width: 260px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #fffef0, #fdf8d0);
  border: 1px solid #d4c478;
  border-radius: 10px 10px 0 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.8rem;
  color: #4a3d00;
  line-height: 1.5;
  position: relative;
  cursor: default;
  animation: bubbleFadeIn 0.6s ease-out;
}
.assistant-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fdf8d0;
}
.assistant-bubble-title {
  font-weight: 700;
  margin-bottom: 4px;
  color: #2a2000;
}
.assistant-dismiss {
  position: absolute;
  top: 4px;
  right: 8px;
  background: none;
  border: none;
  font-size: 0.9rem;
  color: #a09060;
  cursor: pointer;
  pointer-events: auto;
}
@keyframes bubbleFadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.assistant-figure {
  pointer-events: auto;
  width: 110px;
  height: 180px;
  position: relative;
  cursor: pointer;
  filter: drop-shadow(0 6px 16px rgba(40,120,200,0.3));
  /* Float handled by JS for harmonic sinusoids */
}
.assistant-figure:hover {
  filter: drop-shadow(0 8px 24px rgba(40,120,200,0.45));
}
.assistant-figure svg {
  width: 100%;
  height: 100%;
}
.eevee-label {
  pointer-events: none;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(40,120,200,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: right;
  padding-right: 8px;
}

/* ---------- FONT UTILITY CLASSES ---------- */
.font-nunito { font-family: 'Nunito', sans-serif; }
.font-cabin { font-family: 'Cabin', sans-serif; }
.font-pt { font-family: 'PT Sans', sans-serif; }
.font-segoe { font-family: 'Segoe UI', Tahoma, sans-serif; }
.font-trebuchet { font-family: 'Trebuchet MS', Helvetica, sans-serif; }

/* -- Outlook / gadget responsive -- */
@media (max-width: 768px) {
  .outlook-card { max-width: 100%; }
  .trump-widgets { flex-direction: column; align-items: center; }
  .assistant-container { bottom: 10px; right: 10px; }
  .assistant-bubble { max-width: 200px; font-size: 0.75rem; }
  .assistant-figure { width: 75px; height: 125px; }
}

/* ---------- TRUMP WIDGETS LAYOUT ---------- */
.trump-widgets {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 700px;
}

/* ---------- MUSIC CONTROLS (Aero glass player) ---------- */
.music-controls {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.55) 0%,
    rgba(220,235,250,0.45) 100%
  );
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 18px;
  box-shadow:
    0 2px 8px rgba(0,40,80,0.15),
    inset 0 1px 0 rgba(255,255,255,0.7);
}
.mc-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  background: linear-gradient(180deg, #f0f4fa 0%, #d0dae8 100%);
  color: #2a4a6a;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset;
  transition: background 0.12s;
  font-family: inherit;
  padding: 0;
}
.mc-btn:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e0e8f2 100%);
}
.mc-play {
  width: 34px;
  height: 34px;
  background: linear-gradient(180deg, #8ed85c 0%, #5a9e2a 100%);
  color: #fff;
  font-size: 0.8rem;
  border-color: rgba(0,0,0,0.2);
  text-shadow: 0 -1px 1px rgba(0,0,0,0.2);
}
.mc-play:hover {
  background: linear-gradient(180deg, #9ee86c 0%, #6aae3a 100%);
}
.mc-label {
  font-family: 'Cabin', 'Segoe UI', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(40,80,120,0.7);
  white-space: nowrap;
  margin-left: 4px;
}

/* ---------- FISH ANIMATION ---------- */
.fish-container {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 200px;
  overflow: visible;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
.fish {
  position: absolute;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  transition: none;
}
.fish svg {
  width: 60px;
  height: 30px;
  filter: drop-shadow(0 2px 4px rgba(0,40,80,0.2));
}

/* ---------- DRUG DETAIL MODAL ---------- */
.drug-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,20,40,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.25s ease-out;
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.drug-modal {
  background: linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
  border-radius: 16px;
  max-width: 520px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.3);
  animation: modalSlideUp 0.3s ease-out;
  position: relative;
}
@keyframes modalSlideUp {
  0% { opacity: 0; transform: translateY(30px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.drug-modal-hero {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
  position: relative;
}
.drug-modal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,30,60,0.5));
  border-radius: 16px 16px 0 0;
}
.drug-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s;
}
.drug-modal-close:hover { background: rgba(0,0,0,0.65); }
.drug-modal-body { padding: 28px; }
.drug-modal-name {
  font-family: 'Cabin', 'Segoe UI', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #0d3a5c;
  margin-bottom: 2px;
}
.drug-modal-generic {
  font-size: 0.92rem;
  color: var(--aero-text-light);
  margin-bottom: 18px;
}
.drug-modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}
.drug-modal-price {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--aero-green-dark);
}
.drug-modal-original {
  font-size: 1.1rem;
  color: #b44;
  text-decoration: line-through;
}
.drug-modal-savings {
  display: inline-block;
  padding: 5px 14px;
  margin: 10px 0 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #8ed85c, #5a9e2a);
  border-radius: 4px;
  text-shadow: 0 -1px 1px rgba(0,0,0,0.2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset;
}
.drug-modal-desc {
  font-size: 0.9rem;
  color: var(--aero-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  padding: 14px;
  background: rgba(0,100,200,0.04);
  border-radius: 8px;
  border-left: 3px solid var(--aero-sky-top);
}
.drug-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- SHOPPING CART ---------- */
.nav-cart-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  font-family: inherit;
  text-shadow: 0 -1px 1px rgba(0,0,0,0.2);
  transition: background 0.15s;
}
.nav-cart-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.25);
}
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #ff6b6b, #d44);
  border-radius: 9px;
  box-shadow: 0 1px 3px rgba(200,0,0,0.3);
}
.cart-total {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-left: 2px;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,20,40,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10001;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  animation: modalFadeIn 0.2s ease-out;
}
.cart-panel {
  width: 380px;
  max-width: 95%;
  height: 100vh;
  background: linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  animation: cartSlideIn 0.3s ease-out;
}
@keyframes cartSlideIn {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}
.cart-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,60,120,0.1);
}
.cart-header h2 {
  font-family: 'Cabin', 'Segoe UI', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0d3a5c;
}
.cart-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: linear-gradient(180deg, #f0f4fa, #d8e2ee);
  color: #4a6a8a;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,60,120,0.06);
}
.cart-item-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0d3a5c;
}
.cart-item-generic {
  font-size: 0.72rem;
  color: var(--aero-text-light);
}
.cart-item-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--aero-green-dark);
  white-space: nowrap;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #b44;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 2px 6px;
  font-family: inherit;
  font-weight: 600;
}
.cart-item-remove:hover { text-decoration: underline; }
.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--aero-text-light);
  font-size: 0.9rem;
}
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(0,60,120,0.1);
  background: rgba(255,255,255,0.8);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.cart-total-label {
  font-size: 1rem;
  font-weight: 700;
  color: #0d3a5c;
}
.cart-total-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--aero-green-dark);
}
.cart-savings-row {
  font-size: 0.82rem;
  color: var(--aero-green-dark);
  font-weight: 600;
  text-align: right;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .cart-panel { width: 100%; }
  .drug-modal { width: 96%; }
  .drug-modal-hero { height: 160px; }
}

/* ---------- EEVEE CHAT INPUT ---------- */
.eevee-chat-wrap {
  pointer-events: auto;
  width: 260px;
}
.eevee-chat-input {
  width: 100%;
  padding: 8px 12px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.78rem;
  border: 1px solid #d4c478;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffef0, #fdf8d0);
  color: #4a3d00;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.eevee-chat-input::placeholder { color: #a09060; }
.eevee-chat-input:focus {
  border-color: #b8a040;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 0 0 2px rgba(180,160,64,0.2);
}

/* ---------- TRUMP EMAIL NOTIFICATION ---------- */
.trump-notif {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 340px;
  z-index: 10002;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
  border: 1px solid #8db2e3;
  animation: trumpNotifIn 0.4s ease-out;
}
@keyframes trumpNotifIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes trumpNotifOut {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(20px); }
}
.trump-notif-header {
  background: linear-gradient(180deg, #c6d9f1 0%, #a5c0e6 40%, #8aafdc 100%);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #7a9cc7;
}
.trump-notif-icon { font-size: 14px; color: #1a3660; }
.trump-notif-title {
  flex: 1;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a3660;
}
.trump-notif-close {
  background: none;
  border: none;
  font-size: 16px;
  color: #4a6a8a;
  cursor: pointer;
  padding: 0 4px;
  font-family: inherit;
}
.trump-notif-body {
  background: linear-gradient(180deg, #f8fafd, #eef3fa);
  padding: 12px 14px;
}
.trump-notif-portrait {
  float: right;
  width: 72px;
  height: auto;
  margin: 0 0 8px 10px;
  border: 2px solid #c8d4e0;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,30,60,0.15);
}
.trump-notif-subject {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a3660;
  margin-bottom: 6px;
}
.trump-notif-text {
  font-size: 0.75rem;
  color: #3a5a7a;
  line-height: 1.5;
  margin-bottom: 8px;
}
.trump-notif-coupon {
  font-size: 0.8rem;
  color: #1a3660;
  background: rgba(180,220,255,0.3);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px dashed #8db2e3;
}
.trump-notif-coupon strong {
  color: #c44;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .trump-notif { width: 280px; left: 10px; bottom: 10px; }
  .eevee-chat-wrap { width: 200px; }
}
