        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #fefaf7;
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: #2c241e;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #f0e6e0;
        }
        ::-webkit-scrollbar-thumb {
            background: #c7b2a2;
            border-radius: 10px;
        }

        h1, h2, h3, .logo, .nav-links a, .price, .btn, .section-title, .footer-logo {
            font-family: 'Playfair Display', serif;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: -0.3px;
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
            color: #3d2b23;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 2px;
            background: #dbbfae;
            transition: width 0.4s ease;
        }
        .section-title:hover:after {
            width: 100%;
        }
        .text-center {
            text-align: center;
        }
        .section-title-center {
            display: block;
            text-align: center;
        }
        .section-title-center:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Header */
        header {
            background: rgba(254, 250, 247, 0.94);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(219, 191, 174, 0.3);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #9b6e57;
            text-decoration: none;
            transition: transform 0.2s ease;
            cursor: pointer;
        }
        .logo:hover {
            transform: scale(1.02);
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #3d2b23;
            transition: color 0.2s, border-bottom 0.2s;
            padding-bottom: 6px;
            border-bottom: 1px solid transparent;
            cursor: pointer;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #b28065;
            border-bottom-color: #dbbfae;
        }
        .nav-icons {
            display: flex;
            gap: 1.5rem;
        }
        .nav-icons i {
            font-size: 1.3rem;
            color: #4f382b;
            cursor: pointer;
            transition: transform 0.2s, color 0.2s;
        }
        .nav-icons i:hover {
            color: #b28065;
            transform: translateY(-2px);
        }

        /* Hero */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 4rem 0 5rem;
            gap: 2rem;
        }
        .hero-content {
            flex: 1;
            animation: fadeSlideUp 0.8s ease-out;
        }
        .hero-content .badge {
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #b28065;
            margin-bottom: 1rem;
            display: inline-block;
        }
        .hero-content h1 {
            font-size: 3.4rem;
            font-weight: 600;
            line-height: 1.2;
            color: #2c241e;
            margin-bottom: 1.2rem;
        }
        .hero-content p {
            font-size: 1rem;
            color: #5e4b3d;
            margin-bottom: 2rem;
            max-width: 90%;
            line-height: 1.5;
        }
        .btn-primary {
            background: #9b6e57;
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 12px rgba(155, 110, 87, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary:hover {
            background: #7f5843;
            transform: translateY(-3px);
            box-shadow: 0 12px 20px rgba(155, 110, 87, 0.3);
        }
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            animation: fadeSlideUp 0.8s 0.1s both;
        }
        .hero-image img {
            max-width: 100%;
            border-radius: 32px;
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
        }

        /* Product Grid */
        .products-section {
            padding: 4rem 0 5rem;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }
        .product-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
            cursor: pointer;
            animation: fadeUp 0.6s backwards;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 30px -12px rgba(0, 0, 0, 0.1);
        }
        .product-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .product-card:hover .product-img {
            transform: scale(1.03);
        }
        .product-info {
            padding: 1.2rem 1rem 1.4rem;
            text-align: center;
        }
        .product-title {
            font-weight: 600;
            font-size: 1.1rem;
            color: #2c241e;
            margin-bottom: 0.3rem;
        }
        .product-category {
            font-size: 0.75rem;
            color: #b6a089;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        .price {
            font-weight: 700;
            color: #9b6e57;
            font-size: 1.2rem;
            margin-top: 0.3rem;
        }
        .add-to-cart {
            background: transparent;
            border: 1px solid #e2cfc2;
            border-radius: 40px;
            padding: 0.4rem 1rem;
            margin-top: 0.7rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: #7f5843;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .add-to-cart:hover {
            background: #9b6e57;
            border-color: #9b6e57;
            color: white;
        }

        /* About Section */
        .about-section {
            padding: 4rem 0;
            background: #fff9f5;
            border-radius: 48px;
            margin: 1rem 0;
        }
        .about-grid {
            display: flex;
            gap: 3rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .about-image {
            flex: 1;
            border-radius: 32px;
            overflow: hidden;
        }
        .about-image img {
            width: 100%;
            transition: transform 0.4s;
        }
        .about-image:hover img {
            transform: scale(1.02);
        }
        .about-text {
            flex: 1;
        }
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #3d2b23;
        }
        .about-text p {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #5e4b3d;
        }

        /* Maps Section */
        .maps-section {
            padding: 2rem 0;
            background: #fff9f5;
        }
        .maps-container {
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: white;
            padding: 8px;
        }
        .maps-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
        }
        .maps-container iframe {
            width: 100%;
            height: 400px;
            border-radius: 28px;
            display: block;
        }
        .maps-title {
            text-align: center;
            margin-bottom: 2rem;
        }
        .maps-title h3 {
            font-size: 1.5rem;
            color: #3d2b23;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }
        .maps-title p {
            color: #7f5843;
            font-size: 0.9rem;
        }
        .address-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f5ede8;
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #9b6e57;
            margin-top: 1rem;
        }
        .address-badge i {
            font-size: 1rem;
        }

        /* Kontak Section */
        .contact-section {
            padding: 4rem 0 2rem;
        }
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            background: white;
            border-radius: 48px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }
        .contact-info {
            flex: 1;
        }
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #3d2b23;
        }
        .contact-detail {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .contact-detail i {
            width: 40px;
            height: 40px;
            background: #f5ede8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9b6e57;
            font-size: 1.2rem;
        }
        .contact-form {
            flex: 1;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #e8dbd2;
            border-radius: 28px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #fefaf7;
            transition: all 0.2s;
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: #c7b2a2;
            box-shadow: 0 0 0 2px rgba(155,110,87,0.1);
        }
        .btn-submit {
            background: #9b6e57;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-submit:hover {
            background: #7f5843;
            transform: translateY(-2px);
        }

        /* Testimonial */
        .testimonial-section {
            background: #faf3ef;
            padding: 4rem 0;
            border-radius: 48px 48px 0 0;
            margin-top: 2rem;
        }
        .testimonial-grid {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 32px;
            max-width: 320px;
            transition: all 0.3s;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        .testimonial-card i {
            color: #dbbfae;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .testimonial-text {
            font-style: italic;
            margin: 1rem 0;
            color: #4f382b;
        }

        /* Footer */
        footer {
            background: #2c241e;
            color: #e9dbd2;
            padding: 3rem 0 2rem;
            margin-top: 2rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.6rem;
            font-weight: 600;
            color: #dbbfae;
        }
        .footer-links {
            display: flex;
            gap: 3rem;
        }
        .footer-links a {
            color: #cdbcb0;
            text-decoration: none;
            transition: color 0.2s;
            cursor: pointer;
        }
        .footer-links a:hover {
            color: white;
        }

        @keyframes fadeSlideUp {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 850px) {
            .navbar { flex-direction: column; gap: 1rem; }
            .nav-links { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
            .hero-content h1 { font-size: 2.5rem; }
            .contact-wrapper { padding: 1.5rem; }
            .maps-container iframe { height: 300px; }
        }
        @media (max-width: 600px) {
            .hero { flex-direction: column; text-align: center; }
            .hero-content p { max-width: 100%; }
            .about-grid { flex-direction: column; }
            .maps-container iframe { height: 250px; }
        }

        .toast-msg {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: #2c241e;
            color: #fefaf7;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 999;
            pointer-events: none;
            backdrop-filter: blur(6px);
            background: rgba(44, 36, 30, 0.9);
        }
        .toast-msg.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        /* Smooth scroll offset untuk fixed header */
        html {
            scroll-padding-top: 85px;
            scroll-behavior: smooth;
        }
        
        /* Section styling untuk anchor scroll */
        .scroll-section {
            scroll-margin-top: 85px;
        }

        /* Logo styling dengan gambar */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }

        .logo-img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-img {
            transform: scale(1.05);
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #9b6e57;
            font-family: 'Playfair Display', serif;
        }

        /* Responsive untuk mobile */
        @media (max-width: 768px) {
            .logo-img {
                width: 35px;
                height: 35px;
            }
            
            .logo-text {
                font-size: 1.4rem;
            }
        }