/* Base Styles */
:root {
    /* --primary-color: #FF7D00; */
    --primary-color: #67AE6E;
    /* --secondary-color: #FFA742; */
    --secondary-color: #90C67C;
    --dark-color: #333;
    --light-color: #f8f8f8;
    --gray-color: #777;
    --white-color: #fff;
    --black-color: #000;
    --section-bg: #f9f9f9;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px; /* Added padding for content inside full-width containers */
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* New style for larger buttons */
.btn-large {
    padding: 25px 45px; /* Increased padding significantly */
    font-size: 1.4em; /* Larger font size */
    box-shadow: var(--box-shadow); /* Added box shadow */
    border: 2px solid var(--primary-color); /* Added border */
}


.section-bg {
    background-color: var(--section-bg);
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--gray-color);
}

/* Header Styles */
#header {
    position: fixed; /* Ensures header is sticky */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* High z-index to stay on top */
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px; /* Ensure consistent padding on desktop */
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex; /* Default for desktop nav */
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen to the right */
    width: 300px;
    height: 100%;
    background-color: var(--white-color);
    z-index: 1000;
    transition: right 0.3s ease; /* Smooth transition for sliding */
    overflow-y: auto;
    display: flex; /* Use flexbox for internal layout */
    flex-direction: column;
}

.mobile-menu.active {
    right: 0; /* Slide in */
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0; /* Prevent header from shrinking */
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}

.mobile-menu-nav {
    flex-grow: 1; /* Allow navigation to take available space */
}

.mobile-menu-nav ul {
    /* Ensure the ul inside mobile menu is displayed */
    display: block; /* Explicitly show the ul */
    width: 100%;
    padding: 0; /* Reset padding for mobile nav ul */
    margin: 0; /* Reset margin for mobile nav ul */
}

.mobile-menu-nav ul li {
    border-bottom: 1px solid #eee;
    margin-left: 0; /* Reset margin for mobile nav li */
}

.mobile-menu-nav ul li a {
    display: block;
    padding: 15px 20px;
    font-weight: 500;
    text-align: left; /* Ensure links are left-aligned */
}

.mobile-menu-nav ul li a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 125, 0, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('assets/hero.png')
                no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-align: center;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 80px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 40px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.7);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center; /* Added for horizontal centering */
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    transition: var(--transition);
    width: 100%;
    height: auto;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-highlights {
    display: grid;
    /* Adjusted minmax for better responsiveness: try 2 columns, fall to 1 if needed */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(50, 255, 0, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    flex-wrap: wrap;
    min-height: 80px;
}

.about-highlight-item:hover {
    background-color: rgba(50, 255, 0, 0.2);
    transform: translateY(-5px);
}

.about-highlight-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
    flex-grow: 0;
}

.about-highlight-item span {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
}

/* NEW: Our Process Section */
.our-process-section {
    padding: 100px 0;
    background-color: var(--section-bg);
}

