/*BERIKUT KODE CSS di asu.css */
:root {
            --primary-blue: #3b82f6;
            --secondary-blue: #1e40af;
            --light-blue: #dbeafe;
            --soft-blue: #f0f9ff;
            --dark-blue: #1e293b;
            --text-gray: #64748b;
            --border-gray: #e2e8f0;
            --success-green: #10b981;
            --warning-orange: #f59e0b;
            --danger-red: #ef4444;
            --warning-yellow: #f59e0b;
        }
        
        body {
                padding-top: 120px; /* Desktop default */
            }

            .navbar-wrapper {
                position: fixed;
                top: 30px;
                left: 0;
                right: 0;
                z-index: 1001;
                background: white;
                box-shadow: 0 1px 4px rgba(0,0,0,0.1);
            }

            .navbar-main {
                padding: 10px 0;
            }

            .left-section {
                flex: 1;
                gap: 15px;
            }

            .navbar-brand img {
                height: 30px;
                width: auto;
            }

            /* Category Button */
            .category-btn {
                margin-left: 15px;
            }

            .btn-category {
                background: transparent;
                border: 1px solid var(--border-gray);
                padding: 10px 16px;
                border-radius: 8px;
                color: var(--dark-blue);
                font-size: 14px;
                cursor: pointer;
                transition: all 0.2s ease;
                display: flex;
                align-items: center;
            }

            .btn-category:hover {
                background: var(--soft-blue);
            }

            /* Search Container */
            .search-container {
                position: relative;
                flex: 1;
                max-width: 600px;
                margin: 0 20px;
            }

            .search-box-header {
                display: flex;
                border: 1px solid #ddd;
                border-radius: 6px;
                overflow: hidden;
                background: white;
                height: 36px;
            }

            .search-box-header input {
                flex: 1;
                padding: 0 12px;
                border: none;
                outline: none;
                font-size: 13px;
                background: #f8f9fa;
            }

            .search-box-header input::placeholder {
                color: #999;
            }

            .search-btn-header {
                background: #f8f9fa;
                border: none;
                padding: 0 12px;
                color: #666;
                cursor: pointer;
                transition: background 0.2s ease;
            }

            .search-btn-header:hover {
                background: #e9ecef;
                color: #333;
            }

            /* Right Section */
            .right-section {
                gap: 20px;
                align-items: center;
            }

            /* Cart Icon */
            .cart-icon-header {
                position: relative;
                color: var(--text-gray);
                text-decoration: none;
                padding: 8px;
                font-size: 18px;
                transition: color 0.2s ease;
            }

            .cart-icon-header:hover {
                color: var(--primary-blue);
            }

            .cart-badge {
                position: absolute;
                top: 2px;
                right: 2px;
                background: var(--danger-red);
                color: white;
                border-radius: 50%;
                width: 16px;
                height: 16px;
                font-size: 10px;
                font-weight: 600;
                display: flex;
                align-items: center;
                justify-content: center;
                border: 2px solid white;
            }

            /* User Section */
            .user-section {
                position: relative;
            }

            .user-btn {
                background: transparent;
                border: none;
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 6px 10px;
                border-radius: 6px;
                cursor: pointer;
                transition: background 0.2s ease;
            }

            .user-btn:hover {
                background: #f8f9fa;
            }

            .user-avatar {
                width: 24px;
                height: 24px;
                background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 12px;
                font-weight: 600;
            }

            .user-dropdown-content {
                display: none;
                position: absolute;
                right: 0;
                top: 100%;
                background: white;
                min-width: 300px;
                max-width: 320px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.15);
                border-radius: 8px;
                margin-top: 8px;
                z-index: 1003;
                border: 1px solid #e5e7e9;
            }

            .user-section.show .user-dropdown-content {
                display: block;
            }

            /* Dropdown Header */
            .user-dropdown-header {
                padding: 16px;
                border-bottom: 1px solid #f1f1f1;
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .user-avatar-large {
                width: 40px;
                height: 40px;
                background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 16px;
                font-weight: 600;
            }

            .user-info-text strong {
                font-size: 14px;
                color: #31353b;
            }

            .menu-content {
                flex: 1;
                display: flex;
                flex-direction: column;
            }

            .menu-title {
                font-size: 13px;
                font-weight: 500;
                color: #31353b;
            }

            .menu-subtitle {
                font-size: 11px;
                color: #9ca3af;
            }

            .menu-subtitle.green {
                color: #03AC0E;
            }

            .menu-value {
                font-size: 12px;
                color: #666;
            }

            /* Dropdown Links */
            .dropdown-links {
                border-top: 1px solid #f1f1f1;
                padding: 8px 0;
            }

            .dropdown-link {
                display: block;
                padding: 10px 16px;
                color: #31353b;
                text-decoration: none;
                font-size: 13px;
                transition: background 0.2s ease;
            }

            .dropdown-link:hover {
                background: #f8f9fa;
                color: #31353b;
            }

            .footer-badge {
                background: #03AC0E;
                color: white;
                padding: 2px 8px;
                border-radius: 4px;
                font-size: 10px;
            }

            .mission-count {
                background: #f1f1f1;
                color: #666;
                padding: 2px 6px;
                border-radius: 50%;
                font-size: 10px;
            }

            /* Logout */
            .dropdown-logout {
                border-top: 1px solid #f1f1f1;
                padding: 8px 0;
            }

            .logout-btn {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 10px 16px;
                color: #666;
                text-decoration: none;
                font-size: 13px;
                transition: background 0.2s ease;
            }

            .logout-btn:hover {
                background: #f8f9fa;
                color: #666;
            }

            .user-name {
                color: var(--dark-blue);
                font-size: 14px;
                font-weight: 400;
            }

            /* Auth Buttons */
            .auth-buttons {
                display: flex;
                gap: 8px;
                align-items: center;
            }

            .login-btn {
                color: var(--primary-blue);
                text-decoration: none;
                font-weight: 500;
                font-size: 14px;
                padding: 8px 12px;
                border-radius: 6px;
                transition: background 0.2s ease;
            }

            .login-btn:hover {
                background: var(--soft-blue);
                color: var(--primary-blue);
            }

            .register-btn {
                background: var(--primary-blue);
                color: white;
                text-decoration: none;
                font-weight: 500;
                font-size: 14px;
                padding: 8px 16px;
                border-radius: 6px;
                transition: background 0.2s ease;
            }

            .register-btn:hover {
                background: var(--secondary-blue);
                color: white;
            }

            .top-header-bar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1002;
                background: var(--soft-blue);
                padding: 6px 0;
                font-size: 13px;
                border-bottom: 1px solid var(--border-gray);
            }

            .promo-text {
                color: var(--dark-blue);
                display: flex;
                align-items: center;
            }

            .promo-text i {
                color: var(--primary-blue);
            }

            .top-links {
                display: flex;
                gap: 20px;
            }

            .top-links a {
                color: var(--text-gray);
                text-decoration: none;
                font-size: 12px;
                transition: color 0.2s ease;
            }

            .top-links a:hover {
                color: var(--primary-blue);
            }

            .navbar-filter {
                padding: 8px 0;
                background: white;
            }

            .filter-items {
                display: flex;
                gap: 25px;
                align-items: center;
                overflow-x: auto;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
            }

            .filter-item {
                color: var(--text-gray);
                text-decoration: none;
                transition: color 0.2s ease;
                white-space: nowrap;
                font-size: 13px;
            }

            .filter-item:hover {
                color: var(--primary-blue);
            }

            /* Search Dropdown */
            .search-dropdown {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                border: 1px solid #ddd;
                border-top: none;
                border-radius: 0 0 6px 6px;
                max-height: 400px;
                overflow-y: auto;
                z-index: 1004;
                display: none;
            }

            .search-dropdown.show {
                display: block;
            }

            .search-item {
                display: flex;
                align-items: center;
                padding: 12px 16px;
                gap: 12px;
                text-decoration: none;
                color: #31353b;
                border-bottom: 1px solid #f1f1f1;
                transition: background 0.2s ease;
            }

            .search-item:hover {
                background: #f8f9fa;
                color: #31353b;
            }

            .search-item:last-child {
                border-bottom: none;
            }

            .search-icon {
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #666;
                flex-shrink: 0;
            }

            .search-icon.history {
                color: #999;
            }

            .search-icon.category {
                color: #03AC0E;
            }

            .search-icon.template {
                color: #FF6B35;
            }

            .search-content {
                flex: 1;
                display: flex;
                flex-direction: column;
            }

            .search-title {
                font-size: 14px;
                font-weight: 400;
                color: #31353b;
                margin-bottom: 2px;
            }

            .search-subtitle {
                font-size: 12px;
                color: #999;
            }

            .search-meta {
                font-size: 11px;
                color: #999;
                margin-left: auto;
            }

{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: var(--dark-blue);
background-color: 
#ffffff;
}

.top-nav-items {
display: flex;
align-items: center;
gap: 15px;
}

.cart-icon:hover {
color: var(--primary-blue);
}

.cart-icon {
position: relative;
color: var(--text-gray);
}
.cart-badge {
position: absolute;
top: -8px;
right: -8px;
background: 
#ff4444;
color: white;
border-radius: 50%;
width: 18px;
height: 18px;
font-size: 11px;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
border: 2px solid white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-badge.hidden {
display: none;
}
.sign-in-btn {
border: 2px solid var(--primary-blue);
color: var(--primary-blue);
background: transparent;
padding: 8px 20px;
border-radius: 8px;
font-weight: 500;
transition: all 0.3s ease;
text-decoration: none;
font-size: 0.9rem;
}
.sign-in-btn:hover {
background: var(--primary-blue);
color: white;
}

.nav-items-container {
display: flex;
justify-content: flex-start;
align-items: center;
height: 60px;
}
.nav-item-custom {
position: relative;
margin-right: 40px;
}
.nav-link-custom {
color: var(--text-gray) !important;
font-weight: 500;
padding: 20px 0;
display: block;
transition: color 0.3s ease;
text-decoration: none;
font-size: 0.95rem;
}
.nav-link-custom:hover,
.nav-link-custom.active {
color: var(--primary-blue) !important;
}
/ Active indicator line /
.nav-link-custom.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 3px;
background: var(--primary-blue);
border-radius: 2px 2px 0 0;
}
/ Forum link special styling /
/ Mobile Menu Toggle */
.mobile-menu-toggle {
display: none;
background: none;
border: none;
color: var(--text-gray);
font-size: 1.2rem;
cursor: pointer;
transition: color 0.3s ease;
margin-left: 10px;
}
.mobile-menu-toggle:hover {
color: var(--primary-blue);
}
.mobile-nav-dropdown {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
border-top: 1px solid var(--border-gray);
box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
z-index: 1001;
}
.mobile-nav-dropdown.show {
display: block;
}
.mobile-nav-item {
display: block;
padding: 15px 20px;
color: var(--text-gray);
text-decoration: none;
border-bottom: 1px solid var(--border-gray);
transition: all 0.3s ease;
}
.mobile-nav-item:hover,
.mobile-nav-item.active {
color: var(--primary-blue);
background: var(--soft-blue);
}
.mobile-nav-item:last-child {
border-bottom: none;
}
.forum-link {
color: var(--text-gray);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.forum-link:hover {
color: var(--primary-blue);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}


.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-gray);
}

      .template-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid var(--border-gray);
}

.template-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.template-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.template-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.template-image:hover img {
  transform: scale(1.05);
}

.template-content {
  padding: 25px;
}

.template-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.template-description {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.template-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.template-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.discount-badge {
  background: var(--success-green);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-wrapper .d-flex {
  align-items: center;
}

.template-footer small {
  font-size: 0.75rem;
  line-height: 1.2;
}

/* Price range styling */
.template-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.price-original {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-gray);
}

.btn-outline-primary {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

/* Categories */
.categories {
  padding: 80px 0;
  background: white;
}

.category-card {
  background: var(--soft-blue);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid var(--light-blue);
}

.category-card:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.category-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  color: white;
}

.category-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-blue);
  transition: all 0.3s ease;
}

.category-card:hover .category-title {
  color: white;
}

.category-count {
  color: var(--text-gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.category-card:hover .category-count {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
  background: var(--dark-blue);
  color: white;
  padding: 60px 0 30px;
}

.footer h5 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary-blue);
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-blue);
  transform: translateY(-3px);
}



.floating-cards {
position: relative;
width: 100%;
height: 100%;
}
.floating-card {
position: absolute;
background: white;
padding: 20px;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
display: flex;
align-items: center;
gap: 12px;
animation: float 6s ease-in-out infinite;
border: 1px solid var(--border-gray);
}
.floating-card i {
font-size: 1.5rem;
color: var(--primary-blue);
}
.floating-card span {
font-weight: 600;
color: var(--dark-blue);
white-space: nowrap;
}

