/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.specs-table th,
.specs-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.specs-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.specs-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specs-table tr:hover {
    background-color: #f1f8fe;
}

/* Responsive Design */
@media (max-width: 768px) {
    .specs-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Alternatif untuk tabel responsif yang lebih baik */
@media (max-width: 600px) {
    .specs-table {
        display: block;
    }
    
    .specs-table thead {
        display: none;
    }
    
    .specs-table tr {
        display: block;
        margin-bottom: 15px;
        border-bottom: 2px solid #e0e0e0;
    }
    
    .specs-table td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px solid #eee;
        border-right: none;
    }
    
    .specs-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        font-weight: 600;
        text-align: left;
        color: #2c3e50;
    }
}


/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Article Content Styles */
.article-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 10px;
    margin-bottom: 40px;
}

.article-header {
    margin-bottom: 30px;
}

.article-header h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-header .meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
}

.article-body h2 {
    color: #3498db;
    margin: 30px 0 15px;
    font-size: 1.6rem;
}

.article-body h3 {
    color: #e74c3c;
    margin: 25px 0 12px;
    font-size: 1.3rem;
}

.article-body p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.article-body ul, .article-body ol {
    margin: 15px 0 15px 30px;
}

.article-body li {
    margin-bottom: 8px;
}



/* Card Styles */
.info-card {
    background-color: #f0f8ff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
}

.info-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

        .cause-card {
            width: 100%;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            border-top: 3px solid #3498db;
        }

        .cause-card h4 {
            color: #e74c3c;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .cause-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin: 10px 0;
        }

.types-container {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
}

.type-card {
    width: 48%;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.type-card h4 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin: 10px 0;
}

.cta-box {
    background-color: #e3f2fd;
    border-radius: 8px;
    padding: 25px;
    margin: 40px 0;
    text-align: center;
    border: 1px solid #bbdefb;
}

.cta-box h3 {
    color: #1976d2;
    margin-bottom: 15px;
}

/* Internal Links Container */
.internal-links-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.internal-links-title {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.internal-links-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #e74c3c, #3498db);
    border-radius: 3px;
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.internal-link-card {
    display: flex;
    background: white;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    border: 1px solid #e9ecef;
}

.internal-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.internal-link-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.internal-link-content {
    flex: 1;
}

.internal-link-card a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.internal-link-card a:hover {
    color: #3498db;
}

.internal-link-desc {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Ads Container */
.ads-container {
    background-color: #f8f9fa;
    border: 1px dashed #ccc;
    padding: 20px;
    text-align: center;
    margin: 40px 0;
    border-radius: 5px;
}

.ads-container p {
    color: #777;
    margin-bottom: 10px;
}

.ads-placeholder {
    background-color: #e9ecef;
    color: #6c757d;
    padding: 40px 20px;
    border-radius: 5px;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}
    
.article-table th, .article-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}
    
.article-table th {
    background-color: #f5f7fa;
    font-weight: 600;
    color: #2c3e50;
}
    
.article-table tr:hover {
    background-color: #f9f9f9;
}

/* Method Cards */
.method-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #3498db;
}

.method-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.method-card.natural {
    border-left-color: #2ecc71;
}

.method-card.medical {
    border-left-color: #e74c3c;
}

