/* ═══════════════════════════════════════════
   Mamta Steel Emporium — Main Stylesheet
   Contact: Contact@mamtasteels.in
   Founded: 1998 by Mr. Kishore Kumar Agrawal
═══════════════════════════════════════════ */

:root {
  --red: #c0392b;
  --red-dark: #922b21;
  --red-light: #e74c3c;
  --gold: #c9900c;
  --gold-light: #f0c040;
  --gold-pale: #fdf3dc;
  --maroon: #7b1d1d;
  --maroon-light: #a02020;
  --steel: #4a5568;
  --cream: #fffdf7;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #717171;
  --border: #e8d9b0;
  --border-light: #f0e6c8;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Hind', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,253,247,0.97);
  border-bottom: 2px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 104px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 96px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; gap: 22px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-weight: 500; font-size: 14px;
  transition: color 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red); color: white; border: none;
  padding: 9px 20px; border-radius: 4px;
  font-family: 'Hind', sans-serif; font-weight: 600; font-size: 13px;
  cursor: pointer; transition: background 0.2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--red-light); }
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--maroon);
  line-height: 1;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0505 0%, #4a0e0e 40%, #7b1d1d 70%, #c0392b 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 140px 5% 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 75% 25%, rgba(201,144,12,0.2) 0%, transparent 50%),
    radial-gradient(circle at 15% 75%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,1) 0px, rgba(255,255,255,1) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,1) 0px, rgba(255,255,255,1) 1px, transparent 1px, transparent 40px);
}
.hero-content { position: relative; max-width: 640px; }
.hero-badge {
  display: inline-block;
  background: rgba(192,57,43,0.3); border: 1px solid rgba(240,192,64,0.5);
  color: var(--gold-light); padding: 6px 18px; border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 70px); color: white;
  line-height: 1.08; margin-bottom: 22px; font-weight: 900;
}
.hero h1 span { color: var(--gold-light); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 36px; font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--text-dark);
  padding: 14px 28px; border-radius: 4px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all 0.2s;
  border: 2px solid var(--gold); display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: white;
  padding: 14px 28px; border-radius: 4px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.45);
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.hero-stats {
  position: absolute; right: 5%; bottom: 80px;
  display: flex; gap: 36px;
}
.stat { text-align: center; color: white; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.stat-label {
  font-size: 11px; color: rgba(255,255,255,0.65);
  letter-spacing: 1.2px; text-transform: uppercase; margin-top: 5px;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.45); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5) translateY(-10px); }
  50%       { opacity: 1;   transform: scaleY(1)   translateY(0);     }
}

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--maroon); margin-bottom: 14px; line-height: 1.2;
}
.section-sub {
  font-size: 16.5px; color: var(--text-mid);
  max-width: 580px; line-height: 1.7;
}
.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 14px 0 30px;
}

