* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B5A3C;
    --secondary-color: #D2691E;
    --accent-color: #C17B5C;
    --dark-color: #3D2817;
    --light-color: #F5E6D3;
    --cream: #FFF5E6;
    --white: #FFFFFF;
    --text-dark: #2C1810;
    --text-light: #8B7355;
    --red-accent: #DC143C;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #000000 #f1f1f1;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: auto;
    min-width: 1000px;
    max-width: 90%;
    background: rgba(61, 40, 23, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform-origin: center top;
}

@media (min-width: 769px) {
    .navbar {
        zoom: 1;
        -moz-transform: scale(1);
        -webkit-transform: translateX(-50%) scale(1);
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 100%;
    gap: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.logo i {
    font-size: 1.7rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.8rem;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s;
    opacity: 0.9;
}

.nav-menu a:hover {
    opacity: 1;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-cart {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cart:hover {
    transform: scale(1.1);
}

.btn-primary {
    background: var(--red-accent);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #B8112A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 600px;
    z-index: 2;
}

.slide-left {
    left: 10%;
    text-align: left;
}

.slide-center {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.slide-right {
    right: 10%;
    left: auto;
    text-align: right;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--white);
    background-image: 
        linear-gradient(rgba(220, 20, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red-accent);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.slider-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.products-slider {
    overflow: hidden;
    position: relative;
}

.products-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    padding-right: 100px;
}

.product-card {
    min-width: 280px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--light-color);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-image img[src*="images/"]:not([src=""]) {
    display: block;
}

/* Fallback jika gambar belum ada */
.product-image::before {
    content: '☕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
    z-index: -1;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--red-accent);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-add-cart {
    width: 100%;
    background: var(--red-accent);
    color: var(--white);
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background: #B8112A;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: linear-gradient(rgba(245, 235, 220, 0.95), rgba(245, 235, 220, 0.95)), url('image/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.categories-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.categories-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-slider::-webkit-scrollbar {
    display: none;
}

.category-slide {
    flex: 0 0 280px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.category-slide:hover {
    transform: translateY(-10px);
}

.category-image {
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-slide:hover .category-image img {
    transform: scale(1.05);
}

.category-slide h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.categories-slider-wrapper .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--red-accent);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.categories-slider-wrapper .slider-btn:hover {
    background: #b01040;
    transform: translateY(-50%) scale(1.1);
}

.categories-slider-wrapper .prev-btn {
    left: 0;
}

.categories-slider-wrapper .next-btn {
    right: 0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--red-accent);
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.about-text .btn-primary {
    background: var(--white);
    color: var(--red-accent);
}

.about-text .btn-primary:hover {
    background: var(--cream);
}

.about-image img {
    width: 100% !important;
    max-width: 700px !important;
    height: auto !important;
    border-radius: 0;
    filter: drop-shadow(-30px 30px 40px rgba(0, 0, 0, 0.4))
            drop-shadow(-20px 20px 30px rgba(0, 0, 0, 0.3))
            drop-shadow(-10px 10px 15px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03) translateY(-5px);
    filter: drop-shadow(-35px 35px 50px rgba(0, 0, 0, 0.5))
            drop-shadow(-25px 25px 40px rgba(0, 0, 0, 0.4))
            drop-shadow(-15px 15px 25px rgba(0, 0, 0, 0.3));
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background: var(--white);
}

.locations-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.location-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.location-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.location-info {
    padding: 1.5rem;
}

.location-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.location-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--red-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        min-width: auto;
        width: 95%;
        padding: 0.8rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        top: 90px;
        flex-direction: column;
        background: rgba(61, 40, 23, 0.98);
        backdrop-filter: blur(20px);
        width: 90%;
        max-width: 400px;
        text-align: center;
        padding: 2rem 0;
        border-radius: 20px;
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        gap: 1.5rem;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .slide-content,
    .slide-left,
    .slide-center,
    .slide-right {
        left: 5% !important;
        right: auto !important;
        transform: translateY(-50%) !important;
        max-width: 90%;
        text-align: left !important;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .categories-slider-wrapper {
        padding: 0 40px;
    }

    .category-slide {
        flex: 0 0 240px;
    }

    .category-image {
        height: 280px;
    }

    .categories-slider-wrapper .slider-btn {
        width: 40px;
        height: 40px;
    }

    /* Timeline Mobile - Vertical Layout */
    .timeline::before {
        display: none;
    }

    .about-story-section {
        padding: 60px 0 !important;
    }

    .about-story-section .container {
        padding: 0 5px !important;
        max-width: 100% !important;
    }

    .timeline {
        padding: 1rem 0;
        max-width: 100%;
        width: 100%;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding: 0 !important;
        margin-bottom: 2.5rem;
        width: 100%;
    }

    .timeline-item::after {
        display: none;
    }

    .timeline-year {
        width: 100%;
        text-align: left !important;
        padding: 0 !important;
        margin-bottom: 0.8rem;
        font-size: 2.2rem;
    }

    .timeline-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-left: 3px solid var(--red-accent) !important;
        border-right: none !important;
        padding: 0.8rem 0.3rem 0.8rem 0.8rem !important;
        box-sizing: border-box !important;
        background: transparent;
        border-radius: 0;
    }

    .timeline-content h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.6rem !important;
        font-weight: 700;
    }

    .timeline-content p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .timeline-item:nth-child(even) .timeline-year {
        text-align: left !important;
        padding: 0 !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 !important;
        border-left: 3px solid var(--red-accent) !important;
        border-right: none !important;
    }

    /* Hide slider buttons on mobile */
    .slider-btn,
    .nav-btn,
    .prev-btn,
    .next-btn,
    .prev-news,
    .next-news,
    .categories-slider-wrapper .slider-btn,
    .prev-btn-bestseller,
    .next-btn-bestseller,
    .prev-btn-beans,
    .next-btn-beans,
    .prev-btn-drip,
    .next-btn-drip,
    .prev-btn-concentrate,
    .next-btn-concentrate,
    .prev-btn-coffeebag,
    .next-btn-coffeebag,
    .prev-btn-capsule,
    .next-btn-capsule,
    .prev-btn-tubruk,
    .next-btn-tubruk,
    .prev-btn-gift,
    .next-btn-gift,
    .prev-btn-brew,
    .next-btn-brew,
    .prev-btn-hampers,
    .next-btn-hampers {
        display: none !important;
    }

    /* Enable touch scrolling for sliders */
    .products-slider,
    .categories-slider,
    .news-slider,
    .shop-slider {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .products-slider::-webkit-scrollbar,
    .categories-slider::-webkit-scrollbar,
    .news-slider::-webkit-scrollbar,
    .shop-slider::-webkit-scrollbar {
        display: none;
    }

    .products-track,
    .news-track,
    .shop-track,
    .bestseller-track,
    .beans-track,
    .drip-track,
    .concentrate-track,
    .coffeebag-track,
    .capsule-track,
    .tubruk-track,
    .gift-track,
    .brew-track,
    .hampers-track {
        transform: none !important;
        display: flex;
        gap: 2rem;
    }

    /* Process Grid Mobile */
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .process-card {
        padding: 1.5rem;
    }

    .process-number {
        font-size: 2rem;
    }

    .process-card h3 {
        font-size: 1.1rem;
    }

    .process-card p {
        font-size: 0.9rem;
    }
}

/* Shop Page Styles */
.shop-header {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(61, 40, 23, 0.7), rgba(61, 40, 23, 0.7)), url('image/page1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.shop-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.shop-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.shop-filter {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 90px;
    z-index: 100;
}

/* Shop Container with Sidebar */
.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 30px;
}

.shop-content {
    flex: 1;
}

.shop-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.product-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 4px;
}

.category-item {
    width: 100%;
    text-align: left;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.category-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.category-item.active {
    background: var(--dark-color);
    color: var(--white);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.sort-dropdown select {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--light-color);
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    background: var(--white);
}

.shop-section {
    padding: 60px 0;
    background: var(--white);
}

.shop-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-accent);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.shop-product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.shop-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.shop-product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-color);
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.shop-product-card:hover .shop-product-image img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--red-accent);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.shop-product-info {
    padding: 1.5rem;
}

.shop-product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    min-height: 50px;
}

