/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Color - Red */
    --primary-red: #CC1F26ff;
    --primary-red-dark: #B22222;
    --primary-red-light: #CC1F26ff;
    
    /* Secondary Colors */
    --secondary-black: #2C2C2C;
    --secondary-cream: #F5F5DC;
    --secondary-gray: #D3D3D3;
    
    /* Additional Colors */
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #FAFAFA;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* BARU: Font Khusus untuk Logo/Judul Utama (Great Vibes) */
    --logo-font: 'Manufacturing Consent', serif;
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    color: var(--white);
}

.logo-animation {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
}

.logo-animation img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.loading-text h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* PERUBAHAN: Terapkan font logo */
    font-family: var(--logo-font);
}

.loading-text p {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Loading dots animation */
.loading-text::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--white);
    margin-left: 8px;
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    80%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--logo-font);
}

.hero-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.coffee-beans {
    font-size: 8rem;
    color: var(--secondary-cream);
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

/* Products Section */
.products {
    padding: var(--section-padding);
    background: var(--background-light);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 25, 25, 0.658);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    min-width: 150px;
    justify-content: center;
}

.action-btn:hover {
    background: var(--secondary-cream);
    transform: translateY(-2px);
}

.action-btn.whatsapp:hover {
    background: #25D366;
    color: var(--white);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* Show More Section */
.show-more-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(220, 20, 60, 0.1);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.show-more-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.show-more-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
    border: 2px solid transparent;
}

.show-more-btn.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}

.show-more-btn.btn-primary:hover {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.4);
}

.show-more-btn.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.1);
}

.show-more-btn.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.4);
}

/* Loading and Error States */
.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.2rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.loading-spinner::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid var(--background-light);
    border-top: 3px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(220, 20, 60, 0.2);
}

