/* 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;
}

.product-recommendation {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* css/search-box.css */
/* Professional Search Box Styles */
.search-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 650px;
    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: 420px;
		margin-left: 25px;
    }
}

@media (max-width: 912px) {
    .search-container {
        width: 350px;
        margin-left: 20px;
    }
}

@media (max-width: 853px) {
    .search-container {
        width: 315px;
        margin-left: 15px;
    }
}

@media (max-width: 820px) {
    .search-container {
        width: 278px;
        margin-left: 18px;
    }
}

@media (max-width: 768px) {
    .search-container {
        width: 100%;
        height: 40px;
        margin: 15px 0;
        margin-left: 10px;
        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;
		}
        

    	
    	
        /* 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;
        }
        
        .copyright {
            color: #ecf0f1;
            font-size: 0.9rem;
        }
        

		/* Ads Container */
		.ads-container {
    		background-color: #f8f9fa;
    		border: 1px dashed #ccc;
    		padding: 20px;
    		text-align: center;
    		margin: 40px 0;
    		border-radius: 5px;
		}     
        
        
        
		/* 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;
}

.affiliate-disclosure-notice {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    font-size: 13px;
    line-height: 1.6;
}

.affiliate-disclosure-notice a {
    color: #0288d1;
    text-decoration: underline;
}

.affiliate-disclaimer {
	font-size: 0.8em;
	color: #666;
	margin: 10px 0;
	margin-top: 10px;
	border-top: 1px dashed #ddd;
	padding-top: 10px;
	font-style: italic;
}

.limitations-container {
	margin: 25px 0;
	padding: 15px;
	background-color: #f9f9f9;
	border-radius: 8px;
	border-left: 4px solid #ff9800;
}

.limitations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-top: 20px;
}

.limitation-card {
	background: white;
	padding: 15px;
	border-radius: 6px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.limitation-icon {
	font-size: 24px;
	margin-bottom: 10px;
}

.limitation-card h3 {
	color: #333;
	font-size: 1.1rem;
	margin: 5px 0;
}

.limitation-card p {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.5;
}

.limitations-note {
	margin-top: 20px;
	padding: 10px;
	background-color: #e3f2fd;
	border-radius: 4px;
	font-size: 0.85rem;
}

.faq-limitations {
    list-style-type: square;
    padding-left: 20px;
    color: #555;
}
    
.faq-limitations li {
    margin-bottom: 8px;
}

/* Product Detail Styles */
.product-detail {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 30px;
}

.product-gallery {
    flex: 1;
    min-width: 300px;
}

.main-image {
    width: 100%;
    height: 425px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1px;
    background: #f8f9fa;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-title {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.1;
}

.product-price {
    font-size: 1.33rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #f39c12;
    margin-right: 10px;
    font-size: 1.2rem;
}

.rating-count {
    color: #7f8c8d;
    font-size: 1rem;
}

        .buy-button {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 10px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 8px;
            transition: all 0.3s;
            text-align: center;
        }

        .buy-button:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

.product-meta {
    margin: 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.meta-item i {
    margin-right: 8px;
    color: #3498db;
}

.product-content {
    margin-top: 40px;
}

.content-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #e74c3c, #3498db);
    border-radius: 3px;
}

.product-description {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.feature-list li:before {
    content: "&#10003";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.benefit-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefit-card-2 {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.benefit-card-2 h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefit-card-2 h4 i {
    margin-right: 10px;
    color: #2c8a4a;
}

.how-to-use {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.steps {
    margin: 25px 0;
    counter-reset: step-counter;
}

.step {
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.step:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.ingredient-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.ingredient-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ingredient-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
}

.review-section {
    margin-top: 40px;
}

.review-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.reviewer {
    font-weight: bold;
    color: #2c3e50;
}

.review-date {
    color: #95a5a6;
    font-size: 0.9rem;
}

.review-rating {
    color: #f39c12;
    margin: 5px 0;
}

.review-text {
    line-height: 1.6;
    color: #555;
}

.rating-summary {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.rating-average {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-right: 20px;
    font-weight: bold;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-label {
    width: 80px;
    color: #7f8c8d;
}

.rating-progress {
    flex: 1;
    height: 10px;
    background: #f1f1f1;
    border-radius: 5px;
    margin: 0 10px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #f39c12;
    border-radius: 5px;
}

.rating-percent {
    width: 40px;
    text-align: right;
    color: #7f8c8d;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question:after {
    content: "-";
}

.faq-question {
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 500;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 20px;
    background: white;
    color: #555;
    line-height: 1.7;
    display: none;
}

.faq-question:after {
    content: "+";
    font-size: 1.2rem;
    color: #3498db;
}

.faq-item.active .faq-answer {
    display: block;
}

        .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;
        }
        
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.specs-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    width: 30%;
}

@media (max-width: 768px) {
    .product-header {
        flex-direction: column;
    }
    
    .main-image {
        height: 300px;
    }
    
    .product-title {
        font-size: 1.6rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .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;
    }
    
    .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 Slider Produk - Diperbarui untuk 5 produk */
    .recommended-products {
        margin: 40px 0;
        position: relative;
        max-width: 1200px; /* Sesuai lebar website Anda */
        margin-left: auto;
        margin-right: auto;
    }
    
    .products-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .products-header h2 {
        color: #2c3e50
        margin: 0;
        font-size: 1.5em;
    }
    
    .page-indicator {
        font-size: 0.9em;
        color: #666;
    }
    
    .slider-container {
        position: relative;
        display: flex;
        align-items: center;
        padding: 0 40px; /* Ruang untuk tombol panah */
    }
    
    .product-slider {
        width: 100%;
        overflow: hidden;
    }
    
    .slider-track {
        display: flex;
        transition: transform 0.5s ease;
        gap: 13px; /* Jarak antar produk dikurangi */
        padding: 5px 0;
    }
    
    .slide {
        flex: 0 0 calc(19.5% - 6.8px); /* 5 produk per halaman */
        min-width: 0; /* Penting untuk mencegah overflow */
        text-decoration: none;
        color: #333;
        display: block;
        text-align: center;
        transition: transform 0.3s;
        background: white;
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);      
    }
    
    .slide .product-price {
        color: #e74c3c;
        font-weight: bold;
        margin: 5px 0;
        font-size: 0.9em;
    }
    
    .slide .product-rating {
        color: #f39c12;
        font-size: 0.88em;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 5px;
    }
    
    
    .slide:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
   .slide img {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1; /* Pastikan gambar persegi */
        object-fit: cover;
        border-radius: 5px;
        display: block;
        margin-bottom: 10px;
        background-color: #f9f9f9;
    }
    
    
	.slide span {
	    display: block;
	    font-size: 0.85em;
	    line-height: 1.3;
	    font-weight: 600;
	    padding: 0 2px;
	    /* Ganti dari white-space: nowrap; menjadi: */
	    white-space: normal;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    display: -webkit-box;
	    -webkit-line-clamp: 3; /* Batasi maksimal 3 baris */
	    -webkit-box-orient: vertical;
	    height: 3.88em; /* Sesuaikan dengan line-height */
	    margin-top: 5px;
	}
    
    .slider-arrow {
        background: white;
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s;
        border: none;
    }
    
    .slider-arrow:hover {
        background-color: #f5f5f5;
    }
    
    .slider-arrow:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .left-arrow {
        left: 0;
    }
    
    .right-arrow {
        right: 0;
    }
    
    /* Responsive Breakpoints */
    @media (max-width: 1100px) {
        .slide {
            flex: 0 0 calc(25% - 11px); /* 4 produk untuk layar sedang */
        }
    }
    
    @media (max-width: 1000px) {
        .slide {
            flex: 0 0 calc(24% - 5px); /* 4 produk untuk layar sedang */
        }
    }
    
    @media (max-width: 800px) {
        .slide {
            flex: 0 0 calc(30% - 7px); /* 3 produk untuk tablet */
        }
    }
    
    @media (max-width: 600px) {
        .slide {
            flex: 0 0 calc(47% - 5px); /* 2 produk untuk mobile besar */
        }
        
        .slider-arrow {
            width: 35px;
            height: 35px;
        }
    }
    
    @media (max-width: 500px) {
        .slide {
            flex: 0 0 calc(45% - 9.5px); /* 2 produk untuk mobile besar */
        }
        
        .slider-arrow {
            width: 35px;
            height: 35px;
        }
        
        .products-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }        
        
    }
    
    @media (max-width: 400px) {
        .slide {
            flex: 0 0 calc(97% - 15px); /* 1 produk untuk mobile kecil */
        }
        
        .products-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
    }
    
    @media (max-width: 350px) {
        .slide {
            flex: 0 0 calc(96% - 15px); /* 1 produk untuk mobile kecil */
        }
        
        .products-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 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;
    }
}


/* Professional Comment Section Styles */
.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;
}

.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;
}

.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;
}

