@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-green: #15803d;
    --accent-purple: #581c87;
}

.product-main-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-purple);
    letter-spacing: -0.5px;
}

.product-subtitle {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
}

.lang-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    padding-bottom: 4px;
    border-bottom: 3px solid transparent;
}

.lang-btn.active {
    color: var(--accent-purple);
    border-bottom: 3px solid var(--accent-purple);
}

.product-image-container {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.product-image-container img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.section-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    border-left: 4px solid var(--primary-green);
    padding-left: 10px;
}

table { width: 100%; border-collapse: collapse; }
td { padding: 10px; border-bottom: 1px solid #f3f4f6; }
.spec-label { background-color: #f9fafb; font-weight: 600; color: #6b7280; width: 45%; }

.safety-box {
    background-color: #fffaf0;
    border: 1px dashed #fbd38d;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #744210;
    line-height: 1.5;
}

.safety-box strong {
    color: #9c4221;
    display: block;
    margin-bottom: 2px;
}

footer {
    background-color: #f9fafb;
    padding: 30px 24px;
    border-top: 1px solid #e5e7eb;
}

.footer-label { font-size: 0.6rem; font-weight: 800; color: #9ca3af; text-transform: uppercase; }
.footer-value { font-size: 0.9rem; font-weight: 700; color: #111827; }
.hidden { display: none; }