.our-process-section h2,
.our-process-section p.text-center {
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.our-process-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.process-steps-vertical {
    display: flex;
    flex-direction: column; /* Stack vertically */
    gap: 60px; /* Increased gap between steps */
    margin-top: 50px;
    align-items: center; /* Center cards horizontally */
}

.process-step-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    max-width: 900px; /* Limit width for better readability in vertical flow */
    margin: 0 auto; /* Center the cards */
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step-card p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.process-gallery {
    display: flex; /* Changed from grid to flex */
    flex-wrap: wrap;
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    gap: 15px;
    margin-top: 20px;
}

.process-gallery img,
.process-gallery video {
    flex: 1 1 calc(33.333% - 15px); /* Three columns with gap */
    max-width: calc(33.333% - 15px);
    height: 250px; /* Increased height as requested */
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-gallery img:hover,
.process-gallery video:hover {
    transform: scale(1.05);
}

/* Specific styling for the new 'Format Produk Kami' card */
.process-formats-card {
    text-align: left; /* Align text within this card to left */
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-formats-card h3 {
    text-align: center; /* Center the main heading of this card */
}

.process-formats-card .format-subsection {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.process-formats-card .format-subsection h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-align: center; /* Center sub-headings */
}

.process-formats-card .format-subsection p {
    font-size: 15px;
    margin-bottom: 15px;
    text-align: center; /* Center sub-text */
}

/* Certificates Section (NEW) */
#certificates {
    padding: 80px 0;
    background-color: var(--light-bg);
    overflow: hidden; /* To handle potential negative margins/rotations without scrollbars */
}

.certificates h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.certificates-grid {
    display: flex;
    /* gap: 20px; Base gap between items */
    margin-top: 40px;
    position: relative; /* For absolute positioning if needed, or for child z-index */
}

.certificate-item {
    position: relative;
    width: 25vw;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease-in-out; /* Smooth transition for hover effects */
    transform-origin: center center; /* Ensure rotation/scale from center */
    /* Initial 'post-it' like scattering */
    margin: 10px; /* Add some base margin */
}

.certificate-item:nth-child(even) {
    transform: rotate(2deg);
    margin-left: -10px; /* Create slight overlap */
}

.certificate-item:nth-child(odd) {
    transform: rotate(-3deg);
    margin-right: -10px; /* Create slight overlap */
}

.certificate-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the div */
    transition: transform 0.4s ease-in-out; /* Smooth filter and transform transitions */
}

.certificate-item:hover img {
    filter: grayscale(0%); /* Colorize */
    transform: scale(1.02); /* Slight scale to emphasize colorization */
}

.certificate-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    text-align: center;
    opacity: 0; /* Hidden initially */
    transition: opacity 0.4s ease-in-out;
    transform: translateY(100%); /* Start off-screen */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Cover full height initially for text centering */
}

.certificate-overlay .certificate-text {
    margin: 0;
    font-weight: 600;
    font-size: 1.2em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis if text overflows */
    color: var(--light-color);

}

/* Hover Effects */
.certificate-item:hover {
    transform: scale(1.08); /* Zoom effect */
    z-index: 10; /* Bring hovered item to front */
}

.certificate-item:hover img {
    filter: grayscale(0%); /* Colorize */
    transform: scale(1.02); /* Slight scale to emphasize colorization */
}

.certificate-item:hover .certificate-overlay {
    opacity: 1; /* Show overlay */
    transform: translateY(0); /* Bring overlay into view */
    /* Optionally, if you want the text to appear from bottom only when hovered */
    height: auto; /* Adjust height to fit content on hover */
    padding: 20px 10px; /* Adjust padding on hover */
    bottom: 0;
    top: auto;
}

/* Quality Comparison Section */
.why-us-section {
    padding: 100px 0; /* Increased padding */
    background-color: #e6ffe6; /* Light green background for prominence */
    text-align: center;
    border-top: 5px solid var(--primary-color); /* Stronger border */
    border-bottom: 5px solid var(--primary-color); /* Stronger border */
    box-shadow: 0 10px 30px rgba(0, 128, 0, 0.2); /* More prominent shadow */
    position: relative; /* For potential pseudo-elements or animations */
    overflow: hidden; /* Ensure content stays within bounds with effects */
    transition: all 0.5s ease-in-out;
}

.why-us-section:hover {
    box-shadow: 0 15px 40px rgba(0, 128, 0, 0.3); /* Even stronger shadow on hover */
    transform: translateY(-5px);
}

.why-us-section h2.section-title {
    font-size: 3em; /* Larger font size */
    margin-bottom: 60px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
    animation: fadeInDown 1s ease-out; /* Animation for title */
}

.why-us-section h2.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px; /* Wider underline */
    height: 6px; /* Thicker underline */
    background-color: var(--primary-color);
    border-radius: 3px;
}

.why-us-content {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-side,
.solution-side,
.warning-legal-info-card { /* Include the new card here */
    flex: 1;
    min-width: 300px;
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: left;
    transition: var(--transition);
}

.problem-side h3,
.solution-side h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

/* Styling for the main paragraph under problem-side h3 */
.problem-side > p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 30px;
    text-align: center;
}

