/* sheerME Custom CSS — overrides for 2110_character template */

/* ==============================
   COLOR OVERRIDES
============================== */
.tm-bg-primary-dark  { background-color: #9D174D; }
.tm-bg-primary-light { background-color: #EC4899; }
.tm-bg-secondary     { background-color: #FCE7F3; }
.tm-bg-dark          { background-color: #FDF6F0; }
.tm-bg-dark-footer   { background-color: #1A1015; }
.tm-bg-pink          { background-color: #EC4899; }
.tm-bg-gold          { background-color: #D97706; }
.tm-bg-blush         { background-color: #FCE7F3; }
.tm-bg-charcoal      { background-color: #1A1015; }

/* TEXT COLORS */
.tm-text-pink        { color: #EC4899; }
.tm-text-dark-rose   { color: #9D174D; }
.tm-text-warm        { color: #2D1B20; }
.tm-text-secondary-c { color: #8A7B7B; }
.tm-text-gold        { color: #D97706; }
.tm-text-sage        { color: #7A9E7E; }

/* BODY */
body {
  background-color: #FDF6F0;
  color: #2D1B20;
  padding: 0;
}

/* ==============================
   NAVIGATION
============================== */
.sm-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.sm-nav-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2D1B20;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: visible;
  min-width: 0;
  flex-shrink: 0;
}

.sm-nav-logo span { color: #EC4899; }

.sm-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sm-nav-links a {
  color: #2D1B20;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.sm-nav-links a:hover,
.sm-nav-links a.active { color: #EC4899; }

.sm-nav-cta {
  background-color: #EC4899;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
}

.sm-nav-cta:hover { background-color: #9D174D !important; color: #ffffff !important; }

.sm-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.sm-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2D1B20;
  transition: all 0.3s;
}

.sm-mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  padding: 20px 40px;
  gap: 16px;
  border-top: 1px solid #F9A8D4;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 998;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sm-mobile-menu.open { display: flex; }

.sm-mobile-menu a {
  color: #2D1B20;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #FCE7F3;
}

.sm-mobile-menu a:hover { color: #EC4899; }

/* ==============================
   COOKIE BANNER
============================== */
.sm-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1015;
  color: #cccccc;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  font-size: 0.875rem;
}

.sm-cookie-banner p { margin: 0; line-height: 1.5; }

.sm-cookie-banner a { color: #EC4899; text-decoration: underline; }

.sm-cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }

.sm-cookie-accept {
  background-color: #EC4899;
  color: #ffffff;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.sm-cookie-decline {
  background-color: transparent;
  color: #cccccc;
  border: 1px solid #555;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
}

/* ==============================
   FOOTER
============================== */
.sm-footer {
  background-color: #1A1015;
  color: #cccccc;
  padding: 60px 40px 20px;
}

.sm-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.sm-footer-col h4 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}

.sm-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sm-footer-col ul li { margin-bottom: 10px; }

.sm-footer-col a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.sm-footer-col a:hover { color: #EC4899; }

.sm-footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  display: block;
}

.sm-footer-logo span { color: #EC4899; }

.sm-footer-tagline {
  font-size: 0.875rem;
  color: #8A7B7B;
  margin-bottom: 16px;
  line-height: 1.5;
}

.sm-footer-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.sm-footer-social a {
  color: #cccccc;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.sm-footer-social a:hover { color: #EC4899; }

.sm-footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==============================
   BUTTONS
============================== */
.sm-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.sm-btn-primary {
  background-color: #EC4899;
  color: #ffffff;
}

.sm-btn-primary:hover { background-color: #9D174D; color: #ffffff; }

.sm-btn-outline {
  background-color: transparent;
  color: #EC4899;
  border: 2px solid #EC4899;
}

.sm-btn-outline:hover { background-color: #EC4899; color: #ffffff; }

.sm-btn-dark {
  background-color: #1A1015;
  color: #ffffff;
}

.sm-btn-dark:hover { background-color: #EC4899; color: #ffffff; }

.sm-btn-white {
  background-color: #ffffff;
  color: #EC4899;
}

.sm-btn-white:hover { background-color: #FCE7F3; color: #9D174D; }

/* ==============================
   PAGE WRAPPER
============================== */
.sm-page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sm-page-main {
  flex: 1;
}

/* ==============================
   SECTION UTILITIES
============================== */
.sm-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.sm-section-full {
  padding: 80px 40px;
}

.sm-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2D1B20;
  margin: 0 0 12px;
}

.sm-section-subtitle {
  font-size: 1rem;
  color: #8A7B7B;
  margin: 0 0 48px;
  line-height: 1.6;
}

.sm-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #EC4899;
  margin-bottom: 12px;
}

.sm-text-center { text-align: center; }

/* ==============================
   HOMEPAGE HERO SECTION
============================== */
.sm-hero-section {
  background-color: #FDF6F0;
  padding: 80px 40px;
}

.sm-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sm-hero-text {
  background-color: #ffffff;
  padding: 60px 50px;
  border-radius: 16px;
  border: 1px solid #F9A8D4;
}

.sm-hero-hiw {
  background-color: #FCE7F3;
  padding: 48px 40px;
  border-radius: 16px;
}

.sm-hiw-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #9D174D;
  margin: 0 0 28px;
}

/* CASHBACK SECTION WRAPPER */
.sm-cashback-section {
  background-color: #FDF6F0;
  padding: 0 40px 0;
}

.sm-cashback-section .sm-cashback-block {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
}

/* Legacy masonry block kept for reference */
.sm-hero-block {
  background-color: #ffffff;
  padding: 80px 60px;
}

.sm-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2D1B20;
  line-height: 1.2;
  margin: 0 0 20px;
}

.sm-hero-sub {
  font-size: 1.05rem;
  color: #8A7B7B;
  line-height: 1.7;
  margin: 0 0 32px;
}

.sm-hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.sm-hero-link {
  color: #EC4899;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.sm-hero-link:hover { color: #9D174D; }

.sm-social-proof {
  font-size: 0.875rem;
  color: #8A7B7B;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sm-social-proof .stars { color: #D97706; }

/* ==============================
   CATEGORY GRID
============================== */
.sm-categories {
  background-color: #ffffff;
  padding: 60px 40px;
}

.sm-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sm-cat-card {
  background-color: #FDF6F0;
  border: 1px solid #F9A8D4;
  border-radius: 12px;
  padding: 24px 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.sm-cat-card:hover {
  background-color: #FCE7F3;
  border-color: #EC4899;
  transform: translateY(-3px);
}

.sm-cat-card i {
  font-size: 1.8rem;
  color: #EC4899;
  margin-bottom: 12px;
  display: block;
}

.sm-cat-card-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D1B20;
  display: block;
  margin-bottom: 4px;
}

.sm-cat-card-count {
  font-size: 0.75rem;
  color: #8A7B7B;
}

/* ==============================
   HOW IT WORKS (STEPS)
============================== */
.sm-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sm-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sm-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FCE7F3;
  color: #EC4899;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.sm-step-num.highlight {
  background-color: #EC4899;
  color: #ffffff;
}

.sm-step-text h4 { margin: 0 0 4px; font-size: 1rem; font-weight: 600; color: #2D1B20; }
.sm-step-text p  { margin: 0; font-size: 0.9rem; color: #8A7B7B; line-height: 1.5; }

/* ==============================
   CASHBACK VALUE PROP BLOCK
============================== */
.sm-cashback-block {
  background-color: #EC4899;
  color: #ffffff;
  padding: 80px 60px;
}

.sm-cashback-block h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #ffffff;
}

.sm-cashback-stat {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 32px;
  opacity: 0.95;
}

.sm-cashback-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sm-cashback-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.sm-cashback-point i { font-size: 0.9rem; opacity: 0.9; }

/* ==============================
   TESTIMONIALS
============================== */
.sm-testimonials {
  background-color: #FCE7F3;
  padding: 80px 40px;
}

.sm-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.sm-testi-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #F9A8D4;
}

.sm-testi-stars { color: #D97706; margin-bottom: 16px; font-size: 0.9rem; }

.sm-testi-quote {
  font-size: 0.95rem;
  color: #2D1B20;
  line-height: 1.7;
  margin: 0 0 20px;
}

.sm-testi-author { font-size: 0.875rem; color: #8A7B7B; font-weight: 600; }

.sm-testi-treatment {
  font-size: 0.8rem;
  color: #EC4899;
  font-weight: 600;
  background-color: #FCE7F3;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 6px;
}

/* ==============================
   B2B DARK SECTION
============================== */
.sm-b2b {
  background-color: #1A1015;
  padding: 80px 40px;
  text-align: center;
}

.sm-b2b h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}

.sm-b2b p {
  font-size: 1rem;
  color: #cccccc;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ==============================
   PAGE HEROES (INTERNAL PAGES)
============================== */
.sm-page-hero {
  background: linear-gradient(135deg, #FDF6F0 0%, #FCE7F3 100%);
  padding: 80px 40px;
  text-align: center;
}

.sm-page-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2D1B20;
  margin: 0 0 16px;
}

.sm-page-hero p {
  font-size: 1.1rem;
  color: #8A7B7B;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==============================
   ABOUT PAGE
============================== */
.sm-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sm-about-story img {
  border-radius: 12px;
  width: 100%;
}

.sm-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sm-value-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid #F9A8D4;
  text-align: center;
}

.sm-value-card i {
  font-size: 2rem;
  color: #EC4899;
  margin-bottom: 16px;
  display: block;
}

.sm-value-card h3 { font-size: 1.1rem; font-weight: 700; color: #2D1B20; margin: 0 0 12px; }
.sm-value-card p  { font-size: 0.9rem; color: #8A7B7B; line-height: 1.6; margin: 0; }

.sm-backed-block {
  background-color: #1A1015;
  border-radius: 12px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.sm-backed-block-text h3 { color: #ffffff; font-size: 1.3rem; margin: 0 0 10px; }
.sm-backed-block-text p  { color: #cccccc; margin: 0 0 20px; line-height: 1.6; font-size: 0.95rem; }

.sm-badge {
  background-color: #D97706;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* ==============================
   TEAM PAGE
============================== */
.sm-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sm-team-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #F9A8D4;
  transition: transform 0.3s;
}

.sm-team-card:hover { transform: translateY(-4px); }

/* Remove old img rule — avatars now use initial circles */

.sm-team-card-body { padding: 24px; }

.sm-team-card-body h3 { font-size: 1.1rem; font-weight: 700; color: #2D1B20; margin: 0 0 4px; }

.sm-team-role {
  font-size: 0.85rem;
  color: #EC4899;
  font-weight: 600;
  margin-bottom: 12px;
}

.sm-team-card-body p { font-size: 0.875rem; color: #8A7B7B; line-height: 1.6; margin: 0; }

.sm-team-social { display: flex; gap: 12px; margin-top: 16px; }

.sm-team-social a { color: #8A7B7B; font-size: 1rem; transition: color 0.2s; }
.sm-team-social a:hover { color: #EC4899; }

/* Mode B: initial-letter avatar circles */
.sm-team-initial {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 24px auto 0;
}
.sm-initial-accent { background-color: #EC4899; }
.sm-initial-dark { background-color: #2D1B20; }

/* Featured CEO card */
.sm-team-card-featured {
  border: 2px solid #EC4899;
  border-radius: 12px;
  background: #ffffff;
  padding: 40px 40px;
  text-align: center;
}
.sm-team-card-featured h2 { color: #2D1B20; }

/* ==============================
   CONTACT PAGE
============================== */
.sm-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.sm-contact-form-wrap { background-color: #ffffff; border-radius: 12px; padding: 40px; border: 1px solid #F9A8D4; }

.sm-contact-form-wrap h2 { font-size: 1.4rem; font-weight: 700; color: #2D1B20; margin: 0 0 24px; }

.sm-form-group { margin-bottom: 20px; }

.sm-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D1B20;
  margin-bottom: 6px;
}

.sm-form-group input,
.sm-form-group select,
.sm-form-group textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #F9A8D4;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: "Open Sans", sans-serif;
  color: #2D1B20;
  background-color: #FDF6F0;
  transition: border-color 0.2s;
}

.sm-form-group input:focus,
.sm-form-group select:focus,
.sm-form-group textarea:focus {
  border-color: #EC4899;
  outline: none;
  background-color: #ffffff;
}

.sm-contact-info { padding-top: 8px; }

.sm-contact-info h3 { font-size: 1.2rem; font-weight: 700; color: #2D1B20; margin: 0 0 24px; }

.sm-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.sm-contact-item i {
  color: #EC4899;
  font-size: 1.1rem;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.sm-contact-item-text strong { display: block; font-size: 0.875rem; color: #2D1B20; margin-bottom: 2px; }
.sm-contact-item-text span  { font-size: 0.875rem; color: #8A7B7B; }
.sm-contact-item-text a { color: #8A7B7B; text-decoration: none; }
.sm-contact-item-text a:hover { color: #EC4899; }

.sm-contact-social { display: flex; gap: 14px; margin-top: 28px; }

.sm-contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FCE7F3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EC4899;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.sm-contact-social a:hover { background-color: #EC4899; color: #ffffff; }

/* ==============================
   PRODUCT PAGE
============================== */
.sm-product-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.sm-product-step {
  text-align: center;
  padding: 40px 28px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #F9A8D4;
  position: relative;
}

.sm-product-step-num {
  width: 48px;
  height: 48px;
  background-color: #FCE7F3;
  color: #EC4899;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.sm-product-step:last-child .sm-product-step-num {
  background-color: #EC4899;
  color: #ffffff;
}

.sm-product-step h3 { font-size: 1.1rem; font-weight: 700; color: #2D1B20; margin: 0 0 12px; }
.sm-product-step p  { font-size: 0.9rem; color: #8A7B7B; line-height: 1.6; margin: 0; }

.sm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sm-feature-card {
  background-color: #ffffff;
  border: 1px solid #F9A8D4;
  border-radius: 12px;
  padding: 28px 24px;
}

.sm-feature-card i {
  font-size: 1.6rem;
  color: #EC4899;
  margin-bottom: 14px;
  display: block;
}

.sm-feature-card h4 { font-size: 1rem; font-weight: 700; color: #2D1B20; margin: 0 0 8px; }
.sm-feature-card p  { font-size: 0.875rem; color: #8A7B7B; line-height: 1.6; margin: 0; }

.sm-salon-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 36px;
}

.sm-salon-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sm-salon-benefit i { color: #7A9E7E; font-size: 1rem; margin-top: 2px; }
.sm-salon-benefit span { font-size: 0.9rem; color: #cccccc; line-height: 1.5; }

.sm-app-teaser {
  background-color: #FCE7F3;
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
}

.sm-app-teaser h3 { font-size: 1.6rem; font-weight: 700; color: #2D1B20; margin: 0 0 8px; }
.sm-app-teaser p  { font-size: 0.95rem; color: #8A7B7B; margin: 0 0 28px; }

.sm-app-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.sm-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1A1015;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.7;
  cursor: default;
}

.sm-app-badge i { font-size: 1.3rem; }

/* ==============================
   BLOG PAGE
============================== */
.sm-blog-featured {
  background: linear-gradient(135deg, #1A1015 0%, #2D1B20 100%);
  padding: 80px 40px;
}

.sm-blog-featured-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sm-blog-featured-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #EC4899;
  margin-bottom: 16px;
}

.sm-blog-featured h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  max-width: 640px;
  line-height: 1.3;
}

.sm-blog-featured-meta {
  font-size: 0.875rem;
  color: #8A7B7B;
  margin-bottom: 24px;
}

.sm-blog-featured p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 0 28px;
}

.sm-blog-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sm-blog-cat-btn {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #F9A8D4;
  background-color: #ffffff;
  color: #8A7B7B;
  transition: all 0.2s;
  text-decoration: none;
}

.sm-blog-cat-btn:hover,
.sm-blog-cat-btn.active {
  background-color: #EC4899;
  border-color: #EC4899;
  color: #ffffff;
}

.sm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sm-blog-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #F9A8D4;
  overflow: hidden;
  transition: transform 0.3s;
}

.sm-blog-card:hover { transform: translateY(-4px); }

.sm-blog-card-img {
  height: 180px;
  background-color: #FCE7F3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #EC4899;
}

.sm-blog-card-body { padding: 24px; }

.sm-blog-card-cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #EC4899;
  margin-bottom: 8px;
}

.sm-blog-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #2D1B20;
  margin: 0 0 10px;
  line-height: 1.4;
}

.sm-blog-card-body p {
  font-size: 0.875rem;
  color: #8A7B7B;
  line-height: 1.6;
  margin: 0 0 16px;
}

.sm-blog-card-meta {
  font-size: 0.8rem;
  color: #8A7B7B;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sm-blog-card-meta a { color: #EC4899; text-decoration: none; font-weight: 600; }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1199px) {
  .sm-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .sm-about-story { grid-template-columns: 1fr; }
  .sm-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .sm-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .sm-cashback-section { padding: 0 20px; }
}

@media (max-width: 768px) {
  body { padding: 0; }

  .sm-nav { padding: 0 20px; }
  .sm-nav-links { display: none; }
  .sm-hamburger { display: flex; }

  .sm-section { padding: 50px 20px; }
  .sm-section-full { padding: 50px 20px; }

  .sm-hero-section { padding: 40px 20px; }
  .sm-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .sm-hero-text { padding: 36px 24px; }
  .sm-hero-hiw { padding: 32px 24px; }
  .sm-cashback-section { padding: 0 20px; }

  .sm-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .sm-testi-grid { grid-template-columns: 1fr; }
  .sm-values-grid { grid-template-columns: 1fr; }
  .sm-team-grid { grid-template-columns: 1fr; }
  .sm-contact-grid { grid-template-columns: 1fr; }
  .sm-product-steps { grid-template-columns: 1fr; }
  .sm-features-grid { grid-template-columns: 1fr; }
  .sm-blog-grid { grid-template-columns: 1fr; }
  .sm-footer-grid { grid-template-columns: 1fr; }
  .sm-backed-block { flex-direction: column; }
  .sm-salon-benefits { grid-template-columns: 1fr; }
  .sm-cookie-banner { flex-direction: column; align-items: flex-start; }

  .sm-hero-title { font-size: 1.9rem; }
  .sm-page-hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .sm-hero-ctas { flex-direction: column; align-items: flex-start; }
  .sm-hero-block { padding: 48px 24px; }
  .sm-cashback-block { padding: 50px 24px; }
  .sm-b2b { padding: 50px 20px; }
  .sm-b2b h2 { font-size: 1.6rem; }
}
@media (max-width: 768px) {
  .sm-product-img-split { grid-template-columns: 1fr !important; }
  /* Collapse all inline product-page split grids on mobile */
  .sm-section > div[style*="grid-template-columns:1fr 1fr"],
  .sm-section-full > div > div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
/* Fix 1: Article page max-width */
.article-layout, .article-container, .article-content, .blog-article, .post-content { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }

/* Fix 2: Article text color */
.article-body p, .article-content p, .post-content p, .blog-article p { color: #444; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.article-body h2, .article-content h2, .post-content h2 { color: #222; font-size: 24px; margin-top: 36px; margin-bottom: 16px; }
.article-body h3, .article-content h3, .post-content h3 { color: #333; font-size: 20px; margin-top: 28px; margin-bottom: 12px; }
.article-body ul, .article-body ol, .article-content ul, .article-content ol { color: #444; margin-bottom: 20px; padding-left: 24px; }
.article-body li, .article-content li { margin-bottom: 8px; line-height: 1.7; }
