
:root {
  --bg-color: #e0f2fe;        
  --primary-color: #0ea5e9;   
  --primary-hover: #0284c7;   
  --card-bg: #ffffff;          
  --text-dark: #0f172a;        
  --accent-text: #0284c7;
}

* { 
  box-sizing: border-box; 
}

html, body { 
  overflow-x: clip !important; 
  width: 100%; 
  position: relative; 
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  background-image: radial-gradient(circle at 50% 20%, #ffffff 0%, var(--bg-color) 70%);
  background-attachment: fixed;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.section-title { 
  margin-bottom: 25px; 
}

.section-title h2 { 
  font-size: 28px; 
  font-weight: 900; 
  color: var(--text-dark); 
  margin: 0 0 8px 0; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}

.section-title p { 
  color: #64748b; 
  font-size: 15px; 
  font-weight: 600; 
  margin: 0; 
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 30px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 5%; 
  background: rgba(224, 242, 254, 0.9);
  backdrop-filter: blur(10px);
  position: sticky !important; 
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px; 
}

.logo img {
  height: 100px !important; 
  max-height: none !important;
  width: auto;
  object-fit: contain;
}

.logo span {
  font-size: 50px !important; 
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: 2px 2px 0px #fff;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
  color: var(--primary-color);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  border: 2px solid #bae6fd;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: white;
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
}

nav a.btn-special {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-color: #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

nav a.btn-special:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-3px) scale(1.05);
}

nav a.btn-special svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #bae6fd;
  color: var(--primary-color);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.08);
  font-family: inherit;
}
  
.lang-toggle:hover {
  background: #f0f9ff;
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}


.dropdown-lacak {
  display: none; 
  position: absolute; 
  top: 130%; 
  left: 50%; 
  transform: translateX(-50%);
  background: white; 
  padding: 15px; 
  border-radius: 12px; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  width: 260px; 
  z-index: 1000; 
  border: 1px solid #e2e8f0; 
  cursor: default;
}

.dropdown-lacak::before { 
  content: ''; 
  position: absolute; 
  top: -6px; 
  left: 50%; 
  transform: translateX(-50%) rotate(45deg);
  width: 12px; 
  height: 12px; 
  background: white; 
  border-left: 1px solid #e2e8f0; 
  border-top: 1px solid #e2e8f0;
}

.dropdown-lacak h4 { 
  margin: 0 0 10px; 
  font-size: 13px; 
  color: var(--text-dark); 
  text-align: center; 
  font-weight: 900;
}

.dropdown-lacak input { 
  width: 100%; 
  padding: 10px 12px; 
  border: 2px solid #e2e8f0; 
  border-radius: 8px; 
  font-size: 12px; 
  font-weight: 700; 
  outline: none; 
  box-sizing: border-box; 
  font-family: inherit;
}

.dropdown-lacak input:focus { 
  border-color: var(--primary-color); 
}

.btn-lacak-kecil { 
  width: 100%; 
  padding: 10px; 
  margin-top: 10px; 
  background: var(--primary-color); 
  color: white; 
  border: none; 
  border-radius: 8px; 
  font-weight: 900; 
  cursor: pointer; 
  transition: 0.3s;
}

.btn-lacak-kecil:hover { 
  background: var(--primary-hover); 
}

.search-container {
  flex: 1;
  max-width: none; 
  margin: 0 40px;  
  position: relative;
}

.search-container input {
  width: 100%;
  padding: 10px 15px 10px 40px;
  border: 2px solid #bae6fd;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  outline: none;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.search-container input:focus {
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
  pointer-events: none;
}

.search-dropdown {
  position: absolute;
  top: 115%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  max-height: 380px;
  overflow-y: auto;
  z-index: 3000;
  border: 2px solid #bae6fd;
  display: none;
  flex-direction: column;
  padding: 10px;
}

.search-dropdown::-webkit-scrollbar { width: 6px; }
.search-dropdown::-webkit-scrollbar-track { background: transparent; }
.search-dropdown::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