/* Warning groups for section 2 */
.warning-group {
    margin-bottom: 30px; /* Space between groups */
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    background-color: var(--section-bg);
}

.warning-group h4 {
    font-size: 1.4em;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.warning-group .warning-description {
    font-size: 0.95em;
    color: var(--gray-color);
    margin-bottom: 20px;
    text-align: center;
}


/* Quality Comparison - direct image grid */
.problem-side .image-grid {
    display: grid; /* Changed to grid */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid, min 200px */
    gap: 20px; /* Adjusted for multiple images */
    margin-bottom: 0; /* Reset margin */
}

.problem-side .image-item {
    text-align: center;
    cursor: default; /* No longer clickable for lightbox */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-side .image-item:hover {
    transform: none; /* No transform on hover since no lightbox */
    box-shadow: none; /* No shadow change on hover */
}

.problem-side .image-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.problem-side .image-item img:hover {
    transform: scale(1.03);
}

.problem-side .image-item p {
    font-size: 1em;
    color: var(--gray-color);
    font-weight: 500;
}

.solution-side .solution-main-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.solution-side p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.solution-side p strong {
    color: var(--primary-color);
}

.solution-highlights {
    margin-top: 25px;
    margin-bottom: 30px;
}

.solution-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--dark-color);
}

.solution-highlights .highlight-item i {
    font-size: 1.5em;
    color: var(--primary-color);
}

/* NEW: Card for warning and legal info */
.warning-legal-info-card {
    flex-basis: 100%; /* Make it take full width */
    background-color: var(--white-color); /* Same as other cards */
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center; /* Center the text inside it */
    transition: var(--transition);
    margin-top: 40px; /* Space from above sections */
}

.warning-legal-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.warning-legal-info-card h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.warning-legal-info-card p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 25px;
}

/* Specific styling for the bolded and larger text in warning-legal-info-card */
.warning-text-bold .bold-highlight {
    font-weight: bold;
    color: var(--dark-color); /* Ensure visibility */
}

.warning-text-bold .super-bold-large {
    font-weight: bold;
    font-size: 1.3em; /* Make it larger */
    color: red; /* Highlight with red for warning */
    display: block; /* Ensure it takes its own line if needed */
    margin-top: 10px; /* Space from the previous bold part */
}


/* NEW: Critical Info Text for "Semua Makanan Beku wajib memiliki izin edar" */
.critical-info-text {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    gap: 15px;
    background-color: #e0f2f7; /* Light blue background */
    border: 3px solid #007bff; /* Blue border */
    padding: 25px 30px; /* Larger padding */
    border-radius: var(--border-radius);
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2); /* Blue shadow */
    color: #007bff; /* Blue text color */
    text-align: center;
    font-size: 1.6em; /* Significantly larger font */
    font-weight: 700; /* Bold */
    line-height: 1.5;
    animation: pulse 1.5s infinite; /* Add a pulse animation */
}

.critical-info-text .info-icon {
    font-size: 3em; /* Larger icon */
    color: #007bff; /* Blue icon */
    flex-shrink: 0;
}

.critical-info-text p {
    margin: 0;
    color: #007bff; /* Ensure paragraph text is also blue */
}

.blue{
    color: #007bff;
}

.red{
    color: #ff0000 !important;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}


/* Animations (assuming you have a fade-in class in script.js) */
.why-us-section .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.why-us-section.active .fade-in {
    opacity: 1;
    transform: translateY(0);
}

.why-us-section.active .problem-side {
    transition-delay: 0.2s;
}

.why-us-section.active .solution-side {
    transition-delay: 0.4s;
}

.why-us-section.active .warning-legal-info-card { /* Add delay for new card */
    transition-delay: 0.6s;
}

/* NEW: Info Box Styling (original one, still exists in other sections) */
.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(50, 125, 0, 0.1);
    border-left: 5px solid var(--primary-color); /* Primary color border on the left */
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-top: 30px; /* Space from content above */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
    text-align: left; /* Ensure text inside aligns left */
    font-size: 1em;
    line-height: 1.5;
}

