:root {
    --primary-color: #e76f37;
    --primary-dark: #b8936d;
    --secondary-color: #8b7355;
    --text-dark: #2c2421;
    --text-light: #6b5744;
    --bg-light: #faf8f6;
    --bg-white: #ffffff;
    --border-color: #e8dfd6;
    --shadow: 0 2px 20px rgba(44, 36, 33, 0.08);
    --shadow-lg: 0 10px 40px rgba(44, 36, 33, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Tenor Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.announcement-bar {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 0.75rem;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1.25rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 130px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 36, 33, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--primary-color);
}

.search-input {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    border: 2px solid var(--bg-white);
    background-color: transparent;
    color: var(--bg-white);
    outline: none;
    transition: var(--transition);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    border-color: var(--primary-color);
}

.search-suggestions {
    margin-top: 2rem;
    color: var(--bg-white);
}

.search-label {
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.suggestion-tag {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.suggestion-tag:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--bg-white);
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
}

.slide-text {
    flex: 1;
    animation: slideInLeft 0.8s ease-out;
}

.slide.active .slide-text {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.slide-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.slide-image {
    flex: 1;
    height: 550px;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 1s ease-out;
}

.slide.active .slide-image {
    animation: fadeIn 1s ease-out;
}

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

.slider-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

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

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(44, 36, 33, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

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

.btn-full {
    width: 100%;
}

/* Categories Section */
.categories-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

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

.category-card {
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    
}

.category-card:hover .category-image {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.category-name {
    /**
     position: absolute;
        bottom: 2rem;
        left: 2rem;
     z-index: 5;
     */
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.0rem;
    font-weight: 400;
    color: var(--bg-black);
    letter-spacing: 1px;
    padding: 1.5rem;
    text-align: center;
    background-color: var(--bg-white)
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.filter-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

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

.product-card {
    background-color: var(--bg-white);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-card:hover .product-image {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    z-index: 5;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.875rem;
    background-color: var(--text-dark);
    color: var(--bg-white);
    border: none;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background-color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.newsletter-text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: var(--bg-white);
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--bg-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--border-color);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--bg-white);
    border-color: transparent;
}

.social-btn.facebook:hover {
    background-color: #1877f2;
    color: var(--bg-white);
    border-color: transparent;
}

.social-btn.tiktok:hover {
    background-color: #000000;
    color: var(--bg-white);
    border-color: transparent;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Shopping Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active {
    right: 0;
}

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

.cart-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.cart-close:hover {
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 100px;
    height: 120px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.cart-item-price {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.875rem;
    cursor: pointer;
    margin-top: 0.5rem;
    text-decoration: underline;
    transition: var(--transition);
}

.remove-item:hover {
    color: #c0392b;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.total-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.cart-empty p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 36, 33, 0.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 3.5rem;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo h1 {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
       
    .logo-image {
        height: 75px;
    }
       
    .logo {
        gap: 0.5rem;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-image {
        width: 100%;
        height: 300px;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-controls {
        bottom: 1rem;
        right: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Animation for product loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    
/*    bottom: 30px;*/
/*    right: 30px;*/
/*    color: white;*/
/*    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);*/
/*    z-index: 1000;*/
    
    bottom: 25px;
    right: 25px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
/*    width: 32px;*/
/*    height: 32px;*/
    
    width: 35px;
    height: 35px;
    fill: white
}

/* Pulse Animation */
/*@keyframes whatsapp-pulse {*/
/*    0% {*/
/*        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);*/
/*    }*/
/*    50% {*/
/*        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);*/
/*    }*/
/*    100% {*/
/*        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);*/
/*    }*/
/*}*/

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


/* Mobile Responsive */
/*@media (max-width: 768px) {*/
/*    .whatsapp-float {*/
/*        bottom: 20px;*/
/*        right: 20px;*/
/*        width: 55px;*/
/*        height: 55px;*/
/*    }*/
/*    */
/*    .whatsapp-float svg {*/
/*        width: 28px;*/
/*        height: 28px;*/
/*    }*/
/*}*/
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}

/* Ensure button is above everything */
.whatsapp-float {
    -webkit-tap-highlight-color: transparent;
}
