 :root {
     --primary: #4dddf7;
     --primary-light: rgba(19, 185, 236, 0.1);
     --background-dark: #0b0b0c;
     --surface-dark: #1e232a;
     --border-dark: #383838;
     --text-primary: #ffffff;
     --text-secondary: #b0b6bb;
     --text-muted: #67757e;
     --shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
     --shadow-primary: 0 10px 25px rgba(19, 185, 236, 0.2);
     --radius-sm: 0.25rem;
     --radius-md: 0.5rem;
     --radius-lg: 0.75rem;
     --radius-xl: 1rem;
     --radius-full: 9999px;
     --transition: all 0.3s ease;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Segoe UI', system-ui, sans-serif;
     background-color: var(--background-dark);
     color: var(--text-primary);
     line-height: 1.6;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
 }

 ::selection {
     background-color: var(--primary);
     color: var(--text-primary);
 }

 /* Scrollbar Styling */
 ::-webkit-scrollbar {
     width: 8px;
 }

 ::-webkit-scrollbar-track {
     background: var(--background-dark);
 }

 ::-webkit-scrollbar-thumb {
     background: var(--border-dark);
     border-radius: 4px;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: var(--primary);
 }

 /* Container */
 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Header & Cart Button */
 header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 1;
     padding: 12px 16px;
     gap: 12px;
 }

 header::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: rgba(0, 0, 0, 0.3);
     backdrop-filter: blur(2px);
     z-index: -1;
 }

 .wa-btn {
     flex: 1;
     position: relative;
     z-index: 50;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     border-radius: var(--radius-full);
     background-color: #22b68a3f;
     color: white;
     border: 1px solid #22b68a3f;
     padding: 10px 16px;
     box-shadow: var(--shadow);
     backdrop-filter: blur(12px);
     transition: var(--transition);
     text-decoration: none;
     cursor: pointer;
     font-weight: 500;
     font-size: 14px;
     width: 100%;
     max-width: 200px;
 }

 .cart-btn {
     position: relative;
     z-index: 50;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     border-radius: var(--radius-full);
     background-color: var(--surface-dark);
     border: 1px solid var(--border-dark);
     padding: 8px 14px;
     box-shadow: var(--shadow);
     border-color: rgba(255, 255, 255, 0.582);
     backdrop-filter: blur(12px);
     transition: var(--transition);
     text-decoration: none;
     cursor: pointer;
 }

 /* Hover effects */
 .wa-btn:hover {
     background-color: #128C7E;
     border-color: rgba(255, 255, 255, 0.2);
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
 }

 .wa-btn i {
     color: #ffffff;
     text-shadow:
         0 0 10px rgba(255, 255, 255, 0.6),
         0 0 20px rgba(37, 211, 102, 0.4),
         0 0 30px rgba(37, 211, 102, 0.2);
     filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
     transition: all 0.3s ease;
 }

 .wa-btn:hover i {
     text-shadow:
         0 0 15px rgba(255, 255, 255, 0.8),
         0 0 25px rgba(37, 211, 102, 0.6),
         0 0 35px rgba(37, 211, 102, 0.4);
     filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
     transform: scale(1.1);
 }

 .cart-btn:hover {
     border-color: var(--primary);
     background-color: var(--primary-light);
     transform: translateY(-2px);
 }

 /* Active effects */
 .wa-btn:active,
 .cart-btn:active {
     transform: scale(0.95);
 }

 /* Icons */
 .cart-icon .material-symbols-outlined {
     font-size: 18px;
     transition: var(--transition);
     color: rgba(255, 255, 255, 0.61);
 }

 .cart-btn:hover .material-symbols-outlined {
     color: var(--primary);
 }

 /* Badge */
 .cart-badge {
     position: absolute;
     top: -10px;
     right: -8px;
     height: 20px;
     width: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: var(--radius-full);
     background-color: var(--primary);
     color: black;
     font-size: 10px;
     font-weight: bold;
 }

 /* Main Content */
 main {
     flex-grow: 1;
     padding-top: 50px;
 }

 /* Profile Section */
 .profile-section {
     margin-bottom: 40px;
 }

 .profile-card {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 24px;
     border-radius: var(--radius-xl);
     background-color: rgba(30, 27, 46, 0.5);
     padding: 24px;
     border: 1px solid var(--border-dark);
     position: relative;
     overflow: hidden;
 }

 .profile-glow {
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100%;
     height: 100%;
     max-width: 400px;
     background-color: var(--primary-light);
     filter: blur(80px);
     border-radius: 50%;
     pointer-events: none;
 }

 .profile-content {
     position: relative;
     z-index: 10;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
     text-align: center;
 }

 .profile-pic-container {
     position: relative;
 }

 .profile-pic {
     height: 112px;
     width: 112px;
     border-radius: 50%;
     border: 4px solid var(--surface-dark);
     box-shadow: var(--shadow);
     overflow: hidden;
     background-size: cover;
     background-position: center;
 }

 .online-status {
     position: absolute;
     bottom: 4px;
     right: 4px;
     height: 24px;
     width: 24px;
     border-radius: var(--radius-full);
     background-color: #10b981;
     border: 4px solid var(--surface-dark);
 }

 .profile-info {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .username {
     font-size: 2rem;
     font-weight: bold;
     color: var(--text-primary);
     letter-spacing: -0.025em;
 }

 .store-desc {
     font-size: 1rem;
     font-weight: 500;
     color: var(--text-secondary);
 }

 /* Stats Section */
 .stats-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 12px;
     margin-bottom: 48px;
 }

 .stat-card {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 4px;
     border-radius: var(--radius-lg);
     border: 1px solid var(--border-dark);
     background-color: var(--surface-dark);
     padding: 16px;
     text-align: center;
     transition: transform 0.3s ease;
 }

 .stat-card:hover {
     transform: translateY(-4px);
 }

 .stat-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     height: 40px;
     width: 40px;
     border-radius: var(--radius-full);
     background-color: var(--primary-light);
     color: var(--primary);
     margin-bottom: 4px;
 }

 .stat-value {
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--text-primary);
     letter-spacing: -0.025em;
 }

 .stat-label {
     font-size: 0.75rem;
     font-weight: 500;
     color: var(--text-secondary);
     text-transform: uppercase;
     letter-spacing: 0.05em;
 }

 /* Projects Section */
 .projects-section {
     display: flex;
     flex-direction: column;
     gap: 32px;
 }

 .section-header {
     display: flex;
     flex-direction: column;
     gap: 24px;
     padding-bottom: 24px;
     border-bottom: 1px solid var(--border-dark);
 }

 .section-title {
     font-size: clamp(1rem, 2vw, 1.5rem);
     font-weight: bold;
     color: var(--text-primary);
     letter-spacing: -0.025em;
 }

 .section-subtitle {
     margin-top: 8px;
     font-size: 0.875rem;
     color: var(--text-secondary);
 }

 .category-filters {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .filter-btn {
     height: 35px;
     padding: 0 20px;
     border-radius: var(--radius-full);
     font-size: 0.875rem;
     font-weight: 500;
     border: none;
     cursor: pointer;
     transition: var(--transition);
 }

 .filter-btn.active {
     background-color: rgba(19, 185, 236, 0.2);
     color: rgb(255, 255, 255);
     border: 1px solid rgba(19, 185, 236, 0.8);
     box-shadow: var(--shadow-primary);
 }

 .filter-btn.inactive {
     background-color: var(--surface-dark);
     border: 1px solid var(--border-dark);
     color: var(--text-secondary);
 }

 .filter-btn.inactive:hover {
     border-color: var(--primary);
     color: var(--text-primary);
 }

 /* Products Grid */
 .products-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
 }

 .product-card {
     position: relative;
     display: flex;
     flex-direction: column;
     gap: 12px;
     border-radius: var(--radius-xl);
     border: 1px solid var(--border-dark);
     background-color: var(--surface-dark);
     padding: 12px;
     transition: var(--transition);
     cursor: pointer;
     height: fit-content;
 }

 .product-card:hover {
     border-color: var(--primary);
     box-shadow: var(--shadow-primary);
     transform: translateY(-2px);
 }

 .product-image {
     position: relative;
     aspect-ratio: 4/3;
     width: 100%;
     overflow: hidden;
     border-radius: var(--radius-lg);
     background-color: #374151;
 }

 .product-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .product-card:hover .product-img {
     transform: scale(1.1);
 }

 .product-badge {
     position: absolute;
     top: 5px;
     right: 5px;
     border-radius: var(--radius-md);
     background-color: rgba(0, 0, 0, 0.3);
     backdrop-filter: blur(8px);
     padding: 5px 10px;
     font-size: 0.75rem;
     font-weight: bold;
     color: var(--text-primary);
     text-transform: uppercase;
     letter-spacing: 0.05em;
 }

 .product-content {
     display: flex;
     flex-direction: column;
     padding: 0 4px 8px;
     flex-grow: 1;
 }

 .product-category {
     font-size: 0.75rem;
     font-weight: bold;
     color: rgba(91, 136, 150, 0.7);
     text-transform: uppercase;
     letter-spacing: 0.05em;
     margin-bottom: 4px;
 }

 .product-name {
     font-size: 1.1rem;
     font-weight: normal;
     color: var(--text-primary);
     line-height: 1.3;
     margin-bottom: 8px;
     transition: var(--transition);
 }

 .product-price {
     padding-top: 16px;
     display: flex;
     align-items: baseline;
     justify-content: space-between;
 }

 .price-container {
     display: flex;
     align-items: baseline;
     gap: 8px;
 }

 .original-price {
     font-size: 0.875rem;
     color: #2bb184;
     text-decoration: line-through;
 }

 .discount-price {
     font-size: 1.25rem;
     font-weight: bold;
     color: #28fff4;
 }

 /* Cart Button Styling - MODIFIKASI UTAMA */
 .cart-add-btn {
     display: flex;
     position: absolute;
     bottom: 5px;
     right: 5px;
     align-items: center;
     justify-content: center;
     height: 40px;
     width: 40px;
     border-radius: var(--radius-full);
     background-color: var(--border-dark);
     color: var(--text-primary);
     border: none;
     cursor: pointer;
     transition: var(--transition);
     overflow: hidden;
 }

 .cart-add-btn i {
     transition: var(--transition);
     font-size: 1.1rem;
 }

 .cart-add-btn:hover {
     background-color: rgba(19, 185, 236, 0.2);
     transform: scale(1.1);
 }

 /* Loading State */
 .cart-add-btn.loading {
     background-color: rgba(19, 185, 236, 0.2);
 }

 .cart-add-btn.loading i {
     animation: spin 0.6s linear infinite;
 }

 /* Success State */
 .cart-add-btn.success {
     background-color: rgba(16, 185, 129, 0.2);
 }

 .cart-add-btn.success i {
     transform: scale(1.2);
 }

 /* Animasi */
 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 /* Load More Button */
 .load-more {
     margin-top: 32px;
     display: flex;
     justify-content: center;
 }

 .load-more-btn {
     display: flex;
     align-items: center;
     gap: 8px;
     border-radius: var(--radius-lg);
     border: 1px solid var(--border-dark);
     background-color: var(--surface-dark);
     padding: 14px 32px;
     font-size: 0.875rem;
     font-weight: bold;
     color: var(--text-primary);
     cursor: pointer;
     transition: var(--transition);
     box-shadow: var(--shadow);
 }

 .load-more-btn:hover {
     background-color: rgba(19, 185, 236, 0.2);
     border-color: var(--primary);
     box-shadow: var(--shadow-primary);
 }

 /* Footer */
 footer {
     border-top: 1px solid var(--border-dark);
     background-color: var(--background-dark);
     padding: 32px 0;
     margin-top: auto;
     text-align: center;
 }

 .copyright {
     font-size: 0.875rem;
     font-weight: 500;
     color: var(--text-secondary);
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .products-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 20px;
     }
 }

 @media (max-width: 768px) {
     .products-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 16px;
     }

     .section-header {
         padding-bottom: 8px;
         gap: 16px;
     }

     .category-filters {
         overflow-x: auto;
         padding-bottom: 8px;
     }
 }

 @media (max-width: 640px) {

     /* Projects Section */
     .projects-section {
         n;
         gap: 10px;
     }

     .container {
         padding: 10px;
     }

     .category-filters {
         display: flex;
         flex-wrap: wrap;
         gap: 8px;
     }

     .username {
         font-size: 1.4rem;
     }

     .store-desc {
         font-size: 0.875rem;
     }

     .filter-btn {
         height: auto;
         padding: 5px 10px;
         font-size: 0.75rem;
     }

     .product-badge {
         top: 5px;
         right: 5px;
         padding: 3px 8px;
         font-size: 0.58rem;
         font-weight: normal;
     }

     .cart-add-btn {
         height: 30px;
         width: 30px;
     }

     .cart-add-btn i {
         font-size: 0.85rem;
     }

     main {
         padding-top: 15px;
     }

     .products-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 16px;
     }

     .product-card {
         height: fit-content;
         padding: 5px;
     }

     .product-category {
         font-size: 0.6rem;
     }

     .product-name {
         font-size: 0.8rem;
     }

     .product-price {
         padding-top: 0px;
     }

     .price-container {
         flex-direction: column;
         line-height: normal;
         gap: 0;
     }

     .original-price {
         font-size: 0.75rem;
     }

     .discount-price {
         font-size: 1rem;
     }

     .cart-text {
         display: inline;
     }

     .profile-section {
         margin-bottom: 15px;
     }

     .stats-grid {
         margin-bottom: 15px;
         gap: 8px;
     }

     .section-subtitle {
         margin-top: 0px;
     }

     .stat-card {
         border-radius: 50%;
         padding: 8px;
     }

     .stat-icon {
         height: 30px;
         width: 30px;
     }

     .stat-value {
         font-size: 1.2rem;
     }

     .stat-label {
         font-size: 0.6rem;
     }
 }

 @media (max-width: 480px) {
     .products-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .stats-grid {
         grid-template-columns: repeat(3, 1fr);
     }

     .cart-add-btn:hover {
         transform: none;
     }

     .product-card:hover {
         transform: none;
     }
 }

/* Empty Products State */
.empty-products {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background-color: var(--surface-dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    margin-top: 20px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    max-width: 400px;
}

.empty-state i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.7;
}

.empty-state h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.empty-state .back-btn {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}