/* Updated with proper Content-Type headers */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Root styling */
:root {
    font-size: 16px;
    --primary-navy: #0E0D1F;
    --primary-gold: #89735F;
    --primary-blue: #1A1B2E;
    --heading-font: 'DM Serif Display', Arial, sans-serif;
    --paragraph-font: 'Montserrat', Arial, sans-serif;
}

/* Default fonts & sizes */
body {
    color: #fff;
    font-family: var(--paragraph-font);
    background-color: var(--primary-navy);
}

h1, .h1 { 
    font-size: 2.3rem !important;
    font-family: var(--heading-font);
    letter-spacing: 0.1rem;
}

h2, .h2 { 
    font-size: 2rem !important;
    font-family: var(--heading-font);
    letter-spacing: 0.1rem;
}

h3, .h3 { 
    font-size: 1.7rem !important;
    font-family: var(--heading-font);
    letter-spacing: 0.1rem;
}

h4, .h4 { 
    font-size: 1.5rem !important;
    font-family: var(--heading-font);
    letter-spacing: 0.1rem;
}

h5, .h5 { 
    font-size: 1.3rem !important;
    font-family: var(--heading-font);
    letter-spacing: 0.1rem;
}

h6, .h6 { 
    font-size: 1.1rem !important;
    font-family: var(--heading-font);
    letter-spacing: 0.1rem;
}

hr {
    border: 1px solid var(--primary-gold);
    opacity: 1;
}

.hr-standard-width {
    width: 90px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Custom font & size classes */
p, .p { 
    font-size: 1rem !important;
    font-weight: 200;
}

.text-small { font-size: 0.9rem !important; }
.text-extra-small { font-size: 0.75rem !important; }
.text-200 { font-weight: 200; }
.text-300 { font-weight: 300; }
.text-400 { font-weight: 400; }
.text-500 { font-weight: 500; }
.text-600 { font-weight: 600; }
.text-700 { font-weight: 700; }
.text-800 { font-weight: 800; }

.heading-font {
    font-family: var(--heading-font);
    letter-spacing: 0.05rem;
}

.paragraph-font {
    font-family: var(--paragraph-font) !important;
}

.spaced-text { letter-spacing: 0.2rem; }

.main-content { flex: 1; }
.centered-list-container { display: flex; justify-content: center; }
.centered-list {
    list-style-position: inside;
    padding-left: 0;
    margin: 0;
    text-align: left;
}

.w-10 {
    width: 10% !important;
}

.w-20 {
    width: 20% !important;
}

.mt-45 { margin-top: 2.2rem !important; }

.mb-45 { margin-bottom: 2.2rem !important; }

.my-45 {
    margin-bottom: 2.2rem !important;
    margin-top: 2.2rem !important;
}

.thin-hr {
    border: 1px solid #dee2e6;
    opacity: 0.2;
}

/* Default state for the anchor link and its text */
.hover-link, .reverse-hover-link {
    transition: color 0.1s ease-in !important;
}

.hover-link:hover {
    color: var(--primary-gold) !important;  /* Gold color for "Winkelwagen" text */
}

/* When the anchor link is hovered, change the background of the span and its text color */
.hover-link:hover .reverse-hover-link {
    background-color: #fff !important;  /* White background for the cart count */
    color: var(--primary-gold) !important;  /* Gold color for the cart count */
}


@media (max-width: 767px) {
    main {
        margin-top: 65px;
    }
}

.centered-bullets {
    list-style-type: disc !important;
    list-style-position: inside !important;
    padding: 0 !important;
    margin: 0 !important;
}

.centered-bullets li {
    list-style-type: disc !important;
    display: list-item !important; /* Ensure the default display is list-item */
    text-align: center; /* Center text and bullet */
}

.text-gold {
    color: #a58c75;
}

.text-grey {
    color: #949494;
}

/* Section fade in on scroll styling */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bootstrap form overides */

.form-control, .form-select {
    border-radius: 0.5rem;
    background-color: var(--primary-blue);
    color: #d2d2d2;

}

.form-label {
    margin-bottom: .25rem;

}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: none;
    background-color: var(--primary-blue);
    color: #d2d2d2;
}

/* Custom dropdown arrow color */
.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d2d2d2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* Custom date picker icon color */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.8) saturate(0);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: invert(1) brightness(1) saturate(0);
}

.form-control::placeholder {
    color: #d2d2d2; /* Light grey color for placeholder */
    font-style: italic; /* Italicize the placeholder text */
    font-size: 14px; /* Set a font size */
    opacity: 1; /* Make placeholder text fully opaque */
}

.form-control:focus::placeholder {
    color: transparent; /* Makes the placeholder text disappear */
}

.form-check-input:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.form-check-input:checked:focus, .form-check-input:focus {
    box-shadow: none; /* Remove default box shadow when focused */
    border: none;
}

