/* ================================
   GLOBAL DESIGN SYSTEM - TAZKIYAH MART
   Clean, production-safe, no conflicts
================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --brand: #E5412C;
    --brand-dark: #D6341F;
    --brand-light: #FF5E48;

    --text: #1c1917;
    --text-soft: #57534e;

    --bg: #fafaf9;

    --radius: 12px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 18px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 28px rgba(0,0,0,0.12);

    --transition: 0.25s ease;
}

/* ===== BASE RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ===== TYPOGRAPHY (SAFE - NO GLOBAL H1 EFFECTS) ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

p {
    color: var(--text-soft);
}

/* ===== BRAND TEXT (OPTIONAL USE ONLY) ===== */
.text-brand {
    color: var(--brand);
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== LINKS (SMART INLINE STYLE) ===== */
a {
    color: var(--brand);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

/* Underline animation ONLY for normal links */
a:not(.btn):not(.nav-link):not(.no-underline)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

a:not(.btn):not(.nav-link):not(.no-underline):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== OFFER / TITLE FIX (IMPORTANT - YOUR ISSUE FIXED) ===== */
.offer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--brand);
    color: var(--brand);
    background: transparent;
}

.btn-outline:hover {
    background: var(--brand);
    color: white;
}

/* ===== CARDS ===== */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* ===== UTILITIES ===== */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-1 { margin-top: 6px; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 16px; }

/* ===== IMAGE SAFETY ===== */
img {
    max-width: 100%;
    display: block;
}