/* ===================================
   Coffee Menu Price - Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --coffee-brown: #6F4E37;
    --coffee-dark: #5a3d2a;
    --coffee-light: #8b6f47;
    --skin-color: #F5E6D3;
    --cream: #FFF8E7;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #ddd;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--skin-color);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--coffee-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--coffee-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===================================
   HEADER
   =================================== */
.site-header {
    background-color: var(--coffee-brown);
    padding: 1rem 0;
    box-shadow: 0 2px 4px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

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

.logo svg {
    width: 40px;
    height: 40px;
    color: var(--cream);
    flex-shrink: 0;
}

.site-title {
    color: var(--cream);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 1rem;
    color: var(--cream);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-menu li a:hover,
.nav-menu li.active a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.nav-menu svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   MAIN CONTENT
   =================================== */
.main-content {
    flex: 1;
    padding: 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2rem 0 0.5rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--skin-color) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.coffee-icon-large {
    margin-bottom: 1rem;
}

.coffee-icon-large svg {
    color: var(--coffee-brown);
    filter: drop-shadow(0 4px 6px var(--shadow));
}

.hero-title {
    font-size: 3rem;
    color: var(--coffee-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--coffee-brown);
    color: var(--white);
    box-shadow: 0 4px 6px var(--shadow);
}

.btn-primary:hover {
    background-color: var(--coffee-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--coffee-brown);
    border: 2px solid var(--coffee-brown);
}

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

.btn-cta {
    background: linear-gradient(135deg, var(--coffee-brown) 0%, var(--coffee-dark) 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
}

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

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-hover);
}

.stat-icon {
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--coffee-brown);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Features Section */
.features-section {
    padding: 1rem 0 4rem 0;
    background-color: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-hover);
}

.feature-icon {
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--coffee-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Preview Section */
.preview-section {
    padding: 1rem 0 4rem 0;
}

.country-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.country-preview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    transition: all 0.3s ease;
}

.country-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-hover);
}

.country-name {
    font-size: 1.75rem;
    color: var(--coffee-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-preview {
    margin: 1.5rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.coffee-type {
    color: var(--text-light);
}

.price {
    color: var(--coffee-brown);
    font-weight: 700;
    font-size: 1.125rem;
}

.brand-count {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--coffee-brown) 0%, var(--coffee-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--cream);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--skin-color) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* ===================================
   COMPARISON PAGE
   =================================== */
.comparison-section {
    padding: 2rem 0;
}

.comparison-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px var(--shadow);
}

.tab:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
}

.tab.active {
    background-color: var(--coffee-brown);
    color: var(--white);
}

.tab.active svg {
    color: var(--white);
}

.tab svg {
    color: var(--coffee-brown);
}

/* Comparison Content */
.comparison-content {
    margin-top: 2rem;
}

.content-title {
    font-size: 2rem;
    color: var(--coffee-brown);
    margin-bottom: 0.5rem;
}

.content-description {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.country-comparison-card,
.brand-comparison-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px var(--shadow);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-header h3 {
    font-size: 1.75rem;
    color: var(--coffee-brown);
}

.currency-badge,
.location-badge {
    background-color: var(--coffee-brown);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin-top: 1rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.price-table thead {
    background-color: var(--cream);
}

.price-table th {
    padding: 1rem;
    text-align: left;
    color: var(--coffee-brown);
    font-weight: 700;
    border-bottom: 2px solid var(--coffee-brown);
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.price-table tbody tr:hover {
    background-color: var(--cream);
}

.brand-name,
.country-name,
.city-name {
    font-weight: 700;
    color: var(--coffee-brown);
}

.price-highlight {
    font-weight: 700;
    color: var(--coffee-brown);
    font-size: 1.125rem;
}

/* Analytics */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.analytics-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px var(--shadow);
}

.analytics-card.highlight {
    border: 2px solid var(--coffee-brown);
}

.analytics-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-icon.red {
    background-color: #fee2e2;
    color: #dc2626;
}

.analytics-icon.green {
    background-color: #d1fae5;
    color: #059669;
}

.analytics-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.analytics-icon.orange {
    background-color: #fed7aa;
    color: #ea580c;
}

.analytics-card h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.big-text {
    font-size: 2rem;
    color: var(--coffee-brown);
    font-weight: 700;
    margin: 0.5rem 0;
}

.small-text {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Insights */
.insights-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 6px var(--shadow);
}

.insights-section h3 {
    color: var(--coffee-brown);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.insight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.insight-content h4 {
    color: var(--coffee-brown);
    margin-bottom: 0.5rem;
}

.insight-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-section {
    padding: 3rem 0;
}

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

.about-text h2 {
    color: var(--coffee-brown);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:before {
    content: "✓ ";
    color: var(--coffee-brown);
    font-weight: bold;
    margin-right: 0.5rem;
}

.coffee-icon-about {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--coffee-brown);
    opacity: 0.3;
}

.why-choose-section,
.story-section {
    padding: 4rem 0;
    background: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    padding: 2rem;
    border-radius: 12px;
    background: var(--cream);
}

.reason-number {
    font-size: 3rem;
    color: var(--coffee-brown);
    opacity: 0.2;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.reason-card h3 {
    color: var(--coffee-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2,
.story-content h3 {
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coverage-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 12px;
}

.coverage-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--coffee-brown);
    margin-bottom: 0.5rem;
}

.coverage-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 3rem 0;
}

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

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--coffee-brown);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert svg {
    flex-shrink: 0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--coffee-brown);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coffee-brown);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Contact Info */
.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--cream);
    border-radius: 8px;
}

