anycoder-9e94d350 / index.html
cutenix's picture
Upload folder using huggingface_hub
c561f5f verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LUMINA — Elevated Living</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js"></script>
<style>
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--font-serif: 'Cormorant Garamond', Georgia, serif;
--primary: #0F172A;
--primary-light: #1E293B;
--accent: #C8102E;
--accent-light: #E83A50;
--accent-glow: rgba(200, 16, 46, 0.12);
--bg: #FAFAFA;
--surface: #FFFFFF;
--surface-elevated: #F8F9FA;
--surface-warm: #FEF7F0;
--text: #1A1A2E;
--text-secondary: #6B7280;
--text-tertiary: #9CA3AF;
--border: #E5E7EB;
--border-light: #F1F3F4;
--shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.03);
--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.06), 0 4px 6px -4px rgba(0,0,0,0.04);
--shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.07), 0 8px 10px -6px rgba(0,0,0,0.05);
--shadow-glow: 0 8px 32px rgba(200, 16, 46, 0.15);
--radius-sm: 6px;
--radius-md: 12px;
--radius-lg: 20px;
--radius-xl: 28px;
--transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
--transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
--transition-slow: 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-sans);
background: var(--bg);
color: var(--text);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--border);
border-radius: 3px;
}
::selection {
background: var(--accent-glow);
color: var(--accent);
}
/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
background: var(--primary);
color: white;
text-align: center;
padding: 10px 20px;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
position: relative;
overflow: hidden;
}
.announcement-bar a {
color: var(--accent-light);
font-weight: 600;
text-decoration: none;
transition: opacity var(--transition-fast);
}
.announcement-bar a:hover {
opacity: 0.8;
}
.announcement-bar__accent-line {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
0%, 100% {
opacity: 0.3;
}
50% {
opacity: 1;
}
}
/* ---- HEADER ---- */
.header {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(250, 250, 250, 0.85);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-bottom: 1px solid var(--border-light);
transition: box-shadow var(--transition-smooth);
}
.header.scrolled {
box-shadow: var(--shadow-md);
}
.header-inner {
max-width: 1400px;
margin: 0 auto;
padding: 14px 24px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 32px;
}
.header-left, .header-right {
display: flex;
align-items: center;
gap: 12px;
}
.logo-link {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: var(--text);
}
.logo-icon {
width: 36px;
height: 36px;
background: var(--primary);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.logo-icon::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
}
.logo-icon i {
color: white;
font-size: 15px;
}
.logo-text {
font-family: var(--font-serif);
font-size: 24px;
font-weight: 600;
letter-spacing: -0.02em;
color: var(--text);
line-height: 1;
}
.logo-text span {
color: var(--accent);
}
.nav-desktop {
display: flex;
gap: 6px;
list-style: none;
align-items: center;
}
.nav-desktop a {
text-decoration: none;
color: var(--text-secondary);
font-size: 13.5px;
font-weight: 500;
padding: 8px 14px;
border-radius: 8px;
transition: all var(--transition-fast);
position: relative;
}
.nav-desktop a:hover,
.nav-desktop a.active {
color: var(--text);
background: rgba(15, 23, 42, 0.04);
}
.nav-desktop a.active::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 16px;
height: 2px;
background: var(--accent);
border-radius: 1px;
}
.search-bar {
display: flex;
align-items: center;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 8px 14px;
gap: 8px;
transition: all var(--transition-fast);
min-width: 240px;
}
.search-bar:focus-within {
border-color: var(--accent);
box-shadow: 0 0 0 3px var(--accent-glow);
}
.search-bar input {
border: none;
outline: none;
font-size: 13px;
font-family: var(--font-sans);
background: transparent;
color: var(--text);
width: 100%;
}
.search-bar input::placeholder {
color: var(--text-tertiary);
}
.search-bar i {
color: var(--text-tertiary);
font-size: 13px;
}
.header-btn {
position: relative;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
cursor: pointer;
transition: all var(--transition-fast);
color: var(--text-secondary);
background: none;
border: none;
}
.header-btn:hover {
background: rgba(15, 23, 42, 0.04);
color: var(--text);
}
.header-btn i {
font-size: 17px;
}
.cart-count {
position: absolute;
top: 2px;
right: 2px;
background: var(--accent);
color: white;
font-size: 9px;
font-weight: 700;
width: 16px;
height: 16px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
animation: countPulse 0.4s ease;
}
@keyframes countPulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.4);
}
100% {
transform: scale(1);
}
}
.mobile-toggle {
display: none;
}
/* ---- MOBILE MENU ---- */
.mobile-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.25);
backdrop-filter: blur(4px);
z-index: 999;
opacity: 0;
visibility: hidden;
transition: all var(--transition-smooth);
}
.mobile-overlay.open {
opacity: 1;
visibility: visible;
}
.mobile-drawer {
position: fixed;
top: 0;
right: -360px;
width: min(360px, 85vw);
height: 100vh;
background: var(--surface);
z-index: 1001;
padding: 24px;
transition: right var(--transition-slow);
overflow-y: auto;
display: flex;
flex-direction: column;
}
.mobile-drawer.open {
right: 0;
}
.mobile-drawer-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 32px;
padding-bottom: 16px;
border-bottom: 1px solid var(--border-light);
}
.mobile-drawer-header .logo-text {
font-size: 20px;
}
.mobile-nav {
list-style: none;
}
.mobile-nav li {
border-bottom: 1px solid var(--border-light);
}
.mobile-nav a {
display: block;
padding: 16px 0;
color: var(--text);
text-decoration: none;
font-size: 15px;
font-weight: 500;
transition: color var(--transition-fast);
}
.mobile-nav a:hover {
color: var(--accent);
}
/* ---- CART SIDEBAR ---- */
.cart-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.25);
backdrop-filter: blur(4px);
z-index: 998;
opacity: 0;
visibility: hidden;
transition: all var(--transition-smooth);
}
.cart-overlay.open {
opacity: 1;
visibility: visible;
}
.cart-sidebar {
position: fixed;
top: 0;
right: -480px;
width: min(480px, 92vw);
height: 100vh;
background: var(--surface);
z-index: 1002;
transition: right var(--transition-slow);
display: flex;
flex-direction: column;
box-shadow: -8px 0 40px rgba(0,0,0,0.08);
}
.cart-sidebar.open {
right: 0;
}
.cart-header {
padding: 24px 28px;
border-bottom: 1px solid var(--border-light);
display: flex;
align-items: center;
justify-content: space-between;
flex-shrink: 0;
}
.cart-header h3 {
font-size: 18px;
font-weight: 600;
display: flex;
align-items: center;
gap: 10px;
}
.cart-header h3 i {
color: var(--accent);
}
.cart-items {
flex: 1;
overflow-y: auto;
padding: 16px 28px;
}
.cart-item {
display: flex;
gap: 14px;
padding: 16px 0;
border-bottom: 1px solid var(--border-light);
animation: slideInRight 0.4s ease;
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.cart-item__img {
width: 72px;
height: 72px;
border-radius: var(--radius-sm);
object-fit: cover;
flex-shrink: 0;
background: var(--surface-elevated);
}
.cart-item__info {
flex: 1;
min-width: 0;
}
.cart-item__name {
font-size: 13px;
font-weight: 600;
color: var(--text);
margin-bottom: 3px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.cart-item__variant {
font-size: 12px;
color: var(--text-tertiary);
margin-bottom: 6px;
}
.cart-item__bottom {
display: flex;
align-items: center;
justify-content: space-between;
}
.qty-controls {
display: flex;
align-items: center;
gap: 8px;
background: var(--surface-elevated);
border-radius: 8px;
padding: 3px;
}
.qty-controls button {
width: 26px;
height: 26px;
border: none;
background: var(--surface);
border-radius: 6px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 11px;
color: var(--text-secondary);
transition: all var(--transition-fast);
box-shadow: var(--shadow-sm);
}
.qty-controls button:hover {
background: var(--accent);
color: white;
}
.qty-controls span {
font-size: 13px;
font-weight: 600;
min-width: 20px;
text-align: center;
}
.cart-item__price {
font-size: 14px;
font-weight: 700;
color: var(--text);
}
.cart-item__remove {
width: 28px;
height: 28px;
border: none;
background: none;
cursor: pointer;
color: var(--text-tertiary);
border-radius: 6px;
transition: all var(--transition-fast);
flex-shrink: 0;
align-self: flex-start;
display: flex;
align-items: center;
justify-content: center;
}
.cart-item__remove:hover {
color: var(--accent);
background: var(--accent-glow);
}
.cart-empty {
text-align: center;
padding: 60px 20px;
color: var(--text-tertiary);
}
.cart-empty i {
font-size: 48px;
margin-bottom: 16px;
opacity: 0.4;
}
.cart-empty p {
font-size: 14px;
}
.cart-footer {
padding: 20px 28px 28px;
border-top: 1px solid var(--border-light);
flex-shrink: 0;
background: var(--surface);
}
.cart-totals {
margin-bottom: 20px;
}
.cart-total-row {
display: flex;
justify-content: space-between;
margin-bottom: 8px;
font-size: 13px;
color: var(--text-secondary);
}
.cart-total-row.total {
font-size: 16px;
font-weight: 700;
color: var(--text);
padding-top: 12px;
border-top: 1px solid var(--border-light);
margin-top: 8px;
}
.cart-btn {
width: 100%;
padding: 14px;
border: none;
border-radius: var(--radius-md);
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all var(--transition-fast);
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-family: var(--font-sans);
}
.cart-btn-primary {
background: var(--primary);
color: white;
margin-bottom: 10px;
}
.cart-btn-primary:hover {
background: var(--primary-light);
transform: translateY(-1px);
box-shadow: var(--shadow-md);
}
.cart-btn-secondary {
background: var(--surface-elevated);
color: var(--text);
border: 1px solid var(--border);
}
.cart-btn-secondary:hover {
background: var(--border-light);
}
/* ---- HERO ---- */
.hero {
position: relative;
height: calc(100vh - 100px);
min-height: 560px;
max-height: 900px;
overflow: hidden;
display: flex;
align-items: center;
}
.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
}
.hero-bg img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.hero-bg::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.5) 45%, rgba(15,23,42,0.15) 100%);
}
.hero-particles {
position: absolute;
inset: 0;
z-index: 1;
overflow: hidden;
pointer-events: none;
}
.hero-particle {
position: absolute;
width: 3px;
height: 3px;
background: rgba(255,255,255,0.3);
border-radius: 50%;
animation: floatParticle linear infinite;
}
@keyframes floatParticle {
0% {
transform: translateY(100vh) scale(0);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
transform: translateY(-10vh) scale(1);
opacity: 0;
}
}
.hero-content {
position: relative;
z-index: 2;
max-width: 1400px;
margin: 0 auto;
padding: 0 24px;
width: 100%;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
color: white;
padding: 8px 18px;
border-radius: 100px;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
margin-bottom: 28px;
border: 1px solid rgba(255,255,255,0.15);
animation: fadeSlideUp 1s var(--transition-slow) both;
}
.hero-badge::before {
content: '';
width: 6px;
height: 6px;
background: #22C55E;
border-radius: 50%;
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% {
box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
}
50% {
box-shadow: 0 0 0 6px rgba(34,197,94,0);
}
}
.hero h1 {
font-family: var(--font-serif);
font-size: clamp(2.8rem, 6vw, 5.5rem);
font-weight: 500;
color: white;
line-height: 1.08;
margin-bottom: 24px;
max-width: 680px;
animation: fadeSlideUp 1s 0.15s var(--transition-slow) both;
}
.hero h1 em {
font-style: italic;
color: rgba(255,255,255,0.7);
font-weight: 400;
}
.hero p {
font-size: clamp(14px, 1.2vw, 17px);
color: rgba(255,255,255,0.65);
max-width: 440px;
line-height: 1.7;
margin-bottom: 36px;
animation: fadeSlideUp 1s 0.3s var(--transition-slow) both;
font-weight: 400;
}
.hero-actions {
display: flex;
gap: 14px;
flex-wrap: wrap;
animation: fadeSlideUp 1s 0.45s var(--transition-slow) both;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 14px 32px;
border-radius: 12px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
transition: all var(--transition-fast);
cursor: pointer;
border: none;
font-family: var(--font-sans);
letter-spacing: -0.01em;
position: relative;
overflow: hidden;
}
.btn-primary {
background: white;
color: var(--primary);
box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}
.btn-outline {
background: transparent;
color: white;
border: 1px solid rgba(255,255,255,0.25);
backdrop-filter: blur(8px);
}
.btn-outline:hover {
background: rgba(255,255,255,0.08);
border-color: rgba(255,255,255,0.4);
transform: translateY(-2px);
}
.hero-stats {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 48px;
z-index: 2;
animation: fadeSlideUp 1s 0.6s var(--transition-slow) both;
}
.hero-stat {
text-align: center;
color: white;
}
.hero-stat__num {
font-size: 28px;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1;
margin-bottom: 4px;
font-family: var(--font-serif);
}
.hero-stat__label {
font-size: 11px;
opacity: 0.55;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
}
/* ---- SECTIONS ---- */
.section {
padding: 100px 24px;
}
.section-header {
max-width: 1400px;
margin: 0 auto 56px;
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
}
.section-label {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 14px;
}
.section-label::before {
content: '';
width: 24px;
height: 1.5px;
background: var(--accent);
border-radius: 1px;
}
.section-title {
font-family: var(--font-serif);
font-size: clamp(1.8rem, 3.5vw, 2.8rem);
font-weight: 500;
color: var(--text);
line-height: 1.15;
}
.section-title em {
font-style: italic;
color: var(--text-secondary);
font-weight: 400;
}
.section-subtitle {
font-size: 15px;
color: var(--text-secondary);
margin-top: 10px;
line-height: 1.6;
max-width: 440px;
}
.section-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--text);
text-decoration: none;
font-size: 13px;
font-weight: 600;
transition: all var(--transition-fast);
white-space: nowrap;
}
.section-link:hover {
color: var(--accent);
gap: 12px;
}
.section-link i {
font-size: 11px;
}
/* ---- FEATURED BANNER ---- */
.featured-banner {
max-width: 1400px;
margin: 0 auto;
position: relative;
border-radius: var(--radius-xl);
overflow: hidden;
height: 420px;
display: flex;
align-items: center;
}
.featured-banner__bg {
position: absolute;
inset: 0;
}
.featured-banner__bg img {
width: 100%;
height: 100%;
object-fit: cover;
}
.featured-banner__bg::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(110deg, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.4) 55%, transparent 100%);
}
.featured-banner__content {
position: relative;
z-index: 2;
padding: 48px 56px;
max-width: 520px;
}
.featured-banner__tag {
display: inline-block;
background: var(--accent);
color: white;
padding: 5px 14px;
border-radius: 6px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 18px;
}
.featured-banner__title {
font-family: var(--font-serif);
font-size: 32px;
font-weight: 500;
color: white;
line-height: 1.2;
margin-bottom: 12px;
}
.featured-banner__desc {
font-size: 14px;
color: rgba(255,255,255,0.6);
line-height: 1.7;
margin-bottom: 28px;
}
.featured-banner__btn {
display: inline-flex;
align-items: center;
gap: 10px;
background: white;
color: var(--primary);
padding: 13px 28px;
border-radius: 12px;
text-decoration: none;
font-size: 13px;
font-weight: 600;
transition: all var(--transition-fast);
}
.featured-banner__btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}
/* ---- PRODUCT GRID ---- */
.product-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.product-card {
background: var(--surface);
border-radius: var(--radius-lg);
overflow: hidden;
cursor: pointer;
transition: all var(--transition-smooth);
border: 1px solid var(--border-light);
position: relative;
}
.product-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-xl);
border-color: transparent;
}
.product-card__img-wrap {
position: relative;
aspect-ratio: 3 / 3.6;
overflow: hidden;
background: var(--surface-elevated);
}
.product-card__img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card__img-wrap img {
transform: scale(1.06);
}
.product-card__img-wrap::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.06), transparent 40%);
opacity: 0;
transition: opacity var(--transition-smooth);
}
.product-card:hover .product-card__img-wrap::after {
opacity: 1;
}
.product-card__badge {
position: absolute;
top: 14px;
left: 14px;
background: var(--accent);
color: white;
padding: 4px 10px;
border-radius: 6px;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
z-index: 2;
}
.product-card__badge.out {
background: var(--primary-light);
}
.product-card__wishlist {
position: absolute;
top: 14px;
right: 14px;
width: 36px;
height: 36px;
background: rgba(255,255,255,0.9);
backdrop-filter: blur(8px);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-tertiary);
transition: all var(--transition-fast);
z-index: 2;
opacity: 0;
transform: translateY(-4px);
}
.product-card:hover .product-card__wishlist {
opacity: 1;
transform: translateY(0);
}
.product-card__wishlist:hover {
background: var(--accent);
color: white;
box-shadow: var(--shadow-glow);
}
.product-card__wishlist.wished {
background: var(--accent);
color: white;
opacity: 1;
transform: translateY(0);
}
.product-card__quick {
position: absolute;
bottom: 14px;
left: 50%;
transform: translateX(-50%) translateY(12px);
background: rgba(255,255,255,0.95);
backdrop-filter: blur(12px);
border: none;
padding: 10px 22px;
border-radius: 10px;
font-size: 12px;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
gap: 6px;
color: var(--text);
transition: all var(--transition-smooth);
opacity: 0;
white-space: nowrap;
z-index: 2;
box-shadow: var(--shadow-md);
font-family: var(--font-sans);
}
.product-card:hover .product-card__quick {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
.product-card__quick:hover {
background: var(--primary);
color: white;
}
.product-card__info {
padding: 18px 20px 20px;
}
.product-card__category {
font-size: 11px;
color: var(--text-tertiary);
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
margin-bottom: 6px;
}
.product-card__name {
font-size: 14px;
font-weight: 600;
color: var(--text);
margin-bottom: 10px;
line-height: 1.4;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.product-card__bottom {
display: flex;
align-items: center;
justify-content: space-between;
}
.product-card__price {
font-size: 15px;
font-weight: 700;
color: var(--text);
}
.product-card__price .old {
font-size: 12px;
color: var(--text-tertiary);
text-decoration: line-through;
margin-left: 6px;
font-weight: 400;
}
.product-card__rating {
display: flex;
align-items: center;
gap: 4px;
font-size: 12px;
color: var(--text-tertiary);
}
.product-card__rating i {
color: #F59E0B;
font-size: 10px;
}
.product-card__rating strong {
color: var(--text);
font-weight: 600;
}
/* ---- CATEGORY SECTION ---- */
.categories-section {
background: var(--surface);
border-top: 1px solid var(--border-light);
border-bottom: 1px solid var(--border-light);
}
.categories-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 16px;
}
.category-card {
text-align: center;
cursor: pointer;
transition: all var(--transition-smooth);
padding: 8px;
border-radius: var(--radius-lg);
}
.category-card:hover {
background: var(--surface-elevated);
}
.category-card__img {
width: 100%;
aspect-ratio: 1;
border-radius: var(--radius-md);
overflow: hidden;
margin-bottom: 12px;
position: relative;
}
.category-card__img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card:hover .category-card__img img {
transform: scale(1.08);
}
.category-card__img::after {
content: '';
position: absolute;
inset: 0;
background: rgba(15,23,42,0);
transition: background var(--transition-smooth);
border-radius: var(--radius-md);
}
.category-card:hover .category-card__img::after {
background: rgba(15,23,42,0.08);
}
.category-card__name {
font-size: 13px;
font-weight: 600;
color: var(--text);
margin-bottom: 2px;
}
.category-card__count {
font-size: 11px;
color: var(--text-tertiary);
}
/* ---- PROMO STRIP ---- */
.promo-strip {
background: var(--primary);
padding: 20px 24px;
overflow: