/* ==========================================================================
   111catalogues.com — Design System & Stylesheet
   Personal blog redesign — complete production CSS
   ========================================================================== */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================================================== */

:root {
  --color-primary:       #1a3a2a;
  --color-primary-light: #2d5a3d;
  --color-accent:        #86efac;
  --color-amber:         #f59e0b;
  --color-amber-hover:   #d97706;
  --color-success:       #16a34a;
  --color-text:          #1a1a1a;
  --color-text-light:    #555555;
  --color-text-muted:    #999999;
  --color-bg:            #f5f7f3;
  --color-bg-card:       #ffffff;
  --color-border:        #e2e8e0;
  --color-border-light:  #f0ede8;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --shadow-sm: 0 1px 4px rgba(26,58,42,.08);
  --shadow-md: 0 4px 12px rgba(26,58,42,.1);
  --shadow-lg: 0 10px 30px rgba(26,58,42,.12);
  --max-width: 1100px;
  --nav-height: 60px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

/* ==========================================================================
   2. CSS RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background: #f5f7f3;
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a3a2a;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1 { font-weight: 800; }
h2 { font-weight: 800; }
h3 { font-weight: 700; }
h4 { font-weight: 700; }
h5 { font-weight: 700; }
h6 { font-weight: 700; }

p {
  line-height: 1.7;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 1em;
}

a {
  color: #1a3a2a;
  text-decoration: none;
}

a:hover {
  color: #2d5a3d;
}

ul,
ol {
  margin-top: 0;
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

main {
  padding-top: var(--nav-height);
}

/* Visually hidden / screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   5. NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--nav-height);
  background: #1a3a2a;
  transition: box-shadow 0.2s;
}

.nav--scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
}

.nav__logo {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.nav__logo span {
  color: #86efac;
}

.nav__menu {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.nav__link:hover {
  color: #fff;
}

.nav__link--active {
  color: #fff;
}

.nav__cta {
  background: #f59e0b;
  color: #1a1a1a;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.nav__cta:hover {
  background: #d97706;
  color: #1a1a1a;
}

/* Hamburger — hidden on desktop */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  display: block;
}

/* ==========================================================================
   6. HERO
   ========================================================================== */

.hero {
  background: #1a3a2a;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding: 52px 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.hero__eyebrow {
  color: #86efac;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  display: block;
}

.hero__title {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero__title em {
  color: #86efac;
  font-style: normal;
}

.hero__bio {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-n {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.hero__stat-l {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   7. AUTHOR CARD
   ========================================================================== */

.author-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
}

.author-card__photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #86efac;
  margin: 0 auto 12px;
  display: block;
  object-fit: cover;
}

.author-photo-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #2d5a3d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
  font-size: 40px;
  font-weight: 800;
  margin: 0 auto 12px;
}

.author-card__name {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.author-card__title {
  color: #86efac;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

.author-card__badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.author-card__quote {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   8. TRUST BAR
   ========================================================================== */

.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8e0;
  padding: 16px 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #1a3a2a;
}

.trust-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   9. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  font-family: var(--font);
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: #f59e0b;
  color: #1a1a1a;
  font-weight: 700;
}

.btn--primary:hover {
  background: #d97706;
  color: #1a1a1a;
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--secondary:hover {
  border-color: #fff;
  color: #fff;
}

.btn--dark {
  background: transparent;
  color: #1a3a2a;
  border: 2px solid #1a3a2a;
}

.btn--dark:hover {
  background: #1a3a2a;
  color: #fff;
}

/* ==========================================================================
   10. SECTION LABEL
   ========================================================================== */

.section-label {
  font-size: 12px;
  font-weight: 800;
  color: #1a3a2a;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid #f59e0b;
  display: inline-block;
}

/* ==========================================================================
   11. BLOG / POST CARDS
   ========================================================================== */

.post-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8e0;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.post-card__image {
  height: 160px;
  overflow: hidden;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.04);
}

.post-card__body {
  padding: 20px;
}

.post-card__tag {
  font-size: 10px;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
  display: block;
}

.post-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a3a2a;
  line-height: 1.35;
  margin-bottom: 10px;
}

.post-card__title a {
  color: inherit;
  text-decoration: none;
}

.post-card__title a:hover {
  color: #2d5a3d;
}

.post-card__excerpt {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #999;
  flex-wrap: wrap;
}

.post-card__meta-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #86efac;
  object-fit: cover;
  flex-shrink: 0;
}

