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

:root {
    --primary: #FF5A5F;
    --primary-hover: #E0484D;
    --bg-color: #FAFAFA;
    --text-main: #222222;
    --text-muted: #717171;
    --card-bg: #FFFFFF;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 8px 28px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 36px rgba(0,0,0,0.12);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Header */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.brand-logo-img {
    height: 40px;
    object-fit: contain;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--bg-color) 100%), 
                url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    border-radius: 0 0 40px 40px;
    margin-bottom: 40px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 0 0 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1px;
    color: var(--text-main);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Category Title */
.category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-main);
    border-left: 5px solid var(--primary);
    padding-left: 15px;
}

/* Product Card */
.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    gap: 20px;
    height: 100%;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0,0,0,0.08);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.4;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-img-wrapper {
    width: 110px;
    height: 110px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

/* CTA Floating App */
.cta-banner {
    background: var(--text-main);
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.btn-app {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.btn-app:hover {
    background: var(--primary-hover);
    color: white;
}

/* Footer */
.site-footer {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: auto;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .product-card { padding: 15px; gap: 15px; }
    .product-img-wrapper { width: 90px; height: 90px; }
}