.error-message i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.error-message p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-sold, .badge-rating {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge-rating {
    background: rgba(220, 20, 60, 0.9);
}

/* Product Details */
.product-category {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-weight, .product-origin {
    background: var(--background-light);
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-original-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Enhanced Product Card Hover */
.product-card:hover .product-badge {
    opacity: 0.8;
    transform: scale(0.95);
}

.product-card:hover .product-details {
    opacity: 0.9;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .product-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .product-badge {
        top: 5px;
        right: 5px;
    }
    
    .badge-sold, .badge-rating {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .show-more-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .show-more-btn {
        min-width: 250px;
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .show-more-section {
        margin-top: 2rem;
        padding: 2rem 1rem;
    }
    
    /* Loading screen mobile */
    .logo-animation {
        width: 150px;
        height: 150px;
        margin: 0 auto 1.5rem;
    }
    
    .loading-text h2 {
        font-size: 2rem;
    }
    
    .loading-text p {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--background-light);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-animation-about {
    width: 200px;
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-animation-about img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(220, 20, 60, 0.3));
    transition: var(--transition-smooth);
}

.logo-animation-about:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(220, 20, 60, 0.4));
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--secondary-black);
    color: var(--white);
}

.contact .section-header h2 {
    color: var(--white);
}

.contact .section-header p {
    color: var(--secondary-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(220, 20, 60, 0.2);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    min-width: 30px;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--secondary-gray);
}

.social-links h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--secondary-black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--secondary-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-gray);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-slogan {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .section-header p {
        font-size: 1.3rem;
    }
    
    .product-card {
        min-height: 400px;
    }
    
    .product-info h3 {
        font-size: 1.5rem;
    }
    
    .product-description {
        font-size: 1.1rem;
    }
    
    .about-text h2 {
        font-size: 3rem;
    }
    
    .about-text p {
        font-size: 1.2rem;
    }
    
    .contact-item h4 {
        font-size: 1.4rem;
    }
    
    .contact-item p {
        font-size: 1.1rem;
    }
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-slogan {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .section-header p {
        font-size: 1.2rem;
    }
    
    .product-info h3 {
        font-size: 1.4rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .about-text h2 {
        font-size: 2.8rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-slogan {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 0 30px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        min-width: 160px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-card {
        min-height: 350px;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
    }
    
    .product-description {
        font-size: 0.95rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .logo-animation-about {
        width: 180px;
        height: 180px;
        margin-top: 2rem;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .show-more-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .show-more-btn {
        min-width: 180px;
        font-size: 1rem;
        padding: 12px 20px;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-container {
        gap: 1.8rem;
        padding: 0 20px;
    }
    
    .btn {
        padding: 9px 18px;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .hero-image {
        display: none;
    }
    
    .coffee-beans {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        min-height: 320px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .logo-animation-about {
        width: 160px;
        height: 160px;
        margin-top: 2rem;
    }
    
    .show-more-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .show-more-btn {
        min-width: 200px;
        font-size: 0.95rem;
        padding: 10px 18px;
    }
}

/* Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 0 15px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-slogan {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 140px;
    }
    
    .hero-image {
        display: none;
    }
    
    .coffee-beans {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .logo-animation-about {
        width: 150px;
        height: 150px;
        margin-top: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .action-btn {
        min-width: 120px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: var(--transition-smooth);
}

p, .product-description, .hero-description {
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.7;
    transition: var(--transition-smooth);
}

.btn, .action-btn, .show-more-btn {
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

/* Smooth responsive transitions */
* {
    transition: font-size 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

/* Container responsive padding */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-dark);
}

.event-slider-container {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Jarak antar setiap event */
}

.event-slide {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.event-slide.reverse-layout {
    flex-direction: row-reverse; /* Membalik urutan untuk layout berselang-seling */
}

.slide-image-wrapper {
    flex: 1.2; /* Ambil bagian lebih besar untuk gambar */
    height: 400px;
    overflow: hidden;
}

.slide-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slide-image-wrapper:hover .slide-main-image {
    transform: scale(1.05); /* Efek zoom saat di hover */
}

.slide-info {
    flex: 1; /* Ambil bagian lebih kecil untuk info */
    padding: 30px 40px;
}

.slide-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--primary-red);
    font-family: var(--logo-font); /* Gunakan font unik BDS */
}

.slide-description {
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Tombol Aksi */
.action-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.action-btn:hover {
    background-color: var(--primary-red-dark);
}


/* Media Queries untuk tampilan mobile */
@media (max-width: 992px) {
    .event-slide {
        flex-direction: column; /* Tumpuk gambar di atas info pada tablet */
        text-align: center;
    }
    .event-slide.reverse-layout {
        flex-direction: column; /* Pertahankan urutan tumpukan */
    }
    .slide-image-wrapper {
        flex: none;
        width: 100%;
        height: 300px;
    }
    .slide-info {
        padding: 20px;
    }
    .slide-info h2 {
        font-size: 1.8rem;
    }
}
.slide-image-wrapper {
    flex: 1.2;
    height: 400px;
    overflow: hidden;
    position: relative; /* Penting untuk posisi slider-inner */
}

/* Container untuk menampung semua gambar */
.slider-inner {
    width: 100%;
    height: 100%;
    position: relative; /* Penting untuk posisi absolut gambar */
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute; /* Memposisikan semua gambar di atas satu sama lain */
    top: 0;
    left: 0;
    opacity: 0; /* Sembunyikan semua gambar secara default */
    transition: opacity 1s ease-in-out; /* Transisi untuk fade effect */
}

.slide-image.active-slide {
    opacity: 1; /* Tampilkan gambar yang memiliki kelas active-slide */
}

/* Hapus hover transform di wrapper karena sekarang menggunakan JS slideshow */
.slide-image-wrapper:hover .slide-main-image,
.slide-image-wrapper:hover .slide-image {
    /* transform: scale(1.05); <--- Hapus atau abaikan ini */
    /* Opsional: Tambahkan sedikit efek hover pada wrapper jika Anda mau */
}