/* =================================================================
   TAGESTICKET SPEZIAL (SHOPPING) STYLES
   Puttgarden-Rødby Ferry Guide 2025
   ================================================================= */

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --primary-color: #005D8A;
    --primary-dark: #004569;
    --secondary-color: #00A0E6;
    --accent-color: #FF6B35;
    --accent-hover: #E55A25;
    
    /* Cashback Theme */
    --cashback-green: #10B981;
    --cashback-green-dark: #059669;
    --cashback-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
    
    /* Shopping Theme */
    --shopping-purple: #8B5CF6;
    --shopping-purple-dark: #7C3AED;
    --shopping-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    
    /* Semantic Colors */
    --success-color: #28A745;
    --warning-color: #FFC107;
    --info-color: #17A2B8;
    --danger-color: #DC3545;
    
    /* Neutral Colors */
    --dark-color: #1E293B;
    --gray-600: #475569;
    --gray-400: #94A3B8;
    --gray-200: #E2E8F0;
    --light-bg: #F8FAFC;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #FF8A65 100%);
    --gradient-dark: linear-gradient(135deg, #1E3A5F 0%, #2C5282 100%);
    --gradient-ocean: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-colored: 0 10px 40px rgba(0, 93, 138, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Typography */
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 6px;
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    z-index: 10000;
    border-radius: var(--radius-sm);
    transition: top 0.3s ease;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
    color: var(--white);
    outline: 3px solid var(--warning-color);
    outline-offset: 2px;
}

/* Header */
.site-header {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: var(--space-md) 0;
}

.navbar-brand {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.navbar-brand img {
    border-radius: var(--radius-sm);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md) !important;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
}

.navbar-toggler {
    border: none;
    padding: var(--space-xs) var(--space-sm);
    color: var(--white);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--light-bg);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--gray-600);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--gray-400);
}

/* Hero Section */
.hero {
    background: var(--shopping-gradient);
    color: var(--white);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.hero .lead {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.95;
    margin-bottom: var(--space-xl);
    max-width: 700px;
}

/* Cashback Hero Card */
.cashback-hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    color: var(--dark-color);
    max-width: 400px;
}

.cashback-hero-card .price-display {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.cashback-hero-card .effective-price {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cashback-green);
    line-height: 1;
}

.cashback-hero-card .effective-price .currency {
    font-size: 0.5em;
    vertical-align: top;
}

.cashback-hero-card .original-price {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 1.25rem;
    margin-top: var(--space-xs);
}

.cashback-hero-card .price-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: var(--space-sm);
}

.cashback-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--cashback-gradient);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

/* Button Styles */
.btn {
    font-family: var(--font-secondary);
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 1rem;
}

.btn:focus {
    outline: 3px solid var(--warning-color);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-cashback {
    background: var(--cashback-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-cashback:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    color: var(--white);
}

.btn-shopping {
    background: var(--shopping-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-shopping:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid currentColor;
}

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

.btn-lg {
    padding: var(--space-md) var(--space-2xl);
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Section Styles */
.section {
    padding: var(--space-4xl) 0;
}

.section-light {
    background: var(--light-bg);
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-md);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* How It Works - Process Steps */
.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
}

.process-step {
    position: relative;
    padding-bottom: var(--space-2xl);
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.process-step.highlight::before {
    background: var(--cashback-gradient);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
}

.process-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.process-content h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--dark-color);
}

.process-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Price Cards */
.price-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.price-card.featured {
    border: 3px solid var(--cashback-green);
    position: relative;
}

.price-card.featured::before {
    content: 'Beliebteste Option';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cashback-gradient);
    color: var(--white);
    padding: var(--space-xs) var(--space-lg);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.price-card-header {
    padding: var(--space-xl);
    text-align: center;
    background: var(--light-bg);
}

.price-card-header.zwischensaison {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

.price-card-header.hauptsaison {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.price-card-header.sommersaison {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
}

.price-card-header .season-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.price-card-header .price-you-pay {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xs);
}

.price-card-header .price-you-pay span {
    text-decoration: line-through;
    color: var(--gray-400);
}

.price-card-header .effective-price {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--cashback-green);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.price-card-header .effective-price .currency {
    font-size: 0.5em;
    vertical-align: top;
}

.price-card-header .cashback-info {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--cashback-gradient);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card-body {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-card-body .dates {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-md);
}

.price-card-footer {
    padding: 0 var(--space-xl) var(--space-xl);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-200);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon.success {
    background: var(--success-color);
    color: var(--white);
}

.feature-icon.warning {
    background: var(--warning-color);
    color: var(--dark-color);
}

.feature-icon.info {
    background: var(--info-color);
    color: var(--white);
}

.feature-icon.danger {
    background: var(--danger-color);
    color: var(--white);
}

/* Cashback Explainer Card */
.cashback-explainer {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cashback-explainer-header {
    background: var(--cashback-gradient);
    color: var(--white);
    padding: var(--space-xl);
    text-align: center;
}

.cashback-explainer-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.cashback-explainer-body {
    padding: var(--space-xl);
}

.cashback-options {
    display: grid;
    gap: var(--space-lg);
}

.cashback-option {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.cashback-option:hover {
    border-color: var(--cashback-green);
    transform: translateX(5px);
}

.cashback-option-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--cashback-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cashback-option-content h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.cashback-option-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Timeframe Card */
.timeframe-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.timeframe-card h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.timeframe-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.timeframe-item:last-child {
    border-bottom: none;
}

.timeframe-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.timeframe-text strong {
    display: block;
    color: var(--dark-color);
}

.timeframe-text span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Bordershop Section */
.bordershop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.bordershop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.bordershop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--shopping-purple);
}

.bordershop-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--shopping-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto var(--space-md);
}

.bordershop-card h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.bordershop-card .highlight {
    color: var(--shopping-purple);
    font-weight: 700;
    font-size: 1.5rem;
    display: block;
    margin: var(--space-sm) 0;
}

.bordershop-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Insider Tips */
.insider-tip {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.insider-tip::before {
    content: '💡';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 2.5rem;
    opacity: 0.3;
}

.insider-tip h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--warning-color);
    margin-bottom: var(--space-md);
}

.insider-tip p {
    margin-bottom: var(--space-md);
}

.insider-tip p:last-child {
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-lg);
    text-align: center;
    font-weight: 600;
}

