/* --- Warranty Section Styles --- */
.warranty-section {
    padding: 6rem 0; /* py-24 equivalent */
    background-color: #fff;
}

.warranty-header {
    text-align: center;
    margin-bottom: 4rem; /* mb-16 */
    max-width: 100%;
}

.warranty-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem; /* w-16 */
    height: 4rem; /* h-16 */
    border-radius: 9999px; /* rounded-full */
    background-color: rgba(0, 123, 255, 0.1); /* bg-primary/10 - using rgb values directly or var if defined globally */
    border: 1px solid rgba(0, 123, 255, 0.2); /* border-primary/20 */
    margin-bottom: 1rem; /* mb-4 */
    color: var(--primary-color);
}

.warranty-header h2 {
    font-size: 2.25rem; /* text-4xl */
    line-height: 2.5rem;
    font-weight: 700;
    color: #000; 
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .warranty-header h2 {
        font-size: 3rem; /* md:text-5xl */
        line-height: 1;
    }
}

.warranty-header p {
    font-size: 1.25rem; /* text-xl */
    color: #6b7280; /* text-muted-foreground */
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
}

/* Content Grid */
.warranty-content {
    display: grid;
    gap: 2rem; /* gap-8 */
    align-items: center;
}

@media (min-width: 768px) {
    .warranty-content {
        grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
    }
}

/* --- Cards Common --- */
.warranty-card {
    border-radius: 0.5rem; /* rounded-lg */
    border: 1px solid #e5e7eb; /* border */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    padding: 2rem; /* p-8 */
}

/* Left Card: What's Covered */
.bg-gradient-card {
    background: linear-gradient(to bottom right, #ffffff, #f8fafc); /* Example gradient card background */
}
/* Custom shadow for card */
.shadow-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.warranty-card h3 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 1.5rem; /* mb-6 */
    color: #000;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* space-y-4 -> gap-4 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem; /* gap-3 */
}

.check-icon-wrapper {
    margin-top: 0.25rem; /* mt-1 */
    flex-shrink: 0;
}

.check-icon-circle {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    border-radius: 9999px; /* rounded-full */
    background-color: rgba(0, 123, 255, 0.1); /* bg-primary/10 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.feature-text {
    color: rgba(0, 0, 0, 0.8); /* text-foreground/80 */
}

/* Right Column: Plans Container */
.plans-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* space-y-6 */
}

/* Standard Plan Card */
.plan-card-standard {
    border-radius: 0.5rem; /* rounded-lg */
    border: 1px solid #e5e7eb; /* border */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    padding: 1.5rem; /* p-6 */
    background-color: #fff; /* bg-background (assuming white) */
    color: #000; /* text-card-foreground */
}

.plan-card-standard h4 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    margin-bottom: 0.5rem; /* mb-2 */
}

.plan-card-standard .plan-price {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: var(--primary-color); /* text-primary */
    margin-bottom: 0.75rem; /* mb-3 */
    line-height: 1;
}

.plan-card-standard .plan-desc {
    color: #6b7280; /* text-muted-foreground */
    margin-bottom: 1rem; /* mb-4 */
}

/* Extended Plan Card (Featured) */
.plan-card-featured {
    border-radius: 0.5rem; /* rounded-lg */
    border: 1px solid transparent;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    padding: 1.5rem; /* p-6 */
    /* bg-gradient-hero */
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%); 
    color: #fff; /* text-white */
    /* shadow-glow */
    box-shadow: 0 10px 30px -5px rgba(0, 153, 255, 0.4), 0 0 20px rgba(0, 204, 255, 0.3) inset;
}

.plan-card-featured h4 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    margin-bottom: 0.5rem; /* mb-2 */
}

.plan-card-featured .plan-price {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 0.75rem; /* mb-3 */
    line-height: 1;
}

.plan-card-featured .plan-desc {
    color: rgba(255, 255, 255, 0.9); /* text-white/90 */
    margin-bottom: 1rem; /* mb-4 */
}


/* Buttons */
.btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* gap-2 */
    white-space: nowrap;
    border-radius: 0.375rem; /* rounded-md */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    height: 2.5rem; /* h-10 */
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
    padding-top: 0.5rem; /* py-2 */
    padding-bottom: 0.5rem; /* py-2 */
    width: 100%;
    cursor: pointer;
    transition-property: background-color, color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms; /* transition-colors */
}

.btn-standard {
    border: 1px solid #e5e7eb; /* border-input */
    background-color: #fff; /* bg-background */
    color: #000;
}

.btn-standard:hover {
    background-color: #f3f4f6; /* hover:bg-accent */
    color: #111827; /* hover:text-accent-foreground */
}

.btn-featured {
    background-color: #fff; /* bg-secondary (white for this theme context) */
    color: #0f172a; /* text-secondary-foreground */
    border: none;
}

.btn-featured:hover {
    background-color: rgba(255, 255, 255, 0.8); /* hover:bg-secondary/80 */
}

/* Helper vars if specific to warranty section or needed locally */
.warranty-section {
    --primary-rgb: 0, 123, 255; 
    --primary-color: rgb(var(--primary-rgb));
}