.search-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 15px;
  border: 2px solid transparent;
}

.search-item:hover {
  background: #f0f9ff;
  border-color: #bae6fd;
}

.search-item img {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
  filter: drop-shadow(0px 4px 4px rgba(0,0,0,0.1));
}

.search-item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.search-item-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}

.search-item-dev {
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
}

.search-empty {
  padding: 30px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.search-empty-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-dark);
}

.search-empty-sub {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.clear-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #e2e8f0;
  border: none;
  color: #64748b;
  cursor: pointer;
  font-size: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  z-index: 10;
}

.clear-search:hover {
  background: #ef4444;
  color: white;
}


.hero-section { 
  margin-bottom: 20px; 
  text-align: center; 
} 

.banner-container { 
  position: relative;
  width: 100%; 
  margin: 0 auto 25px; 
  border-radius: 20px; 
  overflow: hidden; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
  background-color: var(--card-bg);
  touch-action: pan-y; 
}

.banner-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.main-banner { 
  width: 100%; 
  flex-shrink: 0;
  height: auto; 
  display: block; 
  object-fit: cover;
}

.banner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.banner-nav-btn:hover { background: rgba(0, 0, 0, 0.7); }
.prev-btn { left: 15px; }
.next-btn { right: 15px; }

.banner-dots {
  display: none !important;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.banner-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.banner-dot.active {
  background: #ffffff;
  transform: scale(1.3);
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}


.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px; 
  flex-wrap: wrap;
}

.badge-item { 
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 2px solid #bae6fd;
  padding: 16px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.06);
  transition: all 0.3s ease;
  text-align: left;
}

.badge-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.15);
}

.badge-icon {
  background: #e0f2fe;
  color: var(--primary-color);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.badge-text h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
  color: var(--text-dark);
}

.badge-text p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  line-height: 1.4;
}


.filter-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px; 
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #bae6fd;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.filter-section {
  display: flex;
  flex-direction: row; 
  align-items: center;
  justify-content: center; 
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
}

.filter-group-top, 
.filter-group-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-label {
  font-size: 13px;
  font-weight: 900;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-btn { 
  background-color: var(--card-bg); 
  border: 2px solid #e2e8f0; 
  color: #64748b; 
  padding: 8px 18px; 
  border-radius: 50px; 
  font-size: 13px; 
  font-weight: 800; 
  cursor: pointer; 
  transition: all 0.3s ease; 
  box-shadow: 0 2px 4px rgba(0,0,0,0.02); 
}

.category-btn:hover { 
  border-color: var(--primary-color); 
  color: var(--primary-color); 
  transform: translateY(-2px); 
}

.category-btn.active { 
  background-color: var(--primary-color); 
  border-color: var(--primary-color); 
  color: white; 
  box-shadow: 0 6px 12px rgba(14, 165, 233, 0.3); 
}


.product-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px; 
  padding-bottom: 100px; 
  align-items: start; 
}

.card { 
  background-color: var(--card-bg); 
  border-radius: 20px; 
  padding: 0; 
  text-align: center; 
  box-shadow: 0 8px 16px rgba(0,0,0,0.04); 
  transition: all 0.3s ease; 
  border: 2px solid transparent; 
  position: relative; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
  height: 100%;
}

.card:hover { 
  transform: translateY(-6px); 
  border-color: var(--primary-color); 
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.2); 
}

.category-tag { 
  position: absolute; 
  top: 0; 
  left: 0; 
  background-color: var(--primary-color); 
  color: white; 
  padding: 6px 14px; 
  font-size: 11px; 
  font-weight: 800; 
  border-radius: 0 0 16px 0; 
  z-index: 10; 
  box-shadow: 2px 2px 6px rgba(0,0,0,0.15); 
}

