/* ============================================================
   BestLifeTip — Global Stylesheet
   Feminine, light palette: blush cream + rose + sage (no dark surfaces)
   ============================================================ */

:root {
  --cream:      #FBF4F4;
  --cream-2:    #F4E9E7;
  --surface:    #FFFFFF;
  --ink:        #3B343A;
  --ink-soft:   #6B626B;
  --muted:      #A99CA4;
  --line:       #EEDDDC;

  --rose:       #C98A9B;
  --rose-dark:  #B26E80;
  --rose-soft:  #F9E8ED;
  --sage:       #8AA088;
  --sage-dark:  #6E8469;
  --sage-soft:  #EAF0E6;
  --blush:      #E3A9A0;
  --blush-dark: #C98179;
  --blush-soft: #F8E9E6;
  --teal:       #5E9AA1;
  --teal-soft:  #E4EEF0;
  --mauve:      #9B7E97;
  --mauve-soft: #F0E6EE;

  --radius:     18px;
  --radius-sm:  12px;
  --shadow:     0 18px 40px -22px rgba(59, 52, 58, .30);
  --shadow-sm:  0 8px 22px -16px rgba(59, 52, 58, .38);
  --maxw:       1180px;

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 .5em;
  color: var(--ink);
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--rose-dark);
  margin: 0 0 .6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 244, 244, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}
.brand img { height: 34px; width: auto; }
.brand span small { display: block; font-family: var(--sans); font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--rose-dark); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  position: relative;
  padding: .2rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { display:block; width: 22px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content:""; position:absolute; left:0; width:22px; height:2px; background: var(--ink); }
.nav-toggle span::before { top:-7px; }
.nav-toggle span::after { top:7px; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }
.hero-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end; color: #fff;
  box-shadow: var(--shadow);
}
.hero-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(59,52,58,.02), rgba(59,52,58,.45)); }
.hero-card .hero-inner { position: relative; z-index: 2; padding: 28px; }
.hero-card h2 { color: #fff; font-size: 1.9rem; }
.hero-card .cat-tag { background: rgba(255,255,255,.22); border:1px solid rgba(255,255,255,.5); color:#fff; }
.hero-side { display: grid; gap: 20px; }
.hero-side .mini {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 180px; display: flex; align-items: flex-end; color:#fff; box-shadow: var(--shadow-sm);
}
.hero-side .mini img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-side .mini::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(59,52,58,.02), rgba(59,52,58,.42)); }
.hero-side .mini .hero-inner { position: relative; z-index:2; padding: 18px; }
.hero-side .mini h3 { color:#fff; font-size: 1.15rem; margin:0; }

.cat-tag {
  display: inline-block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; padding: .28rem .7rem; border-radius: 999px;
  background: var(--sage-soft); color: var(--sage-dark); margin-bottom: .7rem;
}
.cat-tag.beauty { background: var(--rose-soft); color: var(--rose-dark); }
.cat-tag.health { background: var(--teal-soft); color: var(--teal); }
.cat-tag.lifestyle { background: var(--sage-soft); color: var(--sage-dark); }
.cat-tag.fashion { background: var(--mauve-soft); color: var(--mauve); }

/* ---------- Layout: main + sidebar ---------- */
.layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 40px;
  align-items: start; padding: 30px 0 60px;
}
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 18px; border-bottom: 1px solid var(--line); padding-bottom: 12px;
}
.section-head h2 { font-size: 1.5rem; margin: 0; }
.section-head a { font-size: .85rem; color: var(--rose-dark); font-weight: 600; }

/* ---------- Article cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .thumb {
  aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-2); position: relative;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .thumb img { transform: scale(1.05); }
.card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card h3 { font-size: 1.18rem; margin: .2rem 0; }
.card .excerpt { color: var(--ink-soft); font-size: .92rem; margin: 0; flex: 1; }
.card .meta { font-size: .78rem; color: var(--muted); display:flex; gap:.6rem; align-items:center; }
.card .meta .dot { width:4px; height:4px; border-radius:50%; background: var(--muted); }

/* ---------- Sidebar ---------- */
.sidebar { display: grid; gap: 26px; position: sticky; top: 88px; }
.widget {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.widget h4 { font-size: 1.05rem; margin: 0 0 14px; }
.widget.popular li { list-style: none; display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.widget.popular li:last-child { border-bottom: 0; }
.widget.popular .num { font-family: var(--serif); font-size: 1.2rem; color: var(--rose); font-weight: 700; min-width: 22px; }
.widget.popular a { font-size: .9rem; color: var(--ink-soft); font-weight: 500; }
.widget.popular a:hover { color: var(--rose-dark); }

/* Sponsored promo widget (luxoriamart.store) */
.widget.promo.luxoria { padding: 14px; }
.widget.promo.luxoria .promo-tag {
  display: block; font-size: .68rem; letter-spacing: .09em; text-transform: uppercase;
  color: #9a9a9a; font-weight: 700; margin-bottom: 10px;
}
.widget.promo.luxoria a {
  display: block; border-radius: calc(var(--radius) - 6px); overflow: hidden; line-height: 0;
}
.widget.promo.luxoria img { width: 100%; height: auto; display: block; transition: opacity .15s ease; }
.widget.promo.luxoria a:hover img { opacity: .9; }

.cat-list { display: grid; gap: 10px; }
.cat-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem .9rem; border-radius: var(--radius-sm);
  background: var(--cream); border: 1px solid var(--line); font-weight: 600; font-size: .92rem;
}
.cat-list a:hover { border-color: var(--rose); color: var(--rose-dark); }
.cat-list a span { color: var(--muted); font-weight: 500; font-size: .8rem; }

.subscribe { background: var(--rose-soft); border-color: transparent; }
.subscribe p { font-size: .9rem; color: var(--ink-soft); margin: 0 0 14px; }
.subscribe form { display: grid; gap: 10px; }
.subscribe input {
  padding: .7rem .9rem; border-radius: var(--radius-sm); border: 1px solid var(--line);
  font-size: .9rem; font-family: var(--sans); background: #fff;
}
.subscribe input:focus { outline: 2px solid var(--rose); border-color: transparent; }
.subscribe .btn { justify-content: center; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a { font-size: .78rem; padding: .35rem .7rem; border-radius: 999px; background: var(--cream); border: 1px solid var(--line); color: var(--ink-soft); }
.tag-cloud a:hover { background: var(--rose); color: #fff; border-color: transparent; }

/* ---------- Category band ---------- */
.cat-band {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 220px; display: flex; align-items: center; color: #fff;
  margin: 28px 0; box-shadow: var(--shadow);
}
.cat-band img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.cat-band::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(59,52,58,.5), rgba(59,52,58,.1)); }
.cat-band .cat-inner { position: relative; z-index:2; padding: 36px; max-width: 620px; }
.cat-band h1 { color:#fff; font-size: 2.2rem; }
.cat-band p { color: rgba(255,255,255,.92); margin: 0; }

/* ---------- Article (detail) page ---------- */
.article-hero { padding: 40px 0 0; }
.breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--rose-dark); }
.breadcrumb .sep { margin: 0 .4rem; }

