/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FCF5EE;
    --secondary-color: #FFC4C4;
    --accent-color-1: #EE6983;
    --accent-color-2: #850E35;
    --text-color: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-color-2);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color-1);
}

.product-count {
    font-size: 1rem;
    color: var(--accent-color-1);
    font-weight: normal;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
}

.shopee-badge {
    background-color: #EE6983;
}

.tiktok-badge {
    background-color: #850E35;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color-2);
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color-1);
}

.nav-link.active {
    color: var(--accent-color-2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color-2);
}

.cta-nav {
    background-color: var(--accent-color-1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.cta-nav:hover {
    background-color: var(--accent-color-2);
    color: var(--white);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-color-2);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: var(--white);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-heading {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color-2);
}

.hero-subheading {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-hero {
    display: inline-block;
    background-color: var(--accent-color-1);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid var(--accent-color-1);
}

.btn-hero:hover {
    background-color: transparent;
    color: var(--accent-color-1);
}

.hero-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(238, 105, 131, 0.15);
}

.hero-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 0.5s;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* Store Origin */
.store-origin {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.origin-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.origin-text {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.origin-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-item i {
    font-size: 3.5rem;
    color: var(--accent-color-2);
}

.logo-item span {
    font-weight: 600;
    color: var(--text-color);
}

/* ============================================= */
/* PRODUCTS SECTION - HALAMAN BERANDA (index.html) */
/* Grid dengan 2 baris dan scroll horizontal */
/* ============================================= */

.products-shopee, .products-tiktok {
    padding: 4rem 0;
    overflow: hidden;
}

.products-shopee {
    background-color: var(--white);
}

.products-tiktok {
    background-color: var(--primary-color);
}

/* Container untuk grid */
.products-grid-container {
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
}

/* GRID UTAMA dengan 2 BARIS TETAP */
.products-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    
    /* Auto columns */
    grid-auto-columns: minmax(350px, 1fr);
    
    padding: 1rem 0.5rem 1.5rem;
    
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1.5rem;
    
    width: fit-content;
    min-width: 100%;
}

/* Ukuran CARD PRODUK BESAR - Fixed size */
.product-card {
    width: 350px;
    height: 700px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* GAMBAR PRODUK LEBIH BESAR */
.product-image {
    height: 500px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.product-title {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.2rem;
    line-height: 1.5;
    margin: 0;
    flex-shrink: 0;
}

.product-price {
    color: var(--accent-color-2);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    flex-shrink: 0;
}

.btn-buy {
    background-color: var(--accent-color-1);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
    text-align: center;
    display: block;
    width: 100%;
    flex-shrink: 0;
}

.btn-buy:hover {
    background-color: var(--accent-color-2);
    transform: translateY(-2px);
}

/* Scrollbar styling untuk GRID */
.products-grid::-webkit-scrollbar {
    height: 8px;
}

.products-grid::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 4px;
    margin: 0 10px;
}

.products-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color-1);
    border-radius: 4px;
}

.products-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color-2);
}

/* Indikator scroll */
.scroll-indicator {
    text-align: center;
    margin-top: 0.8rem;
    color: var(--light-text);
    font-size: 0.9rem;
    display: none;
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--accent-color-2);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid var(--secondary-color);
}

.btn-view-all:hover {
    background-color: transparent;
    color: var(--accent-color-2);
    transform: translateY(-3px);
}

/* About Product */
.about-product {
    padding: 4rem 0;
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: 1.05rem;
}

.about-text h3 {
    color: var(--accent-color-2);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.advantages {
    margin-bottom: 2rem;
}

.advantages li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.advantages i {
    color: var(--accent-color-1);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.advantages strong {
    color: var(--accent-color-2);
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
}

.faq-question {
    padding: 1.2rem 2rem 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-color-2);
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color-1);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--light-text);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Contact Home */
.contact-home {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.contact-slider {
    flex: 1;
    position: relative;
}

.slider-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
}

.slider-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--accent-color-2);
    transition: all 0.3s;
}

.slider-btn:hover {
    background-color: var(--accent-color-1);
    color: var(--white);
}

.social-media {
    flex: 1;
}

.social-media h3 {
    color: var(--accent-color-2);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 500;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateX(5px);
}

.social-icon i {
    font-size: 1.3rem;
    color: var(--accent-color-1);
}

.contact-info {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: var(--accent-color-2);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-nav h3, .footer-social h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

.footer-cta {
    display: inline-block;
    background-color: var(--accent-color-1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 5px;
}

.footer-cta:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color-2);
}

.footer-social .social-icons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-social .social-icons a:hover {
    background-color: var(--accent-color-1);
    transform: translateY(-3px);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================= */
/* HALAMAN PRODUK (produk.html) */
/* SAMA SEPERTI HALAMAN BERANDA */
/* ============================================= */

.products-page {
    padding: 0 0 4rem 0;
    min-height: 100vh;
}

/* Page Header - STICKY */
.page-header {
    text-align: center;
    padding: 1.5rem 0;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.page-header.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 1rem 0;
}

.page-title {
    font-size: 2.2rem;
    color: var(--accent-color-2);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.page-header.scrolled .page-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.page-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.page-header.scrolled .page-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.page-header.scrolled .filter-buttons {
    margin-top: 0.8rem;
    gap: 0.8rem;
}

.filter-btn {
    background-color: var(--white);
    border: 2px solid var(--secondary-color);
    color: var(--accent-color-2);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color-2);
}

.page-header.scrolled .filter-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ============================================= */
/* ALL PRODUCTS GRID - SAMA SEPERTI HALAMAN BERANDA */
/* ============================================= */

.all-products-container {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
}

/* GRID dengan 2 BARIS dan SCROLL HORIZONTAL */
.all-products-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    
    grid-auto-columns: minmax(350px, 1fr);
    
    padding: 1rem 0.5rem 1.5rem;
    
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1.5rem;
    
    width: fit-content;
    min-width: 100%;
}

