/* ============================================
   MINAQU DESIGN SYSTEM — Typography & Colors
   ============================================ */

/* --- Font Variables --- */
:root {
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Colors */
    --color-primary:       #1A5C2A;
    --color-primary-dark:  #0F3819;
    --color-primary-light: #E8F2EC;

    --color-text-primary:   #111827;
    --color-text-secondary: #6b7280;
    --color-text-muted:     #9ca3af;

    --color-bg-base:        #f5f5f5;
    --color-bg-white:       #ffffff;
    --color-bg-card:        #ffffff;

    --color-border:         #e5e7eb;
    --color-border-light:   #f3f4f6;

    /* Spacing */
    --space-xs:   4px;
    --space-sm:   8px;
    --space-md:   12px;
    --space-lg:   16px;
    --space-xl:   20px;
    --space-2xl:  24px;

    /* Border Radius */
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   16px;
    --radius-full: 9999px;

    /* Shadow */
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-nav:  0 -1px 0 #e5e7eb;
    --shadow-btn:  0 4px 14px rgba(26, 92, 42, 0.35);
    --shadow-btn-hover: 0 6px 18px rgba(26, 92, 42, 0.45);

    /* Brand Gradient */
    --gradient-brand: linear-gradient(60deg, hsla(147, 76%, 21%, 1) 0%, hsla(89, 47%, 46%, 1) 100%);
}

/* --- Base Typography --- */
html, body {
    font-family: var(--font-body) !important;
    font-size: 14px;
    color: var(--color-text-primary);
    background-color: var(--color-bg-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
    font-family: var(--font-body);
}

/* --- Heading Scale (Montserrat) --- */
h1, h2, h3, h4, h5, h6,
.heading, .section-title,
.price, .price-lg,
.btn-primary, .btn-outline {
    font-family: var(--font-heading) !important;
}

h1, h2, h3, h4, h5, h6,
.heading {
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
}

h1, .text-h1 { font-size: 24px; font-weight: 800; }
h2, .text-h2 { font-size: 20px; font-weight: 700; }
h3, .text-h3 { font-size: 18px; font-weight: 700; }
h4, .text-h4 { font-size: 16px; font-weight: 600; }
h5, .text-h5 { font-size: 14px; font-weight: 600; }
h6, .text-h6 { font-size: 13px; font-weight: 600; }

/* --- Body Scale (Geist) --- */
.text-body-lg   { font-size: 16px; font-weight: 400; line-height: 1.6; }
.text-body      { font-size: 14px; font-weight: 400; line-height: 1.6; }
.text-body-sm   { font-size: 13px; font-weight: 400; line-height: 1.5; }
.text-caption   { font-size: 12px; font-weight: 400; line-height: 1.4; }
.text-micro     { font-size: 11px; font-weight: 400; line-height: 1.4; }
.text-label     { font-size: 10px; font-weight: 500; line-height: 1.3; letter-spacing: 0.02em; }

/* --- Font Weight Utilities --- */
.fw-regular  { font-weight: 400; }
.fw-medium   { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold     { font-weight: 700; }
.fw-extrabold{ font-weight: 800; }

/* --- Color Utilities --- */
.text-primary   { color: var(--color-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted     { color: var(--color-text-muted); }

/* --- Section Title Pattern --- */
.section-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.section-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
}

/* --- Price Pattern --- */
.price {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
}

.price-lg {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
}

/* --- Badge Pattern --- */
.badge {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    display: inline-block;
}

/* --- Button Pattern --- */
.btn-primary {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    padding: 8px 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    background: white;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-sm {
    font-size: 11px;
    padding: 4px 12px;
}

/* --- Gradient Button --- */
.btn-gradient {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    background: hsla(147, 76%, 21%, 1);
    background: -webkit-linear-gradient(60deg, hsla(147, 76%, 21%, 1) 0%, hsla(89, 47%, 46%, 1) 100%);
    background: -moz-linear-gradient(60deg, hsla(147, 76%, 21%, 1) 0%, hsla(89, 47%, 46%, 1) 100%);
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    padding: 10px 24px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-btn);
    transition: opacity 0.15s, box-shadow 0.15s;
    letter-spacing: 0.01em;
}
.btn-gradient:hover {
    opacity: 0.92;
    box-shadow: var(--shadow-btn-hover);
}

/* Full-width tall variant for bottom bars */
.btn-gradient-lg {
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    width: 100%;
    padding: 0 24px;
}

/* --- Card Pattern --- */
.card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

/* --- Scrollbar Hide --- */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
