@charset "utf-8";

/* =====================================================
   1. BASE / RESET
===================================================== */
:root{
    /* layout */
--container-width:1100px;   

/* colors */
--main-color:#2093d1;
--title-color:#6EC1E4;
--text-color:#666;
--subtext-color: #555;
--border-color:#ddd;
--light-bg:#f4f4f4;
--dark-bg:#364151;
--hover-red:#c00;
--hover-blue:#2093d1;
--link-color: #0073e6; 
--link-hover: #005bb5;

/* typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.9rem;
  --font-size-lg: 1.3rem;

  /* spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-base: 16px;
  --space-md: 20px;
  --space-lg: 30px;
  --space-xl: 40px;

  /* radius */
  --radius: 6px;

  /* CTA buttons */
  --btn-padding-sm: 6px 12px;
  --btn-padding-base: 10px 16px;

  /* FAQ */
  --faq-question-bg: #f0f0f0;
  --faq-question-hover: #e0e0e0;
  --faq-answer-bg: #fafafa;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color:var(--text-color);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  letter-spacing: 0.1px;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color:var(--text-color);
}

a:hover {
  color:var(--hover-red);
}


/* =====================================================
   2. CONTAINER & LAYOUT: Three columns
===================================================== */
.l-container {
  max-width:var(--container-width);
  margin:0 auto;
  padding:0 15px;
  width:100%;}

.l-layout {
  display:flex; 
  gap:20px; 
  flex-wrap:nowrap;}

.c-content {
  flex:1; 
  min-width:0;}

.c-sidebar--left {
  flex:0 0 180px;}

.c-sidebar--right {
  flex:0 0 180px;}


/* ===========================
   3. Header & Banner
=========================== */
.c-header__banner-img {width:100%; height:auto;
  display: block;}

.c-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align:center;
  background:linear-gradient(135deg, #2093d1, #67c0e8);
  color:#fff;
  padding: 0px 0px;    
}

.c-banner__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-banner__title{
   color:var(--main-color);
 font-size: 32px;
margin-bottom: 10px;}

.c-banner__subtitle {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 750px;
}

/* ===========================
   4. Navigation
=========================== */
.c-nav{
  font-size:14px;
  font-weight:bold;
  margin-bottom:20px;
  background:#d3d3d3;
  border-bottom:1px solid #ddd;
  border-radius: 0 3px 3px 3px;
}

.c-nav__wrapper {
  display:flex; 
  justify-content:center; 
  align-items:center; 
  height: 42px;
  padding:10px 0;
max-width:var(--container-width);
position: relative;}

.c-nav__list {
  display:flex; 
  gap:20px;
 list-style: none;
  margin: 0;
  padding: 0;}

.c-nav__item {
 
}

.c-nav__link {
  padding:10px 8px; 
  display:block;
  text-decoration: none;}

.c-nav__link:hover {
  background:var(--main-color); 
  color:#fff;}

.c-nav__title {
  width: 181px;
  background:#888;
  border-radius: 3px;
  font-size: 17px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  margin: 0;
  color: #fff;
  padding: 0 8px;
}


/* Nav toggle for mobile */
.c-nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--main-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: fixed;
  top: 20px;               
  right: 20px;
  z-index: 100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
font-size: 26px;
color: #666;  
transform: translateY(30%);  
}

.c-nav__toggle-bar {
  display: block;      
  width: 22px;         
  height: 2px;         
  background: #fff;    
  margin: 3px 0;       
}

/* ===========================
   5. Breadcrumb
=========================== */
.c-breadcrumb {
  font-size: 13px;
  margin-bottom: 15px;}

.c-breadcrumb__list {
  display:flex; 
  flex-wrap: wrap;
  gap:5px; 
  padding: 3px;
  font-size:13px;}

.c-breadcrumb__list li + li::before {
  content:" > "; 
  padding:0 5px;}

.c-breadcrumb a {
  color:var(--main-color);}

.c-breadcrumb a:hover {
  text-decoration: underline;}