.discount-badge { 
  position: absolute; 
  top: 20px; 
  right: -30px; 
  width: 120px; 
  text-align: center; 
  background-color: #ef4444; 
  color: white; 
  padding: 5px 0; 
  font-size: 11px; 
  font-weight: 900; 
  transform: rotate(45deg); 
  box-shadow: 0 2px 4px rgba(0,0,0,0.2); 
  z-index: 10; 
  letter-spacing: 0.5px; 
}

.item-icon { 
  width: 100%; 
  height: 130px; 
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); 
  margin: 0 0 40px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative;
  border-bottom: 3px dashed #ffffff; 
}

.item-icon img { 
  width: 110px; 
  height: 110px; 
  object-fit: cover; 
  border-radius: 20px; 
  filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.15)); 
  border: 4px solid #ffffff; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  transform: translateY(35px); 
}

.card:hover .item-icon img { 
  transform: translateY(15px) scale(1.1) rotate(4deg); 
}

.product-desc { 
  text-align: left; 
  font-size: 11.5px; 
  color: #64748b; 
  margin: 0 16px 15px; 
  line-height: 1.4; 
}

.product-desc .desc-pc { 
  display: block !important; 
  font-weight: 700; 
}

.product-desc .desc-hp { 
  display: none !important; 
}

.rating-sold { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
  font-size: 11px; 
  font-weight: 800; 
  color: #64748b; 
  margin-bottom: 8px; 
  margin-top: -2px; 
}

.star-icon { 
  color: #f59e0b; 
  font-size: 14px; 
}

.card-bottom { 
  margin-top: auto; 
  display: flex; 
  flex-direction: column; 
  align-items: flex-start; 
  text-align: left; 
  gap: 4px; 
  padding: 0 16px 16px; 
  box-sizing: border-box; 
  width: 100%;
}

.card h3 { 
  margin: 0; 
  font-size: 15px; 
  font-weight: 900; 
  color: var(--text-dark); 
  width: 100%; 
}
  
.price-stock-row { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  flex-wrap: nowrap !important; 
  gap: 4px; 
  width: 100%; 
  margin-bottom: 6px; 
}

.price, .stock-badge { 
  white-space: nowrap !important; 
}

.price { 
  font-size: 18px; 
  font-weight: 900; 
  color: var(--primary-color); 
  margin: 0; 
  text-shadow: 0 1px 1px rgba(14, 165, 233, 0.15); 
}

.price-old-left { 
  font-size: 12px; 
  color: #ef4444; 
  text-decoration: line-through; 
  font-weight: 900; 
  margin-bottom: -2px; 
}

.stock-badge { 
  font-size: 10px; 
  font-weight: 900; 
  padding: 4px 8px; 
  border-radius: 6px; 
  letter-spacing: 0.5px; 
}

.stock-green { 
  background-color: #e0f2fe; 
  color: var(--primary-hover); 
  border: 1px solid #bae6fd;
}

.stock-red { 
  background-color: #fef2f2; 
  color: #ef4444; 
  border: 1px solid #fecaca;
}

.btn-buy { 
  background-color: var(--primary-color); 
  color: white; 
  border: none; 
  padding: 14px 20px; 
  font-size: 16px; 
  font-weight: 800; 
  border-radius: 50px; 
  cursor: pointer; 
  width: 100%; 
  transition: all 0.3s; 
  margin-top: 5px; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 8px; 
}

.btn-buy:hover { 
  background-color: var(--primary-hover); 
}

.btn-buy img { 
  width: 22px; 
  height: 22px; 
  object-fit: contain; 
}


.modal-overlay { 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(15, 23, 42, 0.7); 
  backdrop-filter: blur(5px); 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  z-index: 2000; 
}

.modal-box { 
  background: white; 
  width: 90%; 
  max-width: 480px; 
  border-radius: 20px; 
  padding: 25px; 
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); 
  animation: popIn 0.3s ease; 
  max-height: 90vh; 
  overflow-y: auto; 
}

.modal-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 15px; 
  border-bottom: 2px solid #f1f5f9; 
  padding-bottom: 10px; 
}