/* Full screen loading overlay for every page */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #293352;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease;
}

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

.loading-icon {
    height: auto;
    animation: expand-contract 1.4s infinite;
}

@keyframes expand-contract {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Buttons */

.btn-primary {
    --bs-btn-bg: var(--primary-gold);
    --bs-btn-hover-bg: #746253;
    --bs-btn-active-bg: var(--primary-gold);
    --bs-btn-disabled-bg: var(--primary-gold);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-color: #fff;
    --bs-btn-border-color: none;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-color: #fff;
    --bs-btn-disabled-color: #fff;
    --bs-border-radius: 0.5rem;
    padding: 0.5rem 1.3rem;
}

.btn-outline-primary {
    --bs-btn-color: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-gold);
    --bs-btn-hover-border-color: var(--primary-gold);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-gold);
    --bs-btn-active-border-color: var(--primary-gold);
    --bs-border-radius: 0.5rem;
    padding: 0.5rem 1.3rem;
}

/* Elfsight Translate Widget */
.eapps-website-translator-2eeb579f-b26e-484d-baab-d71736bcf119-custom-css-root {
    z-index: 100 !important;;
  }

.hashjK {
    border-radius: 5px 5px 0px 0px !important;
}

/* Messages */
.alert-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050; /* Ensure it appears above most elements */
}

@media (max-width: 767px) { /* Adjust for tablets and smaller screens */
    .alert-container {
        top: 65px; /* Adjust this value based on your navbar height */
    }
}

.alert {
    --bs-alert-padding-y: 0.6rem;
}

.alert-dismissible .btn-close {
    padding: 0.95rem 1rem;
    font-size: 0.8rem;
}
.alert-dismissible .btn-close:focus {
    box-shadow: none;
}


/* Desktop Navigation */

.top-nav-desktop {
    background-color: var(--primary-navy);
    height: 6.8rem;
    color: #fff;
}

.main-logo {
    width: 16rem;
    height: auto;
}

@media (max-width: 991px) {
    .main-logo {
        width: 13rem;
    }
}

.nav-contact-info {
    transition: color 0.1s ease-in !important;
}

.nav-contact-info:hover {
    color: var(--primary-gold);
}

.desktop-main-menu {
    background-color: rgba(137, 115, 95, 0.9);
    border-bottom: 1.5px solid #E2E2E2;
    z-index: 5;
}

.desktop-main-menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(137, 115, 95, 1);
    width: 100%;
    height: 45px;
}

.round-div {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid white;
    overflow: hidden;
}

.round-div img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.search-container {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-input {
    border: 1.5px solid #fff;
    border-radius: 0.5rem;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    background-color: var(--primary-blue);
    color: #fff;
    font-size: 0.8rem;
    outline: none;
    width: 225px;
    box-sizing: border-box;
}

.search-input::placeholder {
    color: rgb(201, 201, 201);
}

@media (min-width: 992px) {
    .search-input {
        width: 270px;
    }
}

.search-button {
    background: transparent;
    border: none;
    position: absolute;
    right: 0.8rem;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    cursor: pointer;
    z-index: 1;
}

.search-button i {
    color: #fff;
    font-size: 1rem;
}

.custom-badge {
    background-color: var(--primary-gold);
    font-size: 10px;
    top: -3px;
    left: 24px;
    width: 20px; /* Adjust as necessary */
    height: 20px; /* Adjust as necessary */
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .custom-badge {
        top: -13px;
    }
}

.desktop-cart-account-container {
    margin-bottom: 0.8rem;
}

.account-cart-text {
    font-size: 0.9rem;
}

/* Initializes hover affect for mega menu's on large screens */
@media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.navbar a {
    color: #fff;
    line-height: 1.6rem;
}

.nav-link {
    font-family: var(--heading-font);
    letter-spacing: 0.05rem;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.dropdown-toggle::after {
    font-size: 1.1rem;
    vertical-align: middle;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 95%;
    max-width: 1200px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    margin: 0;
}

.mega-menu-overlay {
    content: "";
    position: absolute; /* Change from fixed to absolute */
    top: 167.9px; /* Starts overlay for mega menu below nav bar */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4;
    display: none;
}

/* Ensure the mega menu is above the overlay */
.dropdown-mega:hover {
    z-index: 2;
}

.dropdown-mega:hover::before {
    display: block;
}

.mega-menu-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    z-index: 2;
    cursor: pointer;
    color: #fff !important;
    border-radius: 7px; /* Adjust the value as needed for rounded corners */
    overflow: hidden; /* Ensures that the content inside respects the rounded corners */
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgb(137, 115, 95, 1) 5%, rgba(137, 115, 95, 0.8) 25%, rgba(137, 115, 95, 0.6) 40%, rgba(137, 115, 95, 0.4) 50%, rgba(137, 115, 95, 0) 100%);
    z-index: 1;
}

