/* ================= UcuzAi — koyu tema · lime + mor ================= */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #0a0b0e;
  --bg-2: #0f1116;
  --surface: #14161b;
  --surface-2: #1b1e25;
  --surface-3: #262a33;
  --border: #262a33;
  --border-soft: #1f232b;
  --text: #e8eaed;
  --fg: #e8eaed;
  --muted: #9aa0ab;
  --muted-2: #6b7280;
  --dim: #6b7280;
  --accent: #a3e635;         /* lime */
  --accent-2: #c084fc;       /* mor */
  --accent-ink: #0a0b0e;     /* lime üstü koyu yazı */
  --accent-soft: rgba(163, 230, 53, 0.13);
  --accent-glow: rgba(163, 230, 53, 0.40);
  --success: #4ade80;
  --success-soft: rgba(74, 222, 128, 0.13);
  --warning: #fbbf24;
  --warning-soft: rgba(251, 191, 36, 0.13);
  --danger: #fb7185;
  --danger-soft: rgba(251, 113, 133, 0.13);
  --info: #38bdf8;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px -14px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --head: 'Space Grotesk', var(--font);
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: 1px solid var(--border);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(163, 230, 53, 0.06), transparent 60%),
    radial-gradient(900px 520px at 0% 0%, rgba(192, 132, 252, 0.05), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, .head { font-family: var(--head); letter-spacing: -0.02em; }
::selection { background: var(--accent); color: var(--accent-ink); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2a2f3a; border-radius: 20px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #333a46; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ============ Navbar ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 11, 14, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 22px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.brand .logo {
  width: 30px; height: 30px; border-radius: 9px; background: var(--accent);
  transform: rotate(45deg); display: grid; place-items: center; color: transparent; font-size: 0; flex-shrink: 0;
}
.brand .logo::after { content: ''; width: 9px; height: 9px; background: var(--accent-ink); border-radius: 2px; }
.brand .ai { color: var(--accent); }
.nav-spacer { flex: 1; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 12px; border-radius: 8px; color: var(--muted); font-weight: 600; font-size: 14px; transition: 0.16s; }
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--surface); }
.nav-user { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, #000, var(--accent-2));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px;
}
.nav-search { flex: 1; max-width: 380px; display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 11px; padding: 10px 14px; }
.nav-search input { flex: 1; background: none; border: none; outline: none; font-size: 14px; color: var(--text); font-family: inherit; }
.nav-search .ic { color: var(--dim); font-size: 15px; }
.cart-btn { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 11px; width: 42px; height: 42px; font-size: 17px; display: grid; place-items: center; color: var(--text); transition: 0.16s; }
.cart-btn:hover { border-color: #39404d; }
.cart-count { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px; background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 800; border-radius: 20px; display: grid; place-items: center; font-family: var(--mono); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 14px; cursor: pointer;
  padding: 11px 18px; border-radius: var(--radius-sm); border: 1px solid transparent;
  transition: 0.16s; white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover:not(:disabled) { filter: brightness(1.08); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-ghost:hover:not(:disabled) { border-color: #39404d; background: var(--surface-2); }
.btn-danger { background: transparent; color: var(--danger); border-color: #4a2027; }
.btn-danger:hover:not(:disabled) { background: rgba(251, 113, 133, 0.08); }
.btn-success { background: var(--success-soft); color: var(--success); border-color: rgba(74, 222, 128, 0.25); }
.btn-success:hover:not(:disabled) { background: rgba(74, 222, 128, 0.2); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 13px; font-size: 13px; }
.btn-lg { padding: 15px 24px; font-size: 16px; }

/* ============ Cards / surfaces ============ */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.card-pad { padding: 22px; }

/* ============ Forms ============ */
.field { margin-bottom: 15px; }
.label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.input, .textarea, .select {
  width: 100%; font-family: inherit; font-size: 14.5px; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: 0.16s; outline: none;
}
.input:focus, .textarea:focus, .select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.input::placeholder, .textarea::placeholder { color: var(--dim); }
.textarea { resize: vertical; min-height: 90px; font-family: inherit; }
.select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239aa0ab' stroke-width='2.5'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ============ Badges ============ */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface-2); color: var(--muted); }
.badge-accent { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
.badge-success { background: var(--success-soft); color: var(--success); border-color: transparent; }
.badge-warning { background: var(--warning-soft); color: var(--warning); border-color: transparent; }
.badge-danger { background: var(--danger-soft); color: var(--danger); border-color: transparent; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ============ Hero ============ */
.hero { padding: 60px 0 48px; }
.hero h1 { font-size: 56px; line-height: 1.05; font-weight: 700; margin-bottom: 18px; }
.hero h1 .grad, .hero h1 .accent { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.hero p { color: var(--muted); font-size: 18px; max-width: 480px; }
.hero-badges { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: 30px; padding: 7px 14px; font-size: 13px; font-weight: 600; color: var(--muted); }
.pill .live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

/* ============ Sections / grids ============ */
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin: 30px 0 20px; gap: 14px; flex-wrap: wrap; }
.section-head h2 { font-size: 30px; font-weight: 700; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1000px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .grid { grid-template-columns: 1fr; } }

/* ============ Product card ============ */
.product { cursor: pointer; background: var(--card-bg); border: var(--card-border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.18s, border-color 0.18s; position: relative; }
.product:hover { transform: translateY(-4px); border-color: #39404d; }
.product-media { height: 150px; position: relative; overflow: hidden; display: grid; place-items: center; color: var(--dim); font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; background: repeating-linear-gradient(135deg, var(--surface-2), var(--surface-2) 11px, var(--surface) 11px, var(--surface) 22px); }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media .ph { font-size: 40px; opacity: 0.5; }
.product-cat { position: absolute; top: 12px; left: 12px; }
.product-stock { position: absolute; top: 12px; right: 12px; }
.disc-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 20px; font-family: var(--mono); z-index: 2; }
.product-body { padding: 16px; display: flex; flex-direction: column; flex: 1; gap: 7px; }
.product-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); }
.product-title { font-family: var(--head); font-weight: 600; font-size: 17px; }
.product-desc { color: var(--muted); font-size: 13px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; gap: 10px; }
.price { font-family: var(--mono); font-size: 19px; font-weight: 600; color: var(--accent); }
.price small, .price-old { font-family: var(--mono); font-size: 13px; color: var(--dim); text-decoration: line-through; font-weight: 500; }
.soldout { position: absolute; inset: 0; background: rgba(10, 11, 14, 0.66); backdrop-filter: blur(2px); display: grid; place-items: center; font-weight: 800; letter-spacing: 1px; color: var(--danger); }
.featured-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }

/* ============ Category chips ============ */
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip-cat { background: var(--surface); border: 1px solid var(--border); border-radius: 30px; padding: 10px 18px; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; transition: 0.16s; }
.chip-cat:hover { color: var(--text); border-color: var(--accent); }
.chip-cat.active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* ============ Trust band ============ */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; }
.trust .t { display: flex; gap: 14px; align-items: flex-start; }
.trust .t .ic { font-size: 22px; }
.trust .t h4 { font-weight: 700; font-size: 15px; margin-bottom: 3px; font-family: var(--font); }
.trust .t p { font-size: 13px; color: var(--muted); }
@media (max-width: 800px) { .trust { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .trust { grid-template-columns: 1fr; } }

/* ============ Auth ============ */
.auth-wrap { min-height: 100vh; display: grid; place-items: center; padding: 40px; background: radial-gradient(900px 500px at 50% -10%, rgba(163, 230, 53, 0.06), transparent 60%); }
.auth-card { width: 100%; max-width: 430px; }
.auth-tabs { display: flex; background: var(--surface-2); border-radius: var(--radius-sm); padding: 5px; margin-bottom: 22px; }
.auth-tab { flex: 1; text-align: center; padding: 10px; border-radius: 8px; font-weight: 700; font-size: 14px; color: var(--muted); cursor: pointer; transition: 0.16s; }
.auth-tab.active { background: var(--accent); color: var(--accent-ink); }
.auth-head { text-align: center; margin-bottom: 24px; }
.auth-head h1 { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.auth-head p { color: var(--muted); font-size: 15px; }

/* ============ Tables ============ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--dim); font-weight: 800; padding: 14px 16px; background: var(--surface-2); border-bottom: 1px solid var(--border); white-space: nowrap; }
tbody td { padding: 14px 16px; border-bottom: 1px solid var(--border-soft); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--surface-2); }

/* ============ Modal ============ */
.modal-overlay { position: fixed; inset: 0; background: rgba(5, 5, 8, 0.72); backdrop-filter: blur(6px); z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); animation: pop 0.2s ease; }
@keyframes pop { from { transform: scale(0.96) translateY(8px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border-soft); }
.modal-head h3 { font-size: 18px; font-weight: 700; }
.modal-body { padding: 22px; }
.modal-foot { padding: 16px 22px; border-top: 1px solid var(--border-soft); display: flex; gap: 10px; justify-content: flex-end; }
.x-btn { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--border); background: var(--surface-2); color: var(--muted); cursor: pointer; display: grid; place-items: center; font-size: 18px; transition: 0.16s; }
.x-btn:hover { background: var(--surface-3); color: var(--text); }

/* ============ Misc utils ============ */
.muted { color: var(--muted); }
.dim { color: var(--dim); }
.small { font-size: 13px; }
.mono { font-family: var(--mono); }
.center { text-align: center; }
.row { display: flex; gap: 12px; }
.row.wrap { flex-wrap: wrap; }
.between { justify-content: space-between; }
.items-center { align-items: center; }
.gap-sm { gap: 8px; }
.mt { margin-top: 16px; }
.mt-lg { margin-top: 28px; }
.mb { margin-bottom: 16px; }
.hidden { display: none !important; }
.divider { height: 1px; background: var(--border-soft); margin: 18px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stat .k { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.stat .v { font-family: var(--head); font-size: 28px; font-weight: 700; }
.empty { text-align: center; padding: 56px 20px; color: var(--muted); }
.empty .ic { font-size: 42px; margin-bottom: 12px; opacity: 0.7; }
.copy-row { display: flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; }
.copy-row code { flex: 1; font-family: var(--mono); font-size: 13px; word-break: break-all; color: var(--text); }

.toast-wrap { position: fixed; bottom: 22px; right: 22px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg); animation: slideIn 0.22s ease; max-width: 340px; }
.toast.success { border-left: 3px solid var(--accent); }
.toast.error { border-left: 3px solid var(--danger); }
.toast.info { border-left: 3px solid var(--info); }
@keyframes slideIn { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }

.spinner { width: 30px; height: 30px; border: 3px solid var(--surface-3); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.7s linear infinite; margin: 40px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--border); margin-bottom: 22px; overflow-x: auto; }
.tab { padding: 12px 16px; font-weight: 700; font-size: 14.5px; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; white-space: nowrap; transition: 0.16s; }
.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.st-pending { background: var(--warning-soft); color: var(--warning); }
.st-paid { background: rgba(56, 189, 248, 0.13); color: var(--info); }
.st-delivered { background: var(--success-soft); color: var(--success); }
.st-cancelled { background: var(--danger-soft); color: var(--danger); }

.coin-badge { display: inline-grid; place-items: center; border-radius: 50%; font-weight: 800; letter-spacing: -0.4px; flex-shrink: 0; box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.5); }

/* Charts (admin) */
.chart-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.chart-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.chart-bars { display: flex; align-items: flex-end; gap: 10px; height: 160px; margin-top: 18px; }
.chart-bars .col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.chart-bars .bar { width: 100%; max-width: 26px; border-radius: 7px 7px 0 0; background: linear-gradient(180deg, var(--accent), var(--accent-2)); transition: 0.3s; min-height: 3px; position: relative; }
.chart-bars .bar:hover { filter: brightness(1.15); }
.chart-bars .bar .tip { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); margin-bottom: 6px; background: var(--surface-3); border: 1px solid var(--border); border-radius: 8px; padding: 5px 8px; font-size: 11.5px; white-space: nowrap; opacity: 0; pointer-events: none; transition: 0.16s; font-weight: 700; }
.chart-bars .bar:hover .tip { opacity: 1; }
.chart-bars .lbl { font-size: 11px; color: var(--dim); white-space: nowrap; }
.top-list { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.top-item { display: flex; align-items: center; gap: 12px; }
.top-rank { width: 24px; height: 24px; border-radius: 7px; background: var(--surface-3); display: grid; place-items: center; font-size: 12px; font-weight: 800; color: var(--accent); flex-shrink: 0; }
.top-bar-wrap { flex: 1; }
.top-bar-top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 5px; }
.top-bar-track { height: 7px; background: var(--surface-3); border-radius: 5px; overflow: hidden; }
.top-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 5px; }

footer { border-top: 1px solid var(--border); margin-top: 60px; padding: 40px; background: var(--surface); color: var(--muted); font-size: 14px; }

/* Yıldız puan */
.stars { display: inline-flex; gap: 1px; letter-spacing: 1px; line-height: 1; }
.stars .st-full { color: var(--accent); }
.stars .st-half { position: relative; color: var(--surface-3); }
.stars .st-half::before { content: '★'; position: absolute; left: 0; top: 0; width: 50%; overflow: hidden; color: var(--accent); }
.stars .st-empty { color: var(--surface-3); }
.rate-count { font-size: 12px; color: var(--muted); font-weight: 600; vertical-align: middle; }
.product-rating { display: flex; align-items: center; gap: 6px; margin: 2px 0 4px; }

/* Kupon */
.coupon-box { display: flex; gap: 8px; margin: 6px 0 2px; }
.coupon-box input { flex: 1; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; color: var(--text); font-family: inherit; font-size: 14px; text-transform: uppercase; outline: none; }
.coupon-box input:focus { border-color: var(--accent); }
.coupon-applied { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: var(--success-soft); border: 1px solid rgba(74, 222, 128, 0.25); border-radius: 10px; padding: 9px 12px; font-size: 13.5px; margin: 6px 0 2px; }
.coupon-applied b { color: var(--success); }
.coupon-applied .x { cursor: pointer; color: var(--muted); font-weight: 700; }

/* Yorumlar */
.reviews { margin-top: 14px; }
.review { border-top: 1px solid var(--border-soft); padding: 12px 0; }
.review:first-child { border-top: none; }
.review-head { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.review-head .rv-user { font-weight: 700; font-size: 13.5px; }
.review-head .rv-date { font-size: 11.5px; color: var(--dim); margin-left: auto; }
.review-text { font-size: 13.5px; color: var(--muted); line-height: 1.55; white-space: pre-wrap; word-break: break-word; }
.star-pick { display: inline-flex; gap: 4px; font-size: 26px; cursor: pointer; }
.star-pick span { color: var(--surface-3); transition: 0.12s; }
.star-pick span.on { color: var(--accent); }
.verify-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: var(--success-soft); color: var(--success); }

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 38px; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-link.hide-sm, .nav-search.hide-sm { display: none; }
}
