/* KIEZ DEAL Frontend Styles */

:root {
    --primary-red: #621B19;
    --primary-orange: #FF6B35;
    --primary-yellow: #FFD700;
    --bg-light: #F5F5DC;
    --bg-dark: #2C1810;
    --text-dark: #333;
    --text-light: #FFF;
    --border-color: #DDD;
    --success-green: #28A745;
    --error-red: #DC3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--primary-red);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.main-header {
    background-color: rgba(98, 27, 25, 0.7); /* Transparent red */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    width: 200px;
    height: 80px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.1);
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-login {
    background-color: var(--primary-red);
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-login:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-register {
    background-color: #FFA419;
    color: var(--text-light);
}

.btn-register:hover {
    background-color: #E59415;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
    min-height: calc(100vh - 200px);
}

/* Deal Cards */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.deal-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.deal-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.deal-card-content {
    padding: 1rem;
}

.deal-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.deal-card-provider {
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.deal-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tag {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tag-club {
    background-color: #1E3A8A;
    color: white;
}

.tag-premium {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.tag-schnelldeal {
    background-color: var(--text-dark);
    color: white;
}

.tag-2fuer1 {
    background-color: #FFA419;
    color: white;
}

.deal-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #666;
}

.deal-card-info i {
    width: 16px;
    margin-right: 0.5rem;
}

.deal-card-button {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: var(--primary-red);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.deal-card-button:hover {
    background-color: var(--primary-red);
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #FFA419;
}

.form-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #FFA419;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-button:hover {
    background-color: #E59415;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-error {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* Profile */
.profile-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-level {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
    transition: width 0.3s;
}

/* Footer */
.main-footer {
    background-color: white;
    color: var(--text-dark);
    padding: 1.5rem 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

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

.separator {
    color: rgba(0,0,0,0.3);
}

/* Mobile Footer Navigation */
.footer-nav {
    display: none; /* Hidden on desktop */
}

.footer-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8B7355;
    transition: color 0.3s;
    gap: 0.25rem;
    padding: 0.5rem;
    flex: 1;
}

.footer-nav-item i {
    font-size: 1.5rem;
}

.footer-nav-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-nav-item.active {
    color: #1E88E5;
}

.footer-nav-item.active i {
    color: #1E88E5;
}

/* Deal Detail Page */
.deal-detail {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.deal-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.deal-detail-content {
    padding: 2rem;
}

.deal-detail-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.deal-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.deal-detail-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    color: var(--primary-orange);
    width: 20px;
}

/* Valid Days */
.valid-days {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.day-button {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: white;
    cursor: default;
    font-weight: 500;
}

.day-button.valid {
    background-color: var(--success-green);
    color: white;
    border-color: var(--success-green);
}

.day-button.invalid {
    background-color: #F0F0F0;
    color: #999;
    text-decoration: line-through;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    flex: 1;
    padding: 1rem;
    background-color: #FFA419;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #E59415;
}

.btn-secondary {
    flex: 1;
    padding: 1rem;
    background-color: #6C757D;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #5A6268;
}

/* Filters */
.filters-wrapper {
    width: 100%;
    margin: 0 0 2rem 0;
    padding: 0;
}

.filter-toggle-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: white;
    border: none;
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    color: var(--text-dark);
    margin: 0;
}

.filter-toggle-btn i.fa-filter {
    font-size: 1.1rem;
    color: #666;
}

.filter-toggle-btn span {
    flex: 1;
    text-align: left;
}

.filter-toggle-btn .filter-icon {
    transition: transform 0.3s;
    color: #666;
}

.filter-toggle-btn:hover {
    background-color: #E8E8E8;
}

.filter-toggle-btn.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-radius: 8px 8px 0 0;
}

.filter-toggle-btn.active .filter-icon {
    transform: rotate(180deg);
}

.filters-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    width: 100%;
    margin: 0;
}

.filters-content.expanded {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.filters-box {
    background: white;
    padding: 2rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border-color);
}

.deals-section-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.filters-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-group label, .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.filter-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
}

/* Providers */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.provider-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.provider-card:hover {
    transform: translateY(-4px);
}

.provider-logo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.provider-content {
    padding: 1.5rem;
}

.provider-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.provider-description {
    color: #666;
    margin: 1rem 0;
}

.provider-deals {
    color: var(--primary-orange);
    font-weight: 500;
    margin: 1rem 0;
}

.provider-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Deal Status */
.deal-status {
    margin: 0.5rem 0;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-active {
    background-color: var(--success-green);
    color: white;
}

.status-used {
    background-color: #6C757D;
    color: white;
}

.deal-code-display {
    background-color: #F0F0F0;
    padding: 0.5rem;
    border-radius: 4px;
    margin: 0.5rem 0;
    text-align: center;
    font-weight: bold;
}

.deal-code-display-large {
    text-align: center;
    margin: 2rem 0;
}

.deal-code-display-large label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #666;
}

.deal-code {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-red);
    background-color: #F0F0F0;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    letter-spacing: 0.5rem;
}

