/* ==================== 基础样式 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1a1a1a;
    --color-accent: #8B4513;
    --color-gold: #C4A265;
    --color-text: #333;
    --color-text-light: #888;
    --color-bg: #fff;
    --color-bg-warm: #FAF8F5;
    --color-bg-dark: #1a1a1a;
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
    color: var(--color-text);
    overflow-x: hidden;
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ==================== 顶部导航 ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 40px;
}

.logo {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.logo a {
    color: #000;
    position: relative;
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--transition-smooth);
}

.logo a:hover::after {
    transform: scaleX(1);
}

.nav {
    display: flex;
    align-items: center;
}

.nav a {
    padding: 0 24px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.3s var(--transition-smooth);
}

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
}

.nav a.active,
.nav a:hover {
    color: #000;
}

.nav .separator {
    color: #ddd;
    font-size: 10px;
}

/* ==================== 双屏轮播图 ==================== */
.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 72px;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.banner-left,
.banner-right {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.banner-left::after,
.banner-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.banner-left img,
.banner-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s var(--transition-smooth), transform 8s ease;
}

.banner-container:hover .banner-left img,
.banner-container:hover .banner-right img {
    transform: scale(1.03);
}

.banner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    z-index: 10;
    opacity: 0;
    animation: fadeInScale 1.2s var(--transition-smooth) 0.5s forwards;
}

.banner-logo img {
    width: 100%;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2));
}

.banner-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1s var(--transition-smooth) 1s forwards;
}

.banner-text h2 {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 10px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
}

.banner-text span {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 4px;
}

/* 中间分割线装饰 */
.banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.15);
    z-index: 5;
}

/* ==================== 通用标题区 ==================== */
.brand-title,
.products-title,
.video-title,
.store-title,
.news-title,
.featured-title {
    text-align: center;
    padding: 100px 0 60px;
    position: relative;
}

.brand-h1,
.products-h1,
.video-h1,
.store-h1,
.news-h1,
.featured-h1 {
    font-size: 42px;
    font-weight: 200;
    letter-spacing: 12px;
    margin-bottom: 24px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.title-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 24px;
    position: relative;
}

.title-line::before,
.title-line::after {
    content: '';
    position: absolute;
    top: 0;
    width: 6px;
    height: 1px;
    background: var(--color-gold);
}

.title-line::before { left: -12px; }
.title-line::after { right: -12px; }

.brand-subtitle,
.brand-title p,
.products-title p,
.video-title p,
.store-title p,
.news-title p,
.featured-title p {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--color-text-light);
    margin-bottom: 36px;
}

.view-btn {
    display: inline-block;
    padding: 12px 36px;
    border: 1px solid var(--color-primary);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transition: left 0.4s var(--transition-smooth);
    z-index: -1;
}

.view-btn:hover {
    color: #fff;
}

.view-btn:hover::before {
    left: 0;
}

/* ==================== 产品系列区 ==================== */
.products-section {
    background: #fff;
    padding-bottom: 100px;
}

.products-slider {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 40px;
}

.products-wrapper {
    position: relative;
    overflow: hidden;
}

.products-container {
    position: relative;
    white-space: nowrap;
    transition: left 0.8s var(--transition-smooth);
}

.product-slide {
    display: inline-block;
    vertical-align: top;
    width: 33.333%;
    padding: 0 8px;
    text-decoration: none;
    color: inherit;
}

.product-slide img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.6s var(--transition-smooth);
}

.product-slide:hover img {
    transform: scale(1.02);
}

.products-nav {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
}

.products-btn {
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.products-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.products-btn:hover img {
    filter: invert(1);
}

.products-btn img {
    width: 16px;
    height: 16px;
}

/* ==================== 视频区 ==================== */
.video-section {
    padding: 100px 0;
    background: var(--color-bg-warm);
}

.video-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.video-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
}

.video-thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.8s var(--transition-smooth);
}

.video-thumb:hover img {
    transform: scale(1.04);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--color-primary);
    margin-left: 4px;
}

.video-thumb:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.play-btn img {
    width: 40px;
    height: 40px;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
}

.video-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
}

#mainVideo {
    width: 100%;
    height: auto;
}

.video-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 3001;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
}

.video-close:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.video-close img {
    width: 16px;
    height: 16px;
    filter: invert(1);
}

/* ==================== 门店展示 ==================== */
.store-section {
    padding: 100px 0;
    background: #fff;
}

.store-container {
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 40px;
}

