
html {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.2rem);
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Bar */
        .top-bar {
            background: #f8f8f8;
            padding: 8px 0;
            font-size: 12px;
            border-bottom: 1px solid #eee;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* Header */
        .header {
            background: #ffffff;
            padding: 10px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #E5BA73;
        }
        .logo img {
            height: 5vw;
            max-height: 40px;
            width: auto;
            margin-top: 1vw; 
        }

        .nav {
            margin-right: 3vw;
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav a {
            text-decoration: none;
            color: #333;
            font-weight: 400;
            font-size: 17px;
            transition: color 0.3s;
            text-transform: uppercase;
        }

        .nav a:hover, .nav a.active {
            color: #E5BA73;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
            display: none;
        }

        .cart-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cart-icon {
            background: #E5BA73;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #dc3545;
            color: white;
            font-size: 10px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .phone-number {
            font-weight: bold;
            font-size: 14px;
        }

        .support-text {
            font-size: 12px;
            color: #999;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #E5BA73;
            cursor: pointer;
        }

        /* Search Section */
        .search-section {
            background: #f8f9fa;
            padding: 15px 0;
        }

        .search-content {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .departments-btn {
            background: #E5BA73;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            min-width: 180px;
            justify-content: space-between;
        }

        .search-form {
            display: flex;
            flex: 1;
            gap: 10px;
        }

        .category-select {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: white;
            min-width: 150px;
        }

        .search-input {
            flex: 1;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .search-btn {
            background: #E5BA73;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            text-transform: uppercase;
            white-space: nowrap;
        }


/* produk section profil dan mebel*/

        .product-section {
            padding: 20px 20px;
            background: #fffaea;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .product-section:nth-child(even) {
            background: #ffffff;
        }

        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .product-content h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
            color: #2c1810;
            font-weight: 300;
        }

        .product-content p {
            font-size: 1rem;
            margin-bottom: 20px;
            color: #666;
            text-align: justify;
        }

        .learn-more {
            display: inline-flex;
            align-items: center;
            color: #8B4513;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .learn-more:hover {
            color: #A0522D;
            transform: translateX(5px);
        }

        .learn-more::after {
            content: '→';
            margin-left: 10px;
            transition: margin-left 0.3s ease;
        }

        .learn-more:hover::after {
            margin-left: 15px;
        }

        .product-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            min-height: 50%;
            width: 100%;

        }

        .product-image:hover {
            transform: translateY(-10px);
        }

        .product-image img {
            width: 100%;
         
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-image:hover img {
            transform: scale(1.05);
        }
        
        /* Why Choose Us Section */
        .why-choose {
            background: url('asset/imgwhyus.jpg');
            color: white;
            padding: 100px 0;
            position: relative;
            border-radius: 10px;
            margin-bottom: 50px;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        }

        .why-choose-content {
            position: relative;
            z-index: 2;
        }

        .why-choose h2 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .why-choose .subtitle {
            text-align: justify;
            font-size: 1.1rem;
            margin-bottom: 60px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .value-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .value-item:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.2);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .value-item h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .value-item p {
            font-size: 0.95rem;
            opacity: 0.9;
        }






        /* Sidebar */
        .main-content {
            display: flex;
            gap: 30px;
            padding: 20px 0;
        }

        .sidebar {
            width: 250px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            height: fit-content;
        }

        .sidebar h3 {
            background: #E5BA73;
            color: white;
            padding: 15px 20px;
            margin: 0;
            border-radius: 10px 10px 0 0;
            font-size: 16px;
        }

        .sidebar ul {
            list-style: none;
            padding: 0;
        }

        .sidebar ul li {
            padding: 12px 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .sidebar ul li:last-child {
            border-bottom: none;
        }

        .sidebar ul li a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

        .sidebar ul li a:hover {
            color: #E5BA73;
        }

        .content-area {
            flex: 1;
        }

        /* Main Banner */
        .main-banner {
            background: linear-gradient(135deg, #c08338 0%, #ebbf79 100%);
            padding: 20px 40px;
            border-radius: 15px;
            margin-bottom: 20px;
            max-height: 560px;

        }

        .banner-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .banner-text {
            flex: 1;
            padding-right: 50px;
        }

        .banner-label {
            color: #FAF8F1;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .banner-text h1 {
            font-size: 48px;
            color: #FAF8F1;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .banner-text p {
            font-size: 16px;
            color: #FAF8F1;
            margin-bottom: 25px;
        }

        .btn-primary {
            background: #E5BA73;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            font-weight: bold;
            transition: background 0.3s;
            text-transform: uppercase;
        }

        .btn-primary:hover {
            background: #6b9532;
        }

        .banner-image {
            flex: 1;
            text-align: center;
        }
    

        .vegetable-image {
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
        }

        .vegetable-image img {
            width: 80%;
            height: auto;
 
        }

        /* Categories Section */
        .categories {
            margin-bottom: 60px;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .category-card {
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding-top: 50px;
            border-radius: 15px;
            transition: all 0.3s;
            cursor: pointer;
            min-height: 190px;
        }
        .kategori-1 {
            background-image: url('asset/imgbroti.jpg');
            color: #ffffff;
        }
        .kategori-2 {
            background-image: url('asset/imgbalok.jpg');
            color: #ffffff;
        }
        .kategori-3 {
            background-image: url('asset/imgkusen.jpg');
            color: #ffffff;
        }
        .kategori-4 {
            background-image: url('asset/imgkaso.jpg');
            color: #ffffff;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .category-icon {
            font-size: 50px;
            margin-bottom: 15px;
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
        }

        .category-card h3 {

            font-size: 2.1rem;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
        }

        .categories h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 20px;
            font-weight: bold;
        }

        /* Featured Products */
        .featured-products {
            margin-bottom: 60px;
            margin-top: 30px;
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 40px;
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            gap: 5px;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 10px 20px;
            background: transparent;
            border: 1px solid #ddd;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 25px;
            margin: 2px;
        }

        .filter-tab.active {
            background: #E5BA73;
            color: white;
            border-color: #E5BA73;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
            
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .product-image {
            object-fit: cover;
            max-height: 150px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            position: relative;
            overflow: hidden;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .product-info {
            padding: 20px;
            text-align: center;
        }

        .product-name {
            font-size: 17px;
            color: #1f1f1f;
            margin-bottom: 8px;
        }

        .product-price {
            font-size: 18px;
            font-weight: bold;
            color: #C58940;
        }

        /* Promotional Banners */
        .promo-section {
            margin-bottom: 60px;
        }

        .promo-banners {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .promo-banner {
            padding: 50px 40px;
            border-radius: 20px;
            color: white;
            position: relative;
            overflow: hidden;
            text-align: left;
        }

        .promo-banner.summer {
            background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
        }

        .promo-banner.dried {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .promo-banner h3 {
            font-size: 28px;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .promo-banner p {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .btn-secondary {
            background: #dc3545;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 25px;
            display: inline-block;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: #c82333;
            transform: translateY(-2px);
        }


        /* Product Sections */
        .product-sections {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .product-section h3 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 25px;
            text-align: center;
        }

        .product-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .product-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .product-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .product-item-image {
            width: 60px;
            height: 60px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .product-item-info h4 {
            font-size: 14px;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .product-item-price {
            font-weight: bold;
            color: #E5BA73;
        }







        /* Blog Section */
        .blog-section {
            margin-bottom: 60px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .blog-image {
            height: 200px;
            background: linear-gradient(45deg, #ff9a8b, #fecfef);
            
        }

        .blog-image:nth-child(1) {
            background: linear-gradient(45deg, #ffecd2, #fcb69f);
        }

        .blog-image:nth-child(2) {
            background: linear-gradient(45deg, #a8edea, #fed6e3);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-date {
            color: #6c757d;
            font-size: 12px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .blog-title {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: #6c757d;
            line-height: 1.6;
            font-size: 14px;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: #E5BA73;
            font-size: 18px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
        }

        .footer-section ul li a:hover {
            color: #E5BA73;
        }

        .newsletter {
            display: flex;
            margin-top: 15px;
        }

        .newsletter input {
            flex: 1;
            padding: 12px;
            border: 1px solid #444;
            background: #34495e;
            color: white;
            border-radius: 5px 0 0 5px;
        }

        .newsletter button {
            background: #E5BA73;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            text-transform: uppercase;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #888;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .payment-icons {
            display: flex;
            gap: 10px;
        }

        .payment-icon {
            width: 40px;
            height: 25px;
            background: #555;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: white;
        }

        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: rgb(255, 255, 255);
            z-index: 1000;
            transition: left 0.3s;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        }

        .mobile-sidebar.active {
            left: 0;
        }

        .mobile-sidebar-header {
            padding: 20px;
            background: #E5BA73;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }











        .sidebar-hp {
            padding: 10px;
            color: rgb(0, 0, 0);
            display: column;
            justify-content: space-between;
            align-items: center;
        }
                .sidebar-hp ul {
            list-style: none;
            padding: 0;
        }

        .sidebar-hp ul li {
            padding: 12px 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .sidebar-hp ul li:last-child {
            border-bottom: none;
        }

        .sidebar-hp ul li a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

        .sidebar-hp ul li a:hover {
            color: #E5BA73;
        }

        .mobile-sidebar-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .mobile-sidebar .sidebar ul {
            padding: 20px 0;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
        }

        .overlay.active {
            display: block;
        }




.whatsapp-float {
  position: fixed;
  bottom: 20px;
    right: calc((100vw - 1200px) / 2);
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.7);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}








        

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
              .whatsapp-float {
                right: 20px; /* Tetap di kanan layar saat layar kecil */
            }
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .main-content {
                gap: 20px;
            }
            
            .sidebar {
                width: 220px;
            }
            .product-image {
            height: 250px;
            }
            .logo img {
                height: 7vw;

            }
            .vegetable-image img {
            width: 70%;
            height: auto;
            }
            
        }

        @media (max-width: 768px) {
        .product-price {
            font-size: 14px;
        }
        .product-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .product-content h2 {
                font-size: 2rem;
            }
            .vegetable-image img {
            width: 60%;
            min-height: ;
            height: auto;
            }
            
            .product-section {
                padding: 60px 0;
            }

            .why-choose {
                padding: 80px 0;
            }

            .why-choose h2 {
                font-size: 1.9rem;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .container {
                padding: 0 15px;
            }
            .top-bar {
                display: none;
            }
            
            .nav {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            .header-right {
                display: block;
                margin-right: 10px;
            }
            
            .header-right {
                gap: 15px;
            }
            
            .contact-info {
                display: none;
            }
            
            .search-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .search-form {
                width: 100%;
            }
            
            .departments-btn {
                width: 100%;
                min-width: auto;
            }
            
            .main-content {
                flex-direction: column;
            }
            
            .sidebar {
                display: none;
            }
            
            .banner-content {
                flex-direction: column;
                text-align: center;
            }
            
            .banner-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .banner-text h1 {
                font-size: 36px;
            }
            
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .promo-banners {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .promo-banner {
                padding: 30px 25px;
            }
            
            .product-sections {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .categories-grid,
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .banner-text h1 {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .filter-tabs {
                justify-content: center;
            }
            
            .filter-tab {
                padding: 8px 15px;
                font-size: 14px;
            }
        }

        /* Animation for page load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .category-card,
        .product-card,
        .blog-card {
            animation: fadeInUp 0.6s ease-out;
        }
