:root {
    --primary-color: #1a2530;
    /* Deep Navy/Black */
    --secondary-color: #8c9b9d;
    /* Metallic Silver/Aluminum */
    --accent-color: #c5a059;
    /* Muted Gold for Premium feel */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    /* Classic trust */
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #b08d4a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 1rem;
}

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

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

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

.btn-small {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    background-color: #333;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-features {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 0;
    font-size: 0.9rem;
}

.trust-bar-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Accordion */
.section-questions {
    background-color: var(--light-bg);
}

.accordion-item {
    background-color: var(--white);
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-item.open .accordion-content {
    max-height: 500px;
    /* Approximate max height */
    padding-bottom: 20px;
}

.icon {
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Band */
.cta-band {
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-align: center;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-band a {
    text-decoration: underline;
}

/* Where to Buy - Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

.list-check li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 8px;
}

/* Marketplace Grid */
.marketplace-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.marketplace-card {
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.marketplace-card.amazon {
    background: linear-gradient(to right, #ffffff, #fff9f0);
}

.marketplace-card.ebay {
    background: linear-gradient(to right, #ffffff, #f0f7ff);
}

/* Local Search */
.local-search {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.local-search h3 {
    color: var(--white);
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.search-box input {
    padding: 12px;
    border-radius: 4px;
    border: none;
    width: 300px;
}

.search-box button {
    padding: 12px 24px;
    background-color: var(--accent-color);
    border: none;
    border-radius: 4px;
    color: var(--white);
    font-weight: bold;
    cursor: pointer;
}

.search-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.table-responsive {
    overflow-x: auto;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

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

.featured-product {
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.featured-content {
    flex: 1;
    padding: 40px;
}

.featured-image {
    flex: 1;
}

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

/* Auth & Value */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.simple-table {
    width: 100%;
}

.simple-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.simple-table tr:last-child td {
    border-bottom: none;
}

/* Recipes */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.recipe-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.recipe-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.recipe-card:hover .recipe-img {
    transform: scale(1.1);
}

.recipe-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.recipe-info h3 {
    color: var(--white);
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 15px;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.btn-xs {
    padding: 6px 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Placeholder for recipe images reusing product images */
.placeholder-img {
    filter: brightness(0.8);
}

/* Care Cards */
.care-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.care-card h3 {
    margin-bottom: 20px;
}

/* FAQ Section */
.section-faq {
    background-color: var(--light-bg);
}

/* Regional Section */
.regional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.regional-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

.regional-flag {
    font-size: 4rem;
    margin-bottom: 20px;
}

.regional-card h3 {
    margin-bottom: 20px;
}

.regional-card ul {
    text-align: left;
    margin-bottom: 20px;
}

/* Brand Comparison */
.section-brand-compare {
    background-color: var(--light-bg);
}

.brand-table th:first-child,
.brand-table td:first-child {
    font-weight: 600;
}

/* Reviews Section */
.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Bottom CTA Section */
.section-bottom-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: var(--white);
}

.bottom-cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bottom-cta-box h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bottom-cta-box>p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-secondary-dark {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
}

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

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.9;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .trust-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .marketplace-grid,
    .grid-2col,
    .featured-product,
    .recipe-grid,
    .regional-grid,
    .reviews-carousel {
        grid-template-columns: 1fr;
        display: grid;
        /* recipe grid was breaking */
    }

    .featured-product {
        display: flex;
        flex-direction: column-reverse;
    }

    .featured-image {
        width: 100%;
        height: 300px;
    }

    .bottom-cta-box h2 {
        font-size: 1.8rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}