/* ===========================
   6. SIDEBAR: Left Nav
=========================== */
.c-sidebar__list li {margin-bottom:6px;}
.c-sidebar__link:hover {color:#ff0000;}
.c-sidebar__list--grid {display:grid; grid-template-columns:1fr; gap:15px;}
.c-img {width:100%; height:auto;}

.left-nav {
  width: 100%;
  background-color: #ffffff;
}

.left-nav nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.left-nav nav li {
  height: 26px;
  width: 181px;
  background:#f4f4f4;
  border-bottom:1px solid #ddd;
  border-radius: 0 6px 6px 6px;
}

.left-nav nav li a {
  display: block;
  height: 100%;
  line-height: 26px;
  padding-left: 15px;
}

.left-nav nav li:hover a {
  color:#ff0000;
}

.sidebar-toggle {
  display: none;
  background: #f4f4f4;
  border: none;
  font-size: 16px;
  padding: 5px 10px;
  width: 181px;
  text-align: left;
  cursor: pointer;
}

/* ===========================================================
   7. Content
=========================================================== */
.c-content__title {
  font-size:26px; 
  font-weight:bold; 
  margin:20px 0 10px;}

.c-content__subtitle {
  font-size:22px; 
  font-weight:bold; 
  margin:15px 0;
 border-left: 4px solid var(--main-color);
  padding-left: 10px;
margin-top: 40px;}

.c-content__text {
  margin-bottom:15px; 
  list-style: none;
  line-height:1.5;
  max-width: 750px;
}

.c-content__text li {
  position: relative;
  padding-left:18px;
  margin-bottom: 3px;
}

.c-content__text li::before {
  content: "•";
  position: absolute;
  left: 0px;
  color: #666;
  font-weight: bold;
}

.c-list-box {
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 6px;
}

/* =========================
   Content Links Styling
========================= */

/* 默认文章链接 */
.c-content__text a  {
  color: var(--link-color);              /* 蓝色 */
  text-decoration: underline;  /* 下划线 */
}

.c-content__text a:hover {
  color: var(--link-hover);
}

/* 按钮（自动覆盖） */
.c-content a.c-btn,
.c-content a.btn,
.c-content a.cta-btn {
  color: #fff;
  text-decoration: none;
}

/* tabs */
.c-content .tabs a {
  color: inherit;
  text-decoration: none;
}

/* 排除图片链接 */
.c-content a img {
  border: none;
}

/* =====================================================================
   8. COMPONENTS (Tabs / Variant / Button / Grid / Typography / figure)
===================================================================== */

/* ---------- Tabs ---------- */

.tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  overflow-x: auto;   
  scroll-behavior: smooth;
  white-space: nowrap;
  gap: 1px;
  border:1px solid #ddd;
  border-top:none;
  border-radius:0 6px 6px 6px;
}

.tabs a {
  flex: 0 0 auto;       
  min-width: 80px;     
  max-width: 150px;    
  text-align: center;
  padding: 12px 8px;
  border: none;
  background: #eee;
  cursor: pointer;
  text-decoration: none;
  color: #333;
}

.tabs a.active {
  background:var(--main-color);
  color: #fff;
}

/* ---------- Tab content ---------- */
.tab-content {
  display: none;
  padding: 10px;
  border: 0px solid #ccc;
  margin-top: 5px;
  border-radius: 0 6px 6px 6px;
}


.tab-content:target, 
.tab-content:first-of-type {
  display: block; 
}

.tab-content:first-of-type:not(:target) {
display:block;
}

/* Hide default scrollbar for modern browsers */
.tabs::-webkit-scrollbar {
  height: 6px;
  }
.tabs::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}


/* ---------- Variant ---------- */

