/* =====================================================================
 * template2 墨绿模板 · 深色墨绿主题样式
 * 覆盖于全站样式之后，仅本模板生效
 * ===================================================================== */

:root {
    --gold: #5c9e7a;
    --gold-dark: #4a8567;
    --gold-light: #6fb08c;
    --t2-bg: #121815;
    --t2-bg2: #0d1210;
    --t2-card: #1f2622;
    --t2-line: #2a3430;
    --t2-text: #e8eee9;
    --t2-muted: #8a968f;
    --t2-red: #e0605a;
}

/* ---------- 全站底色 ---------- */
body {
    background: var(--t2-bg);
    color: var(--t2-text);
}

.text-muted { color: var(--t2-muted) !important; }

/* ---------- 顶栏 / 头部 ---------- */
.topbar {
    background: var(--t2-bg2);
    color: #6e7b73;
    border-bottom: 1px solid var(--t2-line);
}
.topbar a { color: #6e7b73; }
.topbar a:hover { color: var(--gold-light); }

.header-main {
    background: var(--t2-bg);
    border-bottom: 1px solid var(--t2-line);
}
.header-main .logo-title,
.header-main .logo-sub { color: var(--t2-text) !important; }

/* 搜索框 */
.header-main .search-box {
    border-color: var(--t2-line);
    background: var(--t2-bg2);
}
.header-main .search-box input {
    background: transparent;
    color: var(--t2-text);
}
.header-main .search-box input::placeholder { color: #5a665f; }
.header-main .search-box .search-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: #0d1210;
}
.header-main .search-box .search-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* 主菜单 */
.main-nav {
    background: var(--t2-bg);
    border-bottom: 1px solid var(--t2-line);
}
.main-nav .nav-category {
    display: none;
}
.main-nav .nav-category-title {
    background: var(--gold);
    color: #0d1210;
}
.nav-menu > li > a { color: var(--t2-text); }
.nav-menu > li > a:hover { color: var(--gold-light); }

/* ---------- 页脚 ---------- */
.site-footer {
    background: var(--t2-bg2) !important;
    border-top: 1px solid var(--t2-line) !important;
    color: #6e7b73 !important;
}
.site-footer a { color: #6e7b73; }
.site-footer a:hover { color: var(--gold-light); }

/* =====================================================================
 * 板块：顶部 Banner（Hero）
 * ===================================================================== */
.t2-hero {
    background: var(--t2-bg2);
    padding: 0 0 26px;
}
.t2-hero .container {
    display: grid;
    grid-template-columns: 210px 1fr 260px;
    gap: 16px;
    align-items: stretch;
}
.t2-hero-full .container {
    display: block;
}

/* 左分类 */
.t2-cate {
    background: var(--t2-card);
    border: 1px solid var(--t2-line);
    border-radius: 10px;
    overflow: hidden;
}
.t2-cate-hd {
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--t2-text);
    border-bottom: 1px solid var(--t2-line);
    display: flex;
    align-items: center;
    gap: 8px;
}
.t2-cate-hd i { color: var(--gold); }
.t2-cate-item {
    display: block;
    padding: 10px 16px;
    color: #aeb8b1;
    font-size: 13px;
    border-bottom: 1px solid rgba(42, 52, 48, .5);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.t2-cate-item:hover { background: rgba(92, 158, 122, .1); color: var(--gold-light); text-decoration: none; }
.t2-cate-item i { font-size: 12px; color: #55625a; }
.t2-cate-item:last-child { border-bottom: none; }

/* 中轮播 */
.t2-slider {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
}
.t2-slide {
    position: relative;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #0d1210 0%, #18231d 55%, #213128 100%);
    display: flex;
    align-items: center;
    padding: 40px 48px;
    gap: 30px;
}
.t2-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .32;
}
.t2-slide-info { position: relative; z-index: 2; max-width: 55%; }
.t2-slide-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold-light);
    border: 1px solid rgba(92, 158, 122, .5);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.t2-slide-info h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 12px;
}
.t2-slide-info p {
    color: #9aa69f;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 24px;
}
.t2-slide-cta { display: flex; gap: 12px; }
.t2-slide-cta .t2-btn {
    padding: 10px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s;
}
.t2-btn-primary { background: var(--gold); color: #0d1210; }
.t2-btn-primary:hover { background: var(--gold-light); color: #0d1210; text-decoration: none; }
.t2-btn-ghost { border: 1px solid #3d4b43; color: #cdd6d0; }
.t2-btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); text-decoration: none; }
.t2-slide-img {
    position: relative;
    z-index: 2;
    width: 38%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}
.t2-slide-img img { width: 100%; display: block; }

/* 轮播圆点 */
.t2-dots {
    position: absolute;
    left: 0; right: 0; bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}
.t2-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: all .2s;
}
.t2-dots span.on { background: var(--gold); width: 22px; border-radius: 4px; }

