.bannerSlider { width: 100%; margin-top: 15px; position: relative; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); aspect-ratio: 1080/720; background: #0f172a; display: flex; align-items: flex-end; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
@media (min-width: 1024px) { .bannerSlider { aspect-ratio: 16/6; max-height: 450px; } }
.bannerImg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; z-index: 1; transition: transform 10s linear; }
.bannerSlider:hover .bannerImg { transform: scale(1.15); }
.bannerOverlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(7,13,25,1) 0%, rgba(7,13,25,0.4) 40%, transparent 100%); z-index: 2; pointer-events: none; }
.bannerContent { position: relative; z-index: 3; padding: clamp(20px, 5vw, 40px); width: 100%; pointer-events: none; animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.newsBadge { background: linear-gradient(90deg, #ef4444, #f87171); color: #fff; font-size: 0.65rem; font-weight: 900; padding: 4px 14px; border-radius: 50px; letter-spacing: 1px; display: inline-block; margin-bottom: 12px; box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4); border: 1px solid rgba(255,255,255,0.2); }
.bannerTitle { font-size: clamp(1.6rem, 5vw, 2.8rem); font-weight: 900; color: #fff; line-height: 1; margin-bottom: 10px; text-shadow: 0 4px 20px rgba(0,0,0,0.8); letter-spacing: -1px; }
.bannerDesc { font-size: clamp(0.8rem, 2vw, 1rem); color: #cbd5e1; font-weight: 500; opacity: 0.9; max-width: 600px; line-height: 1.4; }
.bannerLink { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 4; cursor: pointer; }
.skeleton-card { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(110deg, #162033 30%, #1e293b 50%, #162033 70%); background-size: 200% 100%; animation: loadingShiny 1.2s ease-in-out infinite; z-index: 10; transition: opacity 0.8s ease; }
@keyframes loadingShiny { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.searchSection { margin-top: 35px; }
.searchTitle { font-size: 0.8rem; font-weight: 800; color: #64748b; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; letter-spacing: 2px; text-transform: uppercase; }
.iconZap { color: #ffae00; fill: #ffae00; filter: drop-shadow(0 0 10px rgba(255,174,0,0.6)); }
.searchBox { display: flex; background: #0f172a; border: 1px solid #1e293b; border-radius: 20px; height: 60px; align-items: center; padding: 0 25px; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; }
.searchBox:focus-within { border-color: #3b82f6; background: #131c33; box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.1); transform: scale(1.02); }
.searchIconInner { color: #3b82f6; margin-right: 15px; display: flex; align-items: center; }
.searchInput { flex: 1; border: none; background: transparent; color: #fff; font-size: 1rem; font-weight: 600; outline: none; }
.categoriesScroll { display: flex; gap: 12px; overflow-x: auto; padding: 25px 0; scrollbar-width: none; }
.categoriesScroll::-webkit-scrollbar { display: none; }
.catBtn { padding: 12px 26px; border-radius: 16px; font-size: 0.85rem; font-weight: 800; border: 1px solid #1e293b; color: #94a3b8; background: #0d1526; cursor: pointer; white-space: nowrap; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.catBtn:hover { border-color: #3b82f6; color: #fff; transform: translateY(-2px); }
.catTop { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); color: #fff; border: none; box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); }
.productGrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; padding: 10px 0; }
@media (max-width: 600px) { .productGrid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.productCard { background: #0d1526; border-radius: 24px; border: 1px solid #1e293b; overflow: hidden; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; display: flex; flex-direction: column; position: relative; height: 100%; }
.productCard:hover { border-color: #3b82f6; transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.thumbWrap { position: relative; width: 100%; aspect-ratio: 1/1; background: #162033; overflow: hidden; }
.pImg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.productCard:hover .pImg { transform: scale(1.1); }
.badgeCat { position: absolute; top: 12px; left: 12px; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(10px); color: #fff; padding: 4px 12px; border-radius: 10px; font-size: 0.6rem; font-weight: 900; z-index: 5; border: 1px solid rgba(255,255,255,0.1); text-transform: uppercase; }
.productContent { padding: 15px 18px; flex-grow: 1; display: flex; flex-direction: column; gap: 8px; }
.statusRow { display: flex; align-items: center; gap: 6px; }
.statusTxt { font-size: 0.6rem; font-weight: 800; color: #10b981; text-transform: uppercase; letter-spacing: 0.5px; }
.pulseDot { width: 6px; height: 6px; background: #10b981; border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 8px #10b981; }
@keyframes pulse { 0% { transform: scale(0.95); opacity: 0.8; } 50% { transform: scale(1.2); opacity: 1; } 100% { transform: scale(0.95); opacity: 0.8; } }
.pName { font-size: 0.9rem; font-weight: 800; color: #f8fafc; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.priceBox { margin-top: auto; padding-top: 5px; }
.pPrice { color: #fff; font-weight: 900; font-size: 1.25rem; letter-spacing: -0.5px; line-height: 1; }
.pStart { font-size: 0.65rem; color: #64748b; font-weight: 700; text-transform: uppercase; margin-top: 4px; letter-spacing: 0.5px; }
.cardFooter { padding: 0 18px 18px; display: flex; justify-content: flex-end; }
.btnDetailIcon { width: 36px; height: 36px; background: rgba(59, 130, 246, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.1); transition: 0.4s; }
.productCard:hover .btnDetailIcon { background: #3b82f6; color: #fff; transform: rotate(-45deg); }