.modal-header h3 { 
  margin: 0; 
  color: var(--text-dark); 
  font-size: 18px; 
  font-weight: 900; 
}

.close-btn { 
  background: none; 
  border: none; 
  font-size: 20px; 
  cursor: pointer; 
  color: #64748b; 
}

.form-group { 
  margin-bottom: 15px; 
  text-align: left; 
}

.form-group label { 
  display: block; 
  font-size: 13px; 
  font-weight: 800; 
  color: #475569; 
  margin-bottom: 5px; 
}

.form-group input, 
.form-group select { 
  width: 100%; 
  padding: 12px; 
  border: 2px solid #e2e8f0; 
  border-radius: 10px; 
  font-family: inherit; 
  font-size: 14px; 
  font-weight: 600; 
  box-sizing: border-box; 
  outline: none; 
  transition: border-color 0.3s; 
}

.form-group input:focus, 
.form-group select:focus { 
  border-color: var(--primary-color); 
}

.input-readonly { 
  background-color: #f8fafc; 
  color: #64748b; 
  border-color: #cbd5e1 !important; 
  cursor: not-allowed; 
}

.price-text { 
  color: var(--text-dark) !important; 
  font-weight: 800 !important; 
  font-size: 15px !important; 
}

.form-group small { 
  font-size: 11px; 
  color: #94a3b8; 
  font-weight: 600; 
}

.btn-submit { 
  background: var(--primary-color); 
  color: white; 
  border: none; 
  width: 100%; 
  padding: 15px; 
  border-radius: 50px; 
  font-size: 16px; 
  font-weight: 900; 
  cursor: pointer; 
  transition: all 0.3s; 
  margin-top: 10px; 
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3); 
}

.btn-submit:hover { 
  background: var(--primary-hover); 
  transform: translateY(-2px); 
}

.nominal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
  padding: 4px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
}