@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}

.stars {
color: 
#fbbf24;
}

.author-avatar img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}
.author-info h6 {
margin: 0;
font-weight: 600;
color: var(--dark-blue);
}
.author-info small {
color: var(--text-gray);
}
/ Enhanced Hero Animations /
.hero-content h1 {
animation: slideInUp 1s ease-out;
}
.hero-content p {
animation: slideInUp 1s ease-out 0.2s both;
}
.loading-spinner {
width: 20px;
height: 20px;
border: 2px solid var(--border-gray);
border-top: 2px solid var(--primary-blue);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/ Enhanced Template Cards /
.template-card {
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.template-card:hover {
transform: translateY(-15px) scale(1.02);
}
/ Smooth scrolling improvements /
html {
scroll-behavior: smooth;
}



@keyframes growUp {
0% { transform: scaleY(0.7); }
100% { transform: scaleY(1); }
}

@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
25% { transform: translateY(-10px) rotate(1deg); }
50% { transform: translateY(-5px) rotate(-1deg); }
75% { transform: translateY(-15px) rotate(1deg); }
}

/* Responsive Design */
@media (min-width: 769px) {
  body {
      padding-top: 120px;
  }

  .hero {
      margin-top: -80px;
  }
}

@media (max-width: 480px) {
                .container {
                    padding: 0 10px;
                }

                .search-container {
                    margin: 0 8px;
                }

                .right-section {
                    gap: 8px;
                }

                .user-dropdown-content {
                    right: -20px;
                    min-width: 260px;
                }

                .filter-items {
                    padding: 0 10px;
                }
            }
            
@media (max-width: 768px) {
  body {
      padding-top: 70px;
  }
  
  .top-header-bar {
                    display: none;
                }

                /* Adjust navbar wrapper */
                .navbar-wrapper {
                    top: 0; /* Karena top-header-bar disembunyikan */
                    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                }

                .navbar-main {
                    padding: 8px 0;
                }

                /* Mobile layout adjustments */
                .left-section {
                    gap: 10px;
                    flex: 1;
                }

                .navbar-brand img {
                    height: 28px;
                }

                /* Sembunyikan category button di mobile */
                .category-btn {
                    display: none;
                }

                /* Search container di mobile */
                .search-container {
                    margin: 0 10px;
                    max-width: none;
                    flex: 1;
                }

                .search-box-header {
                    height: 34px;
                }

                .search-box-header input {
                    font-size: 12px;
                    padding: 0 10px;
                }

                .search-btn-header {
                    padding: 0 10px;
                }

                /* Right section di mobile */
                .right-section {
                    gap: 10px;
                    flex-shrink: 0;
                }

                /* Cart icon di mobile */
                .cart-icon-header {
                    padding: 6px;
                    font-size: 16px;
                }

                /* User section di mobile */
                .user-btn {
                    padding: 4px 6px;
                }

                .user-avatar {
                    width: 22px;
                    height: 22px;
                    font-size: 11px;
                }

                /* Sembunyikan nama user di mobile */
                .user-name {
                    display: none;
                }

                /* Auth buttons di mobile */
                .auth-buttons {
                    gap: 6px;
                }

                .login-btn {
                    font-size: 12px;
                    padding: 6px 8px;
                }

                .register-btn {
                    font-size: 12px;
                    padding: 6px 10px;
                }

                /* User dropdown di mobile */
                .user-dropdown-content {
                    right: -10px;
                    min-width: 280px;
                    max-width: 300px;
                }

                /* Filter items di mobile - horizontal scroll */
                .filter-items {
                    gap: 15px;
                    padding: 0 15px;
                }

                .filter-items::-webkit-scrollbar {
                    height: 2px;
                }

                .filter-items::-webkit-scrollbar-track {
                    background: #f1f1f1;
                }

                .filter-items::-webkit-scrollbar-thumb {
                    background: #c1c1c1;
                    border-radius: 10px;
                }

                .filter-item {
                    font-size: 12px;
                    padding: 2px 4px;
                }

                /* Search dropdown di mobile */
                .search-dropdown {
                    max-height: 300px;
                }

                .search-item {
                    padding: 10px 12px;
                }

                .search-title {
                    font-size: 13px;
                }

                .search-subtitle {
                    font-size: 11px;
                }

                .search-meta {
                    font-size: 10px;
                }

  .toast-container {
      top: 10px;
      right: 10px;
      left: 10px;
  }

  .toast {
      min-width: auto;
      max-width: none;
  }

  .sign-in-btn {
      padding: 6px 15px;
      font-size: 0.85rem;
  }

  /* Hide forum text on mobile */
  .forum-link {
      display: none;
  }

  /* Show mobile menu toggle */
  .mobile-menu-toggle {
      display: block;
  }

  .section-title h2 {
      font-size: 2rem;
  }

  .template-card {
      margin-bottom: 20px;
  }

  .category-card {
      padding: 30px 20px;
  }
}

.main-content {
  padding-top: 0; 
  min-height: 100vh;
}


.breadcrumb-section {
  background: var(--soft-blue);
  padding: 40px 0;
}

.custom-breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.custom-breadcrumb .breadcrumb-item {
  color: var(--text-gray);
}

.custom-breadcrumb .breadcrumb-item.active {
  color: var(--primary-blue);
  font-weight: 600;
}

.custom-breadcrumb .breadcrumb-item a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-blue);
}

