/* ==================== Lenis Smooth Scroll CSS ==================== */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* ==================== 自訂捲軸樣式 ==================== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #fefefe; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3fb1e7 0%, #2a9fd4 100%);
    border-radius: 5px;
    border: 2px solid #fefefe;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2a9fd4 0%, #1a8fc4 100%);
}
* { scroll-behavior: smooth; }

body.scrolled .navbar {
    box-shadow: 0 2px 15px rgba(63, 177, 231, 0.2);
    transition: box-shadow 0.3s ease;
}

/* ==================== 基礎設定 ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #3fb1e7;
    --primary-dark:  #2a9fd4;
    --white:  #fefefe;
    --black:  #000000;
    --gray:   #333333;
    --light-gray: #666666;
}

body {
    font-family: "Poppins", "Microsoft JhengHei", "微軟正黑體", sans-serif;
    background-color: var(--white);
    color: #222;
    line-height: 1.8em;
    letter-spacing: 0.05em;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================== 導航列 ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #3fb1e7;
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 20px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(63, 177, 231, 0.2);
}
.navbar.visible { transform: translateY(0); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
}
.logo img {
    height: 150px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #fefefe;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
    font-weight: bold;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}
.nav-link:hover { color: #333; }
.nav-link:hover::after { width: 100%; }

/* ==================== Hero Section ==================== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    will-change: transform, opacity;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.55) 70%,
        rgba(63, 177, 231, 0.4) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

/* 眉批小標 */
.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

/* ── CTA 按鈕：倒飲料效果 ──
   hover 時 #3fb1e7 從左到右充滿 */
.cta-button {
    position: relative;
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50px;
    overflow: hidden;
    transition: color 0.5s ease, border-color 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

/* 水從左倒入 */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 50px;
}

.cta-button:hover {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(63, 177, 231, 0.5);
}

.cta-button:hover::before {
    left: 0;
}

/* ── 底部波浪（影片 → 藍色 About 區塊） ── */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 4;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}


/* ── Hero 底部波浪 ── */


/* ==================== Hero 底部波浪 ==================== */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 4;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* ==================== Bento 底部波浪 ==================== */
.bento-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.bento-wave-bottom svg {
    display: block;
    width: 100%;
    height: 100px;
}
/* ==================== Section 通用樣式 ==================== */
section { padding: 120px 0; }

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}

.section-tag {
    color: #ffffff;
    text-shadow: 1px 1px 0 #222, 2px 2px 0 #222, 3px 3px 0 #111, 4px 4px 0 #111, 5px 5px 0 #000, 6px 6px 0 #000, 7px 7px 0 #000, 8px 8px 15px rgba(0,0,0,0.8);
    margin-bottom: 1%;
}