.nominal-btn {
  background: white;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nominal-btn:hover {
  border-color: var(--primary-color);
  background: #f0f9ff;
}

.nominal-btn.active {
  border-color: var(--primary-color);
  background: #e0f2fe;
  box-shadow: 0 0 0 1px var(--primary-color);
}

.nominal-title {
  font-size: 11px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.nominal-price {
  font-size: 11px;
  font-weight: 900;
  color: var(--primary-color);
}


.mascot-area { 
  position: fixed; 
  bottom: 0; 
  right: 0; 
  display: flex; 
  align-items: flex-end; 
  z-index: 1000; 
  pointer-events: none; 
}

.mascot-trigger { 
  display: flex; 
  align-items: flex-end; 
  pointer-events: none; 
}

.mascot-container { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  position: relative; 
}

.live-chat-badge { 
  background: linear-gradient(135deg, #ef4444, #dc2626); 
  color: white; 
  padding: 6px 16px; 
  border-radius: 50px; 
  font-size: 13px; 
  font-weight: 900; 
  letter-spacing: 0.5px; 
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3); 
  margin-bottom: -5px; 
  border: 2px solid white; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  z-index: 10; 
  cursor: pointer; 
  pointer-events: auto; 
  transition: transform 0.3s ease; 
}

.live-chat-badge:hover { 
  transform: scale(1.08); 
}

.pulse-dot { 
  width: 10px; 
  height: 10px; 
  background-color: #4ade80; 
  border-radius: 50%; 
  box-shadow: 0 0 8px #4ade80; 
  animation: dotBlink 1.2s infinite; 
}

.speech-bubble { 
  background: white; 
  padding: 15px 20px; 
  border-radius: 20px; 
  border: 3px solid var(--primary-color); 
  font-weight: 800; 
  color: var(--primary-color); 
  margin-bottom: 30px; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
  position: relative; 
  animation: float 3s ease-in-out infinite; 
}

.speech-bubble::after { 
  content: ''; 
  position: absolute; 
  right: -12px; 
  bottom: 20px; 
  border-width: 10px 0 10px 12px; 
  border-style: solid; 
  border-color: transparent transparent transparent var(--primary-color); 
}

.mascot-img { 
  width: 200px; 
  height: 200px; 
  background-color: transparent; 
  background-image: url('image/komm_indraemote1.webp'); 
  background-size: cover; 
}

.chat-popup { 
  display: none; 
  position: absolute; 
  bottom: 240px; 
  right: 20px; 
  width: 320px; 
  background: white; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.15); 
  border-radius: 12px; 
  overflow: hidden; 
  pointer-events: auto; 
}

.chat-header { 
  background: var(--primary-color); 
  color: white; 
  padding: 15px; 
  font-weight: 900; 
  font-size: 14px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.close-chat { 
  background: none; 
  border: none; 
  color: white; 
  font-size: 18px; 
  cursor: pointer; 
}

.chat-body { 
  padding: 15px; 
  background: #f8fafc; 
  height: 280px; 
  overflow-y: auto; 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}

.chat-bubble { 
  max-width: 80%; 
  padding: 10px 14px; 
  border-radius: 15px; 
  font-size: 13px; 
  font-weight: 700; 
  line-height: 1.4; 
  word-wrap: break-word; 
}

.bubble-admin { 
  background: #e2e8f0; 
  color: #0f172a; 
  align-self: flex-start; 
  border-bottom-left-radius: 3px; 
}

.bubble-user { 
  background: var(--primary-color); 
  color: white; 
  align-self: flex-end; 
  border-bottom-right-radius: 3px; 
}

.chat-footer { 
  padding: 10px; 
  background: #ffffff; 
  display: flex; 
  gap: 8px; 
  border-top: 1px solid #e2e8f0; 
}

.chat-footer input { 
  flex: 1; 
  padding: 10px 15px; 
  border: 1px solid #cbd5e1; 
  border-radius: 50px; 
  outline: none; 
  font-family: inherit; 
  font-size: 13px; 
}

.send-btn { 
  background: var(--primary-color); 
  color: white; 
  border: none; 
  border-radius: 50%; 
  width: 38px; 
  height: 38px; 
  cursor: pointer; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  font-size: 16px; 
}


.testimonial-slider {
  display: flex; 
  gap: 12px; 
  overflow-x: auto; 
  padding-bottom: 10px; 
  scroll-snap-type: x mandatory; 
  scroll-behavior: smooth; 
  -webkit-overflow-scrolling: touch;
}

.testi-card {
  flex: 0 0 90%; 
  background: var(--card-bg); 
  border-radius: 12px; 
  border: 2px solid #bae6fd; 
  scroll-snap-align: center; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column;
}

.testi-card img { 
  width: 100%; 
  aspect-ratio: 16/9; 
  object-fit: cover; 
  display: block; 
  background: #e2e8f0; 
}

.testi-caption {
  padding: 10px; 
  font-size: 12px; 
  font-weight: 800; 
  color: var(--text-dark); 
  background: #f0f9ff; 
  border-top: 2px solid #bae6fd; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 6px;
}

@media screen and (min-width: 768px) {
  .testimonial-slider { 
    padding-bottom: 20px; 
    scrollbar-width: thin; 
    scrollbar-color: var(--primary-color) #f1f5f9; 
  }
  .testimonial-slider::-webkit-scrollbar { display: block; height: 8px; }
  .testimonial-slider::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 10px; }
  .testimonial-slider::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }
  .testimonial-slider::-webkit-scrollbar-thumb:hover { background: var(--primary-hover); }
}


.skeleton-grid {
  display: contents;
}

.skeleton-card {
  background-color: var(--card-bg);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.04);
  border: 2px solid #f1f5f9;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  pointer-events: none;
  order: -2;
}

