/* ========================================
   茗黄红茶褐素品牌官网 - 全局样式
   茶色茶香新中式温润风
   ======================================== */

/* === CSS 变量 === */
:root {
    --wood-light: #E8DFD0;
    --tea-amber: #A86F4D;
    --tea-dark-text: #4A3829;
    --bamboo-green: #3F5248;
    --cream-beige: #F5F0E6;
    --light-gold: #D9B88F;
    --tea-shadow: rgba(168, 111, 77, 0.12);
    --tea-shadow-md: rgba(168, 111, 77, 0.18);
    --white: #fff;
    --text-muted: #6B5A4C;
    --text-light: #947E6B;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

/* === Reset === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", SimSun, sans-serif;
    color: var(--tea-dark-text);
    line-height: 1.8;
    background: var(--cream-beige);
}

/* === 容器 === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === 顶部导航 === */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--tea-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--wood-light);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--bamboo-green);
    letter-spacing: 2px;
    font-family: SimSun, "Noto Serif SC", serif;
}

.logo-text span {
    color: var(--tea-amber);
}

.nav-menu {
    display: flex;
    gap: 36px;
}

.nav-menu a {
    font-size: 15px;
    color: var(--tea-dark-text);
    transition: color var(--transition);
    position: relative;
    padding: 28px 0;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--tea-amber);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--tea-amber);
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--bamboo-green);
}

/* === 内页头部通栏 === */
.page-header {
    background: linear-gradient(135deg, rgba(74,56,41,0.35) 0%, rgba(168,111,77,0.35) 100%), url("../images/page-banner.png") center/cover no-repeat;
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M20,10 C40,5 60,15 80,12 L75,40 C60,48 35,45 22,38 Z'/%3E%3C/svg%3E");
    background-size: 200px;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 12px;
    font-family: SimSun, "Noto Serif SC", serif;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* === 面包屑 === */
.breadcrumb {
    background: var(--cream-beige);
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--wood-light);
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--tea-amber);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--bamboo-green);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--text-light);
}

/* === 首页Banner === */
.hero {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--white);
    color: var(--tea-amber);
    border: 1px solid var(--light-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--tea-shadow-md);
    background: var(--light-gold);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--tea-amber);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--bamboo-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--tea-shadow-md);
}

/* === 通用区块 === */
.section {
    padding: 90px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-sm {
    padding: 70px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 34px;
    color: var(--bamboo-green);
    margin-bottom: 12px;
    font-family: SimSun, "Noto Serif SC", serif;
    letter-spacing: 2px;
}

.section-title h3 {
    font-size: 24px;
    color: var(--tea-dark-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.section-title .en {
    font-size: 15px;
    color: var(--text-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title .line {
    width: 60px;
    height: 3px;
    background: var(--tea-amber);
    margin: 0 auto;
    border-radius: 2px;
}

.section-bg {
    background: var(--wood-light);
}

/* === 特色卡片 === */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: 0 4px 20px var(--tea-shadow);
    transition: all var(--transition);
    text-align: center;
    border: 1px solid var(--wood-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--tea-shadow-md);
    border-color: var(--light-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--cream-beige), var(--wood-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--tea-amber);
    transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 21px;
    color: var(--bamboo-green);
    margin-bottom: 14px;
    font-family: SimSun, "Noto Serif SC", serif;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
}

/* === 左右图文布局 === */
.split-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-wrap.reverse {
    flex-direction: row-reverse;
}

.split-img {
    flex: 1;
    min-width: 0;
}

.split-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 30px var(--tea-shadow);
}

.split-img-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--cream-beige), var(--wood-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tea-amber);
    font-size: 18px;
    border: 2px dashed var(--light-gold);
}

.split-text {
    flex: 1;
    min-width: 0;
}

.split-text h2 {
    font-size: 30px;
    color: var(--bamboo-green);
    margin-bottom: 20px;
    font-family: SimSun, "Noto Serif SC", serif;
}

.split-text .desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 2;
}

.point-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--tea-dark-text);
    line-height: 1.8;
}

.point-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tea-amber);
}

.point-list.tick li::before {
    content: '✓';
    width: auto;
    height: auto;
    background: none;
    top: 10px;
    color: var(--tea-amber);
    font-weight: bold;
    font-size: 14px;
}

/* === 产品标签 === */
.tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--cream-beige);
    color: var(--tea-amber);
    border-radius: 20px;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--wood-light);
}

/* === 产品参数网格 === */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.detail-item {
    background: var(--white);
    padding: 35px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 2px 12px var(--tea-shadow);
    transition: transform var(--transition);
    border: 1px solid var(--wood-light);
}

.detail-item:hover {
    transform: translateY(-3px);
}

.detail-item .num {
    font-size: 32px;
    font-weight: bold;
    color: var(--tea-amber);
    margin-bottom: 8px;
    font-family: SimSun, "Noto Serif SC", serif;
}

.detail-item .label {
    font-size: 14px;
    color: var(--text-muted);
}

/* === 科研卡片 === */
.science-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.science-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: 0 4px 15px var(--tea-shadow);
    border-left: 4px solid var(--tea-amber);
    transition: transform var(--transition);
}

.science-card:hover {
    transform: translateY(-3px);
}

.science-card h3 {
    font-size: 20px;
    color: var(--bamboo-green);
    margin-bottom: 10px;
    font-family: SimSun, "Noto Serif SC", serif;
}

.science-card .source {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--wood-light);
}

.science-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
}

/* === 流程步骤 === */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--light-gold);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tea-amber), var(--bamboo-green));
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: SimSun, "Noto Serif SC", serif;
    box-shadow: 0 4px 15px var(--tea-shadow-md);
}

