/* ===================================
   GENERAL STYLES
   =================================== */

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

:root {
    --primary-color: #205072;
    --secondary-color: #329D9C;
    --accent-color: #56C596;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success: #7BE495;
    --danger: #dc3545;
    --warning: #ffc107;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ===================================
   BUTTONS
   =================================== */

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.btn-remove {
    padding: 6px 12px;
    background-color: var(--danger);
    color: var(--white);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-remove:hover {
    background-color: #c82333;
}

/* ===================================
   TOP BANNER
   =================================== */

.top-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
}

/* ===================================
   HEADER
   =================================== */

.header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    text-align: right;
}

.help-text {
    font-size: 0.9rem;
}

.help-text span {
    margin-right: 8px;
}

.help-text a {
    font-weight: 600;
    color: var(--primary-color);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
}

.logo a {
    color: var(--primary-color);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    display: block;
}

/* ===================================
   NAVIGATION - Bootstrap Navbar
   =================================== */

.navbar {
    padding: 5px 0;
    background-color: var(--white) !important;
    box-shadow: none;
}

.navbar-brand {
    margin-right: 40px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin-left: 30px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.dropdown-menu {
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 5px;
}

.dropdown-item {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: 2px solid var(--text-dark);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(51, 51, 51)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.search-box {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    overflow: hidden;
    background-color: var(--white);
}

.search-input {
    border: none !important;
    padding: 8px 15px !important;
    outline: none;
    font-size: 0.95rem;
}

.search-input:focus {
    box-shadow: none;
    border: none !important;
}

.btn-search {
    background-color: transparent !important;
    border: none !important;
    padding: 8px 15px !important;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
}

/* ===================================
   HEADER ICONS
   =================================== */

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 8px 15px;
    outline: none;
    font-size: 0.95rem;
}

.search-box button {
    background-color: transparent;
    border: none;
    padding: 8px 15px;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
}

.icon-link {
    font-size: 1.2rem;
    color: var(--text-dark);
    position: relative;
    padding: 5px;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--danger);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===================================
   HAMBURGER MENU - Removed (using Bootstrap)
   =================================== */

/* Removed custom hamburger styles - Bootstrap handles toggle */

/* ===================================
   BREADCRUMB
   =================================== */

.breadcrumb {
    background-color: var(--bg-light);
    padding: 15px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

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

.breadcrumb span {
    color: var(--text-light);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   CATEGORIES SECTION
   =================================== */

.categories-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.category-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.category-image {
    margin-bottom: 15px;
}

.placeholder-image {
    width: 100%;
    height: 120px;
    background-color: var(--bg-light);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.category-card h3 {
    font-size: 1rem;
    color: var(--text-dark);
}

/* ===================================
   FEATURED SECTION
   =================================== */

.featured-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image .placeholder-image {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-light), #f0f0f0);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--danger);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.product-info h3 a {
    color: var(--text-dark);
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.rating i {
    color: #ffc107;
    font-size: 0.8rem;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-light);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
}

/* ===================================
   PRODUCT DETAIL
   =================================== */

.product-detail {
    padding: 40px 0;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-main-image {
    position: relative;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail:hover {
    border-color: var(--secondary-color);
}

.product-detail-info h1 {
    margin-bottom: 20px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.discount {
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
}

.description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-specs {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.product-specs h3 {
    margin-bottom: 15px;
}

.product-specs ul {
    list-style: none;
}

.product-specs li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs li::before {
    content: '✓ ';
    color: var(--success);
    font-weight: 600;
    margin-right: 10px;
}

.quantity-section {
    margin: 30px 0;
}

.quantity-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.quantity-input {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    width: fit-content;
}

.qty-btn {
    background-color: transparent;
    border: none;
    width: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background-color: var(--bg-light);
}

.quantity-input input {
    border: none;
    width: 50px;
    text-align: center;
    font-size: 1rem;
    outline: none;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.action-buttons button {
    flex: 1;
}

.delivery-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.delivery-info h3 {
    margin-bottom: 15px;
}

.product-specifications {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.product-specifications h3 {
    margin-bottom: 15px;
}

.product-specifications table {
    width: 100%;
    border-collapse: collapse;
}

.product-specifications tr {
    border-bottom: 1px solid var(--border-color);
}

.product-specifications tr:last-child {
    border-bottom: none;
}

.product-specifications td {
    padding: 12px 0;
}

.product-specifications td:first-child {
    font-weight: 600;
    width: 40%;
    color: var(--text-dark);
}

.product-specifications td:last-child {
    color: var(--text-light);
    padding-left: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}.delivery-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===================================
   CART SECTION
   =================================== */

.cart-section {
    padding: 40px 0;
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table thead {
    background-color: var(--bg-light);
}

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

.cart-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.qty-input {
    width: 70px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.empty-cart {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.empty-cart a {
    color: var(--primary-color);
    font-weight: 600;
}

.cart-summary {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 0;
    color: var(--primary-color);
}

.shipping-notice {
    color: var(--success);
    font-size: 0.85rem;
    margin: 15px 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: 60px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.info-card {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.contact-form h2 {
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

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

.store-location {
    margin-bottom: 20px;
}

.store-location h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.store-location p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-content {
    margin-top: 40px;
}

.about-text {
    margin-bottom: 40px;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mission, .vision, .values {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.mission i, .vision i, .values i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list i {
    color: var(--success);
    font-size: 1.2rem;
}

/* ===================================
   PRODUCTS PAGE
   =================================== */

.products-section {
    padding: 40px 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.products-header h1 {
    margin: 0;
}

.sort-filter select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
    cursor: pointer;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.related-products {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 991px) {
    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar-nav {
        padding-top: 10px;
    }

    .search-box {
        margin-top: 15px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

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

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .product-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .cart-wrapper {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .action-buttons {
        flex-direction: column;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-icons {
        gap: 10px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .navbar {
        /* display: none; */
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

    .product-card {
        margin-bottom: 20px;
    }

    .cart-table {
        font-size: 0.9rem;
    }

    .cart-table th, .cart-table td {
        padding: 8px;
    }
}

/* ===================================
   WHATSAPP CHAT BUTTON
   =================================== */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    animation: pulse 2s infinite;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