.price-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.sale-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--white);
    opacity: 1;
}

.nav-menu a.active::after {
    width: 100%;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #DC143C 0%, #B91230 50%, #8B0000 100%);
    padding: 0;
    margin: 60px 0;
    overflow: visible;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(220, 20, 60, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
    position: relative;
    z-index: 1;
}

.cta-text {
    flex: 1;
    padding: 50px 40px 50px 80px;
    color: var(--white);
    z-index: 2;
}

.cta-text h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text p {
    font-size: 0.95rem !important;
    margin-bottom: 1.8rem;
    opacity: 0.95;
    font-weight: 400 !important;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif !important;
}

.btn-cta {
    padding: 12px 35px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: #2C1810;
}

.cta-image {
    flex: 0 0 auto;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin-right: -150px;
    width: 60% !important;
    height: 100%;
}

.cta-image img {
    width: 100% !important;
    max-width: none !important;
    min-width: 800px !important;
    height: 550px !important;
    display: block;
    object-fit: contain;
    box-shadow: 
        -30px 30px 60px rgba(0, 0, 0, 0.5),
        -20px 20px 40px rgba(0, 0, 0, 0.4),
        -10px 10px 20px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.cta-image img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        -35px 35px 70px rgba(0, 0, 0, 0.6),
        -25px 25px 50px rgba(0, 0, 0, 0.5),
        -15px 15px 30px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.3);
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: var(--white);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.news-title-group {
    flex: 1;
}

.news-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red-accent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.news-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-nav {
    display: flex;
    gap: 1rem;
}

.news-nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-light);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.news-nav-btn:hover {
    background: var(--red-accent);
    border-color: var(--red-accent);
    color: var(--white);
}

