:root {
    --primary: #000000;
    --primary-light: #222222;
    --accent: #000000;
    --bg-main: #FFFFFF;
    --bg-alt: #F8FAFC;
    --text-main: #1E293B;
    --text-white: #FFFFFF;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Container & Layout */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background: #000;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
    display: block;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

.menu {
    display: flex;
    gap: 2.5rem;
}

.menu a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 0.5px;
    position: relative;
}

.menu a:hover {
    color: var(--accent);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    padding: 0.5rem;
}

/* Breadcrumbs Styling */
.breadcrumbs-bar {
    background: #f8fafc;
    border-bottom: 1px solid #eef2f6;
    padding: 0.75rem 0;
    margin-bottom: 0;
}

.breadcrumbs-inner {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.breadcrumbs-inner a {
    color: var(--text-muted);
}

.breadcrumbs-inner span.current {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: #000;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Product Grid */
.products-layout-wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
}

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

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    background: #f9f9f9;
    color: #666;
    border-radius: 8px;
}

.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.mobile-action-bar {
    display: none;
}

.mobile-filter-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.product-sidebar-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.product-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 38, 71, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s;
}

body.product-sidebar-open .product-sidebar-overlay {
    display: block;
    opacity: 1;
}

body.product-sidebar-open {
    overflow: hidden;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.product-image {
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    background: #fdfdfd;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.product-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.product-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.part-no {
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    width: fit-content;
    margin-top: auto;
}

/* Product Detail */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
    align-items: start;
}

.product-gallery img {
    width: 100%;
    border: 1px solid var(--border);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.thumbnail {
    cursor: pointer;
    width: 100%;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover {
    opacity: 1 !important;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.specs-table th,
.specs-table td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.specs-table th {
    background: var(--bg-alt);
    width: 250px;
    font-size: 0.8rem;
}

.info-section-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.attr-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.attr-value {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Installation Guide */
.installation-guide {
    padding: 4rem 0;
    border-top: 2px solid #000;
    margin-top: 4rem;
}

/* Timeline Styles Overhaul */
.installation-timeline {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.installation-timeline::before,
.timeline-dot {
    display: none;
    /* Remove old vertical line and dots */
}

.timeline-item {
    counter-increment: step;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .timeline-content {
        flex-direction: row;
        align-items: center;
    }
}

.timeline-image {
    flex: 0 0 350px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.timeline-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.03);
}

.timeline-desc {
    flex: 1;
    position: relative;
}

.timeline-desc::before {
    content: "STEP " counter(step);
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--bg-alt);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.timeline-desc p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
    margin: 0;
}

.sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
    z-index: 100;
}

.sidebar-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar h3 {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-alt);
    letter-spacing: 0.05em;
    padding-left: 0;
    border-left: none;
}

.search-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.search-input-group input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: all 0.3s;
    background: var(--bg-alt);
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(10, 38, 71, 0.05);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 0.875rem;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 38, 71, 0.2);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}

.category-link:hover,
.category-link.active {
    background: var(--bg-alt);
    color: var(--primary);
}

/* Vehicle Search Grid Layout */
.vehicle-search-bar.horizontal {
    display: block;
    padding: 2.5rem 3rem;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: -6rem;
    position: relative;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.vehicle-search-bar.horizontal .vehicle-search-title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vehicle-search-bar.vertical {
    background: var(--bg-alt);
    padding: 0 !important;
    /* border: 1px solid var(--border); */
    margin-top: 0;
    box-shadow: none;
    border-radius: 16px;
}

.vehicle-search-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.select-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.custom-select {
    appearance: none;
    background-color: #F8FAFC;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding: 1rem 1.25rem;
    padding-right: 3rem;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s;
    cursor: pointer;
    width: 100%;
}

.custom-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 38, 71, 0.05);
}

.custom-select:disabled {
    background-color: var(--bg-alt);
    cursor: not-allowed;
    opacity: 0.7;
}

.vehicle-search-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1.25rem;
    align-items: stretch;
}

.search-btn {
    width: auto;
    padding: 0 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #222;
}

