/* ===== DBShop 风格首页 ===== */
.db-home {
    background: #f5f5f5;
    padding-bottom: 3rem;
}

/* Hero 区域 */
.db-hero {
    padding: 1.5rem 0;
    background: #fff;
}

/* 左侧分类菜单 */
.db-cat-menu {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    height: 100%;
    min-height: 460px;
}

.db-cat-menu-title {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #1E40AF, #3B6FD4);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.db-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.db-cat-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.db-cat-list li a:hover {
    background: #f8faf9;
    color: #1E40AF;
    padding-left: 1.5rem;
}

.db-cat-list li a i:first-child {
    color: #1E40AF;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.db-cat-list li a span { flex: 1; }

.db-cat-arrow {
    font-size: 0.75rem;
    color: #ccc;
    transition: transform 0.2s ease;
}

.db-cat-list li a:hover .db-cat-arrow {
    transform: translateX(3px);
    color: #1E40AF;
}

/* Hero 右侧 */
.db-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

/* 主 Banner */
.db-main-banner {
    position: relative;
    display: block;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    aspect-ratio: 21 / 9;
    text-decoration: none;
}

.db-main-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.6s ease;
}

.db-main-banner:hover img {
    transform: scale(1.03);
}

.db-banner-content {
    position: absolute;
    top: 50%;
    left: 2.5rem;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 45%;
}

.db-banner-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e74c3c;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.db-banner-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.db-banner-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.db-banner-btn {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    background: #fff;
    color: #333;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.db-main-banner:hover .db-banner-btn {
    background: #1E40AF;
    color: #fff;
}

/* 四宫格促销 */
.db-promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.db-promo-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
    border: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.db-promo-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--box-color, #1E40AF);
}

.db-promo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.db-promo-text {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.db-promo-text strong {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 700;
}

.db-promo-text span {
    font-size: 0.75rem;
    color: #999;
}

.db-promo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--box-color, #1E40AF);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.db-promo-box:hover .db-promo-icon { opacity: 0.25; }

/* 服务承诺条 */
.db-service-bar {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.db-service-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.db-service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #555;
}

.db-service-item i {
    color: #1E40AF;
    font-size: 1.1rem;
}

/* 通用区块 */
.db-section {
    padding: 2rem 0;
}

.db-section .container {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.db-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 0.75rem;
}

.db-section-head-center {
    justify-content: center;
    text-align: center;
}

.db-section-title-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.db-section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.1em;
}

.db-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.db-section-title i { color: #1E40AF; }

.db-section-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.db-section-more:hover {
    color: #1E40AF;
    gap: 0.5rem;
}

/* 倒计时 */
.db-countdown {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e74c3c;
}

.db-cd-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 0.2rem 0.4rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 0.35rem;
    font-size: 0.85rem;
}

/* 标签 */
.db-tag {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 2;
}

.db-tag-hot { background: #e74c3c; color: #fff; }
.db-tag-sale { background: #ff6b35; color: #fff; }
.db-tag-rec { background: #1E40AF; color: #fff; }
.db-tag-new { background: linear-gradient(135deg, #1E40AF, #3B6FD4); color: #fff; }

/* 每日主推 */
.db-featured {
    padding-top: 1.5rem;
}

.db-featured-big {
    display: block;
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
}

.db-featured-big:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.db-featured-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
}

.db-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.db-featured-big:hover .db-featured-img img {
    transform: scale(1.05);
}

.db-featured-info {
    padding: 1.25rem;
}

.db-featured-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.db-featured-info p {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1rem;
    line-height: 1.5;
    min-height: 2.4em;
}

.db-featured-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e74c3c;
}

.db-price-currency { font-size: 0.9rem; }

.db-price-original {
    font-size: 0.85rem;
    color: #bbb;
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-weight: 400;
}

/* 小主推卡片 */
.db-featured-small {
    display: block;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 0.75rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
}

.db-featured-small:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: rgba(30, 64, 175, 0.2);
}

.db-featured-small-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
}

.db-featured-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.db-featured-small:hover .db-featured-small-img img { transform: scale(1.05); }

.db-featured-small-info {
    padding: 0.75rem;
}

.db-featured-small-info h4 {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.35rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.db-featured-small-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e74c3c;
}

/* 限时优惠 */
.db-promo-section .container {
    background: linear-gradient(180deg, #fffbf5, #fff);
    border: 1px solid #fef0e0;
}

.db-flash-card {
    display: block;
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.db-flash-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(231, 76, 60, 0.12);
    border-color: rgba(231, 76, 60, 0.2);
}

.db-flash-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
}

.db-flash-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.db-flash-card:hover .db-flash-img img { transform: scale(1.05); }

.db-flash-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: #e74c3c;
    color: #fff;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
}