.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: 
#f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 8px;
  padding: 10px 0;
  top: 100%;
  margin-top: 5px;
}

.user-dropdown-content a {
  color: black;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #eee;
}

.user-dropdown-content a:hover {
  background-color: 
#f1f1f1;
}

.user-dropdown-content a:last-child {
  border-bottom: none;
  color: 
#dc3545;
}

.user-dropdown.show .user-dropdown-content {
  display: block;
}

.user-info {
  padding: 10px 16px;
  border-bottom: 2px solid #eee;
  margin-bottom: 5px;
}

.user-info small {
  color: #666;
  display: block;
}


.toast-container {
position: fixed;
top: 20px;
right: 20px;
z-index: 10000;
pointer-events: none;
}

.toast {
background: white;
border-radius: 8px;
padding: 16px 20px;
margin-bottom: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
border-left: 4px solid;
display: flex;
align-items: center;
gap: 12px;
min-width: 300px;
max-width: 400px;
pointer-events: auto;
transform: translateX(100%);
opacity: 0;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
}
.toast.show {
transform: translateX(0);
opacity: 1;
}
.toast.success {
border-left-color: var(--success-green);
background: 
#f0fdf4;
}
.toast.error {
border-left-color: 
#ef4444;
background: 
#fef2f2;
}
.toast.warning {
border-left-color: var(--warning-yellow);
background: 
#fffbeb;
}
.toast.info {
border-left-color: var(--primary-blue);
background: var(--soft-blue);
}
.toast-icon {
font-size: 20px;
flex-shrink: 0;
}
.toast.success .toast-icon {
color: var(--success-green);
}
.toast.error .toast-icon {
color: 
#ef4444;
}
.toast.warning .toast-icon {
color: var(--warning-yellow);
}
.toast.info .toast-icon {
color: var(--primary-blue);
}
.toast-content {
flex: 1;
}
.toast-title {
font-weight: 600;
margin-bottom: 4px;
color: var(--dark-blue);
font-size: 14px;
}
.toast-message {
color: var(--text-gray);
font-size: 13px;
line-height: 1.4;
}
.toast-close {
position: absolute;
top: 8px;
right: 8px;
background: none;
border: none;
color: var(--text-gray);
cursor: pointer;
padding: 4px;
font-size: 12px;
opacity: 0.7;
transition: opacity 0.2s ease;
}
.toast-close:hover {
opacity: 1;
}