.store-img {
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.store-img img {
    width: 100%;
    height: auto;
    transition: transform 0.8s var(--transition-smooth);
}

.store-img:hover img {
    transform: scale(1.03);
}

/* ==================== 信息区 ==================== */
.info-section {
    padding: 100px 0;
    background: var(--color-bg-warm);
}

.info-row {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 40px;
}

.info-col {
    flex: 1;
    min-width: 300px;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
}

.info-col.info-left .info-content { margin-top: 40px; }
.info-col.info-middle .info-img { margin-top: 40px; }
.info-col.info-right .info-content { margin-top: 40px; }

.info-content {
    padding: 40px 0;
}

.info-content h5 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 24px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.info-content p {
    font-size: 14px;
    line-height: 2;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.view-link {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 4px;
    transition: all 0.3s var(--transition-smooth);
    display: inline-block;
}

.view-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.info-img {
    overflow: hidden;
    border-radius: 4px;
}

.info-img img {
    width: 100%;
    height: auto;
    transition: transform 0.8s var(--transition-smooth);
}

.info-img:hover img {
    transform: scale(1.04);
}

/* ==================== 新闻资讯区 ==================== */
.news-section {
    padding: 100px 0;
    text-align: center;
    background: #fff;
}

.news-h1 {
    font-size: 42px;
    letter-spacing: 12px;
    color: var(--color-primary);
    font-weight: 200;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 40px;
}

.news-card {
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.4s var(--transition-smooth);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.news-card-img {
    height: 220px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.news-card:hover .news-card-img img {
    transform: scale(1.06);
}

.news-card-body {
    padding: 24px;
    text-align: left;
}

.news-card-body h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.news-card-body p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}

.news-date {
    font-size: 11px;
    color: #bbb;
    letter-spacing: 1px;
}

/* ==================== 精选推荐区 ==================== */
.featured-section {
    padding: 100px 0;
    text-align: center;
    background: var(--color-bg-warm);
}

.featured-h1 {
    font-size: 42px;
    letter-spacing: 12px;
    color: var(--color-primary);
    font-weight: 200;
}

.featured-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 40px;
}

.featured-card {
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.4s var(--transition-smooth);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.featured-card-img {
    height: 300px;
    overflow: hidden;
}

.featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.featured-card:hover .featured-card-img img {
    transform: scale(1.05);
}

.featured-card-body {
    padding: 18px;
    text-align: left;
}

.featured-card-body h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
}

.featured-category {
    font-size: 11px;
    color: #aaa;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-price {
    font-size: 16px;
    color: var(--color-accent);
    font-weight: 400;
    letter-spacing: 1px;
}

/* ==================== 底部标题 ==================== */
.footer-title {
    background: var(--color-bg-dark);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.footer-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-title-inner {
    text-align: center;
}

.footer-title img {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1) opacity(0.8);
}

.footer-title p {
    font-size: 14px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.contact-btn {
    display: inline-block;
    padding: 14px 48px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.4s var(--transition-smooth);
    z-index: -1;
}

.contact-btn:hover {
    color: #000;
    border-color: #fff;
}

.contact-btn:hover::before {
    left: 0;
}

/* ==================== 页脚 ==================== */
.footer {
    background: #111;
    padding: 60px 0 30px;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 40px;
}

.footer-col {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s var(--transition-smooth);
    letter-spacing: 0.5px;
}

.footer-col ul li a:hover {
    color: rgba(255,255,255,0.9);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
}

/* ==================== 滚动动画 ==================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== 关键帧动画 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 0.95;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 0.95;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
    .banner-text h2 {
        font-size: 22px;
        letter-spacing: 6px;
    }

    .brand-h1,
    .products-h1,
    .video-h1,
    .store-h1,
    .news-h1,
    .featured-h1 {
        font-size: 32px;
        letter-spacing: 8px;
    }

    .featured-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-inner {
        padding: 0 20px;
    }

    .banner-section {
        margin-top: 60px;
    }

    .banner-text h2 {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .brand-h1,
    .products-h1,
    .video-h1,
    .store-h1,
    .news-h1,
    .featured-h1 {
        font-size: 26px;
        letter-spacing: 6px;
    }

    .brand-title,
    .products-title,
    .video-title,
    .store-title,
    .news-title,
    .featured-title {
        padding: 60px 0 40px;
    }

    .product-slide {
        width: 100%;
    }

    .info-col {
        min-width: 100%;
    }

    .news-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .featured-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }

    .footer-col {
        min-width: 50%;
    }
}

/* ==================== 悬停按钮效果 ==================== */
.view-btn.hover,
.view-link.hover {
    color: #fff;
}

.view-btn.hover::before {
    left: 0;
}

/* ==================== 移动端汉堡菜单 ==================== */
.menu-trigger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 1001;
}

.menu-trigger span {
    display: block;
    width: 22px;
    height: 1px;
    background: #000;
    margin: 4px 0;
    transition: all 0.3s var(--transition-smooth);
}

.menu-trigger:hover span {
    background: var(--color-accent);
}

/* 全屏导航 */
.full-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.full-nav-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 30px;
}

.full-nav-inner a {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #333;
    text-transform: uppercase;
    transition: color 0.3s;
}

.full-nav-inner a:hover {
    color: var(--color-accent);
}

.full-nav-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.full-nav-close:hover {
    color: var(--color-accent);
}

/* ==================== 轮播指示器 ==================== */
.banner-indicators {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.banner-dot.active {
    background: #fff;
    border-color: #fff;
}

/* ==================== 产品分页 ==================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination button:hover,
.pagination button.active {
    background: #8B4513;
    color: #fff;
    border-color: #8B4513;
}

.pagination button:disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    border-color: #eee;
}

/* ==================== 响应式补充 ==================== */
@media (max-width: 768px) {
    .menu-trigger {
        display: flex;
    }

    .banner-indicators {
        bottom: 3%;
    }

    .banner-dot {
        width: 8px;
        height: 8px;
    }

    .featured-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}