/* ── WHY MAMTA ── */
.why-section { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 44px;
}
.why-card {
  padding: 30px 26px;
  border: 1px solid var(--border-light); border-radius: 8px;
  transition: all 0.3s; position: relative; overflow: hidden;
  background: var(--cream);
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.why-card:hover { box-shadow: 0 8px 32px rgba(192,57,43,0.1); transform: translateY(-3px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; fill: white; }
.why-card h3 { font-size: 19px; color: var(--maroon); margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.6; }

/* ── CATEGORIES ── */
.categories-section { background: var(--cream); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px; margin-top: 44px;
}
.cat-card {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); background: white;
  transition: all 0.3s; cursor: pointer;
}
.cat-card:hover { box-shadow: 0 12px 40px rgba(123,29,29,0.13); transform: translateY(-4px); }
.cat-img {
  height: 180px; overflow: hidden; position: relative;
  background: var(--gold-pale);
}
.cat-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-body { padding: 20px; }
.cat-body h3 { font-size: 17px; color: var(--maroon); margin-bottom: 8px; }
.cat-body p { font-size: 14px; color: var(--text-mid); line-height: 1.5; margin-bottom: 14px; }
.cat-cta {
  font-size: 13px; font-weight: 600; color: var(--gold);
  text-decoration: none; letter-spacing: 0.4px;
  display: inline-flex; align-items: center; gap: 5px;
}
.cat-cta::after { content: '→'; transition: transform 0.2s; }
.cat-card:hover .cat-cta::after { transform: translateX(4px); }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; margin-top: 44px;
}
.product-card {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); background: white;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: 0 12px 40px rgba(123,29,29,0.14); transform: translateY(-4px); }
.product-img {
  height: 210px; overflow: hidden; position: relative; background: var(--gold-pale);
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: white;
  padding: 3px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; z-index: 2;
}
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 16.5px; color: var(--maroon); margin-bottom: 6px; }
.product-body .price { font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.product-body .price .old { font-size: 13px; color: var(--text-light); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.product-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.5; margin-bottom: 16px; flex: 1; }
.product-btn {
  display: block; text-align: center;
  background: var(--gold); color: var(--text-dark);
  padding: 10px; border-radius: 4px;
  font-weight: 600; font-size: 14px;
  text-decoration: none; transition: all 0.2s;
  border: 2px solid var(--gold);
}
.product-btn:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── FESTIVE ── */
.festive-section {
  background: linear-gradient(135deg, var(--maroon) 0%, #5c1010 100%);
  position: relative; overflow: hidden;
}
.festive-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(201,144,12,0.18) 0%, transparent 60%);
}
.festive-section .section-label { color: var(--gold-light); }
.festive-section .section-title { color: white; }
.festive-section .section-sub { color: rgba(255,255,255,0.72); }
.festive-section .divider { background: linear-gradient(90deg, var(--gold-light), transparent); }
.festive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px; margin-top: 44px; position: relative;
}
.fest-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,144,12,0.28); border-radius: 10px;
  padding: 28px 22px; text-align: center; transition: all 0.3s;
}
.fest-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,144,12,0.65); transform: translateY(-3px);
}
.fest-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(201,144,12,0.2); border: 1px solid rgba(201,144,12,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 26px;
}
.fest-card h3 { font-size: 17px; color: var(--gold-light); margin-bottom: 8px; }
.fest-card p { font-size: 13.5px; color: rgba(255,255,255,0.68); line-height: 1.5; }

/* ── EVENTS ── */
.events-section { background: white; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px; margin-top: 44px;
}
.event-card {
  border-radius: 10px; border: 1px solid var(--border);
  overflow: hidden; transition: all 0.3s;
}
.event-card:hover { box-shadow: 0 10px 36px rgba(123,29,29,0.1); transform: translateY(-3px); }
.event-banner { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.event-body { padding: 20px; }
.event-tag {
  display: inline-block; background: var(--gold-pale);
  color: var(--gold); border: 1px solid rgba(201,144,12,0.4);
  padding: 2px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 10px;
}
.event-body h3 { font-size: 18px; color: var(--maroon); margin-bottom: 8px; }
.event-body p { font-size: 14px; color: var(--text-mid); line-height: 1.5; }

/* ── ABOUT ── */
.about-section { background: var(--cream); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--maroon), #8b2020);
  border-radius: 12px; height: 440px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: white; text-align: center; padding: 40px;
  position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; inset: -20px;
  background: radial-gradient(circle at 60% 40%, rgba(201,144,12,0.22) 0%, transparent 60%);
}
.about-visual .big-num {
  font-family: 'Playfair Display', serif; font-size: 90px; font-weight: 900;
  color: rgba(255,255,255,0.1); line-height: 1;
  position: absolute; top: 16px; right: 16px;
}
.about-visual h2 { font-size: 28px; margin-bottom: 10px; color: var(--gold-light); position: relative; }
.about-visual .founder-badge {
  background: rgba(201,144,12,0.2); border: 1px solid rgba(201,144,12,0.4);
  border-radius: 6px; padding: 10px 20px; margin-bottom: 20px; position: relative;
}
.about-visual .founder-badge span { font-size: 13px; color: var(--gold-light); letter-spacing: 0.5px; }
.about-visual p { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.6; position: relative; }
.values-list { list-style: none; margin-top: 24px; }
.values-list li {
  padding: 11px 0; border-bottom: 1px solid var(--border-light);
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-mid); line-height: 1.5;
}
.values-list li .check { color: var(--red); font-size: 16px; flex-shrink: 0; font-weight: 700; }

/* ── TESTIMONIALS ── */
.trust-section { background: white; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px; margin-top: 44px;
}
.trust-card {
  padding: 26px; border: 1px solid var(--border-light);
  border-radius: 10px; background: var(--cream); transition: all 0.3s;
}
.trust-card:hover { box-shadow: 0 6px 24px rgba(123,29,29,0.08); }
.stars { color: var(--gold); font-size: 17px; margin-bottom: 12px; letter-spacing: 2px; }
.trust-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.trust-author { font-weight: 600; color: var(--maroon); font-size: 14px; }
.trust-location { font-size: 12.5px; color: var(--text-light); }