.process-step h4 {
    font-size: 16px;
    color: var(--bamboo-green);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* === FAQ === */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
    justify-content: center;
}

.faq-cat {
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid var(--wood-light);
    background: var(--white);
    color: var(--tea-dark-text);
    transition: all var(--transition);
}

.faq-cat:hover {
    border-color: var(--tea-amber);
    color: var(--tea-amber);
}

.faq-cat.active {
    background: var(--tea-amber);
    color: var(--white);
    border-color: var(--tea-amber);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    box-shadow: 0 2px 10px var(--tea-shadow);
    transition: all var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 16px var(--tea-shadow-md);
}

.faq-question {
    padding: 20px 25px;
    font-size: 16px;
    font-weight: bold;
    color: var(--bamboo-green);
    background: var(--cream-beige);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    user-select: none;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--wood-light);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--tea-amber);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 2;
}

/* === 关于我们 === */
.about-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 30px;
    color: var(--bamboo-green);
    margin-bottom: 25px;
    font-family: SimSun, "Noto Serif SC", serif;
}

.about-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 2.1;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    min-height: 420px;
    background: linear-gradient(135deg, var(--cream-beige), var(--wood-light));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--tea-amber);
    border: 2px dashed var(--light-gold);
}

/* === 联系我们 === */
.contact-section {
    background: var(--wood-light);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--bamboo-green);
    margin-bottom: 25px;
    font-family: SimSun, "Noto Serif SC", serif;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--wood-light);
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--tea-amber), #C8A07C);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item .text h4 {
    font-size: 15px;
    color: var(--tea-dark-text);
    margin-bottom: 5px;
}

.contact-item .text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px var(--tea-shadow);
}

.contact-form h3 {
    font-size: 22px;
    color: var(--bamboo-green);
    margin-bottom: 20px;
    font-family: SimSun, "Noto Serif SC", serif;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--wood-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--cream-beige);
    color: var(--tea-dark-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--tea-amber);
    box-shadow: 0 0 0 3px rgba(168, 111, 77, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--tea-amber), #C8A07C);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--bamboo-green), var(--tea-amber));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--tea-shadow-md);
}

.form-error {
    color: #C0392B;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #C0392B;
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px;
    color: var(--bamboo-green);
}

.form-success .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* === 对比表格 === */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--tea-shadow);
}

.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
}

.compare-table thead th {
    background: var(--bamboo-green);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.compare-table thead th:first-child {
    background: var(--tea-dark-text);
}

.compare-table tbody tr {
    border-bottom: 1px solid var(--wood-light);
}

.compare-table tbody tr:last-child {
    border-bottom: none;
}

.compare-table tbody tr:hover {
    background: var(--cream-beige);
}

.compare-table .highlight-col {
    background: rgba(168, 111, 77, 0.05);
    font-weight: 600;
}

/* === 页脚 === */
.footer {
    background: var(--bamboo-green);
    color: #D1C6BB;
    padding: 60px 20px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(232, 223, 208, 0.15);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    font-family: SimSun, "Noto Serif SC", serif;
}

.footer-col p {
    font-size: 14px;
    line-height: 2;
}

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

.footer-col ul li a {
    color: #D1C6BB;
    font-size: 14px;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--light-gold);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    padding-top: 20px;
    color: rgba(209, 198, 187, 0.7);
}

.footer-logo {
    font-size: 24px;
    color: var(--white);
    font-weight: bold;
    margin-bottom: 15px;
    font-family: SimSun, "Noto Serif SC", serif;
    letter-spacing: 2px;
}

.footer-logo span {
    color: var(--light-gold);
}

/* === 404页面 === */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content h1 {
    font-size: 100px;
    color: var(--tea-amber);
    font-family: SimSun, "Noto Serif SC", serif;
    line-height: 1;
    margin-bottom: 10px;
}

.error-content h2 {
    font-size: 28px;
    color: var(--bamboo-green);
    margin-bottom: 15px;
}

.error-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 16px;
}

/* === 图片展示区 === */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: 0 4px 15px var(--tea-shadow);
    text-align: center;
    border: 1px solid var(--wood-light);
}

.gallery-img {
    height: 220px;
    background: linear-gradient(135deg, var(--cream-beige), var(--wood-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tea-amber);
    font-size: 16px;
    margin-bottom: 15px;
    border: 2px dashed var(--light-gold);
}

.gallery-item h4 {
    color: var(--bamboo-green);
    font-size: 16px;
    margin-bottom: 5px;
}

.gallery-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* === 响应式 === */
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .process-steps {
        flex-wrap: wrap;
        gap: 30px;
    }
    .process-steps::before {
        display: none;
    }
    .process-step {
        flex: 0 0 calc(50% - 15px);
    }
    .compare-table {
        font-size: 13px;
    }
    .compare-table th,
    .compare-table td {
        padding: 12px 14px;
    }
}

@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--cream-beige);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left var(--transition);
        z-index: 99;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu a {
        padding: 10px 0;
        font-size: 18px;
    }
    .nav-menu a.active::after {
        bottom: -5px;
    }


    .features {
        grid-template-columns: 1fr;
    }
    .split-wrap,
    .about-wrap {
        flex-direction: column;
    }
    .split-wrap.reverse {
        flex-direction: column;
    }
    .science-grid {
        grid-template-columns: 1fr;
    }
    .contact-wrap {
        grid-template-columns: 1fr;
    }
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 60px 20px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .page-header h1 {
        font-size: 28px;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    .process-step {
        flex: 0 0 auto;
        max-width: 280px;
    }
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .compare-table {
        display: block;
        overflow-x: auto;
    }
}
