/* =====================================================
   Sciopetta.fi — Main Stylesheet
   Mobile-first | Playfair Display + Lato
   ===================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: #faf8f3;
  color: #1c1c1c;
  line-height: 1.75;
  min-height: 100vh;
}

body.popup-open { overflow: hidden; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border: none;
  border-radius: 50px;
  background: #c8922a;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  line-height: 1.3;
}
.btn:hover { transform: scale(1.03); box-shadow: 0 6px 24px rgba(200,146,42,0.35); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-full { width: 100%; display: block; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 24px;
  overflow: hidden;
  position: relative;
}

/* ---------- Form Fields ---------- */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #1c1c1c;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 16px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #1c1c1c;
  transition: border-color 0.2s, outline 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid #3d5a2e;
  border-color: #3d5a2e;
}
.form-group textarea {
  height: auto;
  min-height: 120px;
  padding: 12px 16px;
  resize: vertical;
}
.form-group input.error,
.form-group textarea.error { border-color: #c0392b; }

/* ---------- Section Spacing ---------- */
.section { padding: 56px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { color: #3d5a2e; margin-bottom: 2rem; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  background: #3d5a2e;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.site-logo {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: 4px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.15); }

/* Nav */
.main-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #3d5a2e;
  padding: 16px 20px 20px;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.main-nav.is-open { display: flex; }
.main-nav a {
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.main-nav a:last-child { border-bottom: none; }
.main-nav a:hover { color: #c8922a; }

/* Language Flags */
.lang-flags {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.flag-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
  transition: transform 0.15s ease;
  line-height: 1;
  border-bottom: 2px solid transparent;
}
.flag-btn.active {
  border-bottom: 2px solid #c8922a;
  transform: scale(1.15);
}
.flag-btn:hover:not(.active) { transform: scale(1.08); }

/* Desktop nav */
@media (min-width: 768px) {
  .site-logo { max-height: 48px; }
  .hamburger { display: none; }

  .main-nav {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 0;
    box-shadow: none;
    flex: 1;
    justify-content: center;
  }
  .main-nav a {
    padding: 8px 20px;
    border-bottom: none;
    position: relative;
  }
  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #c8922a;
    transform: scaleX(0);
    transition: transform 0.2s ease;
  }
  .main-nav a:hover::after { transform: scaleX(1); }
}

/* =====================================================
   HERO BANNER
   ===================================================== */
.hero-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  max-width: 760px;
}
.hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-tagline {
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 12px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .hero-banner { min-height: 480px; }
  .hero-content h1 { font-size: 2.8rem; }
  .hero-tagline { font-size: 1.25rem; }
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section { background: #faf8f3; }
.about-section p { color: #1c1c1c; max-width: 760px; }

/* =====================================================
   PRODUCT COLLECTION GRID
   ===================================================== */
.collection-section { background: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 560px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.13);
}
.product-card a.card-link {
  display: contents;
  color: inherit;
}

.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #3d5a2e;
  margin-bottom: 6px;
  font-weight: 600;
}
.product-card-teaser {
  font-size: 0.9rem;
  color: #6b6b6b;
  margin-bottom: 0;
  flex: 1;
}

/* Ribbon badge */
.ribbon {
  position: absolute;
  top: 18px;
  right: -28px;
  width: 110px;
  text-align: center;
  padding: 6px 0;
  transform: rotate(45deg);
  background: #3d5a2e;
  color: #c8922a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  z-index: 1;
  font-family: 'Lato', sans-serif;
}
.ribbon.ribbon-live {
  background: #c8922a;
  color: #fff;
}

/* =====================================================
   OLIVE OIL PAGE
   ===================================================== */
.editorial-section { background: #faf8f3; }

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .editorial-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.editorial-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 560px;
}
@media (min-width: 768px) {
  .editorial-image { position: sticky; top: 80px; }
}

.editorial-text h2 {
  color: #3d5a2e;
  margin-bottom: 1.5rem;
}
.editorial-text p { color: #1c1c1c; }

/* Product feature card */
.product-feature { max-width: 480px; margin: 0 auto; text-align: center; }
.product-feature-section { background: #fff; }

.product-feature-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.product-feature .card { padding: 0; border-radius: 12px; overflow: hidden; }
.product-feature-body { padding: 28px 24px 32px; }
.product-feature-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #3d5a2e;
  margin-bottom: 8px;
}
.product-feature-descriptor {
  color: #6b6b6b;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.product-feature .btn { max-width: 340px; width: 100%; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: #6b6b6b;
  font-size: 1.05rem;
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 auto 48px;
  max-width: 640px;
}
@media (min-width: 640px) {
  .contact-channels { grid-template-columns: repeat(2, 1fr); }
}

.channel-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s ease;
}
.channel-card:hover { transform: translateY(-3px); }
.channel-card svg { color: #3d5a2e; margin: 0 auto 12px; }
.channel-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #3d5a2e;
  margin-bottom: 6px;
}
.channel-link {
  color: #c8922a;
  font-size: 0.95rem;
  font-weight: 700;
  word-break: break-all;
}
.channel-link:hover { text-decoration: underline; }

.contact-form-section { max-width: 600px; margin: 0 auto; }
.contact-form-title {
  font-family: 'Playfair Display', serif;
  color: #3d5a2e;
  margin-bottom: 1.5rem;
}

.form-success {
  background: #f0f9f0;
  border: 1px solid #3d5a2e;
  border-radius: 8px;
  padding: 20px 24px;
  color: #3d5a2e;
  font-weight: 700;
  display: none;
}
.form-error {
  background: #fdf0f0;
  border: 1px solid #c0392b;
  border-radius: 8px;
  padding: 12px 16px;
  color: #c0392b;
  font-size: 0.9rem;
  display: none;
  margin-top: 12px;
}

/* =====================================================
   INTEREST POPUP
   ===================================================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.popup-panel {
  background: #faf8f3;
  border-radius: 16px 16px 0 0;
  max-width: 100%;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 32px 20px 28px;
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  -webkit-overflow-scrolling: touch;
}
.popup-overlay.is-visible .popup-panel {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 540px) {
  .popup-overlay {
    align-items: center;
  }
  .popup-panel {
    border-radius: 16px;
    max-width: 520px;
    width: 90%;
    padding: 36px 32px;
    max-height: 90vh;
  }
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b6b6b;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s;
}
.popup-close:hover { color: #1c1c1c; }

.popup-thumbnail {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 16px;
  display: block;
}

.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #3d5a2e;
  text-align: center;
  margin-bottom: 8px;
}
.popup-subtitle {
  text-align: center;
  color: #6b6b6b;
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.55;
}

/* Quantity stepper */
.quantity-stepper {
  display: flex;
  align-items: center;
  height: 48px;
}
.qty-btn {
  width: 44px;
  height: 48px;
  min-width: 44px;
  background: #f5f3ee;
  border: 1px solid #ddd;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d5a2e;
  font-weight: 700;
  transition: background 0.15s;
  font-family: 'Lato', sans-serif;
  line-height: 1;
}
.qty-btn:first-child { border-radius: 8px 0 0 8px; }
.qty-btn:last-child  { border-radius: 0 8px 8px 0; }
.qty-btn:hover { background: #e8e3d8; }

#popup-quantity {
  width: 60px;
  height: 48px;
  text-align: center;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  border-radius: 0;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  background: #fff;
  color: #1c1c1c;
  padding: 0;
  -moz-appearance: textfield;
}
#popup-quantity::-webkit-outer-spin-button,
#popup-quantity::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
#popup-quantity:focus { outline: 2px solid #3d5a2e; }

.popup-disclaimer {
  font-size: 0.8rem;
  color: #6b6b6b;
  font-style: italic;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

.popup-error {
  background: #fdf0f0;
  border: 1px solid #c0392b;
  border-radius: 8px;
  padding: 10px 14px;
  color: #c0392b;
  font-size: 0.88rem;
  display: none;
  margin-top: 10px;
  text-align: center;
}

/* Popup success state */
#popup-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0;
  gap: 16px;
}
.success-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #3d5a2e;
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 700;
}
.popup-thank-you {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #3d5a2e;
  margin: 0;
}
.popup-close-btn {
  background: none;
  border: 2px solid #3d5a2e;
  border-radius: 50px;
  color: #3d5a2e;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.popup-close-btn:hover { background: #3d5a2e; color: #fff; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #3d5a2e;
  color: rgba(255,255,255,0.85);
  padding: 48px 20px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { max-height: 36px; width: auto; object-fit: contain; }
.footer-tagline { font-style: italic; font-size: 0.95rem; margin: 0; color: rgba(255,255,255,0.75); }

.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; }
.footer-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #c8922a; }

.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: #c8922a; transform: scale(1.1); }

.footer-copyright { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    gap: 32px;
    flex-wrap: wrap;
  }
  .footer-brand { align-items: flex-start; }
  .footer-nav { justify-content: flex-start; }
  .footer-copyright { width: 100%; text-align: center; }
}

/* =====================================================
   UTILITY
   ===================================================== */
.text-muted { color: #6b6b6b; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

/* =====================================================
   BLOG — LISTING PAGE
   ===================================================== */
.blog-hero {
  background: #3d5a2e;
  padding: 56px 20px 48px;
  text-align: center;
}
.blog-hero h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.blog-hero-sub {
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-size: 1rem;
  margin: 0;
}
@media (min-width: 768px) {
  .blog-hero { padding: 80px 20px 64px; }
  .blog-hero h1 { font-size: 2.8rem; }
}

.blog-grid-section {
  padding: 56px 20px;
  background: #faf8f3;
}
.blog-grid-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 640px) {
  .blog-grid-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .blog-grid-inner { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.13);
}
.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8922a;
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #3d5a2e;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card-excerpt {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card-read-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: #c8922a;
  letter-spacing: 0.03em;
}

/* =====================================================
   BLOG — ARTICLE PAGE
   ===================================================== */
.article-header {
  padding: 56px 20px 44px;
  background: #faf8f3;
  text-align: center;
}
.article-header-inner { max-width: 760px; margin: 0 auto; }
.article-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8922a;
  margin-bottom: 18px;
}
.article-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: #3d5a2e;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .article-header { padding: 72px 20px 56px; }
  .article-h1 { font-size: 2.6rem; }
}

/* Magazine prose — single continuous column with floated images */
.article-prose-section {
  background: #faf8f3;
  padding: 56px 24px 72px;
}
.article-prose {
  max-width: 800px;
  margin: 0 auto;
}
.article-prose p {
  color: #1c1c1c;
  margin-bottom: 1.1rem;
}

/* Floated images */
.article-float {
  border-radius: 10px;
  object-fit: cover;
  display: block;
  width: 42%;
  aspect-ratio: 4 / 3;
}
.article-float.left {
  float: left;
  margin: 4px 36px 24px 0;
}
.article-float.right {
  float: right;
  margin: 4px 0 24px 36px;
}
.article-clear { clear: both; }

@media (max-width: 767px) {
  .article-float.left,
  .article-float.right {
    float: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    margin: 0 0 20px 0;
  }
}

.article-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #3d5a2e;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.article-section-heading:first-child { margin-top: 0; }

/* CTA bar at bottom of article */
.article-cta {
  background: #3d5a2e;
  padding: 56px 20px;
  text-align: center;
}
.article-cta-text {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.article-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 480px) {
  .article-cta-buttons { flex-direction: row; justify-content: center; }
}
.btn-ghost-white {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