.db-flash-info {
    padding: 0.75rem;
}

.db-flash-info h4 {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.db-flash-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.db-flash-price span {
    font-size: 1.05rem;
    font-weight: 800;
    color: #e74c3c;
}

.db-flash-price del {
    font-size: 0.75rem;
    color: #bbb;
}

/* 分类专区 */
.db-cat-alt .container { background: #fafafa; }

.db-cat-banner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cat-color, #1E40AF) 0%, rgba(0,0,0,0.7) 100%);
    text-decoration: none;
    color: #fff;
    position: relative;
}

.db-cat-banner-text {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.db-cat-banner-text h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.db-cat-banner-text p {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.db-cat-banner-text span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 1rem;
    background: #fff;
    color: #333;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.db-cat-banner-img {
    flex: 1;
    position: relative;
    min-height: 150px;
}

.db-cat-banner-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* 商品卡片 */
.db-product-card {
    display: block;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 0.75rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.db-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    border-color: rgba(30, 64, 175, 0.2);
}

.db-product-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
}

.db-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.db-product-card:hover .db-product-img img { transform: scale(1.05); }

.db-product-info {
    padding: 0.75rem;
}

.db-product-info h4 {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.db-product-price {
    font-size: 1rem;
    font-weight: 800;
    color: #e74c3c;
}

.db-product-new .db-product-price { color: #1E40AF; }

/* 新品区域 */
.db-new-section .container {
    background: linear-gradient(180deg, #f5faf9, #fff);
    border: 1px solid #e8f0ee;
}

/* 用户评价 */
.db-review-section .container { background: #f8f8f8; }

.db-review-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

.db-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.db-review-stars {
    color: #f39c12;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.db-review-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 4.8em;
}

.db-review-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.db-review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E40AF, #3B6FD4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.db-review-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

.db-review-date {
    font-size: 0.7rem;
    color: #999;
}

/* 响应式 */
@media (max-width: 991.98px) {
    .db-promo-grid { grid-template-columns: repeat(2, 1fr); }
    .db-main-banner { aspect-ratio: 16 / 9; }
    .db-banner-content { left: 1.5rem; max-width: 60%; }
    .db-banner-content h2 { font-size: 1.35rem; }
    .db-section .container { padding: 1rem; }
    .db-cat-banner { min-height: 260px; }
}

@media (max-width: 767.98px) {
    .db-home { padding-bottom: 2rem; }
    .db-hero { padding: 1rem 0; }
    .db-main-banner { aspect-ratio: 16 / 10; }
    .db-banner-content { max-width: 70%; }
    .db-banner-content h2 { font-size: 1.1rem; }
    .db-banner-content p { font-size: 0.75rem; }
    .db-promo-grid { gap: 0.5rem; }
    .db-promo-box { padding: 0.75rem; }
    .db-promo-text strong { font-size: 0.8rem; }
    .db-service-list { justify-content: center; }
    .db-service-item { font-size: 0.75rem; }
    .db-section-title { font-size: 1.1rem; }
    .db-featured-price { font-size: 1.25rem; }
    .db-cat-banner { min-height: 200px; }
}

/* ===== 大气商城模板增强 ===== */
.db-home--grand {
    background: linear-gradient(180deg, #eef1f6 0%, #f5f5f5 120px, #f0f2f5 100%);
    margin-top: -1.5rem;
}

.shop-container-grand {
    max-width: 1320px;
}

.db-hero--grand {
    padding: 1.25rem 0 0.5rem;
    background: transparent;
}

.db-cat-menu--grand {
    min-height: 420px;
    border: 1px solid rgba(30, 64, 175, 0.08);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.db-cat-menu--grand .db-cat-menu-title {
    background: linear-gradient(135deg, #0f172a 0%, #1E40AF 60%, #3B6FD4 100%);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.db-cat-all a {
    color: #1E40AF !important;
    font-weight: 600;
}

/* Hero 轮播 */
.db-hero-center {
    height: 100%;
    min-height: 380px;
}

.db-main-carousel,
.db-main-banner--fallback {
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    position: relative;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.db-main-banner--fallback {
    display: block;
    text-decoration: none;
}

.db-carousel-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.db-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.2) 55%, transparent 100%);
    pointer-events: none;
}

.db-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.db-banner-bg--1 { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1E40AF 100%); }
.db-banner-bg--2 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.db-banner-bg--3 { background: linear-gradient(135deg, #2d1b4e 0%, #1E40AF 60%, #3B6FD4 100%); }

.db-banner-content--carousel {
    position: absolute;
    top: 50%;
    left: 2.5rem;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 50%;
}

.db-banner-content--carousel h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.25;
}

.db-banner-content--carousel p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.db-banner-content--carousel .db-banner-btn {
    display: inline-flex;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #C9A227, #e8c547);
    color: #1a1a1a;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.db-banner-content--carousel .db-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
    color: #1a1a1a;
}

.db-carousel-indicators {
    margin-bottom: 1rem;
    gap: 0.35rem;
}

.db-carousel-indicators button {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.db-carousel-indicators button.active {
    background: #C9A227;
    width: 36px;
}

.db-carousel-control {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.db-carousel-control:hover {
    background: rgba(255, 255, 255, 0.3);
}

.db-carousel-control i {
    color: #fff;
    font-size: 1.25rem;
}

.db-carousel-full-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* 右侧快捷卡片 */
.db-side-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.db-side-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 1.1rem;
    border-radius: 0.875rem;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 115px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.db-side-card:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.db-side-card--gold { background: linear-gradient(145deg, #92710a, #C9A227); }
.db-side-card--red { background: linear-gradient(145deg, #b91c1c, #ef4444); }
.db-side-card--purple { background: linear-gradient(145deg, #5b21b6, #8b5cf6); }

.db-side-card-label {
    font-size: 0.7rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.db-side-card strong {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.db-side-card-desc {
    font-size: 0.75rem;
    opacity: 0.9;
}

.db-side-card-icon {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    font-size: 2rem;
    opacity: 0.2;
}

/* 四宫格 */
.db-promo-grid--grand {
    margin-top: 1rem !important;
}

.db-promo-grid--grand .db-promo-box {
    background: #fff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    border: none;
}

/* 数据统计条 */
.db-stats-bar {
    padding: 0 0 1rem;
}

.db-stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1E40AF 100%);
    border-radius: 1rem;
    padding: 1.25rem 2rem;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.2);
}

.db-stat-item {
    text-align: center;
    color: #fff;
}

.db-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(180deg, #fff 0%, #C9A227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.db-stat-num i {
    -webkit-text-fill-color: #C9A227;
    font-size: 1.5rem;
}

.db-stat-label {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 0.25rem;
}

.db-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.db-service-bar--grand {
    background: transparent;
    border: none;
    padding: 0.5rem 0 1.5rem;
    margin-bottom: 0;
}

.db-service-bar--grand .db-service-list {
    background: #fff;
    border-radius: 0.75rem;
    padding: 0.875rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.db-announcement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(90deg, #fffbeb, #fff);
    border: 1px solid #fde68a;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: #92400e;
}

.db-announcement i {
    color: #d97706;
    font-size: 1.1rem;
}

.db-section-eyebrow--flash {
    color: #dc2626 !important;
}

.db-cd-label {
    font-size: 0.75rem;
    color: #666;
    margin-right: 0.5rem;
    font-weight: 500;
}

.db-cd-sep {
    color: #999;
    font-weight: 400;
}

.db-group-section .container {
    background: linear-gradient(180deg, #faf5ff, #fff);
    border: 1px solid #ede9fe;
}

.db-home--grand .db-section .container {
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.db-home--grand .db-section-title {
    font-size: 1.35rem;
    background: linear-gradient(90deg, #0f172a, #1E40AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.db-home--grand .db-section-title i {
    -webkit-text-fill-color: #1E40AF;
}

@media (max-width: 991.98px) {
    .db-hero-center,
    .db-main-carousel,
    .db-main-banner--fallback {
        min-height: 280px;
    }
    .db-carousel-img { height: 280px; }
    .db-banner-content--carousel h2 { font-size: 1.35rem; }
    .db-stats-inner { flex-wrap: wrap; gap: 1rem; padding: 1rem; }
    .db-stat-divider { display: none; }
    .db-stat-item { flex: 1 1 40%; }
}

@media (max-width: 767.98px) {
    .db-promo-grid--grand { grid-template-columns: repeat(2, 1fr); }
    .db-banner-content--carousel { left: 1.25rem; max-width: 75%; }
    .db-banner-content--carousel h2 { font-size: 1.15rem; }
}
