/* Products Page Styles - Konsisten dengan desain beranda */

/* Products Header */
.products-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--light-blue) 25%,
    var(--primary-orange) 75%,
    var(--light-orange) 100%
  );
  color: white;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.products-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top right,
      rgba(255, 122, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(30, 74, 155, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.products-header-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.products-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff 0%, #ff7a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

/* Product Filters */
.product-filters {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* When navbar is scrolled */
.scrolled .product-filters {
  top: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.filters-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-container {
  position: relative;
  min-width: 300px;
}

.search-input {
  width: 100%;
  padding: 0.8rem 3rem 0.8rem 1.5rem;
  border: 2px solid #ddd;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.search-input::placeholder {
  color: #999;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.search-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
}

.filter-btn {
  background: white;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-mixed);
  transition: left 0.3s ease;
  z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  border-color: var(--primary-orange);
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.filter-btn:hover::before,
.filter-btn.active::before {
  left: 0;
}

.filter-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

/* Products Section */
.products-section {
  padding: 3rem 0;
  background: linear-gradient(
      135deg,
      rgba(30, 74, 155, 0.02) 0%,
      transparent 25%
    ),
    linear-gradient(225deg, rgba(255, 122, 0, 0.02) 0%, transparent 25%),
    linear-gradient(315deg, rgba(43, 92, 184, 0.03) 0%, transparent 25%),
    linear-gradient(45deg, rgba(255, 140, 26, 0.02) 0%, transparent 25%),
    linear-gradient(
      135deg,
      #f8f9fa 0%,
      #ffffff 10%,
      #f1f3f4 20%,
      rgba(30, 74, 155, 0.03) 35%,
      #ffffff 50%,
      rgba(255, 122, 0, 0.03) 65%,
      #f1f3f4 80%,
      #ffffff 90%,
      #f8f9fa 100%
    );
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse 600px 400px at top left,
      rgba(30, 74, 155, 0.08) 0%,
      rgba(30, 74, 155, 0.04) 30%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 500px 350px at bottom right,
      rgba(255, 122, 0, 0.08) 0%,
      rgba(255, 122, 0, 0.04) 30%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 400px 300px at center,
      rgba(43, 92, 184, 0.03) 0%,
      transparent 40%
    ),
    conic-gradient(
      from 45deg at 25% 75%,
      transparent 0deg,
      rgba(30, 74, 155, 0.02) 90deg,
      transparent 180deg,
      rgba(255, 122, 0, 0.02) 270deg,
      transparent 360deg
    );
  pointer-events: none;
  z-index: 1;
}

/* Animated gradient effect */
.products-section::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: linear-gradient(
      60deg,
      transparent 0%,
      rgba(30, 74, 155, 0.04) 20%,
      transparent 40%,
      rgba(255, 122, 0, 0.04) 60%,
      transparent 80%,
      rgba(43, 92, 184, 0.03) 100%
    ),
    radial-gradient(
      ellipse at 30% 70%,
      rgba(255, 140, 26, 0.05) 0%,
      transparent 50%
    );
  animation: gradientFlow 25s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes gradientFlow {
  0% {
    transform: rotate(0deg) scale(1) translateX(0%);
    opacity: 0.4;
  }
  25% {
    transform: rotate(3deg) scale(1.02) translateX(2%);
    opacity: 0.6;
  }
  50% {
    transform: rotate(-2deg) scale(0.98) translateX(-1%);
    opacity: 0.5;
  }
  75% {
    transform: rotate(1deg) scale(1.01) translateX(1.5%);
    opacity: 0.7;
  }
  100% {
    transform: rotate(-1deg) scale(1.03) translateX(-0.5%);
    opacity: 0.3;
  }
}

.products-section .container {
  position: relative;
  z-index: 2;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  border: 2px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 122, 0, 0.2),
    0 5px 15px rgba(30, 74, 155, 0.1);
  border-color: var(--primary-orange);
}

.product-card:hover::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    rgba(30, 74, 155, 0.1) 0%,
    rgba(255, 122, 0, 0.1) 50%,
    rgba(43, 92, 184, 0.1) 100%
  );
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  animation: cardGlow 0.3s ease forwards;
  pointer-events: none;
}

@keyframes cardGlow {
  to {
    opacity: 1;
  }
}

.product-card[data-brand="brateck"] {
  background: white;
}

.product-card[data-brand="pixelscreen"] {
  background: white;
}

.product-card[data-brand="epson"] {
  background: white;
}

