/* =====================================================
   ZSHARIF STUDIO — Red Theme
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --red:       #cc0000;
  --red-dark:  #990000;
  --red-light: #ff1a1a;
  --black:     #111111;
  --dark:      #1e1e1e;
  --grey:      #f5f5f5;
  --mid-grey:  #888888;
  --border:    #e0e0e0;
  --white:     #ffffff;
  --text:      #444444;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
  --transition: all 0.3s ease;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); transition: var(--transition); }

/* ===================== TOP BAR ===================== */
.topbar {
  background: var(--dark);
  color: #aaa;
  font-size: 12px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: #aaa; }
.topbar a:hover { color: var(--red); }
.topbar-left span { margin-right: 20px; }
.topbar-left span i { margin-right: 5px; color: var(--red); }
.topbar-right a { margin-left: 15px; }

/* ===================== NAVBAR ===================== */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
}

.nav-logo img { height: 50px; }
.nav-logo span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
}
.nav-logo span em { color: var(--red); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 28px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Dropdown */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--red);
  z-index: 999;
  padding: 10px 0;
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.dropdown-menu a:hover {
  color: var(--red);
  border-left-color: var(--red);
  background: #fff5f5;
  padding-left: 28px;
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 15px; }
.nav-actions a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--black);
  background: transparent;
  transition: var(--transition);
}
.nav-actions a:hover { background: var(--red); color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); transition: var(--transition);
}

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0000 50%, var(--red-dark) 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(204,0,0,0.15)"/><circle cx="20" cy="80" r="30" fill="rgba(204,0,0,0.08)"/></svg>') no-repeat;
  background-size: cover;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-text h1 em { color: var(--red); font-style: normal; }
.hero-text p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 35px; max-width: 440px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary-red {
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
}
.btn-primary-red:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,0,0,0.4); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
  background: transparent;
}
.btn-outline-white:hover { border-color: var(--white); background: var(--white); color: var(--red); }
.hero-image { display: flex; justify-content: center; }
.hero-image img { max-height: 420px; object-fit: cover; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }
.hero-stats { display: flex; gap: 40px; margin-top: 40px; }
.hero-stat .num { font-size: 32px; font-weight: 700; color: var(--white); font-family: var(--font-display); }
.hero-stat .num span { color: var(--red); }
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ===================== SECTION COMMON ===================== */
.section { padding: 80px 0; }
.section-grey { background: var(--grey); }
.section-dark { background: var(--dark); }
.section-red { background: var(--red); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.section-title span { color: var(--red); }
.section-divider {
  width: 50px; height: 3px;
  background: var(--red);
  margin: 16px auto 0;
}
.section-subtitle { margin-top: 15px; color: var(--mid-grey); font-size: 15px; }

/* ===================== CATEGORY CARDS ===================== */
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.cat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover .cat-icon { background: var(--red); color: var(--white); }

.cat-icon {
  width: 70px; height: 70px;
  background: #fff0f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: var(--red);
  transition: var(--transition);
}
.cat-card h3 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.cat-card p { font-size: 12px; color: var(--mid-grey); }

/* ===================== PRODUCT CARDS ===================== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.products-grid-4 { grid-template-columns: repeat(4, 1fr); }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}

.product-image {
  position: relative;
  height: 240px;
  background: var(--grey);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-image i { font-size: 80px; color: #ccc; transition: var(--transition); }
.product-card:hover .product-image i { color: var(--red); transform: scale(1.05); }

.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.95);
  transition: var(--transition);
}
.product-card:hover .product-actions { bottom: 0; }
.product-actions a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  border-radius: 50%;
  transition: var(--transition);
}
.product-actions a:hover { background: var(--red); }
.product-actions .btn-add-cart {
  padding: 0 20px;
  height: 38px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 2px;
  display: flex; align-items: center; gap: 6px;
}
.product-actions .btn-add-cart:hover { background: var(--red-dark); }

.product-info { padding: 18px 20px 20px; }
.product-category { font-size: 11px; color: var(--mid-grey); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-name { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 8px; transition: var(--transition); }
.product-card:hover .product-name { color: var(--red); }
.product-price { font-size: 17px; font-weight: 700; color: var(--red); }
.product-price del { font-size: 13px; color: var(--mid-grey); font-weight: 400; margin-left: 8px; }
.product-rating { margin-top: 8px; }
.product-rating i { color: var(--red); font-size: 12px; }
.product-rating span { font-size: 11px; color: var(--mid-grey); margin-left: 5px; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb-section {
  background: var(--grey);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.breadcrumb-nav a { color: var(--mid-grey); }
.breadcrumb-nav a:hover { color: var(--red); }
.breadcrumb-nav .sep { color: var(--border); }
.breadcrumb-nav .current { color: var(--black); font-weight: 600; }
.breadcrumb-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--black); }

/* ===================== PAGE BANNER ===================== */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0000 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(204,0,0,0.12);
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.page-banner h1 em { color: var(--red); font-style: normal; }
.page-banner p { color: rgba(255,255,255,0.65); font-size: 15px; position: relative; z-index: 1; }
.page-banner .breadcrumb-nav { justify-content: center; margin-top: 15px; position: relative; z-index: 1; }
.page-banner .breadcrumb-nav a { color: rgba(255,255,255,0.6); }
.page-banner .breadcrumb-nav a:hover { color: var(--red); }
.page-banner .breadcrumb-nav .current { color: var(--white); }
.page-banner .sep { color: rgba(255,255,255,0.3); }

/* ===================== ABOUT SECTION ===================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; }
.about-image-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 24px 28px;
  text-align: center;
}
.about-image-badge .num { font-family: var(--font-display); font-size: 40px; font-weight: 700; }
.about-image-badge .label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.85; }
.about-text h2 { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 20px; }
.about-text h2 span { color: var(--red); }
.about-text p { color: var(--text); line-height: 1.85; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon { width: 38px; height: 38px; background: #fff0f0; color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.about-feature-text h4 { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.about-feature-text p { font-size: 12px; color: var(--mid-grey); line-height: 1.5; }

/* ===================== PRODUCT PAGE LAYOUT ===================== */
.product-page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 35px; }