.method-title {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.method-title .icon {
    margin-right: 10px;
    font-size: 1.5rem;
}

.method-steps {
    margin-left: 20px;
}

.method-steps li {
    margin-bottom: 10px;
}

.warning-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.warning-box h4 {
    color: #ff9800;
    margin-bottom: 10px;
}

        .product-highlight {
            background-color: #e8f5e9;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            display: flex;
            align-items: center;
        }

        .product-highlight img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 20px;
        }

        .product-info h4 {
            color: #2e7d32;
            margin-bottom: 5px;
        }
        
        .mistake-item {
            background-color: #fff9f9;
            border-left: 4px solid #e74c3c;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

        .mistake-item h3 {
            color: #e74c3c;
        }
        
        .solution-box {
            background-color: #f0fff4;
            border-left: 4px solid #2ecc71;
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 8px 8px 0;
        }

        .solution-box h4 {
            color: #27ae60;
            margin-bottom: 10px;
        }
        
        .cause-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .cause-item {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #e74c3c;
        }

        .cause-item h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .cause-item h4 i {
            margin-right: 10px;
            color: #e74c3c;
        }

        @media (max-width: 600px) {
            .cause-list {
                grid-template-columns: 1fr;
            }
        }

.conclusion-box {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.conclusion-box h3 {
    color: #2e7d32;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .type-card {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-image {
        height: 250px;
    }
    
    .types-container .type-card {
        width: 100%;
    }
    
    .cause-list {
        grid-template-columns: 1fr;
    }
    
    .internal-links-grid {
        grid-template-columns: 1fr;
    }

    .internal-link-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .internal-link-img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        height: 120px;
    }
}


/* css/search-box.css */
/* Professional Search Box Styles */
.search-container {
    position: relative;
    margin-left: auto;
    margin-right: 20px;
    width: 680px;
    height: 40px;
    transition: all 0.3s ease;
}

.search-form {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 5px;
    height: 100%;
    min-height: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.2);
    border-color: #3498db;
    background: white;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    outline: none;
    color: #333;
    border-radius: 30px 0 0 30px;
    line-height: normal;
}

.search-input::placeholder {
    color: #95a5a6;
    opacity: 1;
}

.search-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    cursor: pointer;
    padding: 0 15px;
    height: 100%;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.search-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-1px);
}

.search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.search-icon svg {
    width: 18px;
    height: 18px;
}

.search-text {
    display: inline-block;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s;
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    color: #3498db;
    border-left-color: #3498db;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-highlight {
    font-weight: bold;
    background-color: #fff8c6;
    padding: 0 2px;
    border-radius: 2px;
}

.search-result-content {
    padding: 5px;
}

.search-result-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #1a0dab;
}

.search-result-content p {
    font-size: 0.9rem;
    color: #4d5156;
    margin-bottom: 5px;
    line-height: 1.4;
}

.search-result-url {
    color: #006621;
    font-size: 0.8rem;
    display: block;
    margin-top: 3px;
}

.search-loading {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    padding: 15px;
    text-align: center;
    margin-top: 5px;
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-results {
    padding: 15px;
    color: #7f8c8d;
    text-align: center;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1001;
    display: none;
    margin-top: -1px;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
    text-decoration: none;
    display: block;
}

.suggestion-item:hover, 
.suggestion-item.selected {
    background-color: #f5f5f5;
}

.suggestion-highlight {
    font-weight: bold;
    color: #3498db;
}

.search-pagination {
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid #eee;
    text-align: center;
}

.show-more-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 1280px) {
    .search-container {
        width: 630px;
    }
    
    .search-button {
        padding: 8px 10px;
    }
}

@media (max-width: 1024px) {
    .search-container {
        width: 388px;
    }
}

@media (max-width: 912px) {
    .search-container {
        width: 300px;
    }
    
    .search-text {
        display: none;
    }
}

@media (max-width: 853px) {
    .search-container {
        width: 250px;
    }
}

@media (max-width: 820px) {
    .search-container {
        width: 238px;
    }
}

@media (max-width: 768px) {
    .search-container {
        width: 100%;
        height: 40px;
        margin: 15px 0;
        order: 3;
    }
    
    .search-form {
        border-radius: 5px;
        min-height: 40px;
    }
    
    .search-input {
        border-radius: 5px 0 0 5px;
    }
    
    .search-button {
        border-radius: 0 5px 5px 0;
    }
}



