/* ============================================
   RPC Print Service - Unified Design System
   ============================================
   This is the single source of truth for all styles.
   DO NOT duplicate these styles in individual pages.
   ============================================ */

/* ----- Design Tokens / CSS Variables ----- */
:root {
    /* Primary Color Palette */
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --primary-light: #e7f1ff;
    --primary-gradient: linear-gradient(120deg, #4facfe 0%, #00f2fe 100%);
    
    /* Secondary Colors */
    --secondary: #6c757d;
    --secondary-light: #f8f9fa;
    
    /* Status Colors */
    --success: #198754;
    --success-light: #d4edda;
    --warning: #ffc107;
    --warning-light: #fff3cd;
    --danger: #dc3545;
    --danger-light: #f8d7da;
    --info: #0dcaf0;
    --info-light: #cce5ff;
    
    /* Neutrals */
    --dark: #212529;
    --dark-alt: #2c3e50;
    --gray: #6c757d;
    --gray-light: #adb5bd;
    --gray-lighter: #dee2e6;
    --light: #f8f9fa;
    --light-alt: #f5f7fb;
    --white: #ffffff;
    
    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.25rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height: 1.6;
    
    /* Spacing Scale (based on 4px / 0.25rem) */
    --space-xs: 0.25rem;  /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-xxl: 3rem;     /* 48px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 50%;
    --radius-pill: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.12);
    --shadow-xl: 0 10px 30px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --container-wide: 1200px;
    --header-height: 60px;
}

/* ----- Base / Reset ----- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height);
    color: #333;
    background-color: var(--light-alt);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: var(--font-weight-semibold);
    margin-top: 0;
    margin-bottom: var(--space-md);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* ----- Page Container ----- */
.page-container {
    max-width: var(--container-max);
    margin: var(--space-xl) auto;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.page-container-narrow {
    max-width: var(--container-narrow);
    margin: var(--space-xl) auto;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.page-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-lighter);
}

.page-header h1 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.lead {
    font-size: var(--font-size-lg);
    color: var(--gray);
    margin-bottom: var(--space-lg);
}

/* ----- Section Title ----- */
.section-title {
    position: relative;
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-lg);
    color: var(--primary);
    font-weight: var(--font-weight-semibold);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title-centered {
    text-align: center;
}

.section-title-centered::after {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

/* ----- Cards ----- */
.card-custom {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #eaeef5;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    overflow: hidden;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-custom .card-body {
    padding: var(--space-lg);
}

.card-custom .card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.card-custom .card-icon.primary {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
}

.card-custom .card-icon.success {
    background: rgba(25, 135, 84, 0.1);
    color: var(--success);
}

.card-custom .card-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
}

.card-custom .card-icon.info {
    background: rgba(13, 202, 240, 0.1);
    color: var(--info);
}

/* ----- Buttons ----- */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    font-size: var(--font-size-base);
}

.btn-custom:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-custom-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.btn-custom-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.4);
}

.btn-custom-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-custom-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-custom-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-lg);
}

/* ----- Forms ----- */
.form-card {
    max-width: var(--container-narrow);
    margin: var(--space-xl) auto;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-section-group {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--secondary-light);
    border-radius: var(--radius-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    font-weight: var(--font-weight-medium);
    color: #495057;
    margin-bottom: var(--space-sm);
    display: block;
}

.form-control-lg-custom {
    padding: var(--space-md);
    font-size: var(--font-size-base);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-lighter);
    transition: all var(--transition-fast);
    width: 100%;
}

.form-control-lg-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    outline: none;
}

/* ----- Status Badges ----- */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.status-badge.pending {
    background: var(--warning-light);
    color: #856404;
}

.status-badge.processing {
    background: var(--info-light);
    color: #004085;
}

.status-badge.completed {
    background: var(--success-light);
    color: #155724;
}

/* ----- Alerts & Messages ----- */
.alert-custom {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    border-left: 4px solid;
}

.alert-custom.info {
    background: var(--primary-light);
    border-color: var(--primary);
    color: #004085;
}

.alert-custom.success {
    background: var(--success-light);
    border-color: var(--success);
    color: #155724;
}

.alert-custom.warning {
    background: var(--warning-light);
    border-color: var(--warning);
    color: #856404;
}

.alert-custom.danger {
    background: var(--danger-light);
    border-color: var(--danger);
    color: #721c24;
}

/* ----- Amount Display ----- */
.amount-display-custom {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    padding: var(--space-md);
    background: var(--secondary-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    border-left: 4px solid var(--primary);
}

.points-display-custom {
    font-size: 1.1rem;
    padding: var(--space-md);
    background: #f0fdf4;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    border-left: 4px solid var(--success);
    display: flex;
    align-items: center;
    gap: 10px;
}

.points-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(25, 135, 84, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 1.2rem;
}

/* ----- Grid Layouts ----- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

/* ----- Quick Action Cards ----- */
.action-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid #eaeef5;
    text-decoration: none;
    display: block;
    color: inherit;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: inherit;
}

.action-card .action-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    color: var(--primary);
}

/* ----- Order Items ----- */
.order-item {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    background: var(--secondary-light);
    transition: all var(--transition-base);
}