/* 右广告 */
.t2-hero-right { display: flex; flex-direction: column; gap: 16px; }
.t2-hero-ad {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(135deg, #1c2822 0%, #131a16 100%);
    border: 1px solid var(--t2-line);
}
.t2-hero-ad.has-img { background-size: cover; background-position: center; }
.t2-hero-ad.has-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,18,16,.1), rgba(13,18,16,.7));
}
.t2-hero-ad > * { position: relative; z-index: 1; }
.t2-hero-ad b { color: #fff; font-size: 17px; }
.t2-hero-ad span { color: #9aa69f; font-size: 12px; margin-top: 4px; }

/* =====================================================================
 * 板块：服务保障条
 * ===================================================================== */
.t2-features {
    background: var(--t2-bg);
    padding: 26px 0 6px;
}
.t2-features .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.t2-feat {
    background: var(--t2-card);
    border: 1px solid var(--t2-line);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.t2-feat i {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(92, 158, 122, .14);
    color: var(--gold-light);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.t2-feat b { display: block; font-size: 14px; color: var(--t2-text); }
.t2-feat span { display: block; font-size: 12px; color: var(--t2-muted); margin-top: 3px; }

/* =====================================================================
 * 板块：分类目录（按场景逛）
 * ===================================================================== */
.t2-scene {
    padding: 26px 0 6px;
}
.t2-scene .container {
    background: var(--t2-card);
    border: 1px solid var(--t2-line);
    border-radius: 12px;
    padding: 22px 24px 26px;
}
.t2-scene-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 16px;
}
.t2-scene-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 10px;
    background: var(--t2-bg2);
    border: 1px solid var(--t2-line);
    transition: all .2s;
}
.t2-scene-card:hover { border-color: var(--gold); transform: translateY(-2px); text-decoration: none; }
.t2-scene-card .t2-scene-ico {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: rgba(92, 158, 122, .14);
    color: var(--gold-light);
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    flex: none;
}
.t2-scene-card b { display: block; color: var(--t2-text); font-size: 14px; }
.t2-scene-card span { display: block; color: var(--t2-muted); font-size: 12px; margin-top: 3px; }

/* 按场景逛：图片卡片模式 */
.t2-scene-cards {
    grid-template-columns: repeat(8, 1fr);
}
.t2-scene-photo {
    position: relative;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1.15;
    display: block;
}
.t2-scene-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.t2-scene-photo:hover img { transform: scale(1.06); }
.t2-scene-photo .t2-scene-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 6px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
}

/* =====================================================================
 * 板块通用：标题 + 商品网格
 * ===================================================================== */
.t2-sec { padding: 26px 0 6px; }
.t2-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.t2-hd-left { display: flex; align-items: center; gap: 10px; }
.t2-hd-left > i {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: rgba(92, 158, 122, .14);
    color: var(--gold-light);
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
}
.t2-hd h2 { font-size: 21px; font-weight: 700; color: #fff; margin: 0; }
.t2-hd-sub { font-size: 12px; color: var(--t2-muted); letter-spacing: 1px; }
.t2-hd-more { font-size: 13px; color: var(--t2-muted); }
.t2-hd-more:hover { color: var(--gold-light); text-decoration: none; }

.t2-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.t2-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 商品卡片（简洁版，无购物车按钮） ---------- */
.t2-card {
    display: block;
    background: var(--t2-card);
    border: 1px solid var(--t2-line);
    border-radius: 10px;
    overflow: hidden;
    transition: all .22s;
}
.t2-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,.35); text-decoration: none; }
.t2-card-img {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--t2-bg2);
}
.t2-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.t2-card:hover .t2-card-img img { transform: scale(1.05); }
.t2-tag {
    position: absolute;
    top: 8px; left: 8px;
    font-size: 11px;
    font-style: normal;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 2;
}
.t2-tag-hot { background: var(--t2-red); }
.t2-tag-new { background: var(--gold); color: #0d1210; }
.t2-tag-sale, .t2-tag-discount, .t2-tag-recommend { background: #d9822b; }
.t2-tag-flash, .t2-tag-group { background: #c2446b; }
.t2-card-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--t2-text);
    font-size: 13px;
    line-height: 1.5;
    margin: 12px 12px 8px;
    min-height: 39px;
}
.t2-card:hover .t2-card-name { color: var(--gold-light); }
.t2-card-bottom {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 0 12px 14px;
}
.t2-card-price { color: var(--gold-light); font-size: 12px; }
.t2-card-price b { font-size: 18px; font-weight: 700; }
.t2-card-bottom del { color: var(--t2-muted); font-size: 12px; }
.t2-card-arrow {
    margin-left: auto;
    color: #55625a;
    font-size: 15px;
    transition: all .2s;
}
.t2-card:hover .t2-card-arrow { color: var(--gold-light); transform: translateX(3px); }

/* =====================================================================
 * 板块：限时闪购（横排 + 倒计时）
 * ===================================================================== */
.t2-flash {
    background: linear-gradient(90deg, #1a110d, #231311);
    border: 1px solid #3a2620;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
}
.t2-flash .t2-hd { margin-bottom: 12px; }
.t2-flash .t2-hd h2 { color: #f5c9a8; }
.t2-flash .t2-hd-left > i { background: rgba(224, 96, 90, .16); color: #f08a80; }
.t2-countdown { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #cbb3a4; }
.t2-countdown .t2-cd-num {
    background: rgba(0, 0, 0, .4);
    color: #ffd9c2;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    font-variant-numeric: tabular-nums;
}
.t2-countdown i { font-style: normal; color: #8a7468; }
.t2-flash-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.t2-flash-scroll .t2-card { background: rgba(31, 38, 34, .7); }
.t2-flash-scroll .t2-card-name { min-height: 0; margin-bottom: 4px; }
.t2-flash-progress {
    display: block;
    height: 5px;
    border-radius: 3px;
    background: #33281f;
    margin: 0 12px 8px;
    overflow: hidden;
}
.t2-flash-progress span {
    display: block;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #e0605a, #f08a80);
}
.t2-flash-sold {
    display: block;
    font-size: 12px;
    color: #cbb3a4;
    padding: 0 12px 14px;
}

/* =====================================================================
 * 板块：优惠券
 * ===================================================================== */
.t2-coupons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.t2-coupon {
    background: linear-gradient(135deg, #1c2822, #131a16);
    border: 1px solid var(--t2-line);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.t2-coupon .t2-cp-amount b { font-size: 24px; color: var(--gold-light); font-weight: 700; }
.t2-coupon .t2-cp-amount span { font-size: 12px; color: var(--t2-muted); display: block; margin-top: 2px; }
.t2-coupon .t2-cp-name { font-size: 13px; color: var(--t2-text); margin-top: 6px; }
.t2-coupon .t2-cp-get {
    flex: none;
    background: var(--gold);
    color: #0d1210;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.t2-coupon .t2-cp-get:hover { background: var(--gold-light); }
.t2-coupon .t2-cp-get.used { background: #37423c; color: var(--t2-muted); cursor: default; }

/* =====================================================================
 * 板块：客服展示 / 多商品图片展示
 * ===================================================================== */
.t2-service {
    background: var(--t2-card);
    border: 1px solid var(--t2-line);
    border-radius: 10px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.t2-service b { font-size: 16px; color: #fff; }
.t2-service p { color: var(--t2-muted); font-size: 13px; margin: 6px 0 0; }
.t2-service .t2-srv-phone {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-light);
    font-style: normal;
}
.t2-service a.t2-srv-link {
    background: rgba(92, 158, 122, .14);
    color: var(--gold-light);
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 13px;
}
.t2-service a.t2-srv-link:hover { background: var(--gold); color: #0d1210; text-decoration: none; }

.t2-multi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.t2-multi a {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: block;
}
.t2-multi img { width: 100%; display: block; min-height: 120px; object-fit: cover; }
.t2-multi .t2-multi-mask {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .72));
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

/* =====================================================================
 * 响应式
 * ===================================================================== */
.t2-focus,
.t2-today,
.t2-editor { padding: 26px 0 6px; }

/* 本季焦点 */
.t2-focus-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 16px;
}
.t2-focus-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--t2-card);
    border: 1px solid var(--t2-line);
    display: block;
    min-height: 320px;
}
.t2-focus-img {
    position: absolute;
    inset: 0;
}
.t2-focus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.t2-focus-info {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
    color: #fff;
}
.t2-focus-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--gold);
    color: #0b120e;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
.t2-focus-info h4 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.t2-focus-info p { font-size: 13px; color: #b8c5be; margin-bottom: 12px; }
.t2-focus-more { font-size: 13px; font-weight: 500; }
.t2-focus-more i { margin-left: 4px; }
.t2-focus-empty { background: linear-gradient(135deg, #1c2822, #131a16); }
.t2-focus-empty .t2-focus-info { background: none; }

.t2-focus-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.t2-focus-side-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex: 1;
}
.t2-focus-side-card {
    border-radius: 12px;
    background: var(--t2-card);
    border: 1px solid var(--t2-line);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--t2-text);
    transition: all .2s;
}
.t2-focus-side-card:hover { border-color: var(--gold); transform: translateY(-2px); text-decoration: none; }
.t2-focus-side-tag {
    font-size: 11px;
    color: var(--gold-light);
    margin-bottom: 6px;
}
.t2-focus-side-card h5 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.t2-focus-side-card p { font-size: 12px; color: var(--t2-muted); margin: 0; }
.t2-focus-coupon {
    background: var(--gold);
    color: #0b120e;
    flex-direction: row;
    align-items: center;
}
.t2-focus-coupon .t2-focus-side-tag { color: rgba(11,18,14,.7); }
.t2-focus-coupon h5 { color: #0b120e; }
.t2-focus-coupon p { color: rgba(11,18,14,.75); }
.t2-focus-coupon i { font-size: 38px; opacity: .85; }

/* 今日好物 */
.t2-today-tabs {
    display: flex;
    gap: 8px;
}
.t2-today-tabs button {
    background: transparent;
    border: 1px solid var(--t2-line);
    color: var(--t2-muted);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
}
.t2-today-tabs button.active,
.t2-today-tabs button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0b120e;
}
.t2-today-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 16px;
}
.t2-today-card {
    background: var(--t2-card);
    border: 1px solid var(--t2-line);
    border-radius: 12px;
    overflow: hidden;
    display: block;
    transition: all .2s;
}
.t2-today-card:hover { border-color: var(--gold); transform: translateY(-3px); text-decoration: none; }
.t2-today-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.t2-today-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.t2-today-card:hover .t2-today-img img { transform: scale(1.05); }
.t2-today-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e64c4c;
    color: #fff;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 20px;
    font-weight: 600;
}
.t2-today-info { padding: 12px; }
.t2-today-cate {
    font-size: 11px;
    color: var(--gold-light);
    display: block;
    margin-bottom: 4px;
}
.t2-today-info h5 {
    color: var(--t2-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    height: 2.9em;
    overflow: hidden;
    margin-bottom: 10px;
}
.t2-today-price { display: flex; align-items: baseline; gap: 8px; }
.t2-today-price b { color: var(--gold-light); font-size: 15px; }
.t2-today-price del { color: var(--t2-muted); font-size: 12px; }

/* 编辑精选 */
.t2-editor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.t2-editor-card {
    background: var(--t2-card);
    border: 1px solid var(--t2-line);
    border-radius: 12px;
    overflow: hidden;
    display: block;
    transition: all .2s;
}
.t2-editor-card:hover { border-color: var(--gold); transform: translateY(-3px); text-decoration: none; }
.t2-editor-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.t2-editor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.t2-editor-card:hover .t2-editor-img img { transform: scale(1.05); }
.t2-editor-info { padding: 12px; }
.t2-editor-cate {
    font-size: 11px;
    color: var(--gold-light);
    display: block;
    margin-bottom: 4px;
}
.t2-editor-info h5 {
    color: var(--t2-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    height: 2.9em;
    overflow: hidden;
    margin-bottom: 10px;
}
.t2-editor-price { display: flex; align-items: baseline; gap: 8px; }
.t2-editor-price b { color: var(--gold-light); font-size: 15px; }
.t2-editor-price del { color: var(--t2-muted); font-size: 12px; }

@media (max-width: 1199.98px) {
    .t2-hero .container { grid-template-columns: 190px 1fr; }
    .t2-hero-right { display: none; }
    .t2-grid { grid-template-columns: repeat(4, 1fr); }
    .t2-flash-scroll { grid-template-columns: repeat(4, 1fr); }
    .t2-today-grid { grid-template-columns: repeat(4, 1fr); }
    .t2-editor-grid { grid-template-columns: repeat(4, 1fr); }
    .t2-scene-cards { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 991.98px) {
    .t2-hero .container { grid-template-columns: 1fr; }
    .t2-cate { display: none; }
    .t2-features .container { grid-template-columns: repeat(2, 1fr); }
    .t2-scene-grid { grid-template-columns: repeat(3, 1fr); }
    .t2-grid, .t2-flash-scroll { grid-template-columns: repeat(3, 1fr); }
    .t2-coupons { grid-template-columns: repeat(2, 1fr); }
    .t2-multi { grid-template-columns: repeat(2, 1fr); }
    .t2-focus-grid { grid-template-columns: 1fr; }
    .t2-today-grid { grid-template-columns: repeat(3, 1fr); }
    .t2-editor-grid { grid-template-columns: repeat(3, 1fr); }
    .t2-scene-cards { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 575.98px) {
    .t2-grid, .t2-flash-scroll { grid-template-columns: repeat(2, 1fr); }
    .t2-scene-grid { grid-template-columns: repeat(2, 1fr); }
    .t2-slide-info { max-width: 100%; }
    .t2-slide-img { display: none; }
    .t2-today-grid { grid-template-columns: repeat(2, 1fr); }
    .t2-editor-grid { grid-template-columns: repeat(2, 1fr); }
    .t2-scene-cards { grid-template-columns: repeat(2, 1fr); }
    .t2-focus-side-row { grid-template-columns: 1fr; }
}