.info-box .info-icon {
    color: var(--primary-color); /* Icon color matches primary */
    font-size: 1.8em;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.info-box p {
    margin: 0; /* Reset default paragraph margin */
    font-weight: 500;
}


/* NEW: Distribution Section */
.distribution-section {
    padding: 100px 0;
}

.distribution-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.distribution-section p.text-center {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 50px;
}

.distribution-content {
    display: flex; /* Changed from grid to flex */
    flex-wrap: wrap;
    justify-content: center; /* Center items horizontally */
    gap: 50px;
    margin-top: 50px;
}

.distribution-subsection {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    flex: 1; /* Allow items to grow/shrink */
    min-width: 300px; /* Ensure a minimum width */
}

.distribution-subsection:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.distribution-subsection h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.distribution-subsection p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.distribution-gallery {
    display: grid; /* Changed to grid for more structured image layout */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid for more images */
    gap: 15px;
    margin-top: 20px;
}

.distribution-gallery img,
.distribution-gallery video {
    width: 100%;
    height: 150px; /* Uniform height for distribution images/videos */
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.distribution-gallery img:hover,
.distribution-gallery video:hover {
    transform: scale(1.05);
}


/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.features {
    display: flex; /* Changed from grid to flex */
    flex-wrap: wrap;
    justify-content: center; /* Center items horizontally */
    gap: 30px;
}

.feature-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    flex: 1 1 calc(33.333% - 20px); /* For 3 columns, adjusted for gap */
    max-width: calc(33.333% - 20px); /* Max width for 3 columns */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(50, 125, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

.gallery h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--white-color);
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid; /* Kept as grid as requested */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    align-items: center;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    cursor: pointer; /* Indicate clickable */
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-caption { /* Removed as requested */
    display: none;
}

/* New Lightbox for Gallery */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 1002; /* Higher than other lightboxes */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.gallery-lightbox-content img,
.gallery-lightbox-content video {
    max-width: 100%;
    max-height: 80vh; /* Limit height to viewport height */
    display: block;
    margin: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close {
    color: var(--white-color);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
}

.gallery-lightbox-close:hover {
    color: var(--primary-color);
}


/* Testimonials Section (Enhanced) */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.testimonials-section p.text-center {
    margin-bottom: 50px;
    font-size: 18px;
    color: var(--gray-color);
}

/* Overall Product Rating Image */
.product-rating-overall {
    text-align: center;
    margin-bottom: 40px;
}

.product-rating-overall img {
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: inline-block; /* To center the image */
}

/* Customer Written Reviews Grid (now using testimonial-card template) */
.customer-reviews-combined-grid {
    display: flex; /* Changed from grid to flex */
    flex-wrap: wrap;
    justify-content: center; /* Center items horizontally */
    align-items: stretch; /* Stretch items to fill height if needed */
    gap: 30px;
    margin-bottom: 50px;
}

.customer-reviews-combined-grid .testimonial-card {
    /* Inherits most styles from .testimonial-card */
    padding: 15px; /* Adjusted padding for screenshot content */
    text-align: center;
    display: flex; /* Use flex to center content vertically */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 calc(50% - 15px); /* For 2 columns, adjusted for gap */
    max-width: calc(50% - 15px); /* Max width for 2 columns */
}

/* Removed testimonial header and avatar/stars from review cards */
.customer-reviews-combined-grid .testimonial-header,
.customer-reviews-combined-grid .testimonial-avatar {
    display: none;
}

.customer-reviews-combined-grid .review-screenshot {
    width: 100%;
    height: auto; /* Let height adjust to aspect ratio */
    min-height: 250px; /* Ensure a minimum height for consistency and larger display */
    object-fit: contain; /* Ensure entire screenshot is fully visible */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Automatic Moving Image Slider/Carousel for 5-star ratings */
.rating-carousel-container {
    margin-top: 60px;
    padding: 30px 0;
    background-color: var(--section-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden; /* Hide overflowing images */
    text-align: center;
}

.rating-carousel-container h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.rating-carousel {
    display: flex;
    white-space: nowrap; /* Prevent images from wrapping */
    /* No animation here. We'll control it with JavaScript for better accuracy */
}

.rating-carousel img {
    flex-shrink: 0; /* Prevent images from shrinking */
    width: 300px; /* Adjust width as needed */
    height: 200px; /* Fixed height to maintain proportionality */
    object-fit: contain; /* Ensure image content is fully visible */
    margin: 0 15px; /* Spacing between images */
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Removed pause animation on hover as requested */
/* .rating-carousel-container:hover .rating-carousel {
    animation-play-state: paused;
} */


/* Order Section */
.order-section {
    padding: 100px 0;
}

.order-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.order-steps {
    display: flex; /* Changed from grid to flex */
    flex-wrap: wrap;
    justify-content: center; /* Center items horizontally */
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    flex: 1 1 calc(33.333% - 20px); /* For 3 columns, adjusted for gap */
    max-width: calc(33.333% - 20px); /* Max width for 3 columns */
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.marketplace-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

/* Styles for larger marketplace buttons */
.marketplace-links.larger-buttons .marketplace-link {
    padding: 25px 45px; /* Further increased padding to match step boxes */
    font-size: 1.4em; /* Larger font */
    min-width: 250px; /* Ensure similar width to step boxes */
    justify-content: center; /* Center content within button */
    border: 2px solid #ddd; /* Add a subtle border */
}

.marketplace-links.larger-buttons .marketplace-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.marketplace-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.marketplace-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.marketplace-link img {
    width: 24px;
    height: 24px;
    /* Ensure icons are vertically aligned */
    vertical-align: middle;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex; /* Changed from grid to flex */
    flex-wrap: wrap;
    justify-content: space-around; /* Distribute items evenly */
    align-items: flex-start; /* Align items to the top */
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1 1 auto; /* Allow columns to grow and shrink */
    min-width: 200px; /* Minimum width for columns */
    max-width: 280px; /* Max width to prevent excessive stretching */
    margin-bottom: 20px; /* Added spacing between stacked columns */
    text-align: left; /* Default to left alignment */
}

.footer-column:last-child {
    margin-bottom: 0; /* No bottom margin for the last column */
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; /* Default to left for underline */
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column p {
    margin-bottom: 20px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column ul {
    padding-left: 0; /* Ensure no default padding for lists */
}

.footer-column ul li {
    margin-bottom: 15px;
    display: flex; /* Use flex for alignment */
    text-align: left; /* Ensure list items are left-aligned */
}

.footer-column ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.footer-column ul li a {
    word-break: break-all; /* Allow long emails to wrap */
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

/* Responsive Map Styles */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (default) */
    position: relative;
    height: 0;
    max-width: 100%; /* Ensure it doesn't exceed container width */
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0; /* Ensures no default border on iframe */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 14px;
}

/* Floating Social Buttons Container */
.floating-social-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px; /* Space between buttons */
    z-index: 100;
}

.social-float {
    width: 60px;
    height: 60px;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Specific colors for each button */
.whatsapp-float {
    background-color: #25D366; /* WhatsApp green */
}

.instagram-float {
    /* Instagram Gradient */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.shopee-float {
    background-color: #EE4D2D; /* Shopee orange */
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    /* About Highlights - Adjusted for more flexible 2-column on tablets */
    .about-highlights {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Try to keep 2 cols or more if space */
        gap: 15px; /* Slightly reduced gap */
    }

    .features {
        flex-direction: column; /* Stack features on smaller screens */
        align-items: center;
    }

    .feature-card {
        flex: 1 1 80%; /* Take more width on smaller screens */
        max-width: 400px; /* Limit max width */
    }

    .footer-content {
        flex-direction: column; /* Stack footer columns on smaller screens */
        align-items: center;
    }

    /* Footer Column Adjustments for Tablet/Mobile */
    .footer-column {
        width: 100%;
        min-width: 100%;
        text-align: center; /* Center text in stacked columns by default for general footer-column */
    }

    /* Specific override for Kontak Kami to be left-aligned on mobile */
    .footer-column:nth-child(2) { /* Assuming "Kontak Kami" is the second column */
        text-align: left;
    }

    .footer-column:nth-child(2) h3::after {
        left: 0; /* Align underline to left for Kontak Kami */
        transform: translateX(0);
    }

    .footer-column ul {
        align-items: flex-start; /* Align list items to the left */
        text-align: left; /* Ensure text alignment is left for ul */
    }

    .social-links {
        justify-content: center; /* Center social links */
    }

    .distribution-content {
        flex-direction: column; /* Stack distribution subsections */
        align-items: center;
    }

    .distribution-subsection {
        flex: 1 1 80%;
        max-width: 400px;
    }

    .process-gallery {
        flex-direction: column; /* Stack images on tablets */
        align-items: center;
    }

    .process-gallery img,
    .process-gallery video {
        flex: 1 1 90%; /* Take more width */
        max-width: 400px; /* Limit max width */
        height: 200px; /* Adjusted height for tablets */
    }

    .distribution-gallery {
        flex-direction: column; /* Stack images on tablets */
        align-items: center;
    }

    .distribution-gallery img,
    .distribution-gallery video {
        flex: 1 1 90%;
        max-width: 400px;
        height: 120px;
    }

    .customer-reviews-combined-grid {
        flex-direction: column; /* Stack reviews on tablets */
        align-items: center;
    }

    .customer-reviews-combined-grid .testimonial-card {
        flex: 1 1 80%;
        max-width: 400px;
    }

    .rating-carousel img {
        width: 250px; /* Adjust for tablets */
        margin: 0 10px;
    }

    /* Certificates responsive adjustments */
    .certificate-item {
        width: 45vw; /* Make them wider on tablets */
        height: 180px; /* Adjust height */
    }

    /* Larger buttons responsive adjustment */
    .marketplace-links.larger-buttons .marketplace-link {
        padding: 20px 35px; /* Adjust for tablets */
        font-size: 1.2em;
        min-width: 220px;
    }
    .marketplace-links.larger-buttons .marketplace-link img {
        width: 30px;
        height: 30px;
    }
    .btn-large {
        padding: 20px 35px; /* Adjust for tablets */
        font-size: 1.2em;
    }

    .warning-legal-info-card {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }

    /* Why Us section adjustments */
    .why-us-section h2.section-title {
        font-size: 2.5em;
        margin-bottom: 50px;
    }
    .why-us-section h2.section-title::after {
        width: 100px;
    }
    .critical-info-text {
        font-size: 1.4em; /* Adjust for tablets */
        padding: 20px 25px;
    }
    .critical-info-text .info-icon {
        font-size: 2em;
    }

    /* Map on smaller tablets */
    .map-responsive {
        padding-bottom: 75%; /* Taller for tablets */
    }

    /* Floating Social Buttons for tablets */
    .floating-social-buttons {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
    .social-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .order-steps {
        flex-direction: column; /* Stack order steps on mobile */
        align-items: center;
    }

    .step {
        flex: 1 1 90%;
        max-width: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Certificates specific responsive adjustments */
    .certificates-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px; /* Increase gap for vertical stacking */
    }

    .certificate-item {
        width: 80%; /* Make them wider on smaller screens */
        height: auto; /* Adjust height automatically */
        max-width: 400px; /* Max width to prevent excessive stretching */
        transform: none !important; /* Remove initial rotations */
        margin: 0 !important; /* Remove negative margins */
    }

    .certificate-item:hover {
        transform: scale(1.05) !important; /* Slightly less aggressive zoom */
    }

    .certificate-item:nth-child(even),
    .certificate-item:nth-child(odd) {
        transform: none; /* Reset rotations */
        margin: 0; /* Reset margins */
    }

    /* Quality Comparison Section */
    .why-us-content {
        flex-direction: column;
        align-items: center;
    }

    .problem-side,
    .solution-side,
    .warning-legal-info-card { /* Apply width for all cards */
        width: 90%;
        max-width: 600px;
    }

    /* Mobile ordering for "Why Us" section */
    .order-mobile-1 { order: 1; } /* Waspada Produk Nangka */
    .order-mobile-2 { order: 2; } /* Penting: Peraturan & Keamanan Pangan */
    .order-mobile-3 { order: 3; } /* Nangka Premium: Berkualitas dan Higienis */


    .why-us-section h2.section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .problem-side h3,
    .solution-side h3 {
        font-size: 1.6em;
    }

    .problem-side .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjust for mobile, allow 2 columns if space */
        gap: 15px;
    }

    .problem-side .image-item {
        flex: 1 1 calc(50% - 15px); /* Keep 2 columns on most mobiles */
        max-width: unset; /* Remove max-width here */
    }

    .problem-side .image-item img {
        height: 150px;
    }

    /* Info Box Responsive */
    .info-box {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }

    /* Removed lightbox-specific styles as they are no longer used for warnings */
    /* .lightbox-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .lightbox-gallery-grid img {
        height: 150px;
    } */

    /* New Sections */
    .our-process-section h2,
    .complete-process-section h2,
    .distribution-section h2 {
        font-size: 30px;
    }

    .process-step-card h3,
    .distribution-subsection h3 {
        font-size: 20px;
    }

    .process-gallery {
        flex-direction: column; /* Stack images on tablets */
        align-items: center;
    }

    .process-gallery img,
    .process-gallery video {
        flex: 1 1 100%; /* Take more width */
        max-width: 400px; /* Limit max width */
        height: 200px; /* Adjusted height for mobile */
    }

    .distribution-gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjust for mobile, more columns if space */
        gap: 10px;
    }

    .distribution-gallery img,
    .distribution-gallery video {
        flex: 1 1 calc(50% - 10px); /* Make them larger on single column mobile view */
        max-width: unset;
        height: 100px;
    }

    .rating-carousel img {
        width: 200px; /* Adjust for tablets */
        margin: 0 8px;
    }

    /* Larger buttons responsive adjustment for smaller tablets */
    .marketplace-links.larger-buttons .marketplace-link {
        padding: 18px 30px; /* Smaller padding for smaller tablets */
        font-size: 1.1em;
        min-width: 200px;
    }
    .marketplace-links.larger-buttons .marketplace-link img {
        width: 28px;
        height: 28px;
    }
    .btn-large {
        padding: 18px 30px; /* Smaller padding for smaller tablets */
        font-size: 1.1em;
    }

    .warning-legal-info-card {
        padding: 25px;
    }

    .critical-info-text {
        font-size: 1.2em; /* Further adjust for smaller tablets */
        padding: 18px 20px;
    }
    .critical-info-text .info-icon {
        font-size: 2em;
    }

    /* Map on phones and smaller tablets */
    .map-responsive {
        padding-bottom: 85%; /* Taller for phones/small tablets */
    }

    /* Floating Social Buttons for phones */
    .floating-social-buttons {
        bottom: 15px;
        right: 15px;
        gap: 6px;
    }
    .social-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    /* Header/Nav adjustment for very small screens */
    .header-container {
        height: 70px; /* Slightly smaller header */
        padding: 0 15px; /* More padding from edges */
    }
    .logo {
        font-size: 22px;
    }
    .mobile-menu {
        width: 250px; /* Smaller mobile menu width */
    }
    .mobile-menu-header {
        padding: 15px;
    }
    .mobile-menu-nav ul li a {
        padding: 12px 15px;
    }

    .features {
        flex-direction: column; /* Revert to 1 column for very small screens */
    }

    .footer-content {
        flex-direction: column; /* Revert to 1 column for very small screens */
        align-items: center; /* Center footer columns again for tiny screens */
    }

    .footer-column {
        width: 100%;
        min-width: 100%;
        /* text-align: center; Removed centering here to apply left-align consistently below */
    }

    /* Ensure Kontak Kami and all other columns align left on smallest screens */
    .footer-column:nth-child(1), /* Nangka Premium */
    .footer-column:nth-child(2), /* Kontak Kami */
    .footer-column:nth-child(3), /* Marketplace */
    .footer-column:nth-child(4) { /* Lokasi Kami */
        text-align: left; /* Align all footer columns to left on very small screens */
    }

    .footer-column h3::after {
        left: 0; /* Align underline to left for all columns on smallest screens */
        transform: translateX(0);
    }

    .footer-column ul {
        align-items: flex-start; /* Align list items to the left for very small screens */
        text-align: left; /* Ensure text alignment is left for ul items */
    }

    .social-links {
        justify-content: flex-start; /* Align social links to left on smallest screens */
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px; /* Adjust for very small screens */
    }

    .certificate-item {
        width: 95%; /* Even wider on very small screens */
    }

    /* Quality Comparison Section */
    .why-us-section h2.section-title {
        font-size: 1.8em;
    }

    .problem-side,
    .solution-side,
    .warning-legal-info-card {
        padding: 25px;
    }

    .problem-side h3,
    .solution-side h3 {
        font-size: 1.4em;
    }

    .problem-side .image-grid {
        grid-template-columns: 1fr; /* Stack on smallest screens */
        gap: 10px;
    }

    .problem-side .image-item {
        width: 100%;
        max-width: unset;
    }

    .problem-side .image-item img {
        height: 180px; /* Make them larger on single column mobile view */
    }

    /* Info Box Responsive */
    .info-box {
        padding: 12px 15px;
        font-size: 0.9em;
    }
    .info-box .info-icon {
        font-size: 3em;
    }

    /* Removed lightbox-specific styles */
    /* .lightbox-content {
        padding: 20px;
        max-width: 95%;
    }
    .lightbox-close {
        font-size: 30px;
        top: 10px;
        right: 15px;
    }
    .lightbox-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .lightbox-gallery-grid img {
        height: 200px;
    } */

    /* New Sections */
    .our-process-section h2,
    .complete-process-section h2,
    .distribution-section h2 {
        font-size: 26px;
    }

    .process-step-card h3,
    .distribution-subsection h3 {
        font-size: 20px;
    }

    .process-gallery {
        flex-direction: column; /* Ensure stacked on smallest screens */
    }

    .process-gallery img,
    .process-gallery video {
        flex: 1 1 100%;
        max-width: 100%;
        height: 200px; /* Adjusted height for mobile */
    }

    .distribution-gallery {
        grid-template-columns: 1fr; /* Stack on smallest screens */
        gap: 10px;
    }

    .distribution-gallery img,
    .distribution-gallery video {
        flex: 1 1 100%;
        max-width: 100%;
        height: 150px; /* Make them larger on single column mobile view */
    }

    .rating-carousel img {
        width: 180px; /* Further adjust for very small mobile */
        margin: 0 5px;
    }

    /* Larger buttons responsive adjustment for smallest mobile */
    .marketplace-links.larger-buttons .marketplace-link {
        padding: 15px 25px; /* Smaller padding for smallest mobile */
        font-size: 1em;
        min-width: unset; /* Remove min-width for very small screens */
    }
    .marketplace-links.larger-buttons .marketplace-link img {
        width: 25px;
        height: 25px;
    }
    .btn-large {
        padding: 15px 25px; /* Smaller padding for smallest mobile */
        font-size: 1em;
    }

    .warning-legal-info-card {
        padding: 20px;
    }

    .critical-info-text {
        font-size: 1em; /* Smallest font size for very small mobiles */
        padding: 15px 15px;
    }
    .critical-info-text .info-icon {
        font-size: 2em;
    }

    /* Map on very small phones */
    .map-responsive {
        padding-bottom: 100%; /* Even taller for very narrow screens, nearly square */
    }

    /* Floating Social Buttons for very small phones */
    .floating-social-buttons {
        bottom: 10px;
        right: 10px;
        gap: 5px;
    }
    .social-float {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
