/* ========================================
   FOCCUS FF - Design System
   Dark theme e-commerce clone
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;450;500;600;700&display=swap');

/* === CSS Variables === */
:root {
  --bg: #08090B;
  --bg-primary: #0D0E11;
  --bg-secondary: #080808;
  --bg-container: #0a0a0a;
  --border: #1B1B20;
  --accent: #0062ff;
  --text-h1: #f5f5f5;
  --text-p: #8C8C8C;
  --text-reverse: #000000;
  --green: #21c985;
  --red: #ff493f;
  --yellow: #ffd152;
  --max-width: 1280px;
  --header-bg: #0D0E11;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; cursor: pointer; font-family: var(--font); }
input, textarea { font-family: var(--font); }

body {
  background: var(--bg);
  color: var(--text-h1);
  font-family: var(--font);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === Scrollbar === */
::-webkit-scrollbar { width: 14px; border-left: 1px solid var(--border); }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background-color: var(--accent); border-radius: 10px; border: 5px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background-color: #0062ff90; }

/* === Layout === */
.page-wrapper { display: flex; flex-direction: column; min-height: 100dvh; }
.page-content { display: flex; flex-direction: column; flex: 1; }
.container { padding: 1rem; max-width: var(--max-width); margin: 0 auto; width: calc(100% - 2rem); }

/* === Top Bar === */
.top-bar { background-color: #000; padding: 0.5rem 1rem; display: flex; overflow: hidden; }
.top-bar-inner { max-width: calc(var(--max-width) + 2rem); margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.top-bar-text { font-weight: 500; font-size: 13px; line-height: 18px; color: #fff; text-align: center; }
@media (max-width: 766px) { .top-bar-text { font-size: 11px; line-height: 14px; } }

/* === Header === */
.header { position: sticky; z-index: 100; left: 0; right: 0; top: 0; background-color: var(--header-bg); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; justify-content: space-between; align-items: center; background-color: var(--header-bg); gap: 1rem; max-width: 1320px; margin: 0 auto; padding: 0.6rem 1.5rem; }
.header-logo { display: flex; align-items: center; gap: 0.5rem; }
.header-logo img { width: 30px; height: 30px; object-fit: cover; border-radius: 5px; }
.header-logo span { cursor: pointer; font-weight: 500; font-size: 14px; line-height: 16px; color: var(--text-h1); overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -webkit-box; }
@media (max-width: 766px) { .header-logo span { font-size: 11px; line-height: 13px; } }
@media (max-width: 366px) { .header-logo span { display: none; } }

.header-actions { display: flex; align-items: center; gap: 1rem; }
@media (max-width: 766px) { .header-actions { gap: 0.5rem; } }

/* Search */
.search-btn { display: flex; align-items: center; gap: 0.7rem; cursor: pointer; padding: 0.4rem 1rem; border-radius: 10px; transition: 0.5s; border: 1px solid var(--border); background: none; width: 100%; max-width: 400px; }
.search-btn svg { width: 22px; height: 22px; fill: var(--text-p); }
.search-btn span { font-weight: 400; font-size: 14px; line-height: 20px; color: var(--text-p); }
@media (max-width: 766px) { .search-btn { padding: .3rem .4rem; } .search-btn span { display: none; } }
.search-pc { display: block; }
.search-mobile { display: none; }
@media (max-width: 766px) { .search-pc { display: none; } .search-mobile { display: block; } }

/* Cart button */
.cart-btn { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: .3rem; user-select: none; padding: .3rem 1rem; border-radius: 6px; background: var(--text-h1); cursor: pointer; font-weight: 500; font-size: 13px; line-height: 14px; color: var(--text-reverse); }
.cart-btn:active { transform: scale(0.95); }
.cart-btn svg { width: 20px; height: 20px; fill: var(--text-reverse); }
@media (max-width: 566px) { .cart-btn { padding: .3rem .5rem; } .cart-btn span { display: none; } }

.cart-badge { position: absolute; top: -6px; right: -6px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; }
.cart-badge.hidden { display: none; }

/* === Banner === */
.banner-bg img { position: fixed; z-index: -1; user-select: none; pointer-events: none; top: 47px; left: 0; right: 0; width: 100%; height: 100%; max-height: 700px; object-fit: cover; mask-image: linear-gradient(rgb(0,0,0), rgba(0,0,0,0.39), rgba(0,0,0,0)); -webkit-mask-image: linear-gradient(rgb(0,0,0), rgba(0,0,0,0.39), rgba(0,0,0,0)); opacity: 0.5; }

/* === Snow Canvas === */
#snow-canvas { position: fixed; z-index: -1; inset: 0; pointer-events: none; width: 100%; height: 100%; }

/* === Categories Section === */
.categories-wrapper { display: flex; flex-direction: column; gap: 2rem; }
@media (max-width: 766px) { .categories-wrapper { gap: 1.5rem; } }

.category-section { display: flex; flex-direction: column; gap: 1.5rem; }
@media (max-width: 766px) { .category-section { gap: 1rem; } }

.category-title-wrap { display: flex; }
.category-title { display: flex; backdrop-filter: blur(10px); padding: 0.5rem 1rem; border-radius: 10px; background-color: #0D0E1140; border: 2px solid #0D0E1140; font-weight: 400; font-size: 14px; line-height: 20px; color: var(--text-h1); }
@media (max-width: 766px) { .category-title { font-weight: 450; font-size: 12px; line-height: 18px; } }

/* === Product Grid === */
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
@media (max-width: 950px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 750px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 530px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 300px) { .products-grid { grid-template-columns: 1fr; } }

/* Category page grid */
.products-grid.category-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1200px) { .products-grid.category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 770px) { .products-grid.category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 530px) { .products-grid.category-grid { grid-template-columns: 1fr; } }

/* === Product Card === */
.product-card { position: relative; display: flex; flex-direction: column; border-radius: 10px; overflow: hidden; background: linear-gradient(180deg, #33333305, #33333325 65.62%); border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 98, 255, 0.08); }
.product-card a.card-link { position: absolute; inset: 0; z-index: 1; }

.card-image { width: 100%; aspect-ratio: 270 / 152; overflow: hidden; background: #111; }
.card-image img { width: 100%; height: auto; aspect-ratio: 270 / 152; max-width: 100%; object-fit: contain; border-radius: 8px 8px 0 0; transition: transform 0.3s; }
.product-card:hover .card-image img { transform: scale(1.05); }

.card-info { padding: 0.6rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.card-name { font-weight: 500; font-size: 12px; line-height: 16px; color: var(--text-h1); overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

.card-prices { display: flex; flex-direction: column; gap: 0.2rem; }
.old-price-row { display: flex; align-items: center; gap: 0.3rem; }
.old-price { font-weight: 400; font-size: 11px; line-height: 14px; color: var(--text-p); text-decoration: line-through; }
.discount-badge { display: flex; align-items: center; gap: 2px; font-weight: 600; font-size: 10px; color: var(--green); }
.discount-badge svg { width: 14px; height: 14px; fill: var(--green); }

.new-price-row { display: flex; align-items: center; gap: 0.4rem; }
.new-price { font-weight: 700; font-size: 15px; line-height: 20px; color: var(--text-h1); }
.auto-delivery { display: flex; align-items: center; justify-content: center; width: 18px; height: 18px; background: var(--accent); border-radius: 4px; }
.auto-delivery svg { width: 12px; height: 12px; fill: #fff; }

.pix-label { font-weight: 400; font-size: 10px; line-height: 14px; color: var(--text-p); }

.card-actions { display: flex; gap: 0.4rem; margin-top: auto; padding-top: 0.4rem; position: relative; z-index: 2; }
.btn-buy { flex: 1; display: flex; align-items: center; justify-content: center; padding: 0.35rem 0.5rem; background: var(--accent); border-radius: 6px; font-weight: 500; font-size: 12px; color: #fff; transition: 0.2s; }
.btn-buy:hover { background: #0050cc; }
.btn-buy:active { transform: scale(0.95); }
.btn-add-cart { display: flex; align-items: center; justify-content: center; padding: 0.35rem; background: #f5f5f520; border-radius: 6px; transition: 0.2s; }
.btn-add-cart svg { width: 18px; height: 18px; fill: var(--text-h1); }
.btn-add-cart:hover { background: #f5f5f540; }
.btn-add-cart:active { transform: scale(0.9); }

/* === Product Detail Page === */
.product-detail { display: flex; gap: 2rem; align-items: flex-start; }
@media (max-width: 768px) { .product-detail { flex-direction: column; } }

.product-detail-image { flex: 1; max-width: 500px; border-radius: 12px; overflow: hidden; background: #111; border: 1px solid var(--border); }
.product-detail-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.product-detail-info { flex: 1; display: flex; flex-direction: column; gap: 1.2rem; }
.product-detail-name { font-weight: 600; font-size: 22px; line-height: 30px; color: var(--text-h1); }
@media (max-width: 768px) { .product-detail-name { font-size: 18px; line-height: 24px; } }

.detail-prices { display: flex; flex-direction: column; gap: 0.3rem; }
.detail-old-price { display: flex; align-items: center; gap: 0.5rem; }
.detail-old-price .old-price { font-size: 16px; }
.detail-old-price .discount-badge { font-size: 14px; }
.detail-old-price .discount-badge svg { width: 18px; height: 18px; }
.detail-new-price { font-weight: 700; font-size: 28px; color: var(--text-h1); }
.detail-pix { font-size: 13px; color: var(--text-p); }

.detail-description { font-size: 14px; line-height: 22px; color: var(--text-p); padding: 1rem; background: #0D0E11; border: 1px solid var(--border); border-radius: 10px; }

.detail-actions { display: flex; gap: 0.8rem; }
.btn-detail-buy { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem 1.5rem; background: var(--accent); border-radius: 8px; font-weight: 600; font-size: 16px; color: #fff; transition: 0.2s; }
.btn-detail-buy:hover { background: #0050cc; }
.btn-detail-buy:active { transform: scale(0.97); }
.btn-detail-cart { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem 1.5rem; background: #f5f5f520; border-radius: 8px; font-weight: 500; font-size: 14px; color: var(--text-h1); transition: 0.2s; }
.btn-detail-cart svg { width: 22px; height: 22px; fill: var(--text-h1); }
.btn-detail-cart:hover { background: #f5f5f540; }

.detail-auto-delivery { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; background: #0062ff15; border: 1px solid #0062ff30; border-radius: 8px; font-size: 13px; color: var(--accent); }
.detail-auto-delivery svg { width: 20px; height: 20px; fill: var(--accent); }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 13px; color: var(--text-p); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-p); transition: 0.2s; }
.breadcrumb a:hover { color: var(--text-h1); }
.breadcrumb span { color: var(--text-h1); }

/* === Cart Page === */
.cart-page { display: flex; flex-direction: column; gap: 1rem; }
.cart-header h1 { font-size: 18px; line-height: 27px; font-weight: 400; color: var(--text-h1); }
.cart-header p { font-size: 13px; line-height: 20px; color: var(--text-p); }

.cart-layout { display: flex; align-items: flex-start; gap: 1rem; }
@media (max-width: 800px) { .cart-layout { flex-direction: column; } }

.cart-items-wrapper { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
.cart-empty { display: flex; align-items: center; justify-content: center; background-color: var(--bg-primary); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; width: 100%; height: 250px; }
.cart-empty-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.cart-empty-inner svg { width: 70px; height: 70px; fill: #585869; }
.cart-empty-inner p { font-weight: 400; font-size: 16px; color: var(--text-h1); }
.btn-discover { width: 250px; height: 40px; background: var(--text-h1); border-radius: 8px; font-weight: 450; font-size: 15px; color: var(--text-reverse); display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.btn-discover:active { transform: scale(0.93); }

/* Cart item */
.cart-item { display: flex; gap: 1rem; padding: 1rem; background: var(--bg-primary); border: 1px solid var(--border); border-radius: 8px; align-items: center; }
@media (max-width: 500px) { .cart-item { flex-direction: column; align-items: stretch; } }
.cart-item-image { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.cart-item-name { font-weight: 500; font-size: 13px; line-height: 18px; color: var(--text-h1); }
.cart-item-price { font-weight: 600; font-size: 15px; color: var(--text-h1); }
.cart-item-actions { display: flex; align-items: center; gap: 0.8rem; }
.qty-btn { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: #f5f5f520; border-radius: 6px; font-size: 16px; color: var(--text-h1); transition: 0.2s; }
.qty-btn:hover { background: #f5f5f540; }
.qty-value { font-size: 14px; font-weight: 500; color: var(--text-h1); min-width: 20px; text-align: center; }
.btn-remove { display: flex; align-items: center; justify-content: center; padding: 0.3rem; background: none; margin-left: auto; }
.btn-remove svg { width: 20px; height: 20px; fill: var(--red); }
.btn-remove:hover svg { fill: #ff6b63; }

/* Cart summary */
.cart-summary { background-color: var(--bg-primary); border: 1px solid var(--border); border-radius: 8px; width: 100%; max-width: 300px; flex-shrink: 0; }
@media (max-width: 800px) { .cart-summary { max-width: 100%; } }
.cart-summary.nothing { opacity: 0.6; }
.cart-summary-title { padding: 1rem; border-bottom: 1px solid var(--border); font-size: 15px; line-height: 20px; font-weight: 400; color: var(--text-h1); }
.cart-summary-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.summary-row span { font-size: 13px; color: var(--text-p); }
.summary-row span:last-child { color: var(--text-h1); }
.summary-row.total span { font-weight: 600; font-size: 15px; color: var(--text-h1); }
.summary-row.discount span:last-child { color: var(--green) !important; }

.btn-checkout { width: 100%; padding: 0.7rem; margin-top: 0.5rem; background: var(--accent); border-radius: 8px; font-weight: 500; font-size: 14px; color: #fff; transition: 0.2s; }
.btn-checkout:hover { background: #0050cc; }
.btn-checkout:active { transform: scale(0.97); }
.btn-checkout:disabled { opacity: 0.4; cursor: not-allowed; }

/* === Footer === */
.footer { border-top: 1px solid var(--border); background-color: var(--bg-primary); padding: 1rem; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; border-radius: 10px; padding: 1.5rem 1rem; display: flex; flex-direction: column; gap: 1rem; }
.footer-grid { display: grid; grid-template-areas: "shop pages redes"; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 0; }
@media (max-width: 766px) { .footer-grid { grid-template-areas: "shop shop shop" "pages pages redes"; } }
@media (max-width: 466px) { .footer-grid { grid-template-areas: "shop shop shop" "pages pages pages" "redes redes redes"; } }

.footer-shop { grid-area: shop; display: flex; flex-direction: column; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-brand img { width: 40px; height: 40px; border-radius: 7px; }
.footer-brand h3 { font-weight: 400; font-size: 12px; line-height: 13px; color: var(--text-h1); }
.footer-desc { font-weight: 400; font-size: 12px; line-height: 16px; color: var(--text-p); max-width: 400px; }

.footer-pages { grid-area: pages; display: flex; gap: 0.5rem; flex-direction: column; }
.footer-pages h3 { font-weight: 500; font-size: 13px; line-height: 14px; color: var(--text-h1); }
.footer-pages-links { display: flex; flex-direction: column; }
.footer-pages-links a { font-weight: 500; font-size: 12px; line-height: 16px; padding: .3rem 0; color: var(--text-p); transition: .3s; }
@media (max-width: 466px) { .footer-pages-links a { text-align: center; } }
.footer-pages-links a:hover { color: var(--text-h1); text-decoration: underline; }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
@media (max-width: 766px) { .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; } }
.footer-copy { font-weight: 400; font-size: 12px; line-height: 14px; color: var(--text-p); }
.footer-powered { font-weight: 400; font-size: 12px; line-height: 20px; color: var(--text-p); }
.footer-powered span { color: var(--text-h1); }

/* === Reviews Section === */
.reviews-section { padding: 2rem 1rem; max-width: var(--max-width); margin: 0 auto; width: calc(100% - 2rem); }
.reviews-header { text-align: center; margin-bottom: 1.5rem; }
.reviews-badge { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, #0062ff20, #0062ff10); border: 1px solid #0062ff40; border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.8rem; }
.reviews-title { font-size: 22px; font-weight: 700; color: var(--text-h1); margin-bottom: 0.4rem; }
.reviews-title span { color: var(--accent); }
.reviews-subtitle { font-size: 13px; color: var(--text-p); }

.reviews-slider-wrapper { position: relative; display: flex; align-items: center; gap: 0.5rem; }
.reviews-slider { display: flex; gap: 1rem; overflow-x: auto; scroll-behavior: smooth; padding: 0.5rem 0; scrollbar-width: none; }
.reviews-slider::-webkit-scrollbar { display: none; }

.review-card { min-width: 280px; max-width: 300px; background: linear-gradient(180deg, #33333310, #33333330 65.62%); border: 1px solid var(--border); border-radius: 12px; padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; flex-shrink: 0; }
.review-card-header { display: flex; align-items: center; gap: 0.6rem; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.review-user-info { flex: 1; }
.review-user-name { font-weight: 600; font-size: 13px; color: var(--text-h1); display: block; }
.review-user-meta { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--green); }
.review-user-meta svg { width: 12px; height: 12px; stroke: var(--green); fill: none; }
.review-time { font-size: 11px; color: var(--text-p); }
.review-stars { color: #ffd700; font-size: 14px; letter-spacing: 2px; }
.review-text { font-size: 13px; line-height: 18px; color: var(--text-p); font-style: italic; }
.review-product { font-size: 11px; color: var(--text-p); background: #f5f5f508; padding: 4px 8px; border-radius: 6px; display: inline-block; }

.slider-arrow { background: #f5f5f515; border: 1px solid var(--border); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: 0.2s; }
.slider-arrow:hover { background: #f5f5f530; }
.slider-arrow svg { width: 20px; height: 20px; stroke: var(--text-h1); fill: none; }

/* === Terms Section === */
.terms-section { padding: 1.5rem 1rem; max-width: var(--max-width); margin: 0 auto; width: calc(100% - 2rem); }
.terms-tag { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, #21c98520, #21c98510); border: 1px solid #21c98540; border-radius: 10px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--green); }
.terms-tag svg { width: 18px; height: 18px; stroke: var(--green); fill: none; }
.terms-content { margin-top: 0.8rem; }
.terms-content p { font-size: 13px; line-height: 20px; color: var(--text-p); }
.terms-content b { color: var(--text-h1); }

/* === Search Modal === */
.search-modal { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); display: none; justify-content: center; padding-top: 80px; }
.search-modal.active { display: flex; }
.search-modal-content { width: 100%; max-width: 600px; max-height: 70vh; display: flex; flex-direction: column; margin: 0 1rem; }
.search-input-wrap { display: flex; align-items: center; gap: 0.8rem; background: var(--bg-primary); border: 1px solid var(--border); border-radius: 12px; padding: 0.8rem 1.2rem; }
.search-input-wrap svg { width: 22px; height: 22px; fill: var(--text-p); flex-shrink: 0; }
.search-input { flex: 1; background: none; border: none; outline: none; color: var(--text-h1); font-size: 15px; }
.search-input::placeholder { color: var(--text-p); }
.search-close { background: none; padding: 0.2rem; cursor: pointer; }
.search-close svg { width: 20px; height: 20px; fill: var(--text-p); }
.search-results { background: var(--bg-primary); border: 1px solid var(--border); border-radius: 0 0 12px 12px; border-top: none; overflow-y: auto; max-height: calc(70vh - 60px); }
.search-result-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 1.2rem; transition: 0.2s; cursor: pointer; border-bottom: 1px solid var(--border); }
.search-result-item:hover { background: #f5f5f508; }
.search-result-item:last-child { border-bottom: none; }
.search-result-img { width: 45px; height: 45px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-info { flex: 1; }
.search-result-name { font-size: 13px; font-weight: 500; color: var(--text-h1); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.search-result-price { font-size: 12px; color: var(--green); font-weight: 600; }
.search-no-results { padding: 2rem; text-align: center; color: var(--text-p); font-size: 14px; }

/* === Toast === */
.toast { position: fixed; bottom: 20px; right: 20px; background: var(--green); color: #000; padding: 0.8rem 1.2rem; border-radius: 10px; font-weight: 500; font-size: 13px; z-index: 300; transform: translateY(100px); opacity: 0; transition: 0.3s; pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }

/* === Loading Skeleton === */
.skeleton { background-color: #58586910; border-radius: 10px; position: relative; overflow: hidden; }
.skeleton::before { content: ""; position: absolute; height: calc(100% + 30%); width: 100%; top: -15%; left: 0; background: linear-gradient(129deg, rgba(217,217,217,0) 37%, #585869 50%, rgba(217,217,217,0) 60%); animation: shimmer 1.3s linear infinite; opacity: 0.6; filter: blur(50px); }
@keyframes shimmer { 0% { transform: translateX(-150%); } 100% { transform: translateX(150%); } }

/* === Animations === */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.4s ease-out; }

/* === NProgress === */
#nprogress { pointer-events: none; }
#nprogress .bar { background: var(--text-h1); position: fixed; z-index: 1600; top: 0; left: 0; width: 100%; height: 3px; }