.info-icon {
    flex-shrink: 0;
    color: var(--coffee-brown);
}

.info-content h3 {
    color: var(--coffee-brown);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-light);
    margin: 0;
}

.info-content a {
    color: var(--coffee-brown);
    text-decoration: underline;
}

.help-topics {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 8px;
}

.help-topics h3 {
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.help-topics ul {
    list-style: none;
    padding: 0;
}

.help-topics li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 12px;
}

.faq-item h3 {
    color: var(--coffee-brown);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background-color: var(--coffee-brown);
    color: var(--cream);
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--cream);
    opacity: 0.8;
    font-size: 0.875rem;
}

/* --- NEW FOOTER STATS STYLING --- */
.footer-stats {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap nicely on mobile */
    gap: 10px;       /* Spacing between boxes */
    margin-top: 15px;
    margin-bottom: 20px;
}

.stat {
    /* Colors: Skin Background with Coffee Text */
    background-color: var(--skin-color); 
    color: var(--coffee-dark);
    
    /* Shape & Size */
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    
    /* Effect */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.stat:hover {
    transform: translateY(-2px);
    background-color: var(--cream);
}
/* --- END FOOTER STATS STYLING --- */

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: var(--cream);
    transition: color 0.3s ease;
}

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

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

.footer-contact svg {
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: var(--cream);
    opacity: 0.9;
    margin: 0.5rem 0;
}

.footer-credits {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Desktop - ensure navigation is horizontal */
@media (min-width: 769px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .nav-menu li {
        width: auto;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid,
    .features-grid,
    .country-preview-grid,
    .analytics-grid,
    .reasons-grid,
    .coverage-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .tab {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .price-table {
        font-size: 0.875rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.75rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }
    
    /* Hide navigation by default on mobile */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--coffee-brown);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 8px var(--shadow);
    }
    
    /* Show navigation when active */
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
    }
    
    /* Adjust header for mobile */
    .header-content {
        position: relative;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .comparison-tabs {
        gap: 0.25rem;
    }
    
    .tab {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .tab span {
        display: none;
    }
    
    .coffee-icon-large svg {
        width: 80px;
        height: 80px;
    }
    
    .logo a {
        font-size: 1.2rem;
    }
    
    .logo svg {
        width: 32px;
        height: 32px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .hero-buttons,
    .cta-section,
    .comparison-tabs,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background-color: white;
    }
    
    .main-content {
        padding: 0;
    }
}

/* ===================================
   MANUAL COMPARISON STYLES
   (Add this to the bottom of your CSS file)
   =================================== */

.manual-selector-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.vs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* Default is row (side-by-side) for desktop */
}

.select-group {
    flex: 1;
    min-width: 250px;
}

.select-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--coffee-brown);
}

.custom-select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--white);
    cursor: pointer;
    height: 50px; /* Fixed height for alignment */
    color: var(--text-dark);
}

.custom-select:focus {
    border-color: var(--coffee-brown);
    outline: none;
}

.vs-badge {
    background: var(--coffee-brown);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px var(--shadow);
}