/* CARD PRODUK dengan ukuran FIXED */
.all-products-grid .product-card {
    width: 350px;
    height: 700px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.all-products-grid .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.all-products-grid .product-image {
    height: 500px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.all-products-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}

.all-products-grid .product-card:hover .product-image img {
    transform: scale(1.08);
}

.all-products-grid .product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.all-products-grid .product-title {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.2rem;
    line-height: 1.5;
    margin: 0;
    flex-shrink: 0;
}

.all-products-grid .product-price {
    color: var(--accent-color-2);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    flex-shrink: 0;
}

.all-products-grid .btn-buy {
    background-color: var(--accent-color-1);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
    text-align: center;
    display: block;
    width: 100%;
    flex-shrink: 0;
}

.all-products-grid .btn-buy:hover {
    background-color: var(--accent-color-2);
    transform: translateY(-2px);
}

/* Scrollbar styling untuk halaman produk */
.all-products-grid::-webkit-scrollbar {
    height: 8px;
}

.all-products-grid::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 4px;
    margin: 0 10px;
}

.all-products-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color-1);
    border-radius: 4px;
}

.all-products-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color-2);
}

/* ============================================= */
/* STYLE KHUSUS UNTUK HALAMAN KONTAK */
/* ============================================= */

.contact-page {
    padding: 4rem 0;
    min-height: 100vh;
}

.contact-slider-full {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-full-track {
    display: flex;
    transition: transform 0.5s;
}

.slider-full-slide {
    min-width: 100%;
    height: 400px;
}

.slider-full-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-full-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.contact-info {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    color: var(--accent-color-2);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background-color: var(--secondary-color);
    color: var(--accent-color-2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-text p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.social-section {
    margin-top: 2rem;
}

.social-section h4 {
    color: var(--accent-color-2);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--accent-color-2);
    font-weight: 500;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-message {
    margin-top: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* ============================================= */
/* RESPONSIVE DESIGN UNTUK SEMUA HALAMAN */
/* ============================================= */

/* Responsive untuk grid produk (beranda & produk) */
@media (max-width: 768px) {
    /* Scroll indicator */
    .scroll-indicator {
        display: block;
    }
    
    /* Grid produk beranda */
    .products-grid {
        grid-auto-columns: minmax(300px, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        width: 300px;
        height: 580px;
    }
    
    .product-image {
        height: 380px;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    /* Grid produk halaman produk */
    .all-products-grid {
        grid-auto-columns: minmax(300px, 1fr);
        gap: 1rem;
    }
    
    .all-products-grid .product-card {
        width: 300px;
        height: 580px;
    }
    
    .all-products-grid .product-image {
        height: 380px;
    }
    
    .all-products-grid .product-info {
        padding: 1.2rem;
    }
    
    /* Page header halaman produk */
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-header.scrolled .page-title {
        font-size: 1.5rem;
    }
}

/* Untuk mobile sangat kecil */
@media (max-width: 480px) {
    /* Grid produk beranda */
    .products-grid {
        grid-auto-columns: minmax(280px, 1fr);
    }
    
    .product-card {
        width: 280px;
        height: 450px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    /* Grid produk halaman produk */
    .all-products-grid {
        grid-auto-columns: minmax(280px, 1fr);
    }
    
    .all-products-grid .product-card {
        width: 280px;
        height: 450px;
    }
    
    .all-products-grid .product-image {
        height: 250px;
    }
    
    .all-products-grid .product-title {
        font-size: 1rem;
    }
    
    .all-products-grid .product-price {
        font-size: 1.3rem;
    }
    
    /* Page header halaman produk */
    .page-title {
        font-size: 1.6rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .page-header.scrolled .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Responsive Design untuk bagian lain */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 2.4rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-social {
        grid-column: span 2;
    }
    
    /* Halaman kontak */
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-slider-full {
        height: 350px;
    }
}

@media (max-width: 768px) {
    /* Mobile menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        z-index: 999;
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: transparent;
        border: none;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--accent-color-2);
        z-index: 1000;
    }
    
    .nav-toggle:hover {
        color: var(--accent-color-1);
    }
    
    .nav-toggle i {
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active ~ .nav-toggle i.fa-bars {
        transform: rotate(90deg);
    }
    
    /* Hero section */
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    /* Contact section */
    .contact-content {
        flex-direction: column;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.7rem;
    }
    
    /* Halaman kontak */
    .contact-slider-full {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        grid-column: span 1;
    }
    
    .origin-logos {
        gap: 2rem;
    }
    
    .logo-item i {
        font-size: 2.8rem;
    }
}
