/* ============================================
   RESET & BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFD166;
    --dark-color: #2D3047;
    --light-color: #F7FFF7;
    --text-color: #333333;
    --text-light: #666666;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    touch-action: manipulation;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-call {
    background-color: var(--primary-color);
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-menu {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1rem;
}

.image-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 1rem;
    padding: 30px 20px;
    text-align: center;
    min-height: 200px;
    width: 100%;
}

.image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.image-placeholder.large {
    min-height: 300px;
}

.image-placeholder.round {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION (MOBILE FIRST)
============================================ */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 1001;
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 1000;
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    font-weight: 500;
    position: relative;
    font-size: 1.1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 50px;
}

.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: block;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO SECTION (MOBILE FIRST)
============================================ */
.hero {
    background: linear-gradient(135deg, #FFEAA7 0%, #D8BFD8 100%);
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-content {
    width: 100%;
    text-align: center;
}

.hero-title {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
}

.hero-image {
    width: 100%;
}

.hero-image .image-placeholder {
    min-height: 300px;
    background: linear-gradient(135deg, #FFD166 0%, #FF6B6B 100%);
}

/* ============================================
   HIGHLIGHTS SECTION
============================================ */
.highlight-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.highlight-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: var(--dark-color);
}

/* ============================================
   GALLERY
============================================ */
.gallery-preview, .gallery-section {
    background-color: #f9f9f9;
}

.gallery-grid, .gallery-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-item .image-placeholder {
    min-height: 150px;
    background: linear-gradient(135deg, #A29BFE 0%, #81ECEC 100%);
}

.gallery-item:nth-child(2n) .image-placeholder {
    background: linear-gradient(135deg, #FD79A8 0%, #FFEAA7 100%);
}

.gallery-item:nth-child(3n) .image-placeholder {
    background: linear-gradient(135deg, #81ECEC 0%, #A29BFE 100%);
}

/* ============================================
   PAGE HEADER
============================================ */
.page-header {
    background: linear-gradient(135deg, #FFD166 0%, #FF6B6B 100%);
    padding: 100px 0 50px;
    text-align: center;
    color: white;
}

.page-title {
    color: white;
    font-size: 2.2rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   MENU PAGE STYLES (MOBILE FIRST)
============================================ */
.menu-categories {
    background-color: white;
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.category-buttons {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-buttons::-webkit-scrollbar {
    display: none;
}

.category-btn {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.category-btn.active,
.category-btn:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.menu-section {
    margin-bottom: 40px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.menu-section.hidden {
    display: none;
}

.menu-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-size: 1.5rem;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-item-info h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.menu-item-info p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.menu-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag.popular {
    background-color: #FFEAA7;
    color: #E17055;
}

.tag.chef {
    background-color: #A29BFE;
    color: white;
}

.tag.new {
    background-color: #81ECEC;
    color: var(--dark-color);
}

.tag.spicy {
    background-color: #FD79A8;
    color: white;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
    text-align: right;
}

.order-cta {
    background: linear-gradient(135deg, #A29BFE 0%, #81ECEC 100%);
    text-align: center;
    color: white;
    padding: 50px 0;
}

.order-cta h2 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.order-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cta-buttons .btn {
    width: 100%;
    max-width: 250px;
}

/* ============================================
   ABOUT PAGE STYLES
============================================ */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text {
    width: 100%;
}

.about-image {
    width: 100%;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.stat-card {
    text-align: center;
    background-color: white;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.9rem;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 25px;
}

.value-item {
    text-align: center;
    padding: 20px 15px;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.team-section {
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.team-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ============================================
   CONTACT PAGE STYLES
============================================ */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info, .contact-map {
    width: 100%;
}

.contact-details {
    margin: 25px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFEAA7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--dark-color);
}

.contact-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.contact-buttons .btn {
    width: 100%;
}

.map-placeholder {
    background: linear-gradient(135deg, #c3cfe2 0%, #f5f7fa 100%);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 25px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.directions {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-section {
    background-color: #f9f9f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-item h3 i {
    color: var(--primary-color);
    margin-top: 3px;
}

/* ============================================
   FOOTER (MOBILE FIRST)
============================================ */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer h3, .footer h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* ============================================
   CHATBOT STYLES (MOBILE OPTIMIZED)
============================================ */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    touch-action: manipulation;
}

.chatbot-icon:hover {
    transform: scale(1.1);
}

.chatbot-icon:active {
    transform: scale(0.95);
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    max-width: 90vw;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFD166 100%);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    transform: scale(1.2);
}

.chatbot-messages {
    padding: 15px;
    height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
}

.message {
    max-width: 85%;
    padding: 10px 12px;
    border-radius: 15px;
    line-height: 1.4;
    font-size: 0.9rem;
    word-break: break-word;
}

.bot-message {
    background-color: #f0f0f0;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background-color: #4ECDC4;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    display: flex;
    border-top: 1px solid #eee;
    padding: 12px;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.chatbot-input input:focus {
    border-color: var(--primary-color);
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    margin-left: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-input button:hover {
    background-color: #ff5252;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   TABLET STYLES (min-width: 768px)
============================================ */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 70px 0;
    }
    
    /* Navigation */
    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        box-shadow: none;
        padding: 0;
        display: flex;
    }
    
    .nav-link {
        padding: 5px 15px;
    }
    
    .hamburger {
        display: none;
    }
    
    /* Hero */
    .hero {
        padding-top: 140px;
        padding-bottom: 70px;
    }
    
    .hero .container {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }
    
    .hero-content {
        text-align: left;
        flex: 1;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .hero-image .image-placeholder {
        min-height: 350px;
    }
    
    /* Highlights */
    .highlight-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Gallery */
    .gallery-grid, .gallery-full {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* Menu */
    .category-buttons {
        justify-content: center;
    }
    
    .menu-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .menu-item-price {
        margin-top: 0;
        margin-left: 20px;
    }
    
    /* About */
    .about-content {
        flex-direction: row;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Contact */
    .contact-content {
        flex-direction: row;
    }
    
    .contact-buttons {
        flex-direction: row;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* ============================================
   DESKTOP STYLES (min-width: 992px)
============================================ */
@media (min-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    section {
        padding: 80px 0;
    }
    
    /* Highlights */
    .highlight-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Hero */
    .hero .container {
        gap: 60px;
    }
    
    .hero-image .image-placeholder {
        min-height: 400px;
    }
    
    /* Gallery */
    .gallery-grid, .gallery-full {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Menu */
    .menu-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Contact */
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   LARGE DESKTOP STYLES (min-width: 1200px)
============================================ */
@media (min-width: 1200px) {
    .container {
        padding: 0;
    }
    
    /* Menu */
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Gallery */
    .gallery-grid, .gallery-full {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
============================================ */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .highlight-card:hover,
    .team-card:hover,
    .menu-item:hover {
        transform: none;
    }
    
    .btn:active,
    .highlight-card:active,
    .team-card:active,
    .menu-item:active {
        transform: scale(0.98);
    }
    
    .chatbot-icon:hover {
        transform: none;
    }
    
    .chatbot-icon:active {
        transform: scale(0.9);
    }
}

/* ============================================
   HIGH DPI SCREENS
============================================ */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .btn,
    .category-btn,
    .chatbot-input button {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}