.post-card__meta-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2d5a3d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.post-card__read-more {
  font-size: 13px;
  font-weight: 600;
  color: #1a3a2a;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}

.post-card__read-more:hover {
  color: #16a34a;
}

/* ==========================================================================
   12. FEATURED POST
   ========================================================================== */

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8e0;
  overflow: hidden;
}

.featured-img {
  background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px;
  min-height: 200px;
}

.featured-img__emoji {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.featured-img__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.featured-body {
  padding: 32px;
}

.featured-body__tag {
  font-size: 10px;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
  display: block;
}

.featured-body__title {
  font-size: 22px;
  font-weight: 800;
  color: #1a3a2a;
  margin-bottom: 12px;
  line-height: 1.25;
}

.featured-body__excerpt {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ==========================================================================
   13. TIPS GRID (George's Top Tips)
   ========================================================================== */

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tip-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8e0;
  border-top: 3px solid #1a3a2a;
  padding: 24px;
}

.tip-card__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a3a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.tip-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a3a2a;
  margin-bottom: 8px;
}

.tip-card__text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   14. SECTIONS
   ========================================================================== */

.section {
  padding: 60px 0;
}

.section--alt {
  background: #fff;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   15. CONTENT LAYOUT (with sidebar)
   ========================================================================== */

.content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==========================================================================
   16. SIDEBAR WIDGETS
   ========================================================================== */

.widget {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8e0;
  overflow: hidden;
}

.widget__header {
  padding: 16px 20px;
  border-bottom: 1px solid #f0ede8;
  font-size: 11px;
  font-weight: 800;
  color: #1a3a2a;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.widget__body {
  padding: 20px;
}

/* About / Author widget */
.widget-author {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.widget-author__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #86efac;
  object-fit: cover;
  flex-shrink: 0;
}

.widget-author__placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1a3a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}

.widget-author__name {
  font-weight: 700;
  color: #1a3a2a;
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
}

.widget-author__role {
  color: #999;
  font-size: 12px;
  display: block;
}

.widget-author__bio {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.widget-author__link {
  font-size: 13px;
  font-weight: 600;
  color: #1a3a2a;
  text-decoration: none;
}

.widget-author__link:hover {
  color: #16a34a;
}

/* Deals widget */
.deal-item {
  padding: 10px 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  margin-bottom: 8px;
}

.deal-item:last-child {
  margin-bottom: 0;
}

.deal-item__store {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #16a34a;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.deal-item__desc {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.deal-item__saving {
  font-size: 13px;
  font-weight: 800;
  color: #16a34a;
  display: block;
}

/* Calculator widget */
.calc-slider {
  width: 100%;
  accent-color: #1a3a2a;
  margin: 8px 0;
  cursor: pointer;
}

.calc-result {
  background: #f0fdf4;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  margin-top: 12px;
}

.calc-result__num {
  font-size: 26px;
  font-weight: 800;
  color: #16a34a;
  display: block;
}

.calc-result__sub {
  font-size: 12px;
  color: #555;
  margin-top: 4px;
  display: block;
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */

.footer {
  background: #1a3a2a;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  flex-shrink: 0;
}

.footer__brand-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #2d5a3d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.footer__brand-info {
  display: flex;
  flex-direction: column;
}

.footer__site-name {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
}

.footer__by {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.footer__disclosure {
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
}

.footer__disclosure a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

.footer__disclosure a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #fff;
}

/* ==========================================================================
   18. ARTICLE / BLOG POST PAGE STYLES
   ========================================================================== */

.article-header {
  padding: 40px 0;
  border-bottom: 1px solid #e2e8e0;
  margin-bottom: 40px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #999;
  margin-top: 16px;
  flex-wrap: wrap;
}

.article-byline__photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #86efac;
  object-fit: cover;
  flex-shrink: 0;
}

.article-byline__placeholder {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #86efac;
  background: #1a3a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.article-content {
  max-width: 720px;
}

.article-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: #1a3a2a;
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-content p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-content li {
  line-height: 1.7;
  margin-bottom: 6px;
}

/* Author box at end of article */
.author-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 48px;
}