/* Navigation Styles */
.navbar {
    background-color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    background: linear-gradient(to right, #e74c3c, #3498db);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);            
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 100;
    padding: 100;
}

.nav-item {
    margin-left: 20px;
    display: flex;        /* <--- ubah li jadi flex container */
    align-items: center;  /* <--- isi dalam li rata tengah */
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2c8a4a;
}

.nav-link.active {
    color: #3498db;
    font-weight: 600;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}
        
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        display: none;
        margin-top: 15px;
    }
    
    .nav-item {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .navbar-toggler {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
    }
    
    .navbar-nav.active {
        display: flex;
    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 30px;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    color: #ecf0f1;
    font-size: 0.9rem;
}




/* Additional CSS for this specific page */
.step-container {
    counter-reset: step-counter;
    margin: 30px 0;
}

.step-card {
    position: relative;
    background: white;
    padding: 25px 25px 25px 80px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #3498db;
}

.step-card::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.tip-box {
    background-color: #e8f5e9;
    border-left: 4px solid #2ecc71;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.tip-box h4 {
    color: #27ae60;
    margin-bottom: 10px;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.benefit-item {
    background: #f5f9ff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
}

.benefit-item i {
    color: #3498db;
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .benefit-list {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 20px 20px 20px 70px;
    }
}
        .table-responsive {
            overflow-x: auto;
            margin: 30px 0;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .comparison-table th, .comparison-table td {
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            text-align: left;
        }
        
        .comparison-table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .comparison-table tr:hover {
            background-color: #f1f1f1;
        }
        
        .brand-review {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #3498db;
        }
        
        .brand-review h3 {
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .brand-review strong {
            color: #e74c3c;
        }
        
        .recommendation-box {
            background-color: #e8f5e9;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .recommendation-box h3 {
            color: #2e7d32;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .comparison-table {
                font-size: 0.9rem;
            }
            
            .comparison-table th, .comparison-table td {
                padding: 8px 10px;
            }
        }
.myth-fact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.myth-card, .fact-card {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.myth-card {
    background-color: #fff0f0;
    border-left: 4px solid #e74c3c;
}

.fact-card {
    background-color: #f0fff4;
    border-left: 4px solid #2ecc71;
}

.myth-card h3, .fact-card h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.myth-card h3:before {
    content: "x";
    color: #e74c3c;
    margin-right: 10px;
    font-size: 1.5rem
}

.fact-card h3:before {
    content: "V";
    color: #2ecc71;
    margin-right: 10px;
    font-size: 1.5rem
}




.expert-quote {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.expert-quote p {
    font-style: italic;
    margin-bottom: 10px;
}

.expert-quote .expert-name {
    font-weight: 600;
    color: #2c3e50;
}

.tool-tip {
    background-color: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #bbdefb;
}

.tool-tip h4 {
    color: #1976d2;
    margin-bottom: 10px;
}

.product-recommendation {
    display: flex;
    align-items: center;
    background-color: #fff8f0;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #f39c12;
}

.product-recommendation img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.product-info h4 {
    color: #e67e22;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .myth-card, .fact-card {
        min-width: 100%;
    }
    
    .product-recommendation {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-recommendation img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


.weekly-schedule {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.day-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-top: 3px solid #3498db;
}

.day-card.rest-day {
    border-top-color: #7f8c8d;
}

.day-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
}

.workout-type {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.workout-type.light {
    background-color: #d5f5e3;
    color: #27ae60;
}

.workout-type.intense {
    background-color: #fadbd8;
    color: #e74c3c;
}

.workout-type.rest {
    background-color: #ebedef;
    color: #7f8c8d;
}

.meal-plan {
    margin: 30px 0;
}

.meal-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #3498db;
}

.meal-card h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.meal-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.meal-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.meal-time {
    font-weight: 600;
    color: #2c3e50;
    min-width: 100px;
}

.meal-desc {
    flex: 1;
}

.tip-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #f39c12;
}

.tip-card h3 {
    color: #f39c12;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .weekly-schedule {
        grid-template-columns: 1fr;
    }
}

.exercise-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.exercise-card h3 {
    color: #e74c3c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.exercise-card h3 .exercise-number {
    background-color: #e74c3c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.9em;
}

.exercise-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px 0;
}

.how-to-do {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.how-to-do h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.tips-box {
    background-color: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #3498db;
}

.tips-box h4 {
    color: #1976d2;
    margin-bottom: 10px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.schedule-table th, .schedule-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.schedule-table th {
    background-color: #3498db;
    color: white;
}

.schedule-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.schedule-table tr:hover {
    background-color: #e9e9e9;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.benefit-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.benefit-item i {
    color: #3498db;
    font-size: 1.5rem;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .exercise-image {
        height: 200px;
    }
}


    /* Additional CSS for kandungan-gizi-susu-soya.php */
    .nutrient-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    
    .nutrient-table th, .nutrient-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    
    .nutrient-table th {
        background-color: #3498db;
        color: white;
    }
    
    .nutrient-table tr:nth-child(even) {
        background-color: #f2f2f2;
    }
    
    .comparison-card {
        background-color: #fff;
        border-radius: 8px;
        padding: 20px;
        margin: 20px 0;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        border-left: 4px solid #2ecc71;
    }
    
    .benefit-icon {
        color: #27ae60;
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    .suitable-for {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin: 20px 0;
    }
    
    .suitable-item {
        flex: 1 1 200px;
        background-color: #e3f2fd;
        padding: 15px;
        border-radius: 8px;
        border-left: 4px solid #3498db;
    }
    
    .suitable-item h4 {
        color: #2c3e50;
        margin-bottom: 10px;
    }
    
/* Disclaimer Global Styles */
.disclaimer-global {
    background-color: #f8f9fa;
    border-left: 4px solid #e63946;
    padding: 1.25rem;
    margin: 2rem 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.disclaimer-global p {
    color: #495057;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.disclaimer-global a {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.disclaimer-global a:hover {
    color: #c1121f;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .disclaimer-global {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .disclaimer-global p {
        font-size: 0.8rem;
    }
}

/* Dark Mode Compatibility */
@media (prefers-color-scheme: dark) {
    .disclaimer-global {
        background-color: #2b2d42;
        border-left-color: #ef233c;
    }
    
    .disclaimer-global p {
        color: #edf2f4;
    }
    
    .disclaimer-global a {
        color: #ef233c;
    }
    
    .disclaimer-global a:hover {
        color: #d90429;
    }
}

.disclaimer-title {
    color: #e63946;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Dark Mode Compatibility for Title */
@media (prefers-color-scheme: dark) {
    .disclaimer-title {
        color: #ef233c;
    }
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 300px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

table thead tr {
  background-color: #2a52be;
  color: #ffffff;
  text-align: left;
}

table th,
table td {
  padding: 12px 15px;
  border: 1px solid #dddddd;
}

table tbody tr {
  border-bottom: 1px solid #dddddd;
}

table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

table tbody tr:last-of-type {
  border-bottom: 2px solid #2a52be;
}

table tbody tr:hover {
  background-color: #e6f2ff;
  cursor: default;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  table {
    font-size: 0.8em;
  }
  
  table th,
  table td {
    padding: 8px 10px;
  }
}






/* ===== STYLING UTAMA KOLOM KOMENTAR ===== */
.comment-form-container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.section-titles {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.section-subtitle {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
    font-weight: 400;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
    background-color: #fafafa;
    display: block;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #1976d2;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    display: block;
    color: #777;
    font-size: 13px;
    margin-top: 5px;
}

/* Rating Stars System */
.rating-container {
    margin-bottom: 25px;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 3px;
    margin-top: 5px;
}

.rating-stars input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.rating-stars label {
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    padding: 0 3px;
    transition: color 0.2s;
    position: relative;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #ffb400;
}

.rating-stars input[type="radio"]:checked ~ label {
    color: #ffb400;
}

.rating-stars input[type="radio"]:checked + label {
    color: #ffb400;
}

.rating-stars label:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 5px;
    z-index: 10;
}

.consent-container {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.consent-container input {
    margin-right: 10px;
}

.consent-container label {
    margin-bottom: 0;
    font-size: 14px;
}

.consent-container a {
    color: #1976d2;
    text-decoration: none;
}

.consent-container a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 30px;
}

.submit-comment {
    background-color: #1976d2;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
}

.submit-comment:hover {
    background-color: #1565c0;
}

.submit-icon {
    margin-right: 8px;
    font-size: 18px;
}

.form-note {
    display: block;
    color: #777;
    font-size: 13px;
    margin-top: 10px;
}

/* Comments Section Styles */

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.comments-header h3 {
    margin: 0;
    font-size: 22px;
    color: #333;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options span {
    font-size: 14px;
    color: #666;
}

#comments-sort {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
}

#comments-sort:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

.comments-section {
    margin-top: 50px;
}

.comment-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
    transition: all 0.2s ease;
    position: relative;
}

.comment-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.admin-comment {
    background-color: #f0f7ff;
    border-left: 3px solid #1976d2;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.user-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.user-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
    font-size: 16px;
}

.comment-date {
    font-size: 13px;
    color: #777;
}

.admin-badge {
    background-color: #1976d2;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 8px;
}

.comment-rating {
    color: #ffb400;
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.comment-content {
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 15px;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.upvote-btn, .downvote-btn, .reply-btn, .share-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.upvote-btn:hover, .downvote-btn:hover, .reply-btn:hover, .share-btn:hover {
    background-color: #f5f5f5;
    color: #333;
}

.upvote-btn:disabled, .downvote-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.upvote-icon, .downvote-icon {
    font-size: 16px;
}

.upvote-count, .downvote-count {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.reply-form-container {
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.reply-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reply-form input, .reply-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.reply-form textarea {
    min-height: 80px;
    resize: vertical;
}

.reply-form button {
    background-color: #1976d2;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    font-size: 14px;
    transition: background-color 0.2s;
}

.reply-form button:hover {
    background-color: #1565c0;
}

.see-more-replies {
    margin: 10px 0;
    text-align: center;
}

.see-more-btn {
    background: none;
    border: 1px solid #ddd;
    color: #4CAF50;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.see-more-btn:hover {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    background-color: #fafafa;
    margin: 20px 0;
}

/* Styling untuk tombol toggle replies */
.replies-toggle-container {
    margin-top: 15px;
    margin-bottom: 10px;
}

.toggle-replies-btn {
    background: none;
    border: none;
    color: #1976d2;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    font-weight: 500;
    transition: color 0.2s;
}

.toggle-replies-btn:hover {
    color: #1565c0;
    text-decoration: underline;
}

/* Collapsible replies */
.replies-container {
    margin-top: 10px;
    padding-left: 30px;
    border-left: 2px solid #f0f0f0;
}

.show-more-replies-container {
    text-align: center;
    margin: 15px 0;
}

.show-more-replies-btn {
    background: none;
    border: 1px solid #ddd;
    color: #4CAF50;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.show-more-replies-btn:hover {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.collapse-replies-btn {
    background: none;
    border: none;
    color: #1976d2;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    margin-top: 10px;
    font-weight: 500;
}

.collapse-replies-btn:hover {
    color: #1565c0;
    text-decoration: underline;
}

.collapse-icon {
    font-size: 16px;
    transition: transform 0.3s;
}

.collapse-icon.collapsed {
    transform: rotate(-90deg);
}

/* Styling untuk tombol hide replies di bagian bawah */
.hide-replies-container {
    text-align: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.hide-replies-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s;
}

.hide-replies-btn:hover {
    background-color: #f5f5f5;
    color: #333;
}

.hide-icon {
    font-size: 14px;
}

/* Styling untuk item balasan */
.reply-item {
    margin-bottom: 15px;
}

/* Pagination styling */
.pagination-container {
    margin-top: 40px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 6px;
    margin-bottom: 15px;
}

.pagination-btn, .pagination-btn.active {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn.active {
    background-color: #1976d2;
    color: white;
    border-color: #1976d2;
}



.pagination-btn:hover:not(.active) {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.pagination-dots {
    padding: 8px 6px;
    color: #999;
}

.pagination-info {
    color: #666;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .replies-container {
        padding-left: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .comments-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .comment-card {
        padding: 15px;
    }
    
    .comment-actions {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .replies-container {
        padding-left: 20px;
    }
    
    .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .rating-stars label {
        font-size: 24px;
    }
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .replies-container {
        padding-left: 15px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-form-container {
        padding: 20px;
    }
    
    .comment-card {
        padding: 12px;
    }
    
    .comment-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .user-avatar {
        margin-bottom: 10px;
    }
    
    .upvote-btn, .downvote-btn, .reply-btn, .share-btn {
        padding: 4px 8px;
    }
    
    .rating-stars label {
        font-size: 22px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
    }
}


.view-more-container {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.view-more-btn {
    background-color: #1976d2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.view-more-btn:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.view-more-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 480px) {
    .view-more-btn {
        width: 100%;
        padding: 14px 20px;
    }
}






/* Container untuk meta dan share */
.meta-share-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    width: 100%;
}

.meta {
    color: #7f8c8d;
    font-size: 14px;
}

/* Default: sembunyikan tombol share (mobile & tablet) */
.share-article-container {
    display: none;
}

/* Tampilkan hanya di desktop (&#8805;992px) */
@media (min-width: 992px) {
    .share-article-container {
        display: flex;
        align-items: center;
    }
}

.share-label {
    margin-right: 12px;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

/* Tombol Share */
.share-container {
    display: inline-block;
    position: relative;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    outline: none;
    padding: 0;
}

.share-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.share-button.active img {
    transform: rotate(45deg);
}

/* Dropdown Share */
.share-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    transform: scale(0.95);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 420px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.share-dropdown h3 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-weight: 600;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
    border: 1px solid transparent;
    min-width: 60px;
}

.share-option:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #e9ecef;
}

.share-option img {
    width: 22px;
    height: 22px;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.share-option:hover img {
    transform: scale(1.15);
}

.share-option span {
    font-size: 11px;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.copy-link-container {
    grid-column: 2 / 5;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.copy-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: auto;
    min-width: 140px;
    border: 1px solid #e9ecef;
}

.copy-link:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.copy-link img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
}

.copy-link span {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
}

/* Notifikasi */
.share-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeIn 0.5s, fadeOut 0.5s 2.5s forwards;
    z-index: 1000;
    font-size: 14px;
    font-weight: 500;
}

.share-notification img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
}

@keyframes fadeIn {
    from { opacity: 0; bottom: 0; }
    to { opacity: 1; bottom: 20px; }
}

@keyframes fadeOut {
    from { opacity: 1; bottom: 20px; }
    to { opacity: 0; bottom: 0; }
}

/* Responsif */
@media (max-width: 768px) {
    .share-dropdown {
        width: 360px;
        right: -20px;
        padding: 20px;
    }

    .share-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .copy-link-container {
        grid-column: 1 / -1;
    }

    .meta-share-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .share-dropdown {
        width: 320px;
        right: -40px;
        padding: 15px;
    }

    .share-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .meta-share-container {
        align-items: center;
    }

    .share-option {
        padding: 8px 4px;
    }

    .share-option img {
        width: 20px;
        height: 20px;
    }

    .share-option span {
        font-size: 10px;
    }

    .copy-link {
        min-width: 120px;
        padding: 8px 16px;
    }

    .copy-link span {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .share-dropdown {
        width: 300px;
        right: -30px;
    }

    .share-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Honeypot field styling */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}