.mega-menu-img p,
.mega-menu-img hr {
    position: relative;
    z-index: 2;
}

.mega-menu-img p {
    margin: 0 0;
}

.mega-menu-img hr {
    margin: 0.5rem 0;
}

.mega-menu-links-wrapper {
    margin-bottom: 1.2rem;
    font-family: var(--paragraph-font);
    line-height: 1.8rem;
}

.mega-menu-links-wrapper a {
    transition: color 0.1s ease-in !important;
}

.mega-menu-links-wrapper a:hover {
    color: var(--primary-gold);
}

.dropdown-menu {
    border-radius: 1;
    background-color: var(--primary-blue);
}

.small-desktop-nav-dropdown .dropdown-item:hover,
.small-desktop-nav-dropdown .dropdown-item:active {
    background-color: var(--primary-gold);
    color: #fff;
}

.desktop-main-menu:not(.fixed) .shop-nav-link {
    background-color: var(--primary-blue);
    border-radius: 5px;
    padding-left: 12px !important;
    padding-right: 10px !important;
    margin-left: 5px;
}

.desktop-main-menu:not(.fixed) .shop-nav-link:hover {
    background-color: #fff;
    color: var(--primary-gold);
}

/* Mobile Navbar */
.custom-navbar {
    background-color: var(--primary-blue);
    height: 65px;
}

.navbar-toggler {
    border: none;
    padding: 0.23rem 0.5rem 0.2rem 0.5rem;
}

.navbar-toggler i {
    color: #ececec;
    font-size: 1.7rem;
}

#main-logo-mobile {
    width: 10rem;
    height: auto;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.mobile-offcanvas {
    background-color: var(--primary-navy);
    z-index: 30000000000 !important;
}

.mobile-offcanvas.offcanvas-start {
    border-right: none !important;
}

.mobile-offcanvas-header {
    padding-bottom: 0;
}

.mobile-offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-offcanvas-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-offcanvas .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.offcanvas .btn-close:focus {
    box-shadow: none;
}

.mobile-ep-logo {
    width: 160px;
    height: auto;
}

.mobile-menu-hr {
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    margin: 0 0;
}

@media (max-width: 767px) {
    .navbar {
        --bs-navbar-padding-y: 0.2rem;
    }

    .dropdown-menu {
        --bs-dropdown-border-width: none;
        --bs-dropdown-divider-bg: none;
        --bs-dropdown-border-radius: none;
        padding-top: 0.2rem;
    }

    .dropdown-open {
        background-color: var(--primary-blue); /* Change this to your desired color for the <li> */
    }
    
    .dropdown-open .dropdown-menu {
        background-color: var(--primary-blue); /* Change this to your desired color for the dropdown menu */
    }
    
    /* Optional: To ensure the anchor element does not get a background color */
    .dropdown-open > .nav-link {
        background: transparent; /* Ensure the anchor background is transparent */
    }

    .nav-link:focus,
    .nav-link:hover,
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show {
        color: white;
    }

    .nav-link {
        margin: 0 1rem !important;
        font-size: 1rem !important;
        padding: 0.3rem 0;
    }

    .nav-link:focus-visible {
        box-shadow: none;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-toggle .fa-angle-down {
        transition: transform 0.3s;
        color: var(--primary-gold);
    }

    .dropdown-toggle[aria-expanded="true"] .fa-angle-down {
        transform: rotate(180deg);
    }

    .mobile-search-container {
        width: 100%;
    }

    .search-form {
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
    }

    .search-input {
        border: 1px solid rgba(255, 255, 255, 1);
        border-radius: 0.375rem;
        padding: 0.5rem 2.5rem 0.5rem 1rem;
        padding-right: 2.5rem;
        background-color: var(--primary-blue);
        color: #fff;
        font-size: 0.9rem;
        outline: none;
        width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none; /* Disable native search input styling */
        height: 2.4rem;
    }

    .search-input::-webkit-search-cancel-button {
        -webkit-appearance: none;
        appearance: none;
    }

    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
    }

    .search-button {
        background: transparent;
        border: none;
        position: absolute;
        right: 0.8rem;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0;
        cursor: pointer;
        z-index: 1;
    }

    .search-button i {
        color: rgba(255, 255, 255, 1);
        font-size: 1.2rem;
    }

    .mobile-offcanvas-header {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 330px) {
    .main-menu-heading-mobile {
        display: none;
    }
}

/* Appointment section */

.appointment-box {
    background-color: var(--primary-blue);
    position: relative; /* Ensure the container is a positioning context for the horse image */
    overflow: hidden; /* Hide any overflow from the horse image */
}

.horse-outline {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%; /* Full height of the container */
    object-fit: contain; /* Ensure the image scales without distortion */
    z-index: 1; /* Ensure it sits above the background but below any text if needed */
    opacity: 0.7;
}

/* Main Page Header Image Section */

.page-header-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: -59.1px;
}