.product-image {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
  background: #ffffff !important;
  border-bottom: 2px solid #f0f0f0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-orange);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 122, 0, 0.3);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

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

.btn-product-detail {
  background: white;
  color: #333;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  transform: translateY(15px);
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card:hover .btn-product-detail {
  transform: translateY(0);
}

.btn-product-detail:hover {
  background: var(--primary-orange);
  color: white;
  transform: translateY(-2px);
}

/* Product Content */
.product-content {
  flex: 1;
  padding: 1rem 1.5rem 1rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c1a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-category {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin: 0;
  padding: 0;
  display: block;
}

.product-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  margin-top: -2px;
  margin-bottom: 0.75rem;
  font-weight: 400;
  display: block;
}

.product-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  font-size: 0.95rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-tag i {
  color: white;
  font-size: 0.7rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: white;
  color: var(--primary-orange);
  flex: 1;
}

.btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Loading & Empty States */
.loading-spinner {
  text-align: center;
  padding: 3rem 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.no-products {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.no-products i {
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 1rem;
}

.no-products h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

/* Prevent Layout Shift */
.product-card {
  min-height: 400px;
  contain: layout;
}

.product-image {
  min-height: 200px;
  background: #f8f9fa;
}

.product-content {
  max-height: 150px;
}

/* Loading Animation Enhancement */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* Print Styles */
@media print {
  .product-filters,
  .navbar,
  .footer,
  .product-actions,
  .share-buttons {
    display: none !important;
  }

  .product-detail-content {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .main-image img {
    height: auto !important;
    max-height: 300px !important;
  }
}

/* Brand specific colors */
.product-card[data-brand="brateck"] .product-content {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c1a 100%);
}

.product-card[data-brand="pixelscreen"] .product-content {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #2b5cb8 100%);
}

.product-card[data-brand="epson"] .product-content {
  background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
}

.product-card[data-brand="brateck"] .product-badge {
  background: var(--primary-orange);
}

.product-card[data-brand="pixelscreen"] .product-badge {
  background: var(--primary-blue);
}

.product-card[data-brand="epson"] .product-badge {
  background: #0066cc;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }

  .filter-buttons {
    gap: 0.8rem;
  }

  .search-container {
    min-width: 250px;
  }
}

@media (max-width: 992px) {
  .products-header {
    padding: 7rem 0 3rem;
  }

  .products-title {
    font-size: 3rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .filters-row {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .filters-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .search-container {
    min-width: auto;
    width: 100%;
    order: 2;
  }

  .filter-buttons {
    justify-content: center;
    gap: 0.5rem;
    order: 1;
    flex-wrap: wrap;
  }

  .products-header {
    padding: 6rem 0 2.5rem;
  }

  .products-title {
    font-size: 2.5rem;
  }

  .products-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .filter-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    min-width: 120px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card {
    min-height: 380px;
    margin: 0 auto;
    max-width: 450px;
  }

  .product-image {
    height: 200px;
    padding: 1.2rem;
  }

  .product-title {
    font-size: 1.3rem;
    margin: 0;
    padding: 0;
    line-height: 1;
  }

  .product-subtitle {
    font-size: 0.8rem;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    margin-top: -2px;
    margin-bottom: 0.6rem;
  }

  .product-description {
    font-size: 0.9rem;
  }

  .product-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .products-header {
    padding: 5rem 0 2rem;
  }

  .products-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .products-subtitle {
    font-size: 0.95rem;
    padding: 0 1.5rem;
  }

  .product-filters {
    padding: 1.5rem 0;
    top: 60px;
    position: sticky;
  }

  .scrolled .product-filters {
    top: 50px;
  }

  .filter-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .filter-btn {
    width: 200px;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .search-input {
    padding: 0.9rem 3rem 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .product-card {
    min-height: 400px;
    max-width: none;
  }

  .product-content {
    padding: 0.8rem 1.2rem;
  }

  .product-title {
    font-size: 1.1rem;
    line-height: 1;
    margin: 0;
    padding: 0;
  }

  .product-subtitle {
    font-size: 0.8rem;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    margin-top: -2px;
    margin-bottom: 0.6rem;
  }

  .product-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .product-features {
    gap: 0.4rem;
    margin-bottom: 1.2rem;
  }

  .feature-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Animation for product cards */
.product-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.product-card:nth-child(3) {
  animation-delay: 0.3s;
}
.product-card:nth-child(4) {
  animation-delay: 0.4s;
}
.product-card:nth-child(5) {
  animation-delay: 0.5s;
}
.product-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Brand buttons hover effects */
.filter-btn[data-filter="brateck"]:hover,
.filter-btn[data-filter="brateck"].active {
  box-shadow: 0 15px 35px rgba(255, 122, 0, 0.2);
}

.filter-btn[data-filter="pixelscreen"]:hover,
.filter-btn[data-filter="pixelscreen"].active {
  box-shadow: 0 15px 35px rgba(43, 92, 184, 0.2);
}

.filter-btn[data-filter="epson"]:hover,
.filter-btn[data-filter="epson"].active {
  box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
}

/* Mobile Navigation Fix */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    padding: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column !important;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    color: #333 !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block !important;
  }

  .nav-link:hover {
    color: var(--primary-orange) !important;
    background: rgba(255, 122, 0, 0.05);
    padding-left: 1rem !important;
  }

  .nav-link.active {
    color: var(--primary-orange) !important;
    font-weight: 700 !important;
  }
}

/* Responsive gradient untuk mobile */
.products-section {
  background: linear-gradient(
    135deg,
    #f8f9fa 0%,
    #e9ecef 30%,
    rgba(30, 74, 155, 0.03) 60%,
    rgba(255, 122, 0, 0.03) 90%,
    #f8f9fa 100%
  );
}

.products-section::before {
  background: radial-gradient(
      ellipse at top center,
      rgba(30, 74, 155, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at bottom center,
      rgba(255, 122, 0, 0.05) 0%,
      transparent 40%
    );
}

.products-section::after {
  animation-duration: 15s;
  background: linear-gradient(
    60deg,
    transparent 0%,
    rgba(30, 74, 155, 0.02) 30%,
    transparent 60%,
    rgba(255, 122, 0, 0.02) 90%,
    transparent 100%
  );
}

/* Gradient untuk tablet */
@media (min-width: 768px) and (max-width: 992px) {
  .products-section {
    background: linear-gradient(
      135deg,
      #f8f9fa 0%,
      #e9ecef 20%,
      rgba(30, 74, 155, 0.04) 50%,
      rgba(255, 122, 0, 0.04) 80%,
      #f8f9fa 100%
    );
  }

  .products-section::before {
    background: radial-gradient(
        ellipse at top right,
        rgba(30, 74, 155, 0.06) 0%,
        transparent 45%
      ),
      radial-gradient(
        ellipse at bottom left,
        rgba(255, 122, 0, 0.06) 0%,
        transparent 45%
      );
  }
}

/* Subtle pattern overlay untuk tekstur */
.products-section .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(30, 74, 155, 0.05) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 122, 0, 0.05) 1px,
      transparent 1px
    );
  background-size: 50px 50px, 80px 80px, 60px 60px;
  background-position: 0 0, 25px 25px, 40px 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

/* Mesh gradient overlay untuk depth */
.products-section .container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(30, 74, 155, 0.01) 25%,
      transparent 50%
    ),
    linear-gradient(
      240deg,
      transparent 0%,
      rgba(255, 122, 0, 0.01) 25%,
      transparent 50%
    ),
    linear-gradient(
      0deg,
      transparent 0%,
      rgba(43, 92, 184, 0.015) 50%,
      transparent 100%
    );
  mix-blend-mode: multiply;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

/* Floating geometric shapes */
.products-section .container::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(30, 74, 155, 0.05) 0%,
      transparent 70%
    ),
    linear-gradient(45deg, rgba(255, 122, 0, 0.02) 0%, transparent 100%);
  border-radius: 50%;
  animation: floatShape1 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.products-section .container {
  position: relative;
  z-index: 3;
}

@keyframes floatShape1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(-20px, -15px) rotate(120deg) scale(1.1);
    opacity: 0.5;
  }
  66% {
    transform: translate(15px, -10px) rotate(240deg) scale(0.9);
    opacity: 0.4;
  }
}

/* Footer Enhancement untuk halaman produk */
.footer {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--primary-orange);
  border-radius: 50%;
  opacity: 0.1;
  animation: footerShape1 20s ease-in-out infinite;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--light-orange);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  animation: footerShape2 15s ease-in-out infinite reverse;
}

@keyframes footerShape1 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes footerShape2 {
  0%,
  100% {
    transform: translateX(0px) rotate(0deg);
  }
  50% {
    transform: translateX(20px) rotate(90deg);
  }
}

/* Footer menggunakan styling dari style.css yang asli */
.footer-content {
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }

  .footer::before {
    background: radial-gradient(
        ellipse 400px 200px at center top,
        rgba(255, 122, 0, 0.1) 0%,
        transparent 70%
      ),
      radial-gradient(
        ellipse 300px 150px at center bottom,
        rgba(43, 92, 184, 0.12) 0%,
        transparent 80%
      );
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-item {
    padding: 0.6rem;
    margin-bottom: 0.8rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}