.order-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.order-item .order-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ----- Hero Sections ----- */
.hero-section-custom {
    background: var(--primary-gradient);
    padding: var(--space-xxl) 0;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.hero-section-custom h1 {
    color: var(--white);
    font-weight: var(--font-weight-bold);
}

.hero-section-custom p {
    color: rgba(255, 255, 255, 0.9);
}

/* ----- Guest Info Box ----- */
.guest-info-box {
    background: var(--warning-light);
    border-left: 4px solid var(--warning);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

/* ----- Binding/Quality Option Cards ----- */
.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.option-card {
    border: 1px solid var(--gray-lighter);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.option-card:hover {
    border-color: #86b7fe;
    background: var(--primary-light);
}

.option-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.option-card input[type="radio"] {
    display: none;
}

/* ----- Welcome Card (Dashboard) ----- */
.welcome-card {
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    color: var(--white);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.welcome-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.welcome-card::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.welcome-card h1,
.welcome-card h2,
.welcome-card h3,
.welcome-card h4,
.welcome-card h5,
.welcome-card p {
    color: var(--white);
}

.welcome-card .badge-custom {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

/* ----- Stat Cards ----- */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base);
    border-left: 4px solid var(--primary);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .stat-value {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 4px;
}

.stat-card .stat-label {
    color: var(--gray);
    margin-bottom: 0;
    font-size: var(--font-size-sm);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.stat-card.primary { border-left-color: var(--primary); }
.stat-card.primary .stat-icon { background: rgba(13, 110, 253, 0.1); color: var(--primary); }

.stat-card.success { border-left-color: var(--success); }
.stat-card.success .stat-icon { background: rgba(25, 135, 84, 0.1); color: var(--success); }

.stat-card.warning { border-left-color: var(--warning); }
.stat-card.warning .stat-icon { background: rgba(255, 193, 7, 0.1); color: var(--warning); }

.stat-card.info { border-left-color: var(--info); }
.stat-card.info .stat-icon { background: rgba(13, 202, 240, 0.1); color: var(--info); }

/* ----- Offer Features ----- */
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.feature-item i {
    color: var(--success);
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ----- Map Container ----- */
.map-container-custom {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: var(--space-xl);
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg);
}

.map-overlay h3 { color: var(--white); }
.map-overlay a { color: var(--info); }

/* ----- Contact Cards ----- */
.contact-card-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-lg);
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: var(--font-weight-semibold);
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-details p {
    margin-bottom: 0;
    color: #555;
}

/* ----- Hours List ----- */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: var(--font-weight-medium);
}

.hours-list .time {
    color: var(--success);
    font-weight: var(--font-weight-medium);
}

/* ----- Footer ----- */
.footer-custom {
    margin-top: var(--space-xxl);
    padding: var(--space-lg) 0;
    background: var(--dark);
    color: var(--white);
}

.footer-custom h5 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-custom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-custom a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-custom .text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.footer-custom hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ----- Utility Classes ----- */
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-muted-custom { color: var(--gray); }

.bg-primary-light { background: var(--primary-light); }
.bg-success-light { background: var(--success-light); }
.bg-warning-light { background: var(--warning-light); }
.bg-light-custom { background: var(--secondary-light); }

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.transition-base {
    transition: all var(--transition-base);
}

/* ----- Save/Banner Containers ----- */
.savings-banner {
    background: linear-gradient(120deg, #ff9a9e 0%, #fad0c4 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.savings-banner h2 {
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.savings-banner p {
    font-size: var(--font-size-lg);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

/* Offer card with badge */
.offer-card-custom {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    background: var(--white);
    border: 1px solid #eaeef5;
}

.offer-card-custom:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.offer-card-custom .offer-image {
    height: 200px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.offer-card-custom .offer-image-content {
    text-align: center;
    color: var(--white);
    padding: var(--space-lg);
    z-index: 1;
}

.offer-card-custom .offer-image-content i {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
}

.offer-card-custom .offer-body {
    padding: var(--space-lg);
}

.offer-card-custom.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    position: relative;
}

.offer-card-custom.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: var(--radius-pill);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    z-index: 2;
}

.offer-card-custom.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--success);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    z-index: 2;
}

/* Category buttons */
.categories-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.category-btn {
    padding: 10px 25px;
    border-radius: var(--radius-pill);
    background: #f0f5ff;
    border: none;
    color: var(--primary);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-base);
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Pre-order section */
.preorder-section-custom {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--white) 100%);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

/* Exchange offer */
.exchange-offer {
    background: linear-gradient(to right, #1a1b1d, var(--dark-alt));
    color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.exchange-offer h5,
.exchange-offer h3,
.exchange-offer p,
.exchange-offer li {
    color: var(--white);
}

/* Chart placeholder */
.chart-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-light);
    border-radius: var(--radius-md);
    color: var(--gray);
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .page-container,
    .page-container-narrow {
        padding: var(--space-lg) var(--space-md);
        margin: var(--space-md) var(--space-sm);
    }
    
    .form-card {
        padding: var(--space-lg);
        margin: var(--space-md);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .action-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .option-card {
        min-width: 80px;
    }
    
    .welcome-card {
        padding: var(--space-lg);
    }
    
    .savings-banner h2 {
        font-size: 2rem;
    }
    
    .offer-card-custom.featured {
        transform: scale(1);
    }
    
    .offer-card-custom.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
}