/* Container & Variables */
.fx-warranty-wrapper {
    --theme-color: #D50000;
    --bg-body: #f7f7f7;
    --bg-card: #ffffff;
    --text-main: #212529;
    --text-second: #071339;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    
    font-family: inherit;
    line-height: 1.8;
    color: var(--text-main);
    background-color: var(--bg-body);
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.fx-warranty-wrapper * {
    box-sizing: border-box;
}

/* Hero Section */
.fx-warranty-hero {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 30px;
    overflow: hidden;
}

.fx-warranty-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(213,0,0,0.05) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.fx-warranty-hero h1, 
.fx-warranty-hero p {
    position: relative;
    z-index: 2;
}

.fx-warranty-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-second);
}

.fx-warranty-brand {
    color: var(--theme-color);
}

.fx-warranty-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

/* Intro Section */
.fx-warranty-intro {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    text-align: justify;
}

.fx-warranty-intro p {
    color: var(--text-muted);
    margin: 0;
}

/* Content Sections (Grid) */
.fx-warranty-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.fx-warranty-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fx-warranty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.fx-warranty-card h2 {
    font-size: 1.2rem;
    color: var(--text-second);
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.fx-warranty-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    text-align: justify;
}

/* Highlighted Card */
.fx-warranty-highlight {
    border-top: 4px solid var(--theme-color);
    box-shadow: 0 4px 12px rgba(213, 0, 0, 0.05);
}

/* Note Alert */
.fx-warranty-note {
    font-size: 0.95rem;
    background: rgba(213, 0, 0, 0.08);
    padding: 15px;
    border-radius: 8px;
    color: var(--theme-color);
    margin-top: 20px;
    font-weight: bold;
    text-align: justify;
}
