﻿* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; } html { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; touch-action: manipulation; } body { font-family: var(--font-body); background: var(--surface); color: var(--text-primary); line-height: var(--leading-normal); overflow-x: hidden; position: relative; } a, button, input, select, textarea, .category-btn, .brand-btn, .page-btn, .product-card, .agent-buy-btn { transition: all 0.2s ease; } header { position: fixed; top: 0; left: 0; width: 100%; background: var(--surface-overlay); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: var(--space-4) var(--space-8); z-index: var(--z-sticky); display: flex; justify-content: space-between; align-items: center; } .logo-header-text { font-size: 28px; font-weight: var(--weight-black); background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 1px; text-decoration: none; } .hamburger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; padding: 10px; z-index: 10000; position: relative; background: none; border: none; } .hamburger span { width: 30px; height: 3px; background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary)); border-radius: var(--radius-sm); transition: all 0.3s ease; } .catalog-section { margin-top: 100px; padding: var(--space-10) 20px; max-width: var(--container-max); margin-left: auto; margin-right: auto; } .catalog-header { text-align: center; margin-bottom: var(--space-8); } .catalog-title { font-size: var(--text-5xl); font-weight: var(--weight-black); background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: var(--space-3); } .catalog-subtitle { color: #d0cdc5; font-size: var(--text-lg); } .catalog-seo-text { max-width: 900px; margin: var(--space-8) auto var(--space-10); text-align: left; font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-relaxed); } .catalog-seo-text strong { color: var(--text-primary); } .catalog-seo-text a.internal-link { color: var(--brand-accent); text-decoration: underline; text-underline-offset: 3px; font-weight: var(--weight-semibold); } .catalog-seo-text a.internal-link:hover { color: var(--brand-primary); } .filters { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-bottom: 15px; padding: 0 20px; } .category-btn { padding: var(--space-3) var(--space-6); background: var(--border-light); border: 2px solid var(--border); border-radius: 25px; color: var(--text-primary); cursor: pointer; transition: all 0.3s ease; font-weight: var(--weight-semibold); font-size: var(--text-sm); } .category-btn:hover { border-color: var(--brand-accent); background: rgba(0, 212, 255, 0.1); } .category-btn.active { background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary)); border-color: transparent; } .brand-filters { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-bottom: var(--space-10); padding: 0 20px; } .brand-btn { padding: var(--space-2) var(--space-5); background: var(--border-light); border-radius: 20px; border: 1px solid var(--border-hover); color: var(--text-secondary); cursor: pointer; font-size: var(--text-xs); transition: all 0.25s ease; font-weight: var(--weight-medium); } .brand-btn:hover { border-color: var(--brand-accent); color: var(--text-primary); } .brand-btn.active { background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary)); color: var(--text-primary); border-color: transparent; } /* Gender filter buttons � subtle toggle style */ .gender-btn { padding: var(--space-2) var(--space-5); background: var(--border-light); border-radius: 20px; border: 1px solid var(--border); color: #e0ddd5; cursor: pointer; font-size: var(--text-xs); transition: all 0.25s ease; font-weight: var(--weight-medium); } .gender-btn:hover { border-color: var(--brand-primary); color: var(--text-primary); background: rgba(255, 0, 110, 0.08); } .gender-btn.active { background: linear-gradient(135deg, var(--brand-primary), #ff6b9d); color: var(--text-primary); border-color: transparent; } .sort-select { background: var(--border-light); color: #ffffff; border: 1px solid var(--border); border-radius: 20px; padding: var(--space-2) var(--space-4); font-size: var(--text-xs); font-weight: var(--weight-medium); cursor: pointer; } .sort-select:focus { outline: none; border-color: var(--brand-primary); } #seo-preload { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; } .seo-product { margin-bottom: var(--space-8); padding: 15px; border-bottom: 1px solid var(--border); } .seo-product h3 { font-size: var(--text-lg); color: var(--text-primary); margin-bottom: 5px; } .seo-product p { font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: 5px; } .seo-product .price { font-size: var(--text-xl); font-weight: var(--weight-black); color: var(--brand-accent); } /* ========== SEARCH ========== */ .search-bar { max-width: 500px; margin: 0 auto var(--space-5); position: relative; } .search-bar input { width: 100%; padding: 14px 18px 14px 48px; border-radius: var(--radius-full); border: 2px solid var(--border); background: var(--border-light); color: var(--text-primary); font-size: var(--text-sm); outline: none; transition: border-color 0.3s, box-shadow 0.3s; box-sizing: border-box; } .search-bar input:focus { border-color: var(--brand-accent); box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15); } .search-bar input::placeholder { color: #e0ddd5; } .search-bar-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #e0ddd5; font-size: var(--text-base); pointer-events: none; } .search-fuzzy-toggle { display: flex; align-items: center; justify-content: center; gap: var(--space-2); margin: 8px auto 0; max-width: 500px; font-size: var(--text-xs); color: #e0ddd5; cursor: pointer; user-select: none; } .search-fuzzy-toggle input[type="checkbox"] { accent-color: var(--brand-accent); width: 14px; height: 14px; cursor: pointer; } .search-results-count { text-align: center; font-size: var(--text-sm); color: #e0ddd5; margin-bottom: var(--space-5); min-height: 20px; } /* ========== GRID ========== */ .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-8); margin-bottom: 60px; } /* ========== PRODUCT CARD ========== */ .product-card { background: var(--surface-card); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl); transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease; position: relative; box-shadow: 0 2px 8px rgba(0,0,0,0.3); will-change: transform, box-shadow; transform-style: preserve-3d; perspective: 800px; overflow: hidden; } .product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0, 212, 255, 0.2), 0 4px 12px rgba(0,0,0,0.4); border-color: rgba(0, 212, 255, 0.4); } /* Tilt active state — JS adds this class on mouseenter */ .product-card.card-tilting { transition: box-shadow 0.15s ease, border-color 0.15s ease; } .product-card.card-tilting:hover { box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2), var(--shadow-lg); border-color: var(--brand-accent); } .product-card.card-reset { transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.3s ease; } /* Spotlight overlay that follows cursor */ .card-shine { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; opacity: 0; transition: opacity 0.3s ease; background: radial-gradient( circle 300px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.08) 0%, transparent 60% ); border-radius: inherit; } .product-card:hover .card-shine { opacity: 1; } .card-border-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 4; opacity: 0; transition: opacity 0.3s ease; border-radius: inherit; background: radial-gradient( circle 350px at var(--mx, 50%) var(--my, 50%), rgba(0, 212, 255, 0.12) 0%, transparent 55% ); } .product-card:hover .card-border-glow { opacity: 1; } .product-badge { position: absolute; top: 15px; left: 15px; padding: 6px 12px; border-radius: var(--radius-full); font-size: 11px; font-weight: var(--weight-black); z-index: var(--z-overlay); letter-spacing: 1px; } .badge-top { background: linear-gradient(135deg, var(--amber-400), var(--amber-600)); color: #000; } .badge-nuevo { background: linear-gradient(135deg, var(--brand-accent), #0080ff); color: var(--text-primary); } .product-likes { position: absolute; top: 15px; right: 15px; background: rgba(0, 0, 0, 0.7); padding: 6px 12px; border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: var(--weight-semibold); z-index: var(--z-overlay); color: var(--brand-primary); cursor: pointer; user-select: none; transition: all 0.3s ease; display: flex; align-items: center; gap: 4px; } .product-likes:hover { transform: scale(1.1); } .product-likes.liked .like-icon { animation: heartBeat 0.3s ease; } @keyframes heartBeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } } .like-icon { font-size: 14px; } .like-count { font-size: 12px; font-weight: 700; } .product-image-wrapper { overflow: hidden; position: relative; border-radius: var(--radius-xl) var(--radius-xl) 0 0; } .product-image { width: 100%; height: 280px; aspect-ratio: 4/3; object-fit: contain; background: #ece8e3; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease; will-change: transform; display: block; } .product-card:hover .product-image { transform: scale(1.06); } .product-image[data-loaded="true"] { opacity: 1; transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); } .product-image[data-loaded="false"] { opacity: 0; } .product-image-fallback { display: none; width: 100%; height: 280px; background: #d5d0c9; align-items: center; justify-content: center; border-radius: var(--radius-md); font-size: 40px; } .product-info { padding: var(--space-5); background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 50%, rgba(0,212,255,0.03) 100%); } .product-category { font-size: var(--text-xs); color: var(--brand-accent); font-weight: var(--weight-semibold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: var(--space-2); } .product-name { font-size: var(--text-lg); font-weight: var(--weight-bold); margin-bottom: var(--space-3); color: var(--text-primary); min-height: 48px; } .product-description { font-size: var(--text-xs); color: #ffffff; margin-bottom: 15px; line-height: var(--leading-normal); white-space: normal; word-break: break-word; } .product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; padding-top: 12px; border-top: 1px solid rgba(0,212,255,0.15); } .product-price { font-size: var(--text-2xl); font-weight: var(--weight-black); color: var(--brand-accent); text-shadow: 0 0 20px rgba(0,212,255,0.3); } .product-links { display: flex; flex-direction: column; gap: 8px; width: 100%; margin-top: 12px; padding: 12px 10px; background: rgba(255,255,255,0.03); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.05); } .agent-buy-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: var(--space-3) var(--space-4); border-radius: var(--radius-md); color: var(--text-primary); text-decoration: none; font-size: var(--text-xs); font-weight: var(--weight-semibold); transition: all 0.3s ease; border: 1.5px solid transparent; } .agent-buy-btn:hover { transform: translateX(5px); box-shadow: var(--shadow-lg); } /* ---- BUY DROPDOWN ---- */ .agent-buy-wrap { position: relative; width: 100%; } .agent-buy-btn { width: 100%; background: linear-gradient(135deg, #ff006e, #ff6b35); border-color: #ff006e; color: #fff; font-size: var(--text-sm); font-weight: var(--weight-bold); padding: 11px 14px; cursor: pointer; animation: buyPulse 3s ease-in-out infinite; } .agent-buy-btn:hover { box-shadow: 0 4px 14px rgba(255, 0, 110, 0.5); } .agent-dropdown { display: none; position: absolute; bottom: calc(100% + 6px); left: 0; right: 0; z-index: 999; flex-direction: column; gap: 6px; background: #16161e; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-md); padding: 8px; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7); } .agent-buy-wrap.open { position: relative; z-index: 999; } .agent-buy-wrap.open .agent-dropdown { display: flex; } .agent-drop-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; text-decoration: none; color: #fff; background: rgba(255, 255, 255, 0.04); transition: all 0.2s ease; } .agent-drop-item:hover { background: rgba(0, 212, 255, 0.12); transform: translateX(4px); } .agent-drop-name { font-weight: 700; font-size: 0.85rem; } .agent-drop-msg { font-size: 0.7rem; color: rgba(255, 255, 255, 0.7); margin-left: auto; } .ChinaBuyHub-btn { background: linear-gradient(135deg, #ff9100, #ff6d00); border-color: #ff9100; } .ChinaBuyHub-btn:hover { box-shadow: 0 4px 14px rgba(255, 145, 0, 0.6); } .litbuy-btn { background: linear-gradient(135deg, #06ffa5, #00cc83); border-color: #06ffa5; } .litbuy-btn:hover { box-shadow: 0 4px 14px rgba(6, 255, 165, 0.6); } .kakobuy-btn { background: linear-gradient(135deg, #9c27b0, #7b1fa2); border-color: #9c27b0; } .kakobuy-btn:hover { box-shadow: 0 4px 14px rgba(156, 39, 176, 0.7); } .agent-logo-small, .agent-logo { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; background: white; padding: 3px; } /* ========== SKELETON SHIMMER ========== */ @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes buyPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,0,110,0.4); } 50% { box-shadow: 0 0 4px 10px rgba(255,0,110,0); } } .skeleton { background: linear-gradient(90deg, var(--gray-800) 0%, var(--gray-700) 40%, var(--gray-600) 50%, var(--gray-700) 60%, var(--gray-800) 100%); background-size: 200% 100%; animation: shimmer 1.5s ease-in-out infinite; border-radius: var(--radius-md); } .skeleton-card { background: var(--surface-card); border: 1px solid var(--border-hover); border-radius: var(--radius-xl); overflow: hidden; } .skeleton-image { width: 100%; height: 280px; } .skeleton-title { width: 70%; height: 16px; margin: 16px 16px 8px; } .skeleton-text { width: 90%; height: 12px; margin: 0 16px 8px; } .skeleton-price { width: 25%; height: 20px; margin: 8px 16px 16px; border-radius: var(--radius-sm); } .skeleton-btn { width: 80%; height: 32px; margin: 0 16px 8px; border-radius: var(--radius-md); } .skeleton-btn:last-child { margin-bottom: 16px; } .product-card { animation: fadeInUp 0.4s ease forwards; opacity: 0; } .product-card:nth-child(1) { animation-delay: 0.02s; } .product-card:nth-child(2) { animation-delay: 0.04s; } .product-card:nth-child(3) { animation-delay: 0.06s; } .product-card:nth-child(4) { animation-delay: 0.08s; } .product-card:nth-child(5) { animation-delay: 0.10s; } .product-card:nth-child(6) { animation-delay: 0.12s; } .product-card:nth-child(7) { animation-delay: 0.14s; } .product-card:nth-child(8) { animation-delay: 0.16s; } .product-card:nth-child(n+9) { animation-delay: 0.18s; } /* ========== PAGINATION ========== */ .pagination { display: flex; justify-content: center; align-items: center; gap: var(--space-3); margin: var(--space-16) 0; flex-wrap: wrap; } .page-btn { padding: 12px 20px; background: var(--border-light); border: 1px solid var(--border-hover); border-radius: var(--radius-md); color: var(--text-primary); cursor: pointer; transition: all 0.3s ease; font-weight: var(--weight-semibold); } .page-btn:hover:not(:disabled) { background: rgba(0, 212, 255, 0.2); border-color: var(--brand-accent); } .page-btn.active { background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary)); border-color: transparent; } .page-btn:disabled { opacity: 0.3; cursor: not-allowed; } .page-info { color: #e0ddd5; padding: 0 var(--space-3); } .no-results { text-align: center; padding: var(--space-20) var(--space-5); color: #e0ddd5; } .no-results h3 { font-size: var(--text-3xl); margin-bottom: var(--space-3); color: var(--text-primary); } /* ========== BOTTOM BAR ========== */ .bottom-agent-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(15, 15, 20, 0.97); backdrop-filter: blur(10px); border-top: 1px solid var(--border); color: var(--text-primary); z-index: 9998; display: flex; align-items: center; justify-content: center; padding: var(--space-2) var(--space-5); min-height: 44px; max-height: 60px; font-size: var(--text-xs); gap: 6px; flex-wrap: wrap; text-align: center; } .bottom-agent-bar a { color: var(--brand-accent); text-decoration: none; font-weight: var(--weight-bold); white-space: nowrap; } .bottom-agent-bar a:hover { color: var(--brand-primary); text-decoration: underline; } .bottom-agent-bar .bar-separator { color: #e0ddd5; margin: 0 2px; } .bottom-agent-bar .bar-close { background: none; border: 1px solid var(--border-hover); color: var(--text-primary); cursor: pointer; font-size: var(--text-base); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1; margin-left: var(--space-3); flex-shrink: 0; transition: all 0.2s; } .bottom-agent-bar .bar-close:hover { background: rgba(255,0,0,0.6); border-color: transparent; } /* ========== FAQ ========== */ .faq-section { max-width: var(--container-narrow); margin: 60px auto 60px; padding: 0 var(--space-5); } .faq-section h2 { font-size: var(--text-3xl); font-weight: var(--weight-black); text-align: center; background: var(--gradient-pink-cyan); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: var(--space-10); } .faq-item { background: var(--gradient-surface); border: 1px solid var(--border); border-radius: var(--radius-xl); margin-bottom: var(--space-4); overflow: hidden; } .faq-question { display: block; width: 100%; padding: var(--space-5) var(--space-6); background: none; border: none; color: var(--text-primary); font-size: var(--text-lg); font-weight: var(--weight-bold); text-align: left; cursor: pointer; position: relative; font-family: inherit; } .faq-question::after { content: '+'; position: absolute; right: var(--space-6); top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: var(--weight-light); color: var(--brand-accent); transition: transform var(--duration-base) ease; } .faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--duration-slow) ease, padding var(--duration-slow) ease; } .faq-answer p { padding: 0 var(--space-6) var(--space-5); color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-relaxed); } .faq-toggle { display: none; } .faq-toggle:checked + .faq-question::after { transform: translateY(-50%) rotate(45deg); color: var(--brand-primary); } .faq-toggle:checked + .faq-question + .faq-answer { max-height: 600px; padding-top: var(--space-1); } .faq-toggle:checked + .faq-question { border-bottom: 1px solid var(--border); } /* ========== RESPONSIVE ========== */ @media (max-width: 768px) { header { padding: var(--space-3) var(--space-5); } .logo-header-text { font-size: var(--text-xl); } .catalog-title { font-size: var(--text-3xl); } .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); padding: 0 var(--space-3); } .product-card { border-radius: var(--radius-xl); } .product-image { height: 180px; } .product-info { padding: var(--space-3); } .product-name { font-size: var(--text-sm); min-height: auto; } .product-price { font-size: var(--text-xl); } .nav-menu.active { right: var(--space-3); } .bottom-agent-bar { font-size: 11px; padding: 6px 12px; gap: 3px; } .faq-question { font-size: var(--text-sm); padding: var(--space-4) var(--space-5); } .faq-answer p { font-size: var(--text-sm); } } @media (max-width: 480px) { body { font-size: var(--text-sm); } header { padding: var(--space-2) var(--space-4); } .logo-header-text { font-size: var(--text-lg); } .catalog-title { font-size: var(--text-2xl); padding: 0 var(--space-4); } .catalog-subtitle { font-size: var(--text-sm); padding: 0 var(--space-4); } .filters { padding: 0 var(--space-3); } .category-btn { padding: var(--space-3) var(--space-4); font-size: var(--text-xs); } .brand-filters { padding: 0 var(--space-3); } .products-grid { grid-template-columns: 1fr; gap: var(--space-5); padding: 0 var(--space-4); } .product-card { max-width: 100%; } .product-image { height: 280px; } .product-name { font-size: var(--text-sm); } .product-description { font-size: var(--text-xs); } .product-price { font-size: var(--text-xl); } .pagination { padding: 0 var(--space-3); } .page-btn { padding: var(--space-2) var(--space-3); font-size: var(--text-xs); } .card-shine, .card-border-glow { display: none; } } @media (min-width: 1400px) { .products-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); } }