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

:root {
    --brand-primary: #1f2937;
    --brand-secondary: #4f46e5;
    --brand-accent: #ff6b35;
    --brand-surface: #ffffff;
}

body {
    background-color: #f7f7fb;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: #1f2937;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 700;
}

.navbar-brand {
    letter-spacing: 0.5px;
    font-size: 1.35rem;
    font-weight: 800;
}

.navbar {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--brand-secondary);
    border-color: var(--brand-secondary);
}

.btn-primary:hover {
    background-color: #4338ca;
    border-color: #4338ca;
}

.btn-outline-light:hover {
    color: var(--brand-primary);
}

.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.product-card img {
    height: 220px;
    object-fit: cover;
    background: #eef0f4;
}

.product-card .card-title a {
    font-weight: 600;
}

.price-strike {
    text-decoration: line-through;
    color: #adb5bd;
}

.badge-sale {
    background-color: var(--brand-accent);
    font-weight: 600;
}

.hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: #fff;
    border-radius: 1rem;
    padding: 4.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.85);
}

.trust-strip {
    background: var(--brand-surface);
    border-radius: 0.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.trust-strip i {
    color: var(--brand-secondary);
}

.category-tile {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.category-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10) !important;
}

.cart-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 0.5rem;
}

footer a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.contact-strip i {
    color: var(--brand-accent);
}