/* Enhanced Rating Stars System */
.rating-container {
    margin-bottom: 25px;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse; /* Ini yang diubah */
    justify-content: flex-end; /* Ditambahkan */
    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;
}

/* Hover effect - preview selection */
.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #ffb400;
}

/* Selected stars */
.rating-stars input[type="radio"]:checked ~ label {
    color: #ffb400;
}

/* Current selected star */
.rating-stars input[type="radio"]:checked + label {
    color: #ffb400;
}

/* Tooltip on hover */
.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;
}

/* Rating descriptions (optional) */
.rating-descriptions {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 12px;
    color: #777;
}

.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-section {
    margin-top: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options span {
    font-size: 14px;
    color: #666;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
}

.review-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.average-rating {
    text-align: center;
    min-width: 150px;
}

.rating-value {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    display: block;
    line-height: 1;
}

.average-rating .stars {
    color: #ffb400;
    font-size: 20px;
    margin: 8px 0;
    letter-spacing: 2px;
}

.rating-counts {
    font-size: 14px;
    color: #666;
}

.rating-distribution {
    flex: 1;
}

.rating-bars {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.star-count {
    width: 60px;
    color: #666;
}

.bar-container {
    flex: 1;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin: 0 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: #ffb400;
    border-radius: 4px;
}

.percentage {
    width: 40px;
    text-align: right;
    color: #666;
}

.comments-list {
    margin-top: 20px;
}

.comment-card {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.comment-card:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background-color: #1976d2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
}

.user-name {
    font-weight: 500;
    color: #333;
}

.verified-buyer {
    font-size: 12px;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 10px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-rating {
    color: #ffb400;
    font-size: 16px;
}

.comment-date {
    color: #777;
    font-size: 13px;
}

.comment-title {
    font-size: 18px;
    color: #333;
    margin: 5px 0 10px;
    font-weight: 500;
}

.comment-text {
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}

.comment-text p {
    margin-bottom: 10px;
}

.comment-helpful {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.helpful-text {
    margin-right: 10px;
    font-size: 0.9em;
    color: #666;
}

.helpful-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.2s;
}

.helpful-btn:hover {
    background-color: #f5f5f5;
}

.helpful-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.report-link {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    margin-left: 10px;
}

.report-link:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 5px;
}

.pagination-btn,
.pagination-next {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    min-width: 36px;
    text-align: center;
}

.pagination-btn.active {
    background-color: #1976d2;
    color: white;
    border-color: #1976d2;
}

.pagination-btn:hover:not(.active),
.pagination-next:hover {
    background-color: #f5f5f5;
}

.pagination-ellipsis {
    padding: 8px 5px;
    color: #666;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #1976d2;
    border-radius: 4px;
}

.pagination a.active {
    background-color: #1976d2;
    color: white;
    border-color: #1976d2;
}

.pagination a:hover:not(.active) {
    background-color: #f5f5f5;
}

/* Error message styling */
.error-text {
    color: #e53935;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.no-reviews {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    background-color: #fafafa;
    margin: 20px 0;
}

.see-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1976d2;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin: 20px 0;
}

.see-more-btn:hover {
    background-color: #1565c0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .review-summary {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .rating-stars label {
        font-size: 24px;
    }
    
    .rating-descriptions {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .comment-form-container {
        padding: 20px;
    }
    
    .rating-stars label {
        font-size: 22px;
    }
    
    .rating-descriptions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .rating-descriptions span {
        flex: 1 0 40%;
        text-align: center;
    }
}








/* 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;
}