:root { 
    --accent-color: #2c3e50; 
    --text-color: #333333; 
    --text-light: #666666; 
    --bg-color: #f8f9fa; 
    --white: #ffffff; 
    --border-color: #e1e4e8; 
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05); 
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1); 
    --transition: all 0.3s ease; 

    --primary: #1B9B8A;
    --primary-dark: #158070;
    --primary-light: #E8F5F2;
    --foreground: #1a1a1a;
    --muted: #6b7280;
    --border: #e5e7eb;
    --background: #ffffff;
    --card-bg: #f9fafb;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --radius: 0.5rem;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
} 

@keyframes shake {
  0%   { transform: translateX(0); }
  2%  { transform: translateX(-5px); }
  4%  { transform: translateX(5px); }
  6%  { transform: translateX(-5px); }
  8%  { transform: translateX(5px); }
  10%  { transform: translateX(-5px); }
  12%  { transform: translateX(5px); }
  14%  { transform: translateX(-5px); }
  16%  { transform: translateX(5px); }
  18%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}

.wpp-button{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 100;
}

.wpp-button img{
    width: 5rem;
    height: 5rem;
    animation: shake 5s infinite;
}

body { 
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
    background-color: var(--bg-color);
    line-height: 1.6; 
    overflow-y:inherit;
} 

.container { 
    max-width: 1440px; 
    margin: 0 auto; 
    padding: 0 20px; 

} 

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content a { 
    text-decoration: none; 
    color: #333; 
    font-weight: 600; 
    font-size: 14px; 
    transition: color 0.3s; 
}

.header-content a:hover { 
    color: #2ba188; 
} 

.language-selector { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    cursor: pointer; 
} 

.language-selector img { 
    width: 24px; 
    height: 24px; 
}

.header img {
    width: 12rem;
}

.header-content {
    display: flex; 
    list-style: none; 
    gap: 30px; 
    align-items: center; 
    justify-content: space-between; 
}

/* ============================================
   Hero Section
   ============================================ */
.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

@media (min-width: 768px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--text-base);
    }
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    opacity: 0.9;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(27, 155, 138, 0.05) 100%);
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-text h2 {
        font-size: var(--text-5xl);
    }
}

.hero-text p {
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-text p {
        font-size: var(--text-lg);
        margin-bottom: 2rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image {
    position: relative;
    height: 12rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .hero-image {
        height: 24rem;
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content {
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .main-content {
        padding: 5rem 0;
    }
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 3fr;
        gap: 2rem;
    }
}

/* ============================================
   Sidebar
   ============================================ */

.sidebar {
    order: 2;
}

@media (min-width: 1024px) {
    .sidebar {
        order: 1;
    }
}

.sidebar-sticky {
    position: sticky;
    top: 6rem;
}

.categories-mobile {
    display: block;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .categories-mobile {
        display: none;
    }
}

.category-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.category-select {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--background);
    color: var(--foreground);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-select:focus {
    outline: none;
    border-color: var(--primary);
}

.categories-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .categories-desktop {
        display: block;
    }
}

.categories-title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.category-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-btn {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    background-color: var(--background);
    color: var(--foreground);
    border: 1px solid var(--border);
}

.category-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(27, 155, 138, 0.3);
}

/* ============================================
   Products Section
   ============================================ */

.products-section {
    order: 1;
}

.section-header {
    margin-bottom: 1.5rem;
}

#categoryTitle {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.header-underline {
    width: 4rem;
    height: 0.25rem;
    background-color: var(--primary);
    border-radius: 9999px;
}

.products-container {
    background-color: var(--background);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.table-wrapper {
    display: none;
    overflow-x: auto;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
}

.products-table thead {
    background-color: var(--primary);
    color: white;
}

.products-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: var(--text-sm);
}

.products-table tbody tr {
    border-top: 1px solid var(--border);
    transition: background-color 0.2s ease;
}

.products-table tbody tr:hover {
    background-color: var(--card-bg);
}

.products-table tbody tr:nth-child(even) {
    background-color: var(--card-bg);
}

.products-table td {
    padding: 0.75rem 1rem;
    font-size: var(--text-sm);
}

.products-table td:first-child {
    font-weight: 600;
    color: var(--foreground);
}

.products-table td:last-child {
    color: var(--muted);
    line-height: 1.6;
}

.products-cards {
    display: block;
}

.product-card {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.product-card:last-child {
    border-bottom: none;
}

.product-card:nth-child(even) {
    background-color: var(--card-bg);
}

.product-card h4 {
    font-weight: 600;
    color: var(--foreground);
    font-size: var(--text-sm);
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ============================================
   Info Box
   ============================================ */

.info-box {
    padding: 1rem;
    background-color: var(--primary-light);
    border: 1px solid rgba(27, 155, 138, 0.2);
    border-radius: var(--radius);
}

.info-box h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    font-size: var(--text-base);
}

.info-box p {
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}



/* Footer */ .footer { background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%); color: white; padding: 80px 20px 40px; } 
.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 20px; 
    max-width: 1440px; 
    margin: 0 auto 20px; 
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.2); 
} 
.footer-column h4 { font-size: 20px; margin-bottom: 20px; font-weight: 700; } 
.footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 12px; } 
.footer-column a { color: white; text-decoration: none; font-size: 14px; transition: opacity 0.3s; } 
.footer-column a:hover { opacity: 0.8; } .footer-logo { max-width: 150px; margin-bottom: 20px; } 
.social-links { display: flex; gap: 15px; margin-top: 15px; } 
.social-links a { display: inline-block; } 
.social-links img { width: 24px; height: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; max-width: 1440px; margin: 0 auto; padding-top: 20px; font-size: 14px; } 

/* Contact Modal */ 
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.7); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; padding: 20px; } 
.modal-overlay.active { opacity: 1; visibility: visible; } 
.modal-content { background: white; border-radius: 24px; padding: 40px; max-width: 600px; width: 100%; position: relative; transform: scale(0.9); transition: transform 0.3s ease; max-height: 90vh; overflow-y: auto; } 
.modal-overlay.active .modal-content { transform: scale(1); } 
.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 32px; color: #666; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s ease; } .modal-close:hover { background: #f5f5f5; color: #2ba188; }
.modal-close:hover { background: #f5f5f5; color: #2ba188; } 
.modal-content h2 { font-size: 32px; color: #2ba188; margin-bottom: 10px; font-weight: 700; } 
.modal-subtitle { color: #666; margin-bottom: 30px; font-size: 16px; } 
.contact-list { display: flex; flex-direction: column; gap: 16px; } 
.contact-item { display: flex; align-items: center; gap: 20px; padding: 20px; background: #f5f5f5; border-radius: 16px; text-decoration: none; color: #333; transition: all 0.3s ease; border: 2px solid transparent; } 
.contact-item:hover { background: #e8f5f2; border-color: #2ba188; transform: translateX(5px); } 
.contact-icon { width: 48px; height: 48px; background: #2ba188; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; } 
.contact-info h3 { font-size: 18px; font-weight: 700; color: #333; margin-bottom: 4px; } 
.contact-info p { font-size: 16px; color: #666; }