/* ── CONTACT ── */
.contact-section { background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-card {
  background: white; border: 1px solid var(--border-light); border-radius: 10px;
  padding: 24px; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px;
}
.c-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 20px; height: 20px; fill: white; }
.contact-card h4 { font-size: 15px; color: var(--maroon); margin-bottom: 5px; }
.contact-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.map-box {
  background: linear-gradient(135deg, #f8f4ea, #fff3cd);
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; min-height: 300px; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 30px; text-align: center;
}
.map-placeholder .map-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--maroon); display: flex;
  align-items: center; justify-content: center; margin: 0 auto 18px;
}
.map-placeholder .map-icon-wrap svg { width: 38px; height: 38px; fill: white; }
.map-placeholder h3 { font-size: 20px; color: var(--maroon); margin-bottom: 8px; }
.map-placeholder p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: white;
  padding: 13px 26px; border-radius: 4px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all 0.2s; margin-top: 18px;
}
.wa-btn:hover { background: #1ebe59; transform: translateY(-1px); }
.phone-list { margin-top: 4px; }
.phone-list a { color: var(--maroon); text-decoration: none; font-weight: 600; }
.phone-list a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer { background: var(--maroon); color: white; padding: 60px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .name {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; margin-bottom: 12px;
}
.footer-brand .footer-logo { height: 46px; width: auto; margin-bottom: 14px; display: block; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.7; }
.footer-col h4 {
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.68); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.45); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.2s;
}
.social-link svg { width: 16px; height: 16px; fill: white; }
.social-link:hover { background: var(--gold); border-color: var(--gold); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, #e8a800 100%);
  padding: 60px 5%; text-align: center;
}
.cta-band h2 { font-size: clamp(24px, 3.5vw, 38px); color: var(--text-dark); margin-bottom: 10px; }
.cta-band p { font-size: 16px; color: rgba(0,0,0,0.6); margin-bottom: 26px; }
.cta-band .btn-dark {
  background: var(--maroon); color: white;
  padding: 13px 30px; border-radius: 4px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; display: inline-block;
  margin: 0 6px; transition: all 0.2s;
}
.cta-band .btn-dark:hover { background: var(--maroon-light); transform: translateY(-2px); }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }
#home { display: block; }

/* ── ABOUT PAGE ── */
.about-story { background: white; }
.story-inner { max-width: 800px; margin: 0 auto; }
.story-inner p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.initiative-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px; margin-top: 28px;
}
.ini-card {
  padding: 26px; background: var(--gold-pale);
  border: 1px solid var(--border); border-radius: 8px; text-align: center;
}
.ini-card .ini-icon { font-size: 40px; margin-bottom: 10px; }
.ini-card h3 { font-size: 17px; color: var(--maroon); margin-bottom: 7px; }
.ini-card p { font-size: 14px; color: var(--text-mid); line-height: 1.5; }

/* ── FOUNDER STRIP ── */
.founder-strip {
  background: linear-gradient(135deg, #1a0505, #4a0e0e);
  padding: 50px 5%; display: flex; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.founder-strip .fs-badge {
  background: rgba(201,144,12,0.15); border: 1px solid rgba(201,144,12,0.35);
  border-radius: 8px; padding: 6px 16px; display: inline-block; margin-bottom: 10px;
}
.founder-strip .fs-badge span { font-size: 11px; color: var(--gold-light); letter-spacing: 2px; text-transform: uppercase; }
.founder-strip h2 { font-size: 28px; color: white; margin-bottom: 10px; }
.founder-strip p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 600px; }
.founder-yr {
  font-family: 'Playfair Display', serif; font-size: 90px; font-weight: 900;
  color: rgba(255,255,255,0.06); line-height: 1; flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links {
    display: none; position: absolute; top: 104px; left: 0; right: 0;
    background: rgba(255,253,247,0.98); flex-direction: column;
    padding: 20px 5%; gap: 14px; border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }
  .hero-stats { display: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-grid, .cat-grid, .why-grid, .festive-grid, .events-grid, .trust-grid { grid-template-columns: 1fr; }
  .founder-strip { flex-direction: column; gap: 20px; }
  .founder-yr { display: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .btn-primary, .btn-outline { padding: 12px 18px; font-size: 14px; }
  .cta-band .btn-dark { display: block; margin: 7px auto; max-width: 280px; }
}
