/* Produk Page Styles */
/* Ini adalah file CSS khusus untuk halaman produk */
/* Untuk saat ini hanya berisi komentar karena kita baru membuat header */
/* Komponen lain akan ditambahkan sesuai instruksi berikutnya */

/* Header sudah menggunakan style dari style.css utama */
/* Kita hanya perlu menambahkan style khusus untuk halaman produk di sini */

/* Produk Page Styles - Completely Redesigned Hero Section */

/* Product Hero Section */
.product-hero {
    position: relative;
    min-height: 90vh;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a, #1a1a3a);
    z-index: 1;
}

.product-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(100, 100, 255, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(100, 100, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px, 25px 25px;
    background-position: 0 0, 25px 25px;
    animation: particleFloat 20s infinite linear;
    z-index: -1;
}

.product-hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(64, 84, 255, 0.8), rgba(64, 84, 255, 0));
    animation: pulse 8s infinite alternate;
}

.orb-2 {
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(128, 0, 255, 0.6), rgba(128, 0, 255, 0));
    animation: pulse 12s infinite alternate-reverse;
}

.orb-3 {
    top: 40%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.5), rgba(0, 200, 255, 0));
    animation: pulse 10s infinite alternate;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.product-hero-content {
    width: 50%;
    padding-right: 40px;
}

.product-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--accent-color);
    border-radius: 0 4px 4px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.product-hero h1 .highlight {
    position: relative;
    color: var(--accent-color);
}

.product-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(64, 84, 255, 0.3);
    z-index: -1;
    transform: skewX(-15deg);
}