.author-box__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #86efac;
  object-fit: cover;
  flex-shrink: 0;
}

.author-box__placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #86efac;
  background: #1a3a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
  font-size: 28px;
  font-weight: 800;
  flex-shrink: 0;
}

.author-box__name {
  font-weight: 800;
  color: #1a3a2a;
  font-size: 16px;
  margin-bottom: 4px;
  display: block;
}

.author-box__title {
  color: #16a34a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.author-box__bio {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   19. BREADCRUMB
   ========================================================================== */

.breadcrumb {
  padding: 12px 0;
  margin-bottom: 24px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  align-items: center;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #999;
}

.breadcrumb li::after {
  content: "\203A";
  color: #ccc;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: #1a3a2a;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #16a34a;
}

/* ==========================================================================
   20. STORE CARD
   ========================================================================== */

.store-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8e0;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.store-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.store-card__logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.store-card__info {
  flex: 1;
  min-width: 0;
}

.store-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #1a3a2a;
  margin-bottom: 4px;
  display: block;
}

.store-card__desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  display: block;
}

.store-card__arrow {
  margin-left: auto;
  color: #ccc;
  font-size: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   21. FAQ ACCORDION
   ========================================================================== */

.faq-item {
  border: 1px solid #e2e8e0;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1a3a2a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  transition: background 0.15s;
}

.faq-item__question:hover {
  background: #f9faf9;
}

.faq-item__question::after {
  content: "+";
  font-size: 20px;
  color: #86efac;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
  line-height: 1;
}

.faq-item.open .faq-item__question::after {
  content: "\2212";
}

.faq-item__answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.faq-item.open .faq-item__answer {
  display: block;
}

/* ==========================================================================
   22. CONTACT FORM
   ========================================================================== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #1a3a2a;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  border: 1px solid #e2e8e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #86efac;
  box-shadow: 0 0 0 3px rgba(134, 239, 172, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  color: #16a34a;
  font-weight: 600;
  font-size: 14px;
}

.form-success.visible {
  display: block;
}

/* ==========================================================================
   23. SAVINGS CALCULATOR WIDGET
   ========================================================================== */

.calc-section {
  margin-bottom: 16px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: #1a3a2a;
  margin-bottom: 6px;
}

.calc-val {
  color: #16a34a;
}

input[type="range"] {
  width: 100%;
  accent-color: #1a3a2a;
  height: 4px;
  cursor: pointer;
}

/* ==========================================================================
   24. NEWSLETTER FORM
   ========================================================================== */

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.newsletter-form__input {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  border: 1px solid #e2e8e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  color: #1a1a1a;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletter-form__input:focus {
  outline: none;
  border-color: #86efac;
  box-shadow: 0 0 0 3px rgba(134, 239, 172, 0.2);
}

.newsletter-form__submit {
  background: #f59e0b;
  color: #1a1a1a;
  font-weight: 700;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 14px;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-form__submit:hover {
  background: #d97706;
}

.newsletter-form__success {
  display: none;
  width: 100%;
  padding: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  color: #16a34a;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}

.newsletter-form__success.visible {
  display: block;
}

.newsletter-cta {
  background: #1a3a2a;
  padding: 48px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.newsletter-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

/* ==========================================================================
   25. PAGE HEADER
   ========================================================================== */

.page-header {
  background: #1a3a2a;
  padding: 40px 24px;
  margin-bottom: 0;
}

.page-header__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-header h1 {
  color: #fff;
  font-size: clamp(24px, 4vw, 36px);
  margin: 0;
}

.page-header__sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ==========================================================================
   26. AD PLACEHOLDER
   ========================================================================== */


/* ==========================================================================
   27. ABOUT PAGE
   ========================================================================== */

.about-hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.about-hero__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #86efac;
  object-fit: cover;
  display: block;
}

.about-hero__placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #86efac;
  background: #1a3a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
  font-size: 72px;
  font-weight: 800;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.about-stat {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.about-stat__num {
  font-size: 28px;
  font-weight: 800;
  color: #16a34a;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat__label {
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-section {
  margin-bottom: 40px;
}

.about-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: #1a3a2a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid #f59e0b;
  display: inline-block;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  margin-bottom: 12px;
  padding-left: 0;
  line-height: 1.6;
}

/* ==========================================================================
   28. UTILITY CLASSES
   ========================================================================== */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.text-center { text-align: center; }
.text-muted   { color: #999; }

/* ==========================================================================
   29. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- Mobile: max 767px --- */
@media (max-width: 767px) {

  /* Navigation */
  .nav__hamburger {
    display: flex;
  }

  .nav__menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #1a3a2a;
    padding: 20px;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .nav__menu.active {
    display: flex;
  }

  .nav__link {
    width: 100%;
    padding: 10px 12px;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 36px 20px;
    gap: 24px;
  }

  .author-card {
    display: none;
  }

  /* Posts grid */
  .posts-grid {
    grid-template-columns: 1fr;
  }

  /* Content layout */
  .content-wrap {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  /* Tips grid */
  .tips-grid {
    grid-template-columns: 1fr;
  }

  /* Featured post */
  .featured-post {
    grid-template-columns: 1fr;
  }

  /* About page */
  .about-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero__photo,
  .about-hero__placeholder {
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer__links {
    justify-content: center;
  }

  /* Trust bar */
  .trust-bar__inner {
    gap: 16px;
  }

  /* Newsletter CTA */
  .newsletter-cta {
    padding: 32px 20px;
  }

  /* Container */
  .container {
    padding: 0 16px;
  }

  /* Section */
  .section {
    padding: 40px 0;
  }

  .section__inner {
    padding: 0 16px;
  }

  /* Article */
  .article-content {
    max-width: 100%;
  }

  /* Author box */
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* --- Tablet: 768px–1023px --- */
@media (min-width: 768px) and (max-width: 1023px) {

  .hero__inner {
    grid-template-columns: 1fr 280px;
    gap: 32px;
    padding: 40px 24px;
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-wrap {
    grid-template-columns: 1fr 260px;
    gap: 28px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero {
    grid-template-columns: 180px 1fr;
    gap: 32px;
  }

  .about-hero__photo,
  .about-hero__placeholder {
    width: 160px;
    height: 160px;
  }
}

/* --- Social Links (Footer) --- */
.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer__social-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}

.footer__social-link svg {
  flex-shrink: 0;
}

/* --- Social Links (Hero / Author Card) --- */
.hero-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.hero-social__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.hero-social__link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

.hero-social__link svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .footer__social {
    justify-content: center;
  }
}

/* ============================================================
   Article Featured Image
   ============================================================ */
.article-featured-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 0 1.75rem;
  display: block;
}

@media (max-width: 768px) {
  .article-featured-img {
    height: 220px;
    border-radius: 8px;
  }
}

/* ============================================================
   View Current Ad CTA (Store Guides)
   ============================================================ */
.view-ad-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e4a35 100%);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

.view-ad-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #fff;
}

.view-ad-cta__text strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.view-ad-cta__text span {
  font-size: 0.85rem;
  opacity: 0.75;
}

.view-ad-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-accent);
  color: #0f2218;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.view-ad-cta__btn:hover {
  opacity: 0.88;
  text-decoration: none;
}

@media (max-width: 600px) {
  .view-ad-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .view-ad-cta__btn {
    width: 100%;
    justify-content: center;
  }
}
