/* ===== 基础重置 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 40px);
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 20px; 
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: #1890ff;
  color: #fff;
  border: 1px solid #1890ff;
}
.btn-primary:hover { background: #40a9ff; border-color: #40a9ff; }
.btn-outline {
  background: transparent;
  color: #333;
  border: 1px solid #333;
}
.btn-outline:hover { background: #333; color: #fff; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 6px 16px;
  font-size: 13px;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 5px 14px; font-size: 12px; }
.btn-search {
  background: #e4393c;
  color: #fff;
  border: none;
  padding: 0 30px;
  font-size: 16px;
  border-radius: 0 4px 4px 0;
}
.btn-search:hover { background: #c81623; }

/* ===== 顶部导航 ===== */
.site-header {
  background: #333;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 60px;
  gap: clamp(12px, 2vw, 30px);
  width: 100%;
}
.logo {
  color: #e4393c;
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo:hover { color: #ff4d4f; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-item {
  color: #ccc;
  font-size: clamp(12px, 1vw, 14px);
  padding: 0 clamp(10px, 1.2vw, 18px);
  height: 60px;
  line-height: 60px;
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-item:hover { color: #fff; }
.nav-item.active {
  color: #ffc107;
}
.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #ffc107;
  border-radius: 2px;
}
.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ===== Hero 轮播 + 用户面板 ===== */
.hero-section {
  background: #fff;
  padding: clamp(10px, 1.2vw, 16px) 0;
  width: 100%;
}
.hero-inner {
  display: flex;
  gap: clamp(10px, 1.2vw, 16px);
  width: 100%;
  align-items: stretch;
}
.banner-area {
  flex: 1;
  min-width: 0;
  position: relative;
  height: clamp(280px, 32vw, 460px);
  overflow: hidden;
  border-radius: 4px;
  background: #555;
}
.banner-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-slide:nth-child(1) { background-image: url('../images/banner1.jpg'); }
.banner-slide:nth-child(2) { background-image: url('../images/banner2.jpg'); }
.banner-slide:nth-child(3) { background-image: url('../images/banner3.jpg'); }
.banner-slide.active { opacity: 1; z-index: 1; }
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 100%;
  white-space: normal;
}
.banner-text p {
  display: inline;
  color: #fff;
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: bold;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  letter-spacing: clamp(1px, 0.2vw, 2px);
}
.quote-mark {
  color: rgba(255,255,255,0.7);
  font-size: clamp(32px, 4vw, 48px);
  font-family: Georgia, serif;
  vertical-align: middle;
  line-height: 1;
}
.quote-mark.end { margin-left: 4px; }
.banner-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}
.banner-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.banner-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.banner-dots .dot.active { background: #fff; }
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.banner-arrow:hover { background: rgba(0,0,0,0.6); }
.banner-arrow.prev { left: 12px; }
.banner-arrow.next { right: 12px; }

/* 用户面板 */
.user-panel {
  width: clamp(260px, 22vw, 340px);
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: clamp(280px, 32vw, 460px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.user-panel-header {
  background: linear-gradient(135deg, #2b2b2b 0%, #444 100%);
  padding: 18px 16px;
  color: #fff;
}
.user-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.35);
  background: #666;
}
.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-greet-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.greeting {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 4px;
  line-height: 1.3;
}
.welcome-text {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.user-panel-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.user-panel-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.btn-login-main,
.btn-register-main {
  height: 38px;
  padding: 0 8px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 500;
}
.btn-login-main {
  background: #1890ff;
  color: #fff;
  border: 1px solid #1890ff;
}
.btn-login-main:hover { background: #40a9ff; }
.btn-register-main {
  background: #fff;
  color: #333;
  border: 1px solid #333;
}
.btn-register-main:hover { background: #333; color: #fff; }
.user-panel-logged {
  text-align: center;
}
.logged-user-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  padding: 12px;
  background: #f7f7f7;
  border-radius: 4px;
}
.logged-label {
  font-size: 12px;
  color: #999;
}
.logged-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.btn-logout {
  width: 100%;
  height: 36px;
  background: #fff;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
}
.btn-logout:hover { border-color: #e4393c; color: #e4393c; }
.user-quick-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #eee;
  background: #fafafa;
}
.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 6px;
  font-size: 11px;
  color: #666;
  transition: all 0.25s;
  border-right: 1px solid #eee;
  gap: 6px;
}
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: #fff; color: #1890ff; }
.quick-icon-svg {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.quick-icon-svg svg {
  width: 16px;
  height: 16px;
  color: #666;
}
.quick-item:hover .quick-icon-svg {
  background: #e6f4ff;
}
.quick-item:hover .quick-icon-svg svg { color: #1890ff; }
.quick-label {
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

/* ===== 搜索栏 ===== */
.search-section {
  background: #fff;
  padding: clamp(12px, 1.5vw, 18px) 0;
  margin-bottom: clamp(8px, 1vw, 12px);
  border-top: 1px solid #eee;
  width: 100%;
}
.search-bar {
  display: flex;
  width: 100%;
  max-width: min(900px, 100%);
  margin: 0 auto;
}
.search-bar input {
  flex: 1;
  height: 42px;
  padding: 0 15px;
  border: 2px solid #e4393c;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}
.search-tags {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #999;
}
.search-tags .tag {
  display: inline-block;
  margin: 0 6px;
  color: #666;
  transition: color 0.25s;
}
.search-tags .tag:hover { color: #e4393c; }

/* ===== 楼层区块 ===== */
.floor-section {
  background: #fff;
  margin-bottom: clamp(8px, 1vw, 12px);
  padding: clamp(16px, 2vw, 24px) 0;
  width: 100%;
}
.floor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
.floor-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.more-link {
  font-size: 13px;
  color: #999;
  transition: color 0.25s;
}
.more-link:hover { color: #e4393c; }

.floor-content {
  display: flex;
  gap: clamp(8px, 1vw, 14px);
  width: 100%;
}

/* 左侧大图卡片 */
.featured-card {
  flex: 0 0 clamp(200px, 16vw, 280px);
  width: clamp(200px, 16vw, 280px);
  flex-shrink: 0;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.featured-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.featured-img {
  flex: 1;
  min-height: clamp(180px, 18vw, 320px);
  overflow: hidden;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  background: #f0f0f0;
}
.featured-card:hover .featured-img img { transform: scale(1.05); }
.featured-info {
  padding: 10px 12px;
  flex: 1;
}
.featured-info h3 {
  font-size: 14px;
  font-weight: normal;
  color: #333;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-info .price {
  margin-top: 6px;
  color: #e4393c;
  font-size: 16px;
  font-weight: bold;
}
.old-price {
  color: #999;
  font-size: 12px;
  font-weight: normal;
  text-decoration: line-through;
  margin-left: 6px;
}
.featured-tag {
  background: #e4393c;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  font-size: 12px;
}

/* 右侧网格卡片 */
.grid-cards {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(6px, 0.8vw, 12px);
}
.grid-card {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.grid-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.grid-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.grid-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  background: #f0f0f0;
}
.grid-card:hover .grid-card-img img { transform: scale(1.08); }
.grid-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #ff6600;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 0 0 4px 0;
}
.grid-card-info {
  padding: 8px;
}
.grid-card-info h4 {
  font-size: 12px;
  font-weight: normal;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.grid-card-info .price {
  color: #e4393c;
  font-size: 14px;
  font-weight: bold;
  margin-top: 2px;
}

/* 搜索高亮 */
.grid-card.highlight,
.featured-card.highlight {
  border-color: #ffc107;
  box-shadow: 0 0 0 2px #ffc107;
}
.grid-card.hidden,
.featured-card.hidden { display: none; }

/* ===== 页脚 ===== */
.site-footer {
  background: #333;
  color: #aaa;
  margin-top: clamp(8px, 1vw, 12px);
  width: 100%;
}
.footer-inner {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 3vw, 40px) clamp(12px, 2vw, 40px) clamp(20px, 2.5vw, 30px);
  width: 100%;
}
.footer-col { flex: 1; }
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}
.footer-col p, .footer-col a {
  font-size: 13px;
  line-height: 2;
  display: block;
  color: #aaa;
  transition: color 0.25s;
}
.footer-col a:hover { color: #ffc107; }
.footer-bottom {
  border-top: 1px solid #444;
  padding: 15px 0;
  text-align: center;
  font-size: 12px;
  color: #777;
}

/* ===== 弹窗 ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal {
  background: #fff;
  border-radius: 8px;
  width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s ease;
}
.modal-lg { width: min(640px, 92vw); }
.modal-auth {
  width: min(440px, 92vw);
  overflow: hidden;
}
.auth-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(135deg, #333 0%, #4a4a4a 100%);
  color: #fff;
}
.auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.auth-brand-icon {
  font-size: 32px;
  line-height: 1;
}
.auth-brand h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 2px;
}
.auth-brand p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.auth-modal-top .modal-close {
  color: rgba(255,255,255,0.8);
  font-size: 28px;
}
.auth-modal-top .modal-close:hover { color: #fff; }
.auth-form-body {
  padding: 28px 32px 24px !important;
}
.auth-form-body .auth-field {
  margin-bottom: 18px;
}
.auth-form-body .auth-field label {
  display: block;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-row-2 .auth-field {
  margin-bottom: 18px;
}
.input-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.input-wrap .input-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: #999;
  z-index: 1;
}
.input-wrap .input-icon svg {
  width: 18px;
  height: 18px;
}
.input-wrap input {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 14px 0 44px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  font-size: 14px;
  line-height: 44px;
  background: #fff;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.input-wrap input::placeholder {
  color: #bbb;
}
.input-wrap input:hover {
  border-color: #c0c4cc;
}
.input-wrap input:focus {
  border-color: #1890ff;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.12);
  outline: none;
}
.auth-form-body .form-error {
  margin: 0 0 14px;
  min-height: 20px;
  line-height: 20px;
}
.btn-login-submit {
  height: 44px;
  background: #1890ff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
}
.btn-login-submit:hover { background: #40a9ff; }
.auth-form-body .modal-tip {
  margin-top: 16px;
  padding-top: 0;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}
.modal-header h3 { font-size: 18px; }
.modal-close {
  background: none;
  font-size: 24px;
  color: #999;
  line-height: 1;
  transition: color 0.25s;
}
.modal-close:hover { color: #333; }
.modal-body { padding: 20px; }
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}
.form-group > input,
.form-group > select,
.form-group > textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.25s;
}
.form-group > input:focus,
.form-group > select:focus,
.form-group > textarea:focus { border-color: #1890ff; }
.form-error {
  color: #e4393c;
  font-size: 13px;
  margin-bottom: 10px;
  min-height: 18px;
}
.modal-tip {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #999;
}
.modal-tip a { color: #1890ff; }
.modal-tip a:hover { text-decoration: underline; }

/* 商品详情 */
.detail-body {
  display: flex;
  gap: 20px;
}
.detail-body > img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.detail-info { flex: 1; }
.detail-info h4 { font-size: 20px; margin-bottom: 10px; }
.detail-price {
  color: #e4393c;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.detail-desc { color: #666; font-size: 14px; margin-bottom: 10px; }
.detail-location { color: #999; font-size: 13px; margin-bottom: 20px; }
.detail-actions { display: flex; gap: 12px; }

/* 用户中心 */
.user-center-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
.tab-btn {
  padding: 10px 20px;
  background: none;
  font-size: 14px;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
}
.tab-btn.active {
  color: #1890ff;
  border-bottom-color: #1890ff;
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.empty-tip {
  text-align: center;
  color: #999;
  padding: 40px 0;
  font-size: 14px;
}
.order-list li, .cart-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}
.order-list li img, .cart-list li img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}
.order-info, .cart-info { flex: 1; }
.order-info h5, .cart-info h5 { font-size: 14px; margin-bottom: 4px; }
.order-info p, .cart-info p { color: #999; font-size: 12px; }
.order-status {
  color: #1890ff;
  font-size: 13px;
}
.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}
.cart-footer strong { color: #e4393c; font-size: 18px; }
.cart-remove {
  color: #e4393c;
  font-size: 12px;
  cursor: pointer;
  background: none;
}
.cart-remove:hover { text-decoration: underline; }
.profile-info p { font-size: 14px; line-height: 2; color: #666; }
.profile-info strong { color: #333; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 3000;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== 响应式适配 ===== */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .hero-inner { flex-direction: column; }
  .user-panel {
    width: 100%;
    min-height: auto;
  }
  .banner-area {
    height: clamp(220px, 45vw, 360px);
  }
  .floor-content {
    flex-direction: column;
  }
  .featured-card {
    width: 100%;
    flex: none;
  }
  .grid-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .footer-inner {
    flex-wrap: wrap;
  }
  .footer-col {
    flex: 1 1 40%;
    min-width: 200px;
  }
}

@media (max-width: 576px) {
  .header-actions .btn-outline-light span,
  .header-actions .btn-outline-light svg { display: none; }
  .grid-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .banner-text p { font-size: 18px; }
}