/* Deal Redemption */
.deal-redemption {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.deal-redemption-header {
    text-align: center;
    margin-bottom: 2rem;
}

.deal-already-redeemed {
    text-align: center;
}

.redemption-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    color: #666;
}

.starter-deal-redemption {
    text-align: center;
}

.instructions {
    margin: 1.5rem 0;
    color: #666;
    line-height: 1.6;
}

.code-input-section {
    margin: 2rem 0;
}

.code-inputs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.code-input {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    border: 2px solid var(--border-color);
    border-radius: 4px;
}

.code-input:focus {
    border-color: #FFA419;
    outline: none;
}

.keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 300px;
    margin: 1rem auto;
}

.keypad-button {
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.keypad-button:hover {
    background-color: #FFA419;
    color: white;
    border-color: #FFA419;
}

/* Profile */
.profile-level-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.profile-level-info {
    text-align: center;
}

.profile-level-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.profile-level-label {
    color: #666;
    font-size: 0.9rem;
}

.progress-section {
    margin: 2rem 0;
}

.level-markers {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.level-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #999;
}

.level-marker.active {
    color: var(--primary-orange);
}

.vip-banner {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.vip-banner i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vip-banner h2 {
    margin-bottom: 0.5rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background-color: #F9F9F9;
    border-radius: 4px;
}

.info-item label {
    font-weight: 500;
    color: #666;
}

/* Input with icon */
.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-with-icon .form-input {
    padding-left: 3rem;
}

/* Language selection */
.language-selection {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.flag-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.flag-button:hover,
.flag-button.active {
    border-color: #FFA419;
    background-color: #FFF5E6;
}

.flag-button img {
    width: 40px;
    height: auto;
}

/* Page header */
.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.back-link {
    margin-top: 2rem;
    text-align: center;
}

.back-link a {
    color: var(--primary-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link a:hover {
    text-decoration: underline;
}

/* No deals/providers */
.no-deals, .no-providers {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 8px;
}

/* Hero Section */
.hero-section-box {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text-box {
    padding: 0;
}

.hero-text-box h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #FFA419;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-bottom: 2rem;
}

.btn-hero:hover {
    background-color: #E59415;
}

.hero-social {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-item i {
    font-size: 2rem;
    color: var(--text-dark);
}

.social-item span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Slider */
.hero-slider {
    position: relative;
}

.slider-container {
    position: relative;
    width: 670px;
    height: 503px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    pointer-events: all;
    color: var(--primary-red);
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 1);
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: white;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-section h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background-color: #F9F9F9;
    border-radius: 8px;
    border-left: 4px solid #FFA419;
}

.faq-item h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Deals Section */
.deals-section-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    /* Header: Only logo, centered */
    .header-container {
        justify-content: center;
    }
    
    .main-nav {
        display: none; /* Hide navigation in mobile */
    }
    
    .logo {
        margin: 0 auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text-box h1 {
        font-size: 2rem;
    }
    
    .slider-container {
        width: 100%;
        max-width: 670px;
        height: auto;
        aspect-ratio: 670 / 503;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-detail-info {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .filters-form {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .keypad {
        max-width: 100%;
    }
    
    /* Mobile Footer: Show navigation, hide desktop footer */
    .footer-desktop {
        display: none;
    }
    
    .footer-mobile {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0.75rem 0;
        background-color: white;
        border-top: 1px solid #D4C5B0;
        width: 100%;
    }
    
    .main-footer {
        padding: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
        background-color: white;
    }
    
    .footer-container {
        padding: 0;
    }
    
    /* Add padding to main content to account for fixed footer */
    .main-content {
        padding-bottom: 80px;
    }
}
