/* Simple Shop custom theme */

:root {
    --primary: #2563eb;
    --secondary: #4f46e5;
    --text-dark: #0f172a;
    --muted: #64748b;
    --border-color: rgba(15, 23, 42, 0.08);
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    background: #f0f4ff;
    color: var(--text-dark);
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.site-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.75);
    padding: 2rem 0;
}

.site-footer a {
    color: #f8fafc;
    text-decoration: none;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.hero-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.card-custom {
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 15px 40px rgba(31, 41, 55, 0.08);
}

.product-card .card-body {
    min-height: 280px;
}

.product-hero {
    background: #f8fbff;
    border-radius: 24px;
    padding: 2rem;
}

.product-gallery {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1rem;
}

.product-gallery img.main-image {
    border-radius: 24px;
}

.thumb-gallery {
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.thumb-gallery img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
}

.thumb-gallery img.active {
    border-color: var(--primary);
}

.badge-soft {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
}

.cta-btn {
    border-radius: 999px;
    padding: 0.65rem 1.75rem;
}

.attribute-btn {
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.2);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.shipping-price {
    background: rgba(239, 246, 255, 0.7);
    border-radius: 12px;
    padding: 1rem;
}

.table-custom th {
    background: #f1f5f9;
}

.btn-outline-primary {
    border-radius: 999px;
}

.select-box {
    border-radius: 999px;
}

.hero-lead {
    letter-spacing: 0.02em;
}

.tag-pill {
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary);
    font-size: 0.8rem;
}