.vehicle-search-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .header {
        padding: 0;
        height: 55px;
    }

    .header-inner {
        position: relative;
        padding: 0;
        max-width: 95% !important;
        height: 100%;
    }

    .logo img {
        height: 45px;
        width: auto;
    }

    .mobile-menu-toggle {
        display: block;
        padding: 0.6rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        color: #fff;
        margin-right: -0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        border: 1px solid var(--border);
        border-top: none;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 999;
        border-radius: 0 0 12px 12px;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        padding: 1.25rem 1.5rem !important;
        border-bottom: 1px solid #f0f4f8;
        width: 100%;
        display: block;
        box-sizing: border-box;
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary);
    }

    .product-detail-layout,
    .step-item {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Vehicle Search: 2-col grid on tablet */
    .vehicle-search-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-search-bar {
        grid-template-columns: 1fr;
    }

    .products-layout-wrapper {
        grid-template-columns: 300px 1fr;
        gap: 2rem;
    }

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

    .compatibility-grid {
        gap: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-layout-wrapper {
        grid-template-columns: 1fr;
        padding-top: 2rem;
    }

    .mobile-action-bar {
        display: block;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 0.75rem 0;
        position: sticky;
        top: 55px;
        z-index: 800;
    }

    .mobile-action-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .results-count {
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .mobile-filter-btn {
        display: flex;
        padding: 0.5rem 1rem;
        background: var(--bg-alt);
        color: var(--primary);
        border: 1px solid var(--border);
        border-radius: 8px;
        font-size: 0.75rem;
        margin: 0;
        box-shadow: none;
    }

    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -320px;
        width: 85%;
        max-width: 320px;
        height: 100%;
        background: #fff;
        z-index: 1002;
        padding: 2rem;
        overflow-y: auto;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.15);
        border-radius: 0 24px 24px 0;
        border: none;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.product-sidebar-open .sidebar {
        left: 0;
    }

    .sidebar-header {
        display: flex;
    }

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

    .product-card {
        border-radius: 12px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 0.9375rem;
        height: 2.6rem;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .compatibility-grid {
        grid-template-columns: 1fr;
    }

    .specs-table th {
        width: 150px;
    }

    .vehicle-search-bar.horizontal {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        margin-top: -2rem;
        border-radius: 24px;
    }

    .vehicle-search-bar.horizontal .vehicle-search-title {
        text-align: left;
        justify-content: flex-start;
        margin-bottom: 1rem;
    }

    /* Vehicle Search: stack vertically on mobile */
    .vehicle-search-bar {
        display: block !important;
    }

    .vehicle-search-horizontal {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 1.5rem;
    }

    .search-btn {
        width: 100%;
        min-width: unset;
    }

    /* Homepage 4-col grid → 2-col on mobile */
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .tabs-header {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 1rem;
        flex: 1;
        min-width: 120px;
        font-size: 0.8rem;
    }
}

/* Banner Slider */
.banner-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: #000;
}

.slider-wrapper {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    color: #fff;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--primary);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.pagination li {
    margin: 0;
}

.pagination li a,
.pagination li span {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.pagination li.active span {
    background: #000;
    color: #fff;
    border-color: #000;
}

.pagination li.disabled span {
    color: #999;
    background: #f5f5f5;
}



/* Tabs */
.tabs-container {
    margin-top: 4rem;
    border-top: 1px solid #eee;
}

.tabs-header {
    display: flex;
    justify-content: center;
    background: #f9f9f9;
}

.tab-btn {
    padding: 1.5rem 3rem;
    border: none;
    background: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    color: #999;
    position: relative;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #000;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.tab-content {
    display: none;
    padding: 6rem 0;
}

.tab-content.active {
    display: block;
}

/* WhatsApp Button */
.wa-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #25d366;
    color: #fff;
    padding: 1.2rem;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    margin-top: 2rem;
    transition: all 0.3s;
}

.wa-order-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Floating WhatsApp Button */
.wa-floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background: #128c7e;
}

.wa-floating-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}