/* Overlay */
.page-header-image-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 13, 30, 0.6);
    z-index: 1;
}

@media (min-width: 768px) {
    .page-header-image-overlay {
        top: 59.1px;
    }
}

/* Content container */
.page-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    flex: 1; /* Fills remaining space above the banner */
}

/* Centered heading and HR container */
.page-header-heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 23px;
}

@media (max-width: 767px) {
    .page-header-heading {
        font-size: 2.1rem !important;
    }
}

@media (max-width: 575px) {
    .page-header-heading {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 767px) {
    .page-header-image-container {
        height: 450px;
    }
}

@media (min-width: 768px) {
    .page-header-image-container {
        height: 500px;
    }
}

@media (min-width: 992px) {
    .page-header-image-container {
        height: 550px;
    }
}


.contact-info-box {
    background-color: var(--primary-blue);
    border-radius: 6px;
}


@media (max-width: 767px) {
    .contact-logo {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
}

@media (min-width: 768px) {
    .contact-logo {
        width: 100%;
        height: auto;
    }
}

/* Main page header styling WITH GOLD BANNER */
.gold-banner-page-header-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: -59.1px;
}


/* Overlay */
.gold-banner-page-header-image-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 13, 30, 0.6);
    z-index: 1;
}

@media (min-width: 768px) {
    .gold-banner-page-header-image-overlay {
        top: 59.1px;
    }
}

/* Content container */
.gold-banner-page-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    flex: 1; /* Fills remaining space above the banner */
}

/* Centered heading and HR container */
.gold-banner-page-header-heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px; /* Adjust as needed */
}

@media (max-width: 767px) {
    .gold-banner-page-header-heading {
        font-size: 1.9rem !important;
    }
}

@media (max-width: 575px) {
    .gold-banner-page-header-heading {
        font-size: 1.6rem !important;
    }
}

/* Full-width gold banner */
.gold-banner-page-header-banner {
    position: absolute;
    bottom: 0;
    height: auto;
    width: 100%;
    background-color: rgba(137, 115, 95, 0.9); /* Gold with transparency */
    text-align: center;
    padding: 15px 0;
    border-bottom: 1.5px solid #E2E2E2;
    z-index: 2;
}

/* Banner text */
.gold-banner-text {
    color: white;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 575px) {
    .gold-banner-text {
        font-size: 0.9rem !important;
    }
}




@media (max-width: 575px) {
    .gold-banner-page-header-image-container {
        height: 475px;
    }
}

@media (min-width: 576px) {
    .gold-banner-page-header-image-container {
        height: 550px;
    }
}

@media (min-width: 768px) {
    .gold-banner-page-header-image-container {
        height: 650px;
    }
}

@media (min-width: 992px) {
    .gold-banner-page-header-image-container {
        height: 700px;
    }
}

.pakket-box {
    background-color: #1A1B2E;
}

/* Products/cart quantity box used acros two apps */
.quantity-box {
    background-color: transparent;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid white;
    height: 40px;
}

.qty-btn {
    background: none;
    border: none;
    padding: 0 12px;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:focus {
    outline: none;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    height: 100%;
    background: transparent;
    color: white;
    padding-left: 15px;
}

.qty-input:focus {
    outline: none;
}

/* Formulieren */

.hover-card {
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-blue);
    border: 1px solid white;
}
.hover-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* Footer */

footer {
    background-color: var(--primary-navy);
    height: auto;
    color: #fff;
    padding-top: 48px;
    padding-bottom: 100px;
}

.footer-logo {
    width: 100%;
    max-width: 20rem;
    height: auto;
}

.footer-links-hr {
    width: 56px;
}

.footer-location-icon {
    font-size: 1.3rem;
}

.footer-link {
    transition: color 0.1s ease-in !important;
}

.footer-link:hover {
    color: var(--primary-gold) !important;
}

.footer-google-map {
    padding-bottom: 50%;
    position: relative;
}

.footer-google-map iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.social-icons {
    display: flex;
    gap: 0.6rem;
}

.social-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background-color: var(--primary-gold);
}

.whatsapp-float-button {
    position: fixed;
    bottom: 22px; /* Distance from the bottom */
    right: 22px; /* Distance from the right */
    z-index: 1000;
    background-color: var(--primary-gold); /* WhatsApp green */
    color: white; /* Text color */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 50px; /* Rounded button */
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 24px; /* Size of the icon */
    height: 24px;
    margin-right: 8px; /* Space between icon and text */
    margin-bottom: 3px;
}

@media (max-width: 575px) {
    .whatsapp-float-button {
        font-size: 14px;
    }
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
}