.toast-progress {
position: absolute;
bottom: 0;
left: 0;
height: 2px;
background: rgba(0, 0, 0, 0.1);
border-radius: 0 0 8px 8px;
overflow: hidden;
}
.toast-progress-bar {
height: 100%;
background: currentColor;
width: 100%;
transform: translateX(-100%);
transition: transform linear;
}
.toast.success .toast-progress-bar {
background: var(--success-green);
}
.toast.error .toast-progress-bar {
background: 
#ef4444;
}
.toast.warning .toast-progress-bar {
background: var(--warning-yellow);
}
.toast.info .toast-progress-bar {
background: var(--primary-blue);
}

.template-labels {
position: absolute;
top: 15px;
left: 15px;
z-index: 10;
display: flex;
flex-direction: column;
gap: 8px;
}
.template-label {
padding: 4px 10px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
color: white;
backdrop-filter: blur(10px);
}
.label-new { background: linear-gradient(135deg, 
#10b981, 
#059669); }
.label-popular { background: linear-gradient(135deg, 
#f59e0b, 
#d97706); }
.label-bestseller { background: linear-gradient(135deg, 
#ef4444, 
#dc2626); }
.wishlist-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
transform: none !important;
pointer-events: none;
}

.template-meta {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 10px;
font-size: 0.85rem;
color: var(--text-gray);
}
.rating-stars {
display: flex;
align-items: center;
gap: 3px;
color: 
#fbbf24;
}
.tech-stack {
display: flex;
gap: 6px;
margin-bottom: 10px;
}
.tech-tag {
background: var(--soft-blue);
color: var(--primary-blue);
padding: 2px 6px;
border-radius: 10px;
font-size: 0.7rem;
font-weight: 500;
}

.wishlist-btn {
position: absolute;
top: 15px;
right: 15px;
background: rgba(255, 255, 255, 0.9);
border: none;
width: 35px;
height: 35px;
border-radius: 50%;
color: var(--text-gray);
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
z-index: 10;
}
.wishlist-btn:hover,
.wishlist-btn.active {
color: 
#ef4444;
transform: scale(1.1);
}

.category-scroll {
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            position: relative;
        }
        .category-scroll::-webkit-scrollbar {
            display: none;
        }
        .categories-container {
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 16px;
            background: white;
            position: relative;
            margin-bottom: 20px;
        }
        .category-item {
            min-width: 120px;
            text-align: center;
            flex-shrink: 0;
        }
        .category-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }
        .category-item h6 {
            font-size: 14px;
            margin-top: 8px;
            color: #333;
            font-weight: 600;
        }
        .category-item p {
            font-size: 12px;
            color: #666;
            margin: 0;
        }
        .main-category {
            min-width: auto;
            text-align: center;
            flex-shrink: 0;
            padding: 8px 16px;
            border-radius: 20px;
            background: #f8f9fa;
            margin-right: 8px;
            border: 1px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-category i {
            font-size: 16px;
        }
        .main-category span {
            font-size: 12px;
            font-weight: 500;
            color: #333;
            white-space: nowrap;
        }
        .scroll-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .scroll-arrow:hover {
            background: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .scroll-arrow-left {
            left: -15px;
        }
        .scroll-arrow-right {
            right: -15px;
        }
        .kategori-text {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 16px;
        }
        .icon-kategori { color: #28a745; }
        .icon-handphone { color: #007bff; }
        .icon-topup { color: #17a2b8; }
        .icon-elektronik { color: #dc3545; }
        .icon-perawatan { color: #fd7e14; }
        .icon-keuangan { color: #ffc107; }
        .icon-komputer { color: #6c757d; }
        
        .category-section {
            position: relative;
        }
        
        .categories-container:hover .scroll-arrow {
            opacity: 1;
        }