.article-head { max-width: 760px; margin: 0 auto; text-align: center; padding: 10px 0 26px; }
.article-head h1 { font-size: 2.5rem; }
.article-head .meta { color: var(--muted); font-size: .88rem; display:flex; gap:.7rem; justify-content:center; align-items:center; flex-wrap: wrap; }
.article-head .meta .dot { width:4px; height:4px; border-radius:50%; background: var(--muted); }

.featured-img {
  max-width: 980px; margin: 0 auto 30px; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 16/8; box-shadow: var(--shadow); background: var(--cream-2);
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }

.prose { max-width: 720px; margin: 0 auto; font-size: 1.06rem; color: var(--ink-soft); }
.prose h2 { font-size: 1.6rem; margin-top: 2rem; color: var(--ink); }
.prose h3 { font-size: 1.25rem; margin-top: 1.5rem; color: var(--ink); }
.prose p { margin: 0 0 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.prose li { margin: .4rem 0; }
.prose blockquote {
  margin: 1.6rem 0; padding: 1rem 1.4rem; border-left: 4px solid var(--rose);
  background: var(--rose-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
}
.prose strong { color: var(--ink); }

.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; padding-bottom: 30px; }
.article-main { min-width: 0; }
.article-sidebar { position: sticky; top: 88px; display: grid; gap: 24px; }

.author-box {
  max-width: 720px; margin: 36px auto; display: flex; gap: 16px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-sm);
}
.author-box .avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--rose); color:#fff; display:flex; align-items:center; justify-content:center; font-family: var(--serif); font-weight: 700; font-size: 1.3rem; }
.author-box .who b { display:block; font-family: var(--sans); }
.author-box .who span { font-size: .85rem; color: var(--muted); }

.related { padding: 20px 0 50px; }
.related .cards { grid-template-columns: repeat(3, 1fr); }

/* ---------- Footer (light) ---------- */
.site-footer {
  background: #F7EEEC; color: var(--ink-soft); padding: 54px 0 26px; margin-top: 40px;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h5 { font-family: var(--sans); color: var(--ink); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer a { color: #8A7D85; font-size: .9rem; display: block; padding: .3rem 0; }
.site-footer a:hover { color: var(--rose-dark); }
.site-footer .brand { color: var(--ink); margin-bottom: 12px; }
.site-footer .brand span small { color: var(--rose-dark); }
.site-footer p { color: #94878F; font-size: .9rem; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(59,52,58,.1); margin-top: 34px; padding-top: 18px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .82rem; color: #A2949E;
}
.footer-bottom a { display: inline; color: #A2949E; }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 4px 10px; align-items: center; }
.footer-bottom a:hover { color: var(--rose-dark); }

/* ---------- Legal / simple page ---------- */
.legal { max-width: 820px; margin: 30px auto 60px; }
.legal h1 { font-size: 2.2rem; }
.legal h2 { font-size: 1.4rem; margin-top: 1.8rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal .updated { color: var(--muted); font-size: .85rem; margin-bottom: 24px; }

/* ---------- Newsletter strip ---------- */
.news-strip {
  background: var(--rose-soft); border-radius: var(--radius); padding: 40px;
  text-align: center; margin: 30px 0;
}
.news-strip h2 { font-size: 1.8rem; }
.news-strip form { display: flex; gap: 12px; justify-content: center; max-width: 460px; margin: 16px auto 0; flex-wrap: wrap; }
.news-strip input { flex: 1; min-width: 200px; padding: .8rem 1rem; border-radius: 999px; border: 1px solid var(--line); font-family: var(--sans); }
.news-strip .btn { justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; gap: 0; background: var(--cream);
    border-bottom: 1px solid var(--line); padding: 8px 24px 18px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .7rem 0; width: 100%; }
  .nav-toggle { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .related .cards { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .article-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-head h1 { font-size: 1.9rem; }
  .news-strip { padding: 28px 20px; }
}


.editors-picks li{margin-bottom:9px;font-size:14px;line-height:1.5}
.editors-picks li a{color:#444}