.shimmer {
  background: #f1f5f9;
  background-image: linear-gradient(90deg, #f1f5f9 0px, #e2e8f0 60px, #f1f5f9 120px);
  background-size: 600px;
  animation: shimmer-wave 1.5s infinite linear;
}

.skel-tag {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 70px; 
  height: 24px;
  border-radius: 0 0 16px 0; 
  z-index: 10;
}

.skel-icon-area {
  width: 100%; 
  height: 130px; 
  background: #f8fafc;
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin: 0 0 40px; 
  border-bottom: 3px dashed #ffffff; 
  position: relative;
}

.skel-icon-box {
  width: 110px; 
  height: 110px; 
  border-radius: 20px;
  transform: translateY(35px); 
  border: 4px solid #ffffff;
}

.skel-bottom {
  padding: 0 16px 16px; 
  display: flex; 
  flex-direction: column;
  gap: 8px; 
  width: 100%; 
  box-sizing: border-box; 
  margin-top: auto;
}

.skel-line { height: 14px; border-radius: 6px; width: 100%; }
.skel-line.short { width: 40%; height: 10px; }
.skel-line.medium { width: 70%; height: 16px; margin-top: 4px; }
.skel-btn { width: 100%; height: 44px; border-radius: 50px; margin-top: 8px; }


#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #ffffff;
  color: var(--text-dark);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 5px solid #ef4444;
  animation: toastSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  max-width: 350px;
  line-height: 1.4;
}