.variant {
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.variant.active {
  display: block;
  opacity: 1;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}


/* ---------- Buttons ---------- */


/* ---------- Grid ---------- */
/* ---------- Paper Bag grid-3 ---------- */
/* ---------- Calendar grid-2 ---------- */

.grid{
display:grid;
gap:20px;
}

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

/* ---------- Typography ---------- */

.text-small {
  font-size: 12px;
}

.text-muted {
  color: #999;
}

.text-center {
  text-align: center;
}

/* ---------- figure ---------- */
figure{
margin:0;
}

figcaption{
font-size:12px;
color:#777;
margin-top:5px;
text-align:center;
}

/* ==================
   9. FAQ
===================== */
.c-faq {
  margin-top: 40px;
}

.c-faq__title {
  color: var(--title-color); 
}

.c-faq__item {
  border-bottom:1px solid var(--border-color);
  margin-bottom: 5px;
  border-radius: var(--radius);
  overflow: hidden;
}

.c-faq__question {
 display: block;
  font-size: 0.9em;
  color: #555;
  background: #f0f0f0;
  padding: 10px 15px;
  cursor: pointer;
  list-style: none;
}

.c-faq__question:hover {
  background: #e0e0e0;
}

.c-faq__question::-webkit-details-marker {
  display: none;
}

/* 自定义箭头 */
.c-faq__question::after {
  content: "+";
  float: right;
}

details[open] .c-faq__question::after {
  content: "-"; 
}

.c-faq__answer {
  padding: 10px 15px;
  font-size: 0.95em;
  line-height: 1.35;
  background: #fafafa;
  border-left: 3px solid var(--border-color);
}


/* ==================
   10. CTA
===================== */
.c-cta {background:var(--light-bg); padding:25px; border-radius:var(--radius); margin-top:40px; text-align:center;}
.c-cta__title {font-size:1.3rem; margin-bottom:10px;}
.c-cta__text {font-size:1rem; margin-bottom:20px;color: var(--text-color);}
.c-cta__actions {display:flex; gap:10px; justify-content:center; flex-wrap:wrap;}
.c-cta__btn {padding:10px 16px; border-radius:4px; color:#fff; text-decoration:none; font-size:14px;}
.c-cta__btn--primary {
  background: var(--main-color);
  color: #fff;
}
.c-cta__btn--primary:hover {
  background: #187bb0;
  color: #999;
}
.c-cta__btn--form {background:#777;}
.c-cta__btn--form:hover {background:#555;color: #999}
.c-cta__btn--whatsapp {background:#25D366;}
.c-cta__btn--whatsapp:hover {background:#1ebe5d;color: #999}
.c-cta__btn--secondary {
  border: 1px solid var(--border-color);
  color: #333;
}

.c-cta--sm {
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: var(--radius);
  text-align: center;
}

.c-cta__text--sm {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--text-color);
}

.c-cta__actions--sm {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.c-cta__btn--sm {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 3px;
}

/* 保留按钮颜色与 hover */
.c-cta__btn--primary:hover,
.c-cta__btn--whatsapp:hover {
  color: #fff;
}


/* ================== Product Contact Btns ================== */

.price-row 
.product-contact-btns{
display:flex;
gap:10px;
margin-top:3px;
}

.product-contact-btns {
  display: flex;            /* 激活 flex 布局 */
  flex-wrap: wrap;          /* 屏幕窄时自动换行 */
  gap: 8px;                 /* 按钮间距 */
  align-items: center;      /* 垂直居中 */
  margin-top: 5px;          /* 可选，调整和文字间距 */
}

.product-contact-btns
.btn{
  display:inline-block;
  padding:6px 10px;
  font-size:14px;
  text-align: center;
  border-radius:4px;
  color:#fff;
  text-decoration:none;
  flex-shrink: 0; 
  transition:0.2s ease;
}

.product-contact-btns .btn:hover {
  color: #999; /* 保持按钮文字为白色 */
}

/* Email */
.product-contact-btns
.btn-email{
  background:#0073e6;
}
.product-contact-btns
.btn-email:hover{
  background:#005bb5;
}

/* WhatsApp */
.product-contact-btns
.btn-whatsapp{
  background:#25D366;
}
.product-contact-btns
.btn-whatsapp:hover{
  background:#1ebe5d;
}

/* 容器 */
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}

/* 说明文字 */
.product-contact-btns
.contact-text{
  font-size: 13px;
  white-space: nowrap;       /* 保持桌面端文字不换行 */
  margin-right: 8px;         /* 文字与按钮间距 */
  flex-shrink: 0;            /* 不被压缩 */
}

/* ========== Product Comparison Table ============== */

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 10px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th, .comparison-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background: #eee;
  font-weight: 600;
  color: #333;
}

.comparison-table tbody tr {
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: #f8fbfd;
}

/* Table 内部链接 */
.comparison-table td a {
  color: #0073aa;
  font-weight: 600;
  transition: color 0.2s ease;
}

.comparison-table td a:hover {
  color: #005bb5;
}

/* 第一列加粗 */
.comparison-table td:first-child {
  font-weight: 600;
  color: #333;
}

/* WhatsApp CTA */
.comparison-table
.table-cta {
  background: #25D366;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.comparison-table
.table-cta:hover {
  background: #1ebc59;
  color: #fff;       /* 白字保持 */
  text-decoration: none; /* 移除下划线 */
  transform: translateY(-1px);
}
/* ===========================
   11. Recommendations / Right Sidebar
=========================== */
.related-products {
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

.related-products__title {
  color: var(--text-color);
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: bold;
}

.related-products__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
}

.related-products__item {}
.related-products__link {
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.related-products__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.related-products__img {
  width: 100%;
  border-radius: 4px;
}

.aside-recommend {
  width: 180px;
  flex-shrink: 0;
  background: #f4f4f4;
  max-width: 100%;
  text-align: center;
  padding: 5px 0;
}

.aside-title {
  font-family: inherit; 
  font-weight: 600;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.8em;
  border-radius: 6px;
  padding: 0.4em 0.6em;
  background-color: #f5f5f5;
}

/* grid layout */
.aside-recommend ul {
  overflow-x: hidden;
  display: grid;
  grid-template-columns:1fr;
  gap: 15px;
  justify-items: center;
}

/* item */

.aside-recommend ul li {
  display: block;
}


/* image */
.aside-recommend img{
  width:100%;
  max-width:150px;
  height:auto;
}

/* ================== Layout Spacing ================== */
.section{
  margin-top:40px;
}

/* ================= Contact ================= */
  .c-contact{display:flex;flex-direction:column;gap:30px;padding:30px 0;}
  .c-contact__info{font-size:14px;line-height:1.6;text-align:center;}
  .c-contact__info a{color:var(--main-color);}
  
  .c-contact__form{display:flex;flex-direction:column;gap:12px;max-width:600px;margin:0 auto;}
  .c-contact__form label{font-weight:bold;}
  .c-contact__form input,
  .c-contact__form textarea{padding:8px 12px;border:1px solid var(--border-color);border-radius:4px;font-size:14px;width:100%;}
  .c-btn--primary{background-color:var(--main-color);color:#fff;border:none;padding:10px 16px;border-radius:4px;cursor:pointer;font-size:14px;}
  .c-btn--primary:hover{background-color:#0d7ac1;}
  

/* ===========================
   12. Footer
=========================== */
.c-footer {
  background:var(--light-bg); 
  padding:35px 10px; 
  text-align:center; 
  font-size:14px;
  border-top: 1px solid var(--border-color);
  margin-top: 40px;}

.c-footer__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.c-footer__nav {
  margin-bottom: 10px;
}

.c-footer__item {
  white-space: nowrap;
}

.c-footer__link {
   margin: 0 10px;
  font-weight: bold;
  color: var(--text-color);
}

.c-footer__link:hover {
  color: var(--hover-red);
}

.c-footer__info {
  margin-bottom: 10px;
}

.c-footer__copy {
  font-size: 12px;
  opacity: 0.85;
}

.u-nowrap{white-space:nowrap;}

/* ===========================
   13. Responsive: Mobile / Tablet
=========================== */
@media (max-width: 1300px) {
  .container {
    max-width: 1100px;   
    padding: 0 10px;  
  }
}

/* Mobile */
@media (max-width: 992px) {

  .l-layout {flex-wrap:wrap;}
  .c-sidebar--left,.c-sidebar--right {flex:1 1 100%; order:2;}
  .related-products__list {
    grid-template-columns: repeat(4, 1fr); /* Tablet+Mobile 固定显示4个图 */
  }

  /* Navigation */
   .c-nav { 
    display: flex; 
    background: none;
    border-bottom: none;
    margin-bottom: 10px;}
  
  .c-nav__wrapper {
    position: absolute;           /* 绝对定位在页面上 */
    top: 70px;                    /* 调整菜单离 toggle 的高度 */
    right: 20px;                  /* 距右边距离 */
    z-index: 99;      
  }
  
  .c-nav__toggle {
    display:flex;
    position: fixed;    
    top: 20px;          
    right: 20px;
    z-index: 100;}  
  
  .c-nav__list.u-show {display:flex;}
  
 .c-nav__item {
    width: 100%;
    height: 35px; }

  .c-nav__link {
    padding: 10px 15px;
    font-size: 14px;
    text-align: left;
    width: 100%;
    display: block;
    text-decoration: none; }
  
  .c-nav__link:hover {
    background: var(--main-color);
    color: #fff;}
    
  .c-nav__list { 
    width: 250px; 
    border-radius: 6px;
    top: 70px;         
    right: 20px;
    display: none; 
    position: fixed;
    flex-direction: column; 
	background: #eeeeee;
    padding: 10px 0;
    margin: 0px;
    z-index: 99;
  gap: 10px;
  }
    
  
    /* Layout */
  .layout {
    display: flex;
    flex-wrap: wrap;       
    gap: 20px;
  }
  
  .content {
    flex: 1 1 0;
    min-width: 0;
  }
  
  
  
  /* Sidebar */
  .sidebar-left {
    flex: 0 0 180px;
  }
  
 .sidebar-right {
    flex: 1 1 100%;
    order: 2;             
    margin-top: 20px;
  }
  
  .sidebar-left nav ul {
    display: block;
  }
   
   .sidebar-left nav ul.show {
    display: flex;
  }
  
   .sidebar-toggle {
    display: none;
  }
     
  .sidebar-left.left-nav { 
    width: 100%;  
  }

    /* Product */
   .product-details-wrapper { 
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
  
  .product-inner {
    grid-column:1/-1; 

  }
  
   .product-specs li {
    display: grid;
    grid-template-columns: 90px 1fr;
  }
  
  .product-specs li strong, .product-description .label { 
    width: auto; 
  }
  
  .product-contact-btns {
    flex-wrap: wrap;          /* 自动换行 */
  }
  .product-contact-btns .contact-text {
    width: 100%;             /* 文字独占一行 */
    margin-bottom: 4px;      /* 与按钮保持间距 */
  }
  .product-contact-btns .btn {
    width: auto;             /* 按钮自适应内容 */
    flex: none;              /* 不拉伸 */
  }
  
  .tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
}

  .tabs button {
    flex: 0 0 auto;
  }
  
  .variant { display: none; }
  .variant.active { display: block; }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .aside-recommend {
    width: 100%;
  }
  
  .aside-recommend ul {
    display: grid;
  grid-template-columns:repeat(4,1fr);
  gap: 15px; 
  }
 }

.aside-recommend img { 
    max-width:150px; }

/* =========================
   Tablet n Mobile 768px
========================= */

@media (max-width: 768px) {
  
  .c-banner__title {
    font-size: 24px;
  }

  .c-banner__subtitle {
    font-size: 14px;
  }
  
  .c-contact__form{width:100%;}
  
   .layout, .product-details-wrapper, .tabs {
    max-width: 100%;
    overflow-x: hidden; 
  }
  
  .layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
   .sidebar-left {
    flex: 0 0 180px;
  }

  .sidebar-left nav ul { 
    display: block; 
  }
   .sidebar-toggle {
    display: none;
  }
  
  .content {
    flex: 1 1 0;
    min-width: 0;
  }
  
  .sidebar-right {
    flex: 1 1 100%;
    order: 3;             
    max-width: 100%;
    margin-top: 20px;
  }

   .product-inner {
    grid-column: 1 / -1;
  }
  
   .product-cover img,
  .product-inner img {
    max-height: 200px;
    width: 100%;
    height: auto;
}

  .aside-recommend {
    width: 100%;
  }
  
  .aside-recommend ul {
    display: grid;
  grid-template-columns:repeat(4,1fr);
  gap: 15px; 
  }
  
  .tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%;  
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

 .tabs button {
    flex: 0 0 auto;
  }
  
}



/* =========================
   Small Mobile 600px
========================= */
@media (max-width: 600px) {
	
	 .layout {
    flex-direction: column;
  }

   .sidebar-left,
  .sidebar-right,
  .content {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .sidebar-right {
    order: 3;
    margin-top: 20px;
  }
  
 .sidebar-left nav ul { 
    display: none; 
    flex-direction: column;
  }
  
  .sidebar-toggle {
    display: block;
  }
  
  .product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tabs button {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  
}