.compare-btn-container {
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.btn-compare {
    background: var(--success); /* Uses your existing Green variable */
    color: var(--white);
    border: none;
    padding: 12px 40px;
    font-size: 1.125rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 6px var(--shadow);
}

.btn-compare:hover {
    background: #059669; /* Slightly darker green */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--shadow-hover);
}

/* ========================================= */
/* MOBILE FIX (Max-Width 768px)              */
/* This fixes the issue in your screenshot   */
/* ========================================= */
@media screen and (max-width: 768px) {
    
    .manual-selector-box {
        padding: 20px 15px; /* Reduce padding on mobile */
    }

    /* This forces the inputs to stack vertically */
    .vs-container {
        flex-direction: column !important; 
        gap: 10px;
    }

    /* Make inputs full width */
    .select-group {
        width: 100% !important;
        min-width: 100% !important;
    }

    /* Adjust the VS badge spacing */
    .vs-badge {
        margin: 5px 0; 
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* FORCE breadcrumb colors */
.breadcrumb-container {
    background: transparent !important;
    padding: 12px 20px;
    margin-bottom: 10px;
}

.breadcrumb-container a {
    color: #6F4E37 !important;    /* old pages = brown */
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-container span {
    color: #6F4E37 !important;    /* arrows = brown */
    margin: 0 6px;
}

.breadcrumb-container .current {
    color: #000 !important;       /* current page = black */
    font-weight: 600;
}

/* Coffee icon container */
.coffee-icon-large {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  overflow: visible;
}

/* Wrapper for cup + steam */
.cup-steam-box {
  position: relative;
  width: 140px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

/* Coffee cup */
.coffee-cup {
  display: block;
  position: relative;
  z-index: 1;
}

/* Billowing cloud steam container - MOBILE FIXED */
.steam-billow-wrap {
  position: absolute;
  bottom: 95px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 70px;
  height: 115px;
  z-index: 999 !important;
  pointer-events: none;
  will-change: transform;
}

/* Individual billowing cloud particles - MOBILE COMPATIBLE */
.billow-cloud {
  position: absolute;
  width: 22px;
  height: 22px;
  bottom: 0;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(190, 160, 130, 1) 0%,
    rgba(170, 140, 110, 0.8) 25%,
    rgba(150, 120, 90, 0.5) 50%,
    transparent 75%
  );
  filter: blur(6px);
  -webkit-filter: blur(6px);
  box-shadow: 0 0 20px rgba(190, 160, 130, 0.6);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Billowing cloud rising animation */
@keyframes billow-rise {
  0% { 
    transform: translate(-50%, 0) scale(0.6) translateZ(0); 
    opacity: 0; 
  }
  12% { 
    opacity: 1; 
  }
  30% { 
    transform: translate(calc(-50% - 12px), -30px) scale(1.4) translateZ(0); 
    opacity: 0.9; 
  }
  60% { 
    transform: translate(calc(-50% + 15px), -65px) scale(2.2) translateZ(0); 
    opacity: 0.6; 
  }
  90% { 
    transform: translate(calc(-50% - 8px), -95px) scale(3) translateZ(0); 
    opacity: 0.2; 
  }
  100% { 
    transform: translate(-50%, -110px) scale(3.5) translateZ(0); 
    opacity: 0; 
  }
}

/* Webkit animation for iOS/Safari */
@-webkit-keyframes billow-rise {
  0% { 
    -webkit-transform: translate(-50%, 0) scale(0.6); 
    opacity: 0; 
  }
  12% { 
    opacity: 1; 
  }
  30% { 
    -webkit-transform: translate(calc(-50% - 12px), -30px) scale(1.4); 
    opacity: 0.9; 
  }
  60% { 
    -webkit-transform: translate(calc(-50% + 15px), -65px) scale(2.2); 
    opacity: 0.6; 
  }
  90% { 
    -webkit-transform: translate(calc(-50% - 8px), -95px) scale(3); 
    opacity: 0.2; 
  }
  100% { 
    -webkit-transform: translate(-50%, -110px) scale(3.5); 
    opacity: 0; 
  }
}

/* Apply animation to each cloud with stagger */
.b1 { 
  animation: billow-rise 4.5s ease-out infinite;
  -webkit-animation: billow-rise 4.5s ease-out infinite;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

.b2 { 
  animation: billow-rise 4.8s ease-out infinite;
  -webkit-animation: billow-rise 4.8s ease-out infinite;
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
}

.b3 { 
  animation: billow-rise 4.6s ease-out infinite;
  -webkit-animation: billow-rise 4.6s ease-out infinite;
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}

.b4 { 
  animation: billow-rise 4.7s ease-out infinite;
  -webkit-animation: billow-rise 4.7s ease-out infinite;
  animation-delay: 2.7s;
  -webkit-animation-delay: 2.7s;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cup-steam-box {
    width: 120px;
    height: 180px;
  }
  
  .steam-billow-wrap {
    bottom: 85px;
  }
}

@media (max-width: 480px) {
  .cup-steam-box {
    width: 110px;
    height: 170px;
  }
  
  .coffee-cup {
    width: 110px;
    height: 110px;
  }
  
  .steam-billow-wrap {
    bottom: 80px;
    width: 65px;
  }
  
  .billow-cloud {
    width: 20px;
    height: 20px;
  }
}

/* REAL FIX: Move breadcrumb to the right */
.breadcrumb-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-top: 10px;
    display: block;
}

/* ===================================
   SEARCH BAR STYLES (Mobile Fixed)
   =================================== */

.search-container {
    max-width: 600px;
    margin: 2rem auto 3rem;
    padding: 0 15px;
    position: relative;
    display: block; /* Ensures it takes space */
}

.search-wrapper {
    position: relative; /* Crucial: This holds the icon inside */
    width: 100%;
    display: flex; /* Helps with alignment */
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px; /* 50px left padding makes room for icon */
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background-color: #ffffff !important; /* Force white background */
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 4px var(--shadow);
    -webkit-appearance: none; /* Removes default iOS styling */
    appearance: none;
}

.search-input:focus {
    border-color: var(--coffee-brown);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

.search-input::placeholder {
    color: #999;
    opacity: 1;
}

.search-icon-svg {
    position: absolute; /* This floats the icon on top of input */
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--coffee-brown);
    pointer-events: none;
    z-index: 10; /* Ensures icon is on top */
    width: 20px;
    height: 20px;
}

/* Hide message by default */
#no-results-msg {
    text-align: center;
    color: var(--text-light);
    margin-top: 2rem;
    font-size: 1.2rem;
    display: none;
}
/* =========================================
   1. BUTTON STYLES
   ========================================= */
.manual-btn {
    background-color: #F5E6D3 !important;
    color: #4A3B32 !important;
    border: none !important;
    background-image: none !important; 
    box-shadow: none !important;
}

.manual-btn:hover {
    background-color: #ffffff !important;
    color: #5a3d2a !important;
    background-image: none !important;
}

/* Fix for "View Comparison Table" button hover */
.btn-primary {
    background-color: #6F4E37 !important; 
    color: #F5E6D3 !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: #F5E6D3 !important;  /* SKIN COLOR */
    color: #4A3B32 !important;
}

.small-compare-btn {
    margin-top: 10px;
    display: block;
    text-align: center;
    padding: 6px 12px;
    font-size: 14px;
}

/* =========================================
   2. COFFEE CUP ANIMATION
   ========================================= */
.coffee-icon-large {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.cup-steam-box {
    position: relative;
    width: 120px;
    height: 140px;
}

.steam-billow-wrap {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.billow-cloud {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 20px;
    background-color: #D6C0B0;
    border-radius: 50%;
    opacity: 0;
    filter: blur(4px);
    animation: rise 3s infinite ease-in;
}

.billow-cloud.b1 { left: 10px; animation-delay: 0s; width: 15px; height: 15px; }
.billow-cloud.b2 { left: 30px; animation-delay: 0.5s; width: 25px; height: 25px; }
.billow-cloud.b3 { left: 50px; animation-delay: 1.2s; width: 18px; height: 18px; }
.billow-cloud.b4 { left: 20px; animation-delay: 2.0s; width: 22px; height: 22px; }

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    30% { opacity: 0.6; }
    100% { transform: translateY(-60px) scale(2); opacity: 0; }
}

/* =========================================
   3. FAQ SECTION STYLES (Fixed to be List Style)
   ========================================= */
.faq-section {
    padding: 4rem 0;
    background-color: #F5E6D3; /* White background for the whole section */
}

.faq-grid {
    /* Use Flex column to stack them line-by-line */
    display: flex;
    flex-direction: column; 
    max-width: 800px; /* Limits width so lines aren't too long */
    margin: 2rem auto 0;
}

.faq-item {
    /* Remove card styles */
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border-left: none;
    
    /* Add list styles */
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0; /* The divider line */
}

/* Remove border from the last item */
.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: #6F4E37;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   4. INFO CARDS (Disclaimer/Tips/Benefits)
   ========================================= */
.info-section {
    padding: 4rem 0;
    background-color: #F5E6D3; /* Light beige bg */
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    margin-bottom: 1rem;
    color: #6F4E37;
}

.info-card h3 {
    color: #4A3B32;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive for info cards */
@media (max-width: 991px) {
    .info-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile/tablet */
    }
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--skin-color);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--coffee-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--coffee-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===================================
   HEADER
   =================================== */
.site-header {
    background-color: var(--coffee-brown);
    padding: 1rem 0;
    box-shadow: 0 2px 4px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

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

.logo svg {
    width: 40px;
    height: 40px;
    color: var(--cream);
    flex-shrink: 0;
}

.site-title {
    color: var(--cream);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 1rem;
    color: var(--cream);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-menu li a:hover,
.nav-menu li.active a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.nav-menu svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   MAIN CONTENT
   =================================== */
.main-content {
    flex: 1;
    padding: 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2rem 0 0.5rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--skin-color) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.coffee-icon-large {
    margin-bottom: 1rem;
}

.coffee-icon-large svg {
    color: var(--coffee-brown);
    filter: drop-shadow(0 4px 6px var(--shadow));
}

.hero-title {
    font-size: 3rem;
    color: var(--coffee-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--coffee-brown);
    color: var(--white);
    box-shadow: 0 4px 6px var(--shadow);
}

.btn-primary:hover {
    background-color: var(--coffee-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--coffee-brown);
    border: 2px solid var(--coffee-brown);
}

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

.btn-cta {
    background: linear-gradient(135deg, var(--coffee-brown) 0%, var(--coffee-dark) 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
}

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

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-hover);
}

.stat-icon {
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--coffee-brown);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Features Section */
.features-section {
    padding: 1rem 0 4rem 0;
    background-color: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-hover);
}

.feature-icon {
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--coffee-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Preview Section */
.preview-section {
    padding: 1rem 0 4rem 0;
}

.country-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.country-preview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    transition: all 0.3s ease;
}

.country-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-hover);
}

.country-name {
    font-size: 1.75rem;
    color: var(--coffee-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-preview {
    margin: 1.5rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.coffee-type {
    color: var(--text-light);
}

.price {
    color: var(--coffee-brown);
    font-weight: 700;
    font-size: 1.125rem;
}

.brand-count {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--coffee-brown) 0%, var(--coffee-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--cream);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--skin-color) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* ===================================
   COMPARISON PAGE
   =================================== */
.comparison-section {
    padding: 2rem 0;
}

.comparison-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px var(--shadow);
}

.tab:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
}

.tab.active {
    background-color: var(--coffee-brown);
    color: var(--white);
}

.tab.active svg {
    color: var(--white);
}

.tab svg {
    color: var(--coffee-brown);
}

/* Comparison Content */
.comparison-content {
    margin-top: 2rem;
}

.content-title {
    font-size: 2rem;
    color: var(--coffee-brown);
    margin-bottom: 0.5rem;
}

.content-description {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.country-comparison-card,
.brand-comparison-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px var(--shadow);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-header h3 {
    font-size: 1.75rem;
    color: var(--coffee-brown);
}

.currency-badge,
.location-badge {
    background-color: var(--coffee-brown);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin-top: 1rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.price-table thead {
    background-color: var(--cream);
}

.price-table th {
    padding: 1rem;
    text-align: left;
    color: var(--coffee-brown);
    font-weight: 700;
    border-bottom: 2px solid var(--coffee-brown);
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.price-table tbody tr:hover {
    background-color: var(--cream);
}

.brand-name,
.country-name,
.city-name {
    font-weight: 700;
    color: var(--coffee-brown);
}

.price-highlight {
    font-weight: 700;
    color: var(--coffee-brown);
    font-size: 1.125rem;
}

/* Analytics */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.analytics-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px var(--shadow);
}

.analytics-card.highlight {
    border: 2px solid var(--coffee-brown);
}

.analytics-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-icon.red {
    background-color: #fee2e2;
    color: #dc2626;
}

.analytics-icon.green {
    background-color: #d1fae5;
    color: #059669;
}

.analytics-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.analytics-icon.orange {
    background-color: #fed7aa;
    color: #ea580c;
}

.analytics-card h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.big-text {
    font-size: 2rem;
    color: var(--coffee-brown);
    font-weight: 700;
    margin: 0.5rem 0;
}

.small-text {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Insights */
.insights-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 6px var(--shadow);
}

.insights-section h3 {
    color: var(--coffee-brown);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.insight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.insight-content h4 {
    color: var(--coffee-brown);
    margin-bottom: 0.5rem;
}

.insight-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-section {
    padding: 3rem 0;
}

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

.about-text h2 {
    color: var(--coffee-brown);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:before {
    content: "✓ ";
    color: var(--coffee-brown);
    font-weight: bold;
    margin-right: 0.5rem;
}

.coffee-icon-about {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--coffee-brown);
    opacity: 0.3;
}

.why-choose-section,
.story-section {
    padding: 4rem 0;
    background: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    padding: 2rem;
    border-radius: 12px;
    background: var(--cream);
}

.reason-number {
    font-size: 3rem;
    color: var(--coffee-brown);
    opacity: 0.2;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.reason-card h3 {
    color: var(--coffee-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2,
.story-content h3 {
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ================================
   ABOUT PAGE – WHAT WE COVER (FIXED)
   ================================ */

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.coverage-item {
    background: #fff7e6;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 220px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.coverage-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.coverage-item strong {
    font-size: 26px;
    font-weight: 800;
    color: var(--coffee-brown);
    display: block;
    margin-bottom: 14px;
}

.coverage-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a4634;
    margin: 0;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 3rem 0;
}

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

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--coffee-brown);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert svg {
    flex-shrink: 0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--coffee-brown);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coffee-brown);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Contact Info */
.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--cream);
    border-radius: 8px;
}

.info-icon {
    flex-shrink: 0;
    color: var(--coffee-brown);
}

.info-content h3 {
    color: var(--coffee-brown);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-light);
    margin: 0;
}

.info-content a {
    color: var(--coffee-brown);
    text-decoration: underline;
}

.help-topics {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 8px;
}

.help-topics h3 {
    color: var(--coffee-brown);
    margin-bottom: 1rem;
}

.help-topics ul {
    list-style: none;
    padding: 0;
}

.help-topics li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 12px;
}

.faq-item h3 {
    color: var(--coffee-brown);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background-color: var(--coffee-brown);
    color: var(--cream);
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--cream);
    opacity: 0.8;
    font-size: 0.875rem;
}

/* --- NEW FOOTER STATS STYLING --- */
.footer-stats {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap nicely on mobile */
    gap: 10px;       /* Spacing between boxes */
    margin-top: 15px;
    margin-bottom: 20px;
}

.stat {
    /* Colors: Skin Background with Coffee Text */
    background-color: var(--skin-color); 
    color: var(--coffee-dark);
    
    /* Shape & Size */
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    
    /* Effect */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.stat:hover {
    transform: translateY(-2px);
    background-color: var(--cream);
}
/* --- END FOOTER STATS STYLING --- */

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: var(--cream);
    transition: color 0.3s ease;
}

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

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

.footer-contact svg {
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: var(--cream);
    opacity: 0.9;
    margin: 0.5rem 0;
}

.footer-credits {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Desktop - ensure navigation is horizontal */
@media (min-width: 769px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .nav-menu li {
        width: auto;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid,
    .features-grid,
    .country-preview-grid,
    .analytics-grid,
    .reasons-grid,
    .coverage-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .tab {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .price-table {
        font-size: 0.875rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.75rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }
    
    /* Hide navigation by default on mobile */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--coffee-brown);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 8px var(--shadow);
    }
    
    /* Show navigation when active */
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
    }
    
    /* Adjust header for mobile */
    .header-content {
        position: relative;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .comparison-tabs {
        gap: 0.25rem;
    }
    
    .tab {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .tab span {
        display: none;
    }
    
    .coffee-icon-large svg {
        width: 80px;
        height: 80px;
    }
    
    .logo a {
        font-size: 1.2rem;
    }
    
    .logo svg {
        width: 32px;
        height: 32px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .hero-buttons,
    .cta-section,
    .comparison-tabs,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background-color: white;
    }
    
    .main-content {
        padding: 0;
    }
}

/* ===================================
   MANUAL COMPARISON STYLES
   (Add this to the bottom of your CSS file)
   =================================== */

.manual-selector-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.vs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* Default is row (side-by-side) for desktop */
}

.select-group {
    flex: 1;
    min-width: 250px;
}

.select-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--coffee-brown);
}

.custom-select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--white);
    cursor: pointer;
    height: 50px; /* Fixed height for alignment */
    color: var(--text-dark);
}