.section-title {
    font-size: 3rem;
    color: var(--white);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

/* ==================== 關於我們 ==================== */
.about-section { background-color: #0a0a0a; }

/* ==================== 常見問題 ==================== */
.faq-section { 
    background-color: #000000; 
    padding: 120px 0 200px;
    position: relative;
}

/* FAQ 底部波浪 */
.faq-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.faq-wave-bottom svg {
    display: block;
    width: 100%;
    height: 100px;
}

.faq-container { width: 100%; margin: 0 auto; }

.faq-item {
    background-color: #111111;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: #fff; }

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-question h3 { font-size: 1.2rem; color: var(--white); font-weight: 500; }
.faq-icon { font-size: 2rem; color: #fff; transition: transform 0.3s ease; font-weight: 300; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 30px 25px 30px; }
.faq-answer p { color: #cccccc; font-size: 1rem; line-height: 1.8em; }

/* ==================== 分店資訊 ==================== */
.locations-section { 
    background-color: #2a9fd4;
    padding: 120px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: linear-gradient(135deg, #111111, #0a0a0a);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.location-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #fff);
    animation: rotate 4s linear infinite;
}
.location-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(135deg, #111111, #0a0a0a);
    border-radius: 20px;
    z-index: 1;
}
.location-card > * { position: relative; z-index: 2; }
.location-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(77, 77, 77, 0.5); }
.location-card:hover::before { animation: rotate 2s linear infinite; }

@keyframes rotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.location-card h3 { font-size: 1.8rem; color: #fff; margin-bottom: 20px; }
.location-icon { font-size: 3.5rem; margin-bottom: 25px; color: #fff; }
.location-icon i { display: inline-block; }

.location-address, .location-phone, .location-hours {
    color: #cccccc; font-size: 1rem; margin-bottom: 15px;
    transition: color 0.3s ease;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.location-address i, .location-phone i, .location-hours i { color: #fff; font-size: 1.1rem; min-width: 20px; }
.location-card:hover .location-address,
.location-card:hover .location-phone,
.location-card:hover .location-hours { color: #ffffff; }

/* ==================== 響應式設計 ==================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .nav-container,
    .locations-section,
    .footer-bottom { padding: 0px 40px; }
    .nav-menu { gap: 20px; font-size: 0.9rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    .locations-grid { grid-template-columns: 1fr; gap: 30px; }
    .faq-section { padding: 40px 40px; }
    .footer-content { flex-direction: column; gap: 30px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; letter-spacing: 0.1em; }
    .hero-eyebrow { font-size: 0.7rem; }
    .nav-menu { flex-wrap: wrap; justify-content: center; gap: 15px; }
    section { padding: 80px 0; }
    .section-header { margin-bottom: 50px; }
    .locations-grid { gap: 25px; }
    .location-card { padding: 40px 20px; }
}

/* ==================== Footer ==================== */
.footer {
    background-color: #3fb2e8;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-logo {
    height: 180px; width: auto; object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(63, 177, 231, 0.5));
}
.footer-brand p { color: #999999; margin-top: 5px; }
.footer-social { display: flex; gap: 30px; }
.social-link { color: var(--white); text-decoration: none; font-size: 1rem; transition: color 0.3s ease; }
.social-link:hover { color: #333 }
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p { color: #666666; font-size: 0.9rem; }

/* ==================== 滾動動畫 ==================== */
[data-scroll] { /* 由 GSAP ScrollTrigger 控制 */ }

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* ==================== 自訂捲軸樣式 ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #333 0%, #555 100%);
    border-radius: 5px;
    border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #555 0%, #777 100%);
}

* {
    scroll-behavior: smooth;
}

body.scrolled .navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: box-shadow 0.3s ease;
}

/* ==================== 基礎設定 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3fb1e7;
    --white: #ffffff;
    --black: #000000;
    --gray: #333333;
    --light-gray: #666666;
}

html {
    /* scroll-behavior 由 Lenis 處理 */
}

body {
    font-family: "Poppins", "Microsoft JhengHei", "微軟正黑體", sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.8em;
    letter-spacing: 0.1em;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}




/* ==================== Navbar 社群圖示（電腦版） ==================== */
.nav-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
}

.nav-social-link {
    color: #fff;
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-social-link:hover {
    color: #333;
    transform: translateY(-2px);
}

/* 手機版隱藏 navbar 社群圖示和導覽連結 */
@media (max-width: 768px) {
    .nav-social {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Logo 置中 */
    .nav-container {
        justify-content: center;
    }
    
    .logo {
        margin: 0;
    }
}

/* ==================== Hero Section ==================== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    will-change: transform, opacity;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.2em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(60, 164, 199, 0.4);
}

.cta-button:hover {
    background-color: #2d8aa8;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(60, 164, 199, 0.6);
}


/* ── Hero 底部波浪 ── */


/* ==================== Hero 底部波浪 ==================== */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 4;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* ==================== Bento 底部波浪 ==================== */
.bento-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.bento-wave-bottom svg {
    display: block;
    width: 100%;
    height: 100px;
}
/* ==================== Section 通用樣式 ==================== */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: bold;
    /* 立體黑白效果 */
    text-shadow: 
        1px 1px 0 #000,
        2px 2px 0 #000,
        3px 3px 0 #000,
        4px 4px 0 #000,
        5px 5px 0 #000,
        6px 6px 10px rgba(0, 0, 0, 0.6);
}

.section-title {
    font-size: 3rem;
    color: var(--white);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
} */

/* ==================== 常見問題 ==================== */
.faq-section {
    background-color: #0a0a0a;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fefefe;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(60, 164, 199, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

.faq-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #818181;
    font-size: 1rem;
    line-height: 1.8em;
}

/* ==================== 分店資訊 ==================== */
.locations-section {
    background-color: var(--black);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.location-card {
    background: linear-gradient(135deg, #111111, #0a0a0a);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(60, 164, 199, 0.2);
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(60, 164, 199, 0.3);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.location-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-address,
.location-phone,
.location-hours {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 10px;
}

/* ==================== Footer ==================== */
.footer {
    background-color: #3fb2e8;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(60, 164, 199, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-brand p {
    color: #999999;
}

.footer-social {
    display: flex;
    gap: 30px;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    color: #fff;
    font-size: 0.9rem;
}

/* ==================== 滾動動畫 ==================== */
[data-scroll] {
    /* 動畫由 GSAP ScrollTrigger 控制 */
}

/* ==================== 響應式設計 ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-container{
        padding-bottom: 30%;
    }
    .nav-menu {
        gap: 20px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }
}


/* ==================== 手機版 Navbar：Logo 置中 ==================== */
@media (max-width: 768px) {
    .nav-container {
        justify-content: center; /* Logo 置中 */
    }
    
    .nav-menu,
    .nav-social {
        display: none; /* 隱藏導覽連結和社群圖示 */
    }
    
    .logo {
        margin: 0 auto;
    }
}


/* 波浪縫隙修正 */
.hero-wave { bottom: -2px !important; }
.hero-wave svg { height: 120px !important; }
.bento-wave-bottom { bottom: -2px !important; }
.bento-wave-bottom svg { height: 120px !important; }
.faq-wave-bottom { bottom: -2px !important; }
.faq-wave-bottom svg { height: 120px !important; }
.product-wave-bottom { bottom: -2px !important; }
.product-wave-bottom svg { height: 120px !important; }