.product-hero h1 .gradient-text {
    background: linear-gradient(90deg, #4054ff, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 90%;
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.category-btn {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn i {
    margin-right: 6px;
    font-size: 0.8rem;
}

.category-btn:hover, .category-btn.active {
    background: rgba(64, 84, 255, 0.2);
    border-color: rgba(64, 84, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(64, 84, 255, 0.3);
}

.product-hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.stat-item {
    position: relative;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(64, 84, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.stat-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0.5;
}

.product-hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

/* Efek glow di belakang tombol */
.product-hero-cta::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 60px;
    background: radial-gradient(circle, rgba(64, 84, 255, 0.4) 0%, rgba(64, 84, 255, 0) 70%);
    filter: blur(25px);
    z-index: -1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Primary Button dengan efek futuristik */
.primary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(90deg, #4054ff, #8a2be2);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 
        0 10px 20px rgba(64, 84, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: none;
    min-width: 180px;
    letter-spacing: 0.5px;
}

.primary-btn span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Efek hover yang dinamis */
.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(64, 84, 255, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset;
}

.primary-btn:hover span {
    transform: translateX(-5px);
}

/* Efek gelombang saat hover */
.primary-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.primary-btn:hover::after {
    transform: translateX(100%);
}

/* Icon dengan efek khusus */
.primary-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-left: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.primary-btn:hover .btn-icon {
    transform: translateX(5px) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
}

/* Video Button dengan desain unik */
.video-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    letter-spacing: 0.5px;
}

.video-btn span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Efek hover yang elegan */
.video-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-btn:hover span {
    transform: translateX(-5px);
}

/* Icon play dengan animasi pulse */
.video-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(64, 84, 255, 0.2);
    border-radius: 50%;
    margin-left: 12px;
    color: var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.video-btn .btn-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    opacity: 0.5;
    animation: btnPulse 2s infinite;
}

.video-btn:hover .btn-icon {
    transform: translateX(5px) scale(1.1);
    background: rgba(64, 84, 255, 0.3);
}

/* Animasi khusus untuk tombol */
@keyframes btnPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Efek hover tambahan untuk kedua tombol */
.primary-btn:active, .video-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive styles untuk tombol */
@media (max-width: 768px) {
    .product-hero-cta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .primary-btn, .video-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .product-hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    
    .primary-btn, .video-btn {
        width: 100%;
        justify-content: center;
    }
}

.product-hero-visual {
    width: 45%;
    position: relative;
}

.product-devices {
    position: relative;
    height: 400px;
}

.device {
    position: absolute;
    background: #1a1a2e;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.device-laptop {
    width: 280px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 3;
}

.device-laptop .device-screen {
    height: 85%;
    background: linear-gradient(135deg, #2a2a4a, #1a1a3a);
    position: relative;
}

.device-laptop .device-base {
    height: 15%;
    background: #0f0f1e;
    border-radius: 0 0 10px 10px;
}

.device-phone {
    width: 80px;
    height: 160px;
    top: 60%;
    left: 25%;
    transform: rotate(-15deg);
    z-index: 2;
    border-radius: 15px;
}

.device-phone .device-screen {
    height: 100%;
    background: linear-gradient(135deg, #2a2a4a, #1a1a3a);
    border-radius: 15px;
}

.device-tablet {
    width: 140px;
    height: 180px;
    top: 45%;
    right: 20%;
    transform: rotate(10deg);
    z-index: 1;
    border-radius: 10px;
}

.device-tablet .device-screen {
    height: 100%;
    background: linear-gradient(135deg, #2a2a4a, #1a1a3a);
    border-radius: 10px;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a4a, #1a1a3a);
    overflow: hidden;
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: float 6s infinite ease-in-out;
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
}

.floating-icon.icon-3 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon.icon-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.floating-icon.icon-5 {
    top: 45%;
    left: 50%;
    animation-delay: 4s;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, #526df9, #9d6eff);
    opacity: 0.2;
    animation: float 8s infinite ease-in-out;
}

.floating-shape.shape-1 {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    top: 10%;
    right: 20%;
    transform: rotate(45deg);
    animation-delay: 1s;
}

.floating-shape.shape-2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    bottom: 30%;
    right: 25%;
    animation-delay: 3s;
}

.tech-badges {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.tech-badge {
    padding: 6px 12px;
    background: rgba(82, 109, 249, 0.2);
    border: 1px solid rgba(82, 109, 249, 0.3);
    border-radius: 20px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
}

.scroll-indicator a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    color: #ffffff;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    position: relative;
    margin-bottom: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.scroll-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* Wave Separator */
.wave-separator {
    position: relative;
    z-index: 2;
    margin-top: -2px;
}

.wave-separator svg {
    display: block;
    width: 100%;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes particleFloat {
    0% {
        background-position: 0 0, 25px 25px;
    }
    100% {
        background-position: 50px 50px, 75px 75px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .product-hero-content {
        max-width: 100%;
        margin-bottom: 60px;
        width: 100%;
        padding-right: 0;
    }
    
    .product-hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-hero-stats {
        justify-content: center;
    }
    
    .product-hero-cta {
        justify-content: center;
    }
    
    .product-hero-visual {
        width: 100%;
        height: 400px;
    }
    
    .tech-badges {
        right: 10%;
    }
}

@media (max-width: 992px) {
    .product-hero .container {
        flex-direction: column;
    }
    
    .product-hero-content, 
    .product-hero-visual {
        width: 100%;
        padding-right: 0;
    }
    
    .product-hero-content {
        margin-bottom: 60px;
    }
    
    .product-hero h1 {
        font-size: 2.8rem;
    }
    
    .product-devices {
        height: 350px;
    }
    
    .device-laptop {
        width: 240px;
        height: 150px;
    }
    
    .device-phone {
        width: 70px;
        height: 140px;
    }
    
    .device-tablet {
        width: 120px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 100px 0 60px;
    }
    
    .product-hero h1 {
        font-size: 2.2rem;
    }
    
    .product-hero p {
        font-size: 1rem;
    }
    
    .product-hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .product-devices {
        height: 300px;
    }
    
    .device-laptop {
        width: 260px;
        height: 160px;
        transform: translate(-50%, -50%);
    }
    
    .device-phone {
        width: 80px;
        height: 160px;
        left: 15%;
    }
    
    .device-tablet {
        width: 140px;
        height: 180px;
        right: 5%;
    }
    
    .tech-badges {
        bottom: 5%;
        right: 5%;
    }
}

@media (max-width: 576px) {
    .product-hero h1 {
        font-size: 1.8rem;
    }
    
    .product-hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .product-hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-devices {
        height: 250px;
    }
    
    .device-laptop {
        width: 200px;
        height: 130px;
    }
    
    .device-phone {
        width: 60px;
        height: 120px;
        left: 20%;
    }
    
    .device-tablet {
        width: 100px;
        height: 140px;
        right: 15%;
    }
    
    .tech-badges {
        display: none;
    }
}

/* Product Catalog Section */
.product-catalog {
  position: relative;
  padding: 120px 0;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

/* Section Header Styling */
.product-catalog .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.product-catalog .section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
  color: var(--text-light);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.3);
  transition: all 0.3s ease;
}

.product-catalog .section-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: badgeShine 3s infinite;
}

.product-catalog .section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}

.product-catalog .section-header h2 span {
  color: var(--accent-color);
  position: relative;
}

.product-catalog .section-header h2 span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(var(--accent-color-rgb), 0.7);
}

.product-catalog .section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Product Filters */
.product-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 12px 24px;
  background-color: var(--bg-card);
  color: var(--text-secondary);
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
  transition: width 0.3s ease;
  z-index: -1;
}

.filter-btn:hover {
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(var(--accent-color-rgb), 0.3);
}

.filter-btn:hover::before {
  width: 100%;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
  color: var(--text-light);
  box-shadow: 0 8px 20px rgba(var(--accent-color-rgb), 0.4);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Product Card */
.product-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.1) 0%, rgba(var(--accent-color-2-rgb), 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border-color: rgba(var(--accent-color-rgb), 0.3);
}

.product-card:hover::before {
  opacity: 1;
}

/* Product Image */
.product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.3);
  z-index: 2;
}

/* Product Content */
.product-content {
  padding: 25px;
}

.product-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: var(--accent-color);
}

.product-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Product Meta */
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Rating */
.product-rating {
  display: flex;
  align-items: center;
}

.rating-stars {
  color: #FFD700;
  margin-right: 8px;
  font-size: 14px;
}

.rating-count {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Price */
.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.old-price {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  margin-right: 8px;
  opacity: 0.7;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 10px;
}

.product-btn {
  flex: 1;
  padding: 12px 15px;
  text-align: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-details {
  background-color: rgba(var(--accent-color-rgb), 0.1);
  color: var(--accent-color);
  border: 1px solid rgba(var(--accent-color-rgb), 0.3);
}

.btn-details:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.3);
}

.btn-demo {
  background-color: rgba(var(--accent-color-2-rgb), 0.1);
  color: var(--accent-color-2);
  border: 1px solid rgba(var(--accent-color-2-rgb), 0.3);
}

.btn-demo:hover {
  background-color: var(--accent-color-2);
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(var(--accent-color-2-rgb), 0.3);
}

/* Tech Stack Tags */
.product-tech-stack {
  padding: 0 25px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tech-stack span {
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  font-size: 12px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.product-card:hover .product-tech-stack span {
  background-color: rgba(var(--accent-color-rgb), 0.1);
  color: var(--accent-color);
}

/* Load More Button */
.load-more {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn {
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
  color: var(--text-light);
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(var(--accent-color-rgb), 0.3);
  position: relative;
  overflow: hidden;
}

.load-more-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: btnShine 3s infinite;
}

.load-more-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(var(--accent-color-rgb), 0.5);
}

.load-more-btn i {
  transition: transform 0.3s ease;
}

.load-more-btn:hover i {
  transform: translateY(3px);
}

/* Perbaikan untuk elemen teknologi mengambang dengan efek parallax */

/* Floating Tech Elements - Perbaikan */
.floating-tech-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.tech-element {
  position: absolute;
  font-size: 40px;
  color: rgba(var(--accent-color-rgb), 0.1);
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.element-1 {
  top: 15%;
  left: 5%;
}

.element-2 {
  top: 70%;
  left: 10%;
}

.element-3 {
  top: 25%;
  right: 8%;
}

.element-4 {
  top: 60%;
  right: 5%;
}

.element-5 {
  top: 40%;
  left: 50%;
}

/* Perbaikan animasi untuk elemen teknologi */
@keyframes techFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Terapkan animasi yang berbeda untuk setiap elemen */
.element-1 {
  animation: techFloat 8s infinite ease-in-out;
}

.element-2 {
  animation: techFloat 12s infinite ease-in-out;
  animation-delay: 1s;
}

.element-3 {
  animation: techFloat 10s infinite ease-in-out;
  animation-delay: 2s;
}

.element-4 {
  animation: techFloat 9s infinite ease-in-out;
  animation-delay: 3s;
}

.element-5 {
  animation: techFloat 11s infinite ease-in-out;
  animation-delay: 4s;
}

/* Animations */
@keyframes badgeShine {
  0% {
    left: -100%;
  }
  20%, 100% {
    left: 100%;
  }
}

@keyframes btnShine {
  0% {
    left: -100%;
  }
  20%, 100% {
    left: 100%;
  }
}

@keyframes techFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  .product-catalog {
    padding: 80px 0;
  }
  
  .product-catalog .section-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .product-catalog .section-header h2 {
    font-size: 32px;
  }
  
  .product-filters {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-catalog .section-header h2 {
    font-size: 28px;
  }
  
  .product-catalog .section-subtitle {
    font-size: 16px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .load-more-btn {
    padding: 12px 30px;
    font-size: 15px;
  }
}