.custom-select:focus {
    border-color: var(--coffee-brown);
    outline: none;
}

.vs-badge {
    background: var(--coffee-brown);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px var(--shadow);
}

.compare-btn-container {
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.btn-compare {
    background: var(--success); /* Uses your existing Green variable */
    color: var(--white);
    border: none;
    padding: 12px 40px;
    font-size: 1.125rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 6px var(--shadow);
}

.btn-compare:hover {
    background: #059669; /* Slightly darker green */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--shadow-hover);
}

/* ========================================= */
/* MOBILE FIX (Max-Width 768px)              */
/* This fixes the issue in your screenshot   */
/* ========================================= */
@media screen and (max-width: 768px) {
    
    .manual-selector-box {
        padding: 20px 15px; /* Reduce padding on mobile */
    }

    /* This forces the inputs to stack vertically */
    .vs-container {
        flex-direction: column !important; 
        gap: 10px;
    }

    /* Make inputs full width */
    .select-group {
        width: 100% !important;
        min-width: 100% !important;
    }

    /* Adjust the VS badge spacing */
    .vs-badge {
        margin: 5px 0; 
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* FORCE breadcrumb colors */
.breadcrumb-container {
    background: transparent !important;
    padding: 12px 20px;
    margin-bottom: 10px;
}

.breadcrumb-container a {
    color: #6F4E37 !important;    /* old pages = brown */
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-container span {
    color: #6F4E37 !important;    /* arrows = brown */
    margin: 0 6px;
}

.breadcrumb-container .current {
    color: #000 !important;       /* current page = black */
    font-weight: 600;
}

/* Coffee icon container */
.coffee-icon-large {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  overflow: visible;
}

/* Wrapper for cup + steam */
.cup-steam-box {
  position: relative;
  width: 140px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

/* Coffee cup */
.coffee-cup {
  display: block;
  position: relative;
  z-index: 1;
}

/* Billowing cloud steam container - MOBILE FIXED */
.steam-billow-wrap {
  position: absolute;
  bottom: 95px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 70px;
  height: 115px;
  z-index: 999 !important;
  pointer-events: none;
  will-change: transform;
}

/* Individual billowing cloud particles - MOBILE COMPATIBLE */
.billow-cloud {
  position: absolute;
  width: 22px;
  height: 22px;
  bottom: 0;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(190, 160, 130, 1) 0%,
    rgba(170, 140, 110, 0.8) 25%,
    rgba(150, 120, 90, 0.5) 50%,
    transparent 75%
  );
  filter: blur(6px);
  -webkit-filter: blur(6px);
  box-shadow: 0 0 20px rgba(190, 160, 130, 0.6);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Billowing cloud rising animation */
@keyframes billow-rise {
  0% { 
    transform: translate(-50%, 0) scale(0.6) translateZ(0); 
    opacity: 0; 
  }
  12% { 
    opacity: 1; 
  }
  30% { 
    transform: translate(calc(-50% - 12px), -30px) scale(1.4) translateZ(0); 
    opacity: 0.9; 
  }
  60% { 
    transform: translate(calc(-50% + 15px), -65px) scale(2.2) translateZ(0); 
    opacity: 0.6; 
  }
  90% { 
    transform: translate(calc(-50% - 8px), -95px) scale(3) translateZ(0); 
    opacity: 0.2; 
  }
  100% { 
    transform: translate(-50%, -110px) scale(3.5) translateZ(0); 
    opacity: 0; 
  }
}

/* Webkit animation for iOS/Safari */
@-webkit-keyframes billow-rise {
  0% { 
    -webkit-transform: translate(-50%, 0) scale(0.6); 
    opacity: 0; 
  }
  12% { 
    opacity: 1; 
  }
  30% { 
    -webkit-transform: translate(calc(-50% - 12px), -30px) scale(1.4); 
    opacity: 0.9; 
  }
  60% { 
    -webkit-transform: translate(calc(-50% + 15px), -65px) scale(2.2); 
    opacity: 0.6; 
  }
  90% { 
    -webkit-transform: translate(calc(-50% - 8px), -95px) scale(3); 
    opacity: 0.2; 
  }
  100% { 
    -webkit-transform: translate(-50%, -110px) scale(3.5); 
    opacity: 0; 
  }
}

/* Apply animation to each cloud with stagger */
.b1 { 
  animation: billow-rise 4.5s ease-out infinite;
  -webkit-animation: billow-rise 4.5s ease-out infinite;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

.b2 { 
  animation: billow-rise 4.8s ease-out infinite;
  -webkit-animation: billow-rise 4.8s ease-out infinite;
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
}

.b3 { 
  animation: billow-rise 4.6s ease-out infinite;
  -webkit-animation: billow-rise 4.6s ease-out infinite;
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}

.b4 { 
  animation: billow-rise 4.7s ease-out infinite;
  -webkit-animation: billow-rise 4.7s ease-out infinite;
  animation-delay: 2.7s;
  -webkit-animation-delay: 2.7s;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cup-steam-box {
    width: 120px;
    height: 180px;
  }
  
  .steam-billow-wrap {
    bottom: 85px;
  }
}

@media (max-width: 480px) {
  .cup-steam-box {
    width: 110px;
    height: 170px;
  }
  
  .coffee-cup {
    width: 110px;
    height: 110px;
  }
  
  .steam-billow-wrap {
    bottom: 80px;
    width: 65px;
  }
  
  .billow-cloud {
    width: 20px;
    height: 20px;
  }
}

/* REAL FIX: Move breadcrumb to the right */
.breadcrumb-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-top: 10px;
    display: block;
}

/* ===================================
   SEARCH BAR STYLES (Mobile Fixed)
   =================================== */

.search-container {
    max-width: 600px;
    margin: 2rem auto 3rem;
    padding: 0 15px;
    position: relative;
    display: block; /* Ensures it takes space */
}

.search-wrapper {
    position: relative; /* Crucial: This holds the icon inside */
    width: 100%;
    display: flex; /* Helps with alignment */
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px; /* 50px left padding makes room for icon */
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background-color: #ffffff !important; /* Force white background */
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 4px var(--shadow);
    -webkit-appearance: none; /* Removes default iOS styling */
    appearance: none;
}

.search-input:focus {
    border-color: var(--coffee-brown);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

.search-input::placeholder {
    color: #999;
    opacity: 1;
}

.search-icon-svg {
    position: absolute; /* This floats the icon on top of input */
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--coffee-brown);
    pointer-events: none;
    z-index: 10; /* Ensures icon is on top */
    width: 20px;
    height: 20px;
}

/* Hide message by default */
#no-results-msg {
    text-align: center;
    color: var(--text-light);
    margin-top: 2rem;
    font-size: 1.2rem;
    display: none;
}
/* =========================================
   1. BUTTON STYLES
   ========================================= */
.manual-btn {
    background-color: #F5E6D3 !important;
    color: #4A3B32 !important;
    border: none !important;
    background-image: none !important; 
    box-shadow: none !important;
}

.manual-btn:hover {
    background-color: #ffffff !important;
    color: #5a3d2a !important;
    background-image: none !important;
}

/* Fix for "View Comparison Table" button hover */
.btn-primary {
    background-color: #6F4E37 !important; 
    color: #F5E6D3 !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: #F5E6D3 !important;  /* SKIN COLOR */
    color: #4A3B32 !important;
}

.small-compare-btn {
    margin-top: 10px;
    display: block;
    text-align: center;
    padding: 6px 12px;
    font-size: 14px;
}

/* =========================================
   2. COFFEE CUP ANIMATION
   ========================================= */
.coffee-icon-large {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.cup-steam-box {
    position: relative;
    width: 120px;
    height: 140px;
}

.steam-billow-wrap {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.billow-cloud {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 20px;
    background-color: #D6C0B0;
    border-radius: 50%;
    opacity: 0;
    filter: blur(4px);
    animation: rise 3s infinite ease-in;
}

.billow-cloud.b1 { left: 10px; animation-delay: 0s; width: 15px; height: 15px; }
.billow-cloud.b2 { left: 30px; animation-delay: 0.5s; width: 25px; height: 25px; }
.billow-cloud.b3 { left: 50px; animation-delay: 1.2s; width: 18px; height: 18px; }
.billow-cloud.b4 { left: 20px; animation-delay: 2.0s; width: 22px; height: 22px; }

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    30% { opacity: 0.6; }
    100% { transform: translateY(-60px) scale(2); opacity: 0; }
}

/* =========================================
   3. FAQ SECTION STYLES (Fixed to be List Style)
   ========================================= */
.faq-section {
    padding: 4rem 0;
    background-color: #F5E6D3; /* White background for the whole section */
}

.faq-grid {
    /* Use Flex column to stack them line-by-line */
    display: flex;
    flex-direction: column; 
    max-width: 800px; /* Limits width so lines aren't too long */
    margin: 2rem auto 0;
}

.faq-item {
    /* Remove card styles */
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border-left: none;
    
    /* Add list styles */
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0; /* The divider line */
}

/* Remove border from the last item */
.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: #6F4E37;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   4. INFO CARDS (Disclaimer/Tips/Benefits)
   ========================================= */
.info-section {
    padding: 4rem 0;
    background-color: #F5E6D3; /* Light beige bg */
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    margin-bottom: 1rem;
    color: #6F4E37;
}

.info-card h3 {
    color: #4A3B32;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive for info cards */
@media (max-width: 991px) {
    .info-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile/tablet */
    }
}