.news-slider {
    overflow: hidden;
}

.news-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.news-card {
    min-width: 380px;
    flex-shrink: 0;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--red-accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.news-content {
    padding: 25px 0;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.8rem;
}

.news-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.news-link {
    color: var(--red-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.news-link:hover {
    gap: 0.8rem;
}

.news-link i {
    font-size: 0.8rem;
}

/* Responsive Shop */
@media (max-width: 768px) {
    .shop-header h1 {
        font-size: 2.5rem;
    }

    .shop-container {
        flex-direction: column;
    }

    .shop-sidebar {
        width: 100%;
        order: -1;
    }

    .sidebar-sticky {
        position: relative;
        top: 0;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .cta-text {
        padding: 40px 30px 20px;
    }

    .cta-text h2 {
        font-size: 1.6rem;
    }

    .cta-image {
        padding: 20px 30px 40px;
        margin-right: 0;
    }

    .cta-image img {
        max-width: 400px;
        min-width: 300px;
        box-shadow: 
            -20px 20px 40px rgba(0, 0, 0, 0.5),
            -10px 10px 20px rgba(0, 0, 0, 0.4),
            0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .cta-image img:hover {
        transform: scale(1.03) translateY(-3px);
        box-shadow: 
            -25px 25px 50px rgba(0, 0, 0, 0.6),
            -15px 15px 30px rgba(0, 0, 0, 0.5),
            0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-buttons {
        justify-content: center;
    }

    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .shop-filter {
        top: 80px;
    }
}

/* Shop Slider */
.shop-slider {
    overflow: hidden;
    position: relative;
}

.shop-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding-right: 100px;
}

.shop-product-card {
    min-width: 320px;
    flex-shrink: 0;
}

/* About Page */
.about-header-page {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(139, 90, 60, 0.85), rgba(61, 40, 23, 0.85)), url('image/page1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.about-header-page h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.about-header-page p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story-section {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.story-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red-accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--red-accent);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 8rem;
    position: relative;
    align-items: flex-start;
    min-height: 150px;
    z-index: 1;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--red-accent);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--red-accent);
    z-index: 2;
    border-radius: 2px;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    justify-content: space-between;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.timeline-year {
    width: 30%;
    text-align: right;
    padding-right: 120px;
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--red-accent);
    line-height: 1;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-left: 120px;
    padding-right: 0;
}

.timeline-content {
    width: 30%;
    margin-right: 120px;
    background: transparent;
    padding: 2.5rem;
    border-radius: 0;
    border-left: 5px solid var(--red-accent);
    position: relative;
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 120px;
    margin-right: 0;
    border-left: none;
    border-right: 5px solid var(--red-accent);
    z-index: 2;
}

.timeline-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Coffee Process Section */
.coffee-process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #DC143C, #8B0000);
    color: var(--white);
}

.coffee-process-section .section-title {
    color: var(--white);
    margin-bottom: 4rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.process-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.process-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.process-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.process-card:hover .process-image img {
    transform: scale(1.1);
}

.process-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.process-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-header-page h1 {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 50px;
    }

    .timeline-year {
        text-align: left !important;
        padding: 0 0 1rem 0 !important;
    }

    .timeline-content {
        padding: 1.5rem !important;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Page */
.contact-header-page {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(139, 90, 60, 0.85), rgba(61, 40, 23, 0.85)), url('image/page2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.contact-header-page h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-header-page p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-main-section {
    padding: 80px 0;
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info */
.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--red-accent);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red-accent), #8B0000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-text p {
    color: var(--text-dark);
    opacity: 0.7;
    line-height: 1.6;
}

.social-media {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 20, 60, 0.1);
}

.social-media h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--red-accent), #8B0000);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links-contact a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--red-accent);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--red-accent), #8B0000);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
}

.btn-submit i {
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-header-page h1 {
        font-size: 2.5rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-header-page h1 {
        font-size: 2rem;
    }

    .social-links-contact a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
