/* Toyo Holdings — Enterprise IT Company */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0369a1;
  --primary-darker: #0c4a6e;
  --primary-light: #e0f2fe;
  --primary-50: #f0f9ff;
  --text: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.1);
  --max-w: 1200px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Segoe UI', -apple-system, system-ui, 'Noto Sans', sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.6; font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* prevent horizontal scroll on mobile */
}
a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-top {
  background: var(--primary-darker); color: #fff; font-size: 13px; padding: 6px 0;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 4px; }
.header-top a { color: rgba(255,255,255,.85); }
.header-top a:hover { color: #fff; }

.header-main .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; padding-bottom: 10px; gap: 12px;
}
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo img { height: 38px; width: auto; }
.logo span { font-size: 18px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.5px; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--text);
  border-radius: 8px; transition: all .15s; white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--primary); background: var(--primary-50); }
.nav-cta {
  background: var(--primary) !important; color: #fff !important;
  border-radius: 8px !important; padding: 8px 16px !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text); padding: 8px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  color: #fff; padding: 60px 0 48px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(255,255,255,.08) 0%, transparent 50%);
}
.hero .container { position: relative; z-index: 1; text-align: center; }
.hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.hero p { font-size: 17px; opacity: .85; max-width: 600px; margin: 0 auto 24px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px; font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; transition: all .15s; text-align: center;
}
.btn-white { background: #fff; color: var(--primary-dark); }
.btn-white:hover { background: var(--primary-50); color: var(--primary-dark); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ===== SECTION ===== */
.section { padding: 48px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 8px; color: var(--text); }
.section-sub { text-align: center; color: var(--text-light); font-size: 15px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== PRODUCT CARD ===== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all .2s; position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--primary); }
.card-badge {
  position: absolute; top: 12px; right: 12px; background: var(--primary);
  color: #fff; padding: 4px 12px; border-radius: 6px; font-size: 12px; font-weight: 700;
  z-index: 2;
}
.card-badge.hot { background: var(--danger); }
.card-badge.new { background: var(--success); }
.card-img {
  height: 200px; background: linear-gradient(135deg, var(--primary-50) 0%, #dbeafe 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; position: relative; overflow: hidden;
}
.card-img img {
  max-height: 100%; max-width: 100%; object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.12));
  transition: transform .3s;
}
.product-card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 14px 16px 18px; }
.card-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.card-apps { font-size: 11px; color: var(--text-light); margin-bottom: 8px; }
.card-apps span { background: var(--bg-alt); padding: 2px 6px; border-radius: 4px; margin-right: 3px; display: inline-block; margin-bottom: 3px; }
.card-meta { display: flex; gap: 10px; font-size: 12px; color: var(--text-lighter); margin-bottom: 10px; }
.card-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.card-price .current { font-size: 20px; font-weight: 800; color: var(--primary-dark); }
.card-price .original { font-size: 13px; color: var(--text-lighter); text-decoration: line-through; }
.card-price .save { font-size: 11px; color: var(--danger); font-weight: 700; }
.card-btn {
  display: block; width: 100%; text-align: center; padding: 11px;
  background: var(--primary); color: #fff; border-radius: 8px;
  font-weight: 700; font-size: 14px; transition: background .15s;
}
.card-btn:hover { background: var(--primary-dark); color: #fff; }

/* ===== PRODUCT DETAIL ===== */
.pd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.pd-img {
  background: var(--primary-50); border-radius: var(--radius); padding: 40px;
  display: flex; align-items: center; justify-content: center; min-height: 300px;
  position: relative; overflow: hidden;
}
.pd-img::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, var(--primary-50) 0%, #dbeafe 100%);
}
.pd-img img { max-height: 260px; max-width: 100%; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 8px 20px rgba(0,0,0,.15)); }
.pd-info h1 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.pd-edition { display: inline-block; padding: 4px 12px; border-radius: 6px; background: var(--primary-50); color: var(--primary-dark); font-size: 12px; font-weight: 700; margin-bottom: 14px; }
.pd-price { margin-bottom: 16px; }
.pd-price .current { font-size: 28px; font-weight: 900; color: var(--primary-dark); }
.pd-price .original { font-size: 16px; color: var(--text-lighter); text-decoration: line-through; margin-left: 10px; }
.pd-desc { color: var(--text-light); margin-bottom: 16px; line-height: 1.7; font-size: 14px; }
.pd-features { list-style: none; margin-bottom: 20px; }
.pd-features li { padding: 5px 0 5px 24px; position: relative; color: var(--text); font-size: 13px; }
.pd-features li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; font-size: 15px; }
.pd-apps { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.pd-apps span { background: var(--bg-alt); border: 1px solid var(--border); padding: 5px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; }

/* Payment box */
.payment-box {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; margin-top: 20px;
}
.payment-box h3 { font-size: 16px; margin-bottom: 12px; color: var(--text); }
.pay-method { margin-bottom: 14px; padding: 12px; background: #fff; border-radius: 8px; border: 1px solid var(--border); }
.pay-method h4 { font-size: 14px; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.pay-method p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.pay-method .mono { font-family: 'Courier New', monospace; font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: 1px; word-break: break-all; }

/* ===== FEATURES ===== */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.feat-card {
  text-align: center; padding: 24px 16px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all .2s;
}
.feat-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.feat-icon { font-size: 32px; margin-bottom: 10px; }
.feat-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feat-desc { font-size: 13px; color: var(--text-light); }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-item { text-align: center; }
.stat-num { font-size: 30px; font-weight: 900; color: var(--primary); }
.stat-label { font-size: 13px; color: var(--text-light); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.about-text h2 { font-size: 24px; font-weight: 800; margin-bottom: 14px; }
.about-text p { color: var(--text-light); margin-bottom: 12px; font-size: 14px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card {
  padding: 24px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; color: var(--primary-dark); }
.contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.contact-item .icon { font-size: 16px; min-width: 22px; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: var(--primary-darker); color: rgba(255,255,255,.8); padding: 40px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.footer h4 { color: #fff; font-size: 14px; margin-bottom: 12px; }
.footer p, .footer li { font-size: 12px; line-height: 1.8; }
.footer ul { list-style: none; }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 14px 0;
  font-size: 11px; color: rgba(255,255,255,.5); text-align: center;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 12px 0; font-size: 12px; color: var(--text-lighter); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }

/* ===== YEAR FILTER ===== */
.filter-bar { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 16px; border-radius: 8px; border: 1px solid var(--border);
  background: #fff; font-size: 13px; font-weight: 600; cursor: pointer;
  color: var(--text-light); transition: all .15s;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 20px; margin: 24px 0 10px; color: var(--text); }
.legal-content h3 { font-size: 16px; margin: 16px 0 8px; color: var(--primary-dark); }
.legal-content p, .legal-content li { font-size: 13px; color: var(--text-light); line-height: 1.8; margin-bottom: 8px; }
.legal-content ul { padding-left: 20px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; padding: 40px 0; text-align: center;
}
.cta-banner h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.cta-banner p { font-size: 15px; opacity: .85; margin-bottom: 20px; }

/* ===== PROCESS STEPS ===== */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; counter-reset: step; }
.process-step {
  text-align: center; padding: 24px 14px; position: relative;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
}
.process-step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: var(--primary); color: #fff;
  border-radius: 50%; font-size: 16px; font-weight: 800;
  margin: 0 auto 10px;
}
.process-step h4 { font-size: 14px; margin-bottom: 4px; }
.process-step p { font-size: 12px; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; position: relative;
}
.testi-card::before { content: '"'; font-size: 40px; color: var(--primary-light); font-weight: 900; line-height: 1; position: absolute; top: 14px; right: 18px; }
.testi-text { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.testi-author { font-size: 13px; font-weight: 700; color: var(--text); }
.testi-role { font-size: 11px; color: var(--text-lighter); }

/* ===== ABOUT HERO ===== */
.about-hero {
  position: relative; height: 280px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,74,110,.85), rgba(14,165,233,.6)); }
.about-hero .container { position: relative; z-index: 2; text-align: center; color: #fff; }
.about-hero h1 { font-size: 30px; font-weight: 800; margin-bottom: 10px; }
.about-hero p { font-size: 15px; opacity: .9; max-width: 500px; margin: 0 auto; }

/* ===== TRUST BADGES ===== */
.trust-bar { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; padding: 16px 0; }
.trust-item { text-align: center; font-size: 12px; color: var(--text-light); }
.trust-item .icon { font-size: 24px; margin-bottom: 2px; display: block; }

/* ===== SHOPEE PROMO ===== */
.shopee-link { display: block; text-decoration: none; color: #fff; }
.shopee-link:hover { color: #fff; }
.shopee-banner {
  background: linear-gradient(135deg, #ee4d2d 0%, #f0572d 40%, #ff6633 100%);
  border-radius: var(--radius); padding: 28px 28px; color: #fff;
  display: flex; align-items: center; gap: 28px;
  overflow: hidden; transition: transform .15s, box-shadow .15s;
}
.shopee-link:hover .shopee-banner { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(238,77,45,.3); }
.shopee-left { flex-shrink: 0; }
.shopee-thumb {
  width: 160px; height: 160px; object-fit: cover; border-radius: 14px;
  border: 3px solid rgba(255,255,255,.3); box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.shopee-center { flex: 1; min-width: 0; }
.shopee-tag {
  display: inline-block; background: rgba(255,255,255,.2); padding: 4px 14px;
  border-radius: 16px; font-size: 12px; font-weight: 700; margin-bottom: 8px;
}
.shopee-title { font-size: 24px; font-weight: 800; margin-bottom: 4px; line-height: 1.2; }
.shopee-desc { font-size: 14px; opacity: .9; margin-bottom: 2px; }
.shopee-price { display: flex; align-items: baseline; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.shopee-now { font-size: 32px; font-weight: 900; }
.shopee-was { font-size: 15px; text-decoration: line-through; opacity: .55; }
.shopee-off { background: #fff; color: #ee4d2d; padding: 3px 10px; border-radius: 6px; font-size: 13px; font-weight: 800; }
.shopee-apps { margin-top: 6px; font-size: 13px; opacity: .75; }
.shopee-right { flex-shrink: 0; text-align: center; }
.shopee-btn {
  display: inline-block; background: #fff; color: #ee4d2d;
  padding: 16px 36px; border-radius: 12px; font-size: 18px; font-weight: 900;
  box-shadow: 0 6px 24px rgba(0,0,0,.25); white-space: nowrap;
  animation: shopee-pulse 2s ease-in-out infinite;
}
.shopee-link:hover .shopee-btn { background: #fff5f2; transform: scale(1.05); }
@keyframes shopee-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(0,0,0,.25); }
  50% { box-shadow: 0 6px 32px rgba(255,255,255,.4), 0 6px 24px rgba(0,0,0,.25); }
}
.shopee-safe { display: block; margin-top: 8px; font-size: 11px; opacity: .65; }

/* ===== 404 ===== */
.page-404 { text-align: center; padding: 80px 20px; }
.page-404 h1 { font-size: 60px; font-weight: 900; color: var(--primary); }
.page-404 p { font-size: 16px; color: var(--text-light); margin: 10px 0 24px; }

/* ======================================================================
   MOBILE RESPONSIVE — comprehensive fixes
   ====================================================================== */
@media (max-width: 768px) {
  /* Nav */
  .menu-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 8px 12px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px 16px; }

  /* Header top */
  .header-top { font-size: 11px; padding: 4px 0; }
  .header-top .container { flex-direction: column; text-align: center; gap: 2px; }

  /* Logo */
  .logo img { height: 32px; }
  .logo span { font-size: 16px; }

  /* Hero */
  .hero { padding: 36px 0 30px; }
  .hero h1 { font-size: 24px; }
  .hero p { font-size: 14px; margin-bottom: 18px; }
  .btn { padding: 10px 20px; font-size: 13px; }

  /* Section */
  .section { padding: 32px 0; }
  .section-title { font-size: 20px; }
  .section-sub { font-size: 13px; margin-bottom: 24px; }

  /* Product grid */
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-img { height: 140px; padding: 10px; }
  .card-body { padding: 10px 12px 14px; }
  .card-title { font-size: 13px; }
  .card-apps { font-size: 10px; }
  .card-apps span { padding: 1px 4px; margin-right: 2px; }
  .card-meta { font-size: 10px; gap: 6px; margin-bottom: 8px; }
  .card-price .current { font-size: 16px; }
  .card-price .original { font-size: 11px; }
  .card-price .save { font-size: 10px; }
  .card-btn { padding: 9px; font-size: 12px; }

  /* Product detail */
  .pd-layout { grid-template-columns: 1fr; gap: 20px; }
  .pd-img { padding: 24px; min-height: 200px; }
  .pd-img img { max-height: 180px; }
  .pd-info h1 { font-size: 20px; }
  .pd-price .current { font-size: 24px; }
  .pd-price .original { font-size: 14px; }

  /* Features */
  .feat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feat-card { padding: 16px 10px; }
  .feat-icon { font-size: 26px; margin-bottom: 6px; }
  .feat-title { font-size: 13px; }
  .feat-desc { font-size: 11px; }

  /* Stats */
  .stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 11px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-text h2 { font-size: 20px; }
  .about-hero { height: 200px; }
  .about-hero h1 { font-size: 22px; }
  .about-hero p { font-size: 13px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-card { padding: 16px; }

  /* Footer */
  .footer { padding: 28px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 16px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .process-step { padding: 16px 10px; }
  .process-step::before { width: 30px; height: 30px; font-size: 14px; }
  .process-step h4 { font-size: 12px; }
  .process-step p { font-size: 11px; }

  /* CTA */
  .cta-banner { padding: 28px 0; }
  .cta-banner h2 { font-size: 20px; }
  .cta-banner p { font-size: 13px; }

  /* Shopee banner */
  .shopee-banner { flex-direction: column; gap: 14px; text-align: center; padding: 20px 16px; }
  .shopee-left { width: 100%; }
  .shopee-thumb { width: 100px; height: 100px; margin: 0 auto; }
  .shopee-center { width: 100%; }
  .shopee-title { font-size: 18px; }
  .shopee-desc { font-size: 12px; }
  .shopee-price { justify-content: center; }
  .shopee-now { font-size: 26px; }
  .shopee-was { font-size: 12px; }
  .shopee-off { font-size: 11px; }
  .shopee-apps { font-size: 11px; }
  .shopee-right { width: 100%; }
  .shopee-btn { display: block; width: 100%; padding: 16px; font-size: 17px; font-weight: 900; border-radius: 12px; animation: shopee-pulse 2s ease-in-out infinite; }
  .shopee-safe { font-size: 10px; }

  /* Trust bar */
  .trust-bar { gap: 12px; padding: 12px 0; }
  .trust-item { font-size: 10px; min-width: 60px; }
  .trust-item .icon { font-size: 20px; }

  /* Legal */
  .legal-content h2 { font-size: 18px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Enterprise inline grids - override */
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 400px) {
  .product-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 14px; }
}