.toast.success { border-left-color: #10b981; }
.toast.warning { border-left-color: #f59e0b; }

.overlay-loading {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(5px);
  z-index: 999999;
  display: none; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
  
.spinner-besar {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: putarSpinner 1s linear infinite;
  margin-bottom: 15px;
}

.spinner-kecil {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: putarSpinner 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}


@keyframes toastSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes toastFadeOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

@keyframes popIn { 
  from { transform: scale(0.8); opacity: 0; } 
  to { transform: scale(1); opacity: 1; } 
}

@keyframes float { 
  0%, 100% { transform: translateY(0); } 
  50% { transform: translateY(-10px); } 
}

@keyframes dotBlink { 
  0%, 100% { opacity: 1; transform: scale(1); } 
  50% { opacity: 0.4; transform: scale(0.8); } 
}

@keyframes putarSpinner {
  to { transform: rotate(360deg); }
}

@keyframes shimmer-wave {
  0% { background-position: -300px; }
  100% { background-position: 300px; }
}


.site-footer { 
  background-color: var(--primary-color); 
  color: white; 
  padding-top: 50px; 
  margin-top: 50px; 
}

.footer-container { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-between; 
  padding: 0 20px 40px; 
  gap: 30px; 
}

.brand-col { flex: 2; min-width: 300px; padding-right: 20px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 0px; }
.footer-logo img { max-height: 80px; width: auto; object-fit: contain; }
.footer-logo span { font-size: 26px; font-weight: 900; color: white; letter-spacing: 1px; }

.brand-col p { 
  font-size: 15px; 
  font-weight: 600; 
  line-height: 1.6; 
  color: var(--bg-color); 
  margin-bottom: 20px; 
  margin-top: 0; 
}

.footer-col { flex: 1; min-width: 250px; }
.footer-col h4 { 
  font-size: 18px; 
  font-weight: 900; 
  margin-bottom: 20px; 
  color: white; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}

.footer-col a { 
  display: block; 
  color: var(--bg-color); 
  text-decoration: none; 
  margin-bottom: 12px; 
  font-size: 16px; 
  font-weight: 600; 
  transition: all 0.3s ease; 
}
.footer-col a:hover { color: white; transform: translateX(5px); }

.btn-contact { 
  display: inline-block !important; 
  background-color: white; 
  color: var(--primary-color) !important; 
  padding: 10px 24px; 
  border-radius: 50px; 
  font-weight: 800; 
  margin-top: 5px; 
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
}
.btn-contact:hover { 
  transform: translateY(-3px) !important; 
  box-shadow: 0 6px 12px rgba(0,0,0,0.15); 
}

.social-links { display: flex; gap: 15px; }
.social-links a { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 45px; 
  height: 45px; 
  background-color: rgba(255, 255, 255, 0.2); 
  border-radius: 50%; 
  font-size: 20px; 
  margin-bottom: 0; 
  padding: 0; 
  transition: all 0.3s ease; 
}
.social-links a img { width: 28px; height: 28px; object-fit: contain; transition: all 0.3s ease; }
.social-links a:hover { background-color: white; color: var(--primary-color); transform: translateY(-5px); }
.social-links a:hover img { transform: scale(1.1); }

.footer-bottom { 
  background-color: var(--primary-hover); 
  text-align: center; 
  padding: 15px 20px 50px; 
}
.footer-bottom p { 
  margin: 0; 
  font-size: 14px; 
  font-weight: 800; 
  color: white; 
}


@media screen and (max-width: 768px) {
  
  
  #toast-container { top: 15px; right: 15px; left: 15px; align-items: center; }
  .toast { width: 100%; max-width: 100%; font-size: 13px; }
  .modal-box { width: 90vw !important; max-width: 90vw !important; margin: 0 auto; padding: 20px 15px !important; overflow-x: hidden; }
  
  
  header { flex-direction: column !important; flex-wrap: nowrap !important; padding: 8px 12px; gap: 6px; align-items: stretch !important; }
  .logo { width: 100% !important; justify-content: center !important; flex: none !important; margin: 0 !important; padding: 0 !important; display: flex; align-items: center; gap: 8px !important; }
  .logo img { height: 38px !important; max-height: none !important; width: auto; margin: 0 !important; }
  .logo span { font-size: 22px !important; font-weight: 900; line-height: 1; letter-spacing: -0.5px; margin: 0 !important; }
  nav { width: 100%; max-width: 100% !important; display: flex; flex-wrap: nowrap !important; justify-content: space-between; gap: 6px; order: 2; }
  nav > a:first-child, .nav-dropdown-container, nav a.btn-special, .lang-toggle { width: 23% !important; flex: 1; margin: 0; }
  nav > a:first-child { order: 1; }
  nav a.btn-special { order: 2; }
  .nav-dropdown-container { order: 3; }
  .lang-toggle { order: 4; width: fit-content !important; flex: none !important; padding: 4px !important; gap: 3px !important; margin-left: auto; }
  nav > a:first-child, .nav-dropdown-container > a, nav a.btn-special, .lang-toggle { padding: 6px 2px !important; font-size: 10px !important; justify-content: center !important; height: 100%; box-sizing: border-box; white-space: nowrap; border-radius: 20px; display: flex; align-items: center; }
  nav a.btn-special svg { width: 13px; height: 13px; }
  
  
  .hero-section { margin-bottom: 10px !important; }
  .banner-container { margin-bottom: 15px !important; }
  .banner-nav-btn { display: none !important; }
  .banner-dots { bottom: 10px !important; }
  
  
  .search-container { order: 3; width: 100%; flex: none; margin: 0 !important; }
  .search-container input { padding: 8px 12px 8px 32px; font-size: 13px; }
  .filter-wrapper { margin-bottom: 5px !important; padding: 12px !important; }
  .filter-section { flex-direction: column !important; gap: 10px !important; }
  .filter-group-top, .filter-group-bottom { width: 100%; justify-content: center; gap: 8px; }
  .filter-label { margin-right: 2px; font-size: 12px; }
  .category-btn { padding: 6px 14px; font-size: 11px; }
  .dropdown-lacak { left: auto; right: 0; transform: none; width: 260px; }
  .dropdown-lacak::before { left: 80%; }
  
  
  .trust-badges { flex-wrap: nowrap !important; gap: 8px !important; margin-top: 15px !important; margin-bottom: 12px !important; padding: 0 5px; }
  .badge-item { min-width: 0 !important; padding: 12px 4px 8px !important; flex-direction: column !important; text-align: center !important; gap: 6px !important; justify-content: flex-start; border-radius: 14px !important; background: #ffffff !important; border: 1px solid #bae6fd !important; box-shadow: 0 4px 10px rgba(14, 165, 233, 0.08) !important; }
  .badge-icon { width: 34px !important; height: 34px !important; font-size: 16px !important; margin: 0 auto; background: #e0f2fe !important; border-radius: 50% !important; box-shadow: none !important; }
  .badge-text h4 { font-size: 9.5px !important; line-height: 1.2 !important; font-weight: 900 !important; color: var(--text-dark) !important; margin-top: 2px !important; }
  .badge-text p { display: none !important; }
  
  
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .card { padding: 0 !important; border-radius: 16px !important; }
  .category-tag { top: 0 !important; left: 0 !important; padding: 4px 8px !important; font-size: 9px !important; border-radius: 0 0 10px 0 !important; }
  .item-icon { height: 75px !important; margin: 0 0 22px 0 !important; }
  .item-icon img { width: 70px !important; height: 70px !important; border-width: 2.5px !important; border-radius: 15px !important; transform: translateY(16px) !important; }
  .card:hover .item-icon img { transform: translateY(8px) scale(1.06) rotate(3deg) !important; }
  .product-desc { display: block !important; margin: -10px 8px 8px !important; padding: 3px 6px !important; list-style: none !important; background: #fef3c7 !important; border: 1px solid #fde68a !important; border-radius: 6px !important; font-size: 8.5px !important; color: #d97706 !important; font-weight: 800 !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
  .product-desc .desc-pc { display: none !important; }
  .product-desc .desc-hp { display: inline !important; }
  .product-desc li { margin: 0 !important; display: inline !important; }
  .card-bottom { padding: 0 10px 10px !important; gap: 3px !important; }
  .card h3 { font-size: 13px !important; line-height: 1.25 !important; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 32px !important; }
  .rating-sold { font-size: 10px !important; margin-bottom: 4px !important; }
  .price-stock-row { gap: 2px !important; } 
  .price { font-size: clamp(11px, 3.5vw, 13.5px) !important; }
  .stock-badge { font-size: clamp(7.5px, 2.5vw, 8.5px) !important; padding: 2px 4px !important; }
  .btn-buy { padding: 7px 6px !important; font-size: 11px !important; margin-top: 4px !important; border-radius: 50px !important; gap: 4px !important; }
  .btn-buy img { width: 13px !important; height: 13px !important; }
  
  
  .skeleton-card { border-radius: 16px; }
  .skel-tag { width: 50px; height: 18px; border-radius: 0 0 10px 0; }
  .skel-icon-area { height: 75px; margin: 0 0 22px 0; }
  .skel-icon-box { width: 70px; height: 70px; border-radius: 15px; transform: translateY(16px); }
  .skel-bottom { padding: 0 10px 10px; gap: 6px; }
  .skel-line { height: 12px; }
  .skel-line.medium { height: 14px; }
  .skel-btn { height: 32px; margin-top: 4px; }
  
  
  .testimonial-slider { scrollbar-width: none; -ms-overflow-style: none; }
  .testimonial-slider::-webkit-scrollbar { display: none; }

  
  .mascot-img { display: none !important; }
  .speech-bubble { display: none !important; }
  .mascot-container { margin-bottom: 20px; margin-right: 15px; }
  .live-chat-badge { font-size: 12px; padding: 8px 15px; border-radius: 50px; }
  .chat-popup { position: fixed !important; width: 90vw !important; left: 50% !important; right: auto !important; transform: translateX(-50%) !important; bottom: 70px !important; height: 50vh !important; z-index: 9999 !important; }
  .chat-popup[style*="display: block"] { display: flex !important; flex-direction: column; }
  .chat-body { flex: 1; height: auto !important; overflow-y: auto; }
  
  
  .footer-container { flex-direction: column; text-align: left; }
  .social-links { justify-content: left; }
}