/* Sidebar */
.sidebar {}
.sidebar-widget { border: 1px solid var(--border); padding: 25px; margin-bottom: 25px; }
.sidebar-widget-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
  margin-bottom: 18px;
}
.sidebar-category-list li { border-bottom: 1px solid var(--border); }
.sidebar-category-list li:last-child { border-bottom: none; }
.sidebar-category-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  font-size: 13px;
  color: var(--text);
  transition: var(--transition);
}
.sidebar-category-list a:hover { color: var(--red); padding-left: 6px; }
.sidebar-category-list a span { background: var(--grey); color: var(--mid-grey); font-size: 11px; padding: 2px 8px; border-radius: 20px; }
.sidebar-category-list a.active-cat { color: var(--red); font-weight: 600; }

/* Sort bar */
.sort-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: var(--grey);
  border: 1px solid var(--border);
  margin-bottom: 25px;
  flex-wrap: wrap; gap: 12px;
}
.sort-bar p { font-size: 13px; color: var(--mid-grey); }
.sort-bar p strong { color: var(--black); }
.sort-bar select {
  border: 1px solid var(--border);
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  font-family: var(--font-body);
  cursor: pointer;
}

/* ===================== FEATURES BAR ===================== */
.features-bar { background: var(--red); padding: 35px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.feature-item:last-child { border-right: none; }
.feature-item i { font-size: 32px; opacity: 0.9; }
.feature-item-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.feature-item-text p { font-size: 12px; opacity: 0.75; }

/* ===================== FOOTER ===================== */
.footer { background: var(--dark); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand-logo em { color: var(--red); font-style: normal; }
.footer-about p { color: #888; font-size: 13px; line-height: 1.85; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: #2a2a2a;
  color: #888;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-title { font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--red); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: #888; display: flex; align-items: center; gap: 7px; transition: var(--transition); }
.footer-links a i { font-size: 10px; color: var(--red); }
.footer-links a:hover { color: var(--red); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact i { color: var(--red); margin-top: 3px; font-size: 14px; flex-shrink: 0; }
.footer-contact span { font-size: 13px; color: #888; line-height: 1.6; }
.footer-newsletter input {
  width: 100%;
  background: #2a2a2a;
  border: 1px solid #333;
  color: var(--white);
  padding: 12px 16px;
  font-size: 13px;
  font-family: var(--font-body);
  margin-bottom: 10px;
  outline: none;
  transition: var(--transition);
}
.footer-newsletter input:focus { border-color: var(--red); }
.footer-newsletter button {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.footer-newsletter button:hover { background: var(--red-dark); }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: 50px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: #555; }
.footer-bottom a { color: var(--red); }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; }
.contact-info h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--black); margin-bottom: 15px; }
.contact-info p { color: var(--text); line-height: 1.85; margin-bottom: 25px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon { width: 46px; height: 46px; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail-text h4 { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.contact-detail-text p { font-size: 13px; color: var(--mid-grey); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 13px 18px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  margin-bottom: 16px;
  transition: var(--transition);
  background: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); }
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form button {
  background: var(--red);
  color: var(--white);
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.contact-form button:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ===================== UTILITIES ===================== */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 13px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--red);
}
.btn-red:hover { background: transparent; color: var(--red); }
.btn-black {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 13px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--black);
}
.btn-black:hover { background: transparent; color: var(--black); }
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mb-30 { margin-bottom: 30px; }
.mt-30 { margin-top: 30px; }
.fw-700 { font-weight: 700; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { display: none; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar-main { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-text h1 { font-size: 36px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .product-page-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 50px 0; }
  .contact-form .row2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
}
