/* Reset and Base Styles - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 1.6;
    color: #8b7755;
    background-color: #F7FAFC;
}

.ui.container {
    max-width: 100% !important;
    padding: 0 1rem !important;
}

.nice-select {
  display: none;
}

#phone {
  padding-left: 50px !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

/* Header Styles */
.main-header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #8b7755;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #368bff;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    color: #8b7755;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #368bff;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #368bff;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #8b7755;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: #8b7755;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: #368bff;
    color: white;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1rem;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #718096;
}

.cart-items {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: #368bff;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: #E2E8F0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #CBD5E0;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid #E2E8F0;
}

.cart-total {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #8b7755;
    color: white;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-buttons {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-buttons .ui.button {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E2E8F0;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category .ui.checkbox {
    margin-bottom: 0.5rem;
}

.cookie-category p {
    margin-left: 2rem;
    color: #718096;
    font-size: 0.9rem;
}

/* Main Content */
main {
    margin-top: 74px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom right, #892300, #fffebc);
    color: white;
    padding: 3rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
}

.cta-button {
    background: #368bff !important;
    color: white !important;
    border: none !important;
    font-weight: 600 !important;
    padding: 0.8rem 2rem !important;
    border-radius: 25px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.cta-button:hover {
    background: #2f188a !important;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #8b7755;
}

.section-header p {
    color: #718096;
    font-size: 1rem;
}

/* Products Grid */
.featured-products,
.all-consoles {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card.featured {
    border: 2px solid #368bff;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #368bff;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #8b7755;
}

.product-info p {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spec-item {
    background: #F7FAFC;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #4A5568;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #368bff;
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.product-rating .fas.fa-star,
.product-rating .fas.fa-star-half-alt {
    color: #FFD700;
}

.product-rating .far.fa-star {
    color: #E2E8F0;
}

.product-rating span {
    color: #718096;
    margin-left: 0.5rem;
}

/* Gaming Experience Section */
.gaming-experience {
    background: white;
    padding: 4rem 0;
}

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

.experience-content h2 {
    color: #8b7755;
    margin-bottom: 1rem;
}

.experience-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #F7FAFC;
    border-radius: 10px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #368bff;
    display: block;
}

.stat-label {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Features Section */
.why-choose-us {
    padding: 4rem 0;
    background: #F7FAFC;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #368bff, #2f188a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: #8b7755;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #718096;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: white;
}

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

.form-content h2 {
    color: #8b7755;
    margin-bottom: 1rem;
}

.form-content p {
    color: #718096;
    margin-bottom: 2rem;
}

.ui.form .field > label {
    font-weight: 600 !important;
    color: #8b7755 !important;
    margin-bottom: 0.5rem !important;
}

.ui.form input,
.ui.form textarea,
.ui.form select {
    border: 2px solid #E2E8F0 !important;
    border-radius: 8px !important;
    padding: 0.8rem !important;
    font-size: 1rem !important;
    transition: border-color 0.3s ease !important;
}

.ui.form input:focus,
.ui.form textarea:focus,
.ui.form select:focus {
    border-color: #368bff !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

.iti {
    width: 100% !important;
}

.iti__selected-flag {
    padding: 0.8rem !important;
}

.form-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(to bottom right, #892300, #fffebc);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Help Content */
.help-content {
    padding: 4rem 0;
}

.help-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.help-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #368bff, #2f188a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.guide-categories {
    margin-top: 2rem;
}

.category-item {
    background: #F7FAFC;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.category-item h3 {
    color: #8b7755;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-item h3 i {
    color: #368bff;
}

.category-features {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #368bff;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Comparison Guide */
.comparison-guide {
    padding: 4rem 0;
    background: white;
}

.comparison-table {
    background: #F7FAFC;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1px;
    background: #E2E8F0;
}

.comparison-cell {
    background: white;
    padding: 1rem;
    text-align: center;
}

.feature-header,
.feature-name {
    background: #8b7755;
    color: white;
    font-weight: 600;
}

/* Buying Tips */
.buying-tips {
    padding: 4rem 0;
    background: #F7FAFC;
}

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

.tips-list {
    margin-top: 2rem;
}

.tip-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.tip-number {
    width: 40px;
    height: 40px;
    background: #368bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.tip-content h3 {
    color: #8b7755;
    margin-bottom: 0.5rem;
}

.tip-content p {
    color: #718096;
    line-height: 1.6;
}

.tips-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Popular Models Page */
.trending-consoles {
    padding: 4rem 0;
    background: white;
}

.console-categories {
    padding: 4rem 0;
    background: #F7FAFC;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

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

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    color: #8b7755;
    margin-bottom: 0.5rem;
}

.category-content p {
    color: #718096;
    margin-bottom: 1rem;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-features span {
    background: #F7FAFC;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #4A5568;
}

/* Contact Page */
.contact-info {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #368bff, #2f188a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.contact-card h3 {
    color: #8b7755;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #718096;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #368bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-hours {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
}

/* Store Location */
.store-location {
    padding: 4rem 0;
    background: white;
}

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

.store-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    color: #368bff;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #8b7755;
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: #718096;
    margin: 0;
}

.store-hours {
    background: #F7FAFC;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.store-hours h3 {
    color: #8b7755;
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E2E8F0;
}

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

.day {
    font-weight: 500;
    color: #8b7755;
}

.time {
    color: #718096;
}

.location-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #F7FAFC;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b7755;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.map-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: #718096;
}

.map-info i {
    color: #368bff;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.faq-item {
    background: #F7FAFC;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: #8b7755;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    background: white;
    min-height: 80vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.legal-content h1 {
    color: #8b7755;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #718096;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #8b7755;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #368bff;
}

.legal-section h3 {
    color: #4A5568;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #4A5568;
    line-height: 1.6;
}

.contact-info {
    background: #F7FAFC;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.3rem;
    color: #4A5568;
}

.contact-info strong {
    color: #8b7755;
}

.cookie-preferences-section {
    background: #368bff;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.cookie-preferences-section h2 {
    border: none;
    margin-bottom: 1rem;
    color: white;
}

.cookie-preferences-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Thanks Page */
.thanks-page {
    background: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.thanks-icon {
    font-size: 4rem;
    color: #38A169;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    color: #8b7755;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-message {
    color: #718096;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.next-steps h3 {
    color: #8b7755;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #F7FAFC;
    padding: 1.5rem;
    border-radius: 10px;
    flex-direction: column;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #368bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #8b7755;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #718096;
    margin: 0;
}

/* Footer */
.main-footer {
    background: #8b7755;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #CBD5E0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #368bff;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: #368bff;
    width: 16px;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #4A5568;
    text-align: center;
}

.footer-bottom p {
    color: #CBD5E0;
    margin: 0;
}

/* Button Overrides */
.ui.primary.button {
    background: #368bff !important;
    color: white !important;
}

.ui.primary.button:hover {
    background: #2f188a !important;
}

.ui.secondary.button {
    background: #004E89 !important;
    color: white !important;
}

.ui.secondary.button:hover {
    background: #003d6b !important;
}

.ui.basic.button {
    background: transparent !important;
    color: #718096 !important;
    border: 2px solid #E2E8F0 !important;
}

.ui.basic.button:hover {
    background: #F7FAFC !important;
    color: #8b7755 !important;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .ui.container {
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 2rem !important;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .nav-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .experience-grid,
    .form-wrapper,
    .tips-grid,
    .location-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cart-sidebar {
        width: 400px;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .experience-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .comparison-cell {
        padding: 1.5rem;
    }

    .hero-section {
        min-height: 90vh;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-title {
        font-size: 4rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #368bff;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-section {
        background: #000000;
        color: #FFFFFF;
    }
    
    .product-card {
        border: 2px solid #000000;
    }
    
    .feature-card {
        border: 2px solid #000000;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .mobile-menu,
    .cart-sidebar,
    .cookie-banner,
    .main-footer {
        display: none;
    }
    
    main {
        margin-top: 0;
    }
    
    .hero-section {
        background: none;
        color: #000;
    }
}