.comparison-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}

.comparison-table tbody tr:hover {
    background: var(--light-bg);
}

.comparison-table .highlight-cell {
    background: rgba(16, 185, 129, 0.1);
    font-weight: 600;
    color: var(--cashback-green-dark);
}

/* FAQ Accordion */
.faq-section {
    padding: var(--space-4xl) 0;
}

.accordion-item {
    border: none;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.05rem;
    padding: var(--space-lg);
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--light-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    outline: 3px solid var(--primary-color);
    outline-offset: -3px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23005D8A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--white);
    padding: var(--space-lg);
    color: var(--gray-600);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--shopping-gradient);
    color: var(--white);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Alert Boxes */
.alert {
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.alert-success {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    border-left: 4px solid var(--success-color);
}

.alert-warning {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    border-left: 4px solid var(--warning-color);
}

.alert-info {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #1E40AF;
    border-left: 4px solid var(--info-color);
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-brand {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-links h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    margin-top: var(--space-xl);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:focus {
    outline: 3px solid var(--warning-color);
    outline-offset: 2px;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.9);
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
        margin-top: var(--space-md);
    }
    
    .cashback-hero-card {
        margin-top: var(--space-xl);
        max-width: 100%;
    }
    
    .process-timeline {
        padding-left: 40px;
    }
    
    .process-step::before {
        left: -40px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-xl);
    }
    
    .comparison-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: var(--space-xl) 0;
    }
    
    .cashback-hero-card .effective-price {
        font-size: 2.5rem;
    }
    
    .price-card-header .effective-price {
        font-size: 2.25rem;
    }
    
    .btn-lg {
        padding: var(--space-sm) var(--space-lg);
        font-size: 1rem;
    }
    
    .process-timeline {
        padding-left: 35px;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .process-step::before {
        left: -35px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .process-content {
        padding: var(--space-md);
    }
}

/* iPhone 7 and smaller */
@media (max-width: 374px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .cashback-hero-card {
        padding: var(--space-md);
    }
    
    .cashback-hero-card .effective-price {
        font-size: 2rem;
    }
    
    .price-card-header .effective-price {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .back-to-top:hover,
    .price-card:hover,
    .bordershop-card:hover,
    .btn:hover {
        transform: none;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    :root {
        --gray-200: #666;
        --gray-400: #555;
        --gray-600: #333;
    }
    
    .feature-icon {
        border: 2px solid currentColor;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .back-to-top,
    .btn,
    .cta-section {
        display: none;
    }
    
    .hero {
        background: none;
        color: #000;
        padding: 1rem 0;
    }
    
    .section {
        padding: 1rem 0;
    }
}

/* Focus Visible for Keyboard Navigation */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}