/* ============================================
   TRUECOMB - SHARED STYLES
   ============================================ */

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

:root {
    --honey-gold: #D4A03D;
    --honey-amber: #B8860B;
    --honey-dark: #8B6914;
    --honey-light: #F5E6C8;
    --honey-cream: #FFF8E7;
    --text-dark: #2D2A26;
    --text-medium: #5A5650;
    --text-light: #8A8580;
    --white: #FFFFFF;
    --bg-main: #FFFCF5;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.35rem; }
}
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.85rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1.1rem; }
}
@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 1rem; }
}
@media (max-width: 480px) {
    body { font-size: 0.95rem; }
    h1 { font-size: 1.55rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.05rem; }
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 5%;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    z-index: 1000;
    background: rgba(255, 252, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 160, 61, 0.1);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    letter-spacing: -0.01em;
    color: var(--text-dark);
}

.logo svg {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.logo-mark {
    fill: none;
    stroke: url(#honeyGoldGradient);
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logo-wordmark {
    display: inline-flex;
    align-items: baseline;
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.logo-true {
    color: #2F3238;
}

.logo-comb {
    background: linear-gradient(90deg, #F2C14E 0%, #D4A03D 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--honey-amber);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--honey-amber);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: -1rem;
    background: white;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 1.25rem 0 0.75rem;
    margin-top: 0;
}

/* Invisible bridge fills the gap so hover isn't lost moving from trigger to menu */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -1rem;
    width: calc(100% + 2rem);
    height: 0.6rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: var(--honey-cream);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

@media (max-width: 1024px) {
    nav { padding: 1rem 4%; }
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 5%;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links li { padding: 0.75rem 0; border-bottom: 1px solid var(--honey-light); }
    .dropdown:hover .dropdown-content { display: none; }
    .dropdown.open .dropdown-content { display: block; }
    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    .logo svg {
        width: 36px;
        height: 36px;
    }
    .logo-wordmark {
        font-size: 1.5rem;
    }
}
@media (max-width: 600px) {
    nav { padding: 0.85rem 3.5%; }
    .logo svg { width: 32px; height: 32px; }
    .logo-wordmark { font-size: 1.35rem; }
    .nav-links li { padding: 0.85rem 0; }
    .nav-links li a { font-size: 1rem; }
}

/* ============================================
   BUTTONS
   ============================================ */

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

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

.btn-primary:hover {
    background: var(--honey-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--honey-amber);
    border: 2px solid var(--honey-amber);
}

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

.btn-shop {
    padding: 0.75rem 1.5rem;
    background: var(--text-dark);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-shop:hover {
    background: var(--honey-amber);
    transform: scale(1.05);
}

.btn-amazon {
    background: #FF9900;
    color: white;
}

.btn-amazon:hover {
    background: #E88B00;
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
    padding: 10rem 5% 5rem;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--honey-cream) 50%, var(--honey-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212, 160, 61, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 160, 61, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--honey-amber);
    font-weight: 500;
    margin-bottom: 1rem;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero h1 span {
    color: var(--honey-amber);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .page-hero { padding: 7rem 5% 3.5rem; }
}
@media (max-width: 768px) {
    .page-hero { padding: 5.5rem 4% 2.5rem; }
    .page-hero p { font-size: 1.05rem; }
}
@media (max-width: 600px) {
    .page-hero { padding: 4.5rem 3.5% 2rem; }
    .page-hero p { font-size: 0.95rem; }
    .page-hero .badge { font-size: 0.78rem; padding: 0.4rem 0.85rem; }
}
@media (max-width: 480px) {
    .page-hero { padding: 4rem 3% 1.5rem; }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 5rem 5%;
}

@media (max-width: 1024px) { section { padding: 4rem 5%; } }
@media (max-width: 768px) { section { padding: 3.5rem 4%; } .section-header { margin-bottom: 2.5rem; } }
@media (max-width: 600px) { section { padding: 2.5rem 3.5%; } .section-header { margin-bottom: 2rem; } .section-header p { font-size: 1rem; } }
@media (max-width: 480px) { section { padding: 2rem 3%; } }

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

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

/* ============================================
   CARDS
   ============================================ */

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(212, 160, 61, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.12);
}

.card-content {
    padding: 1.75rem;
}

/* Brand Cards */
.brand-card {
    background: var(--bg-main);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(212, 160, 61, 0.1);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(184, 134, 11, 0.15);
}

.brand-image {
    height: 180px;
    background: linear-gradient(135deg, var(--honey-light) 0%, var(--honey-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brand-image img {
    max-height: 120px;
    object-fit: contain;
}

.brand-content {
    padding: 1.5rem;
}

.brand-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(212, 160, 61, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--honey-amber);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-content h3 {
    margin-bottom: 0.5rem;
}

.brand-content p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.brand-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 160, 61, 0.15);
}

.brand-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--honey-amber);
}

.brand-price span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

/* Type Cards */
.type-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(212, 160, 61, 0.1);
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.15);
    border-color: var(--honey-gold);
}

.type-color {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.1);
}

.type-card h3 {
    margin-bottom: 0.5rem;
}

.type-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Info Cards */
.info-card {
    padding: 2.5rem;
    background: var(--honey-cream);
    border-radius: 20px;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.1);
}

.info-card .icon {
    width: 60px;
    height: 60px;
    background: var(--honey-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-card .icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.info-card h3 {
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .card-content { padding: 1.25rem; }
    .brand-image { height: 150px; }
    .brand-content { padding: 1.25rem; }
    .type-card { padding: 1.5rem; }
    .type-color { width: 65px; height: 65px; margin-bottom: 1rem; }
    .info-card { padding: 1.75rem; }
}
@media (max-width: 480px) {
    .card { border-radius: 16px; }
    .card-content { padding: 1rem; }
    .brand-card { border-radius: 18px; }
    .brand-image { height: 130px; }
    .brand-content { padding: 1rem; }
    .type-card { padding: 1.25rem; border-radius: 16px; }
    .type-color { width: 55px; height: 55px; }
    .info-card { padding: 1.25rem; border-radius: 16px; }
}

/* ============================================
   GRIDS
   ============================================ */

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

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 { gap: 1rem; }
}

/* ============================================
   FORMS
   ============================================ */

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

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

input[type="text"],
input[type="email"],
input[type="search"],
select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(212, 160, 61, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--honey-amber);
}

.search-box {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    border-radius: 50px;
}

.search-box .btn {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    input[type="text"],
    input[type="email"],
    input[type="search"],
    select {
        padding: 0.85rem 1.15rem;
        font-size: 1rem; /* 16px prevents iOS zoom */
    }
    .search-box {
        max-width: 100%;
        flex-direction: column;
    }
    .search-box .btn { width: 100%; justify-content: center; }
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    margin-bottom: 1.5rem;
}

.content-section p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.content-section li {
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

@media (max-width: 1024px) {
    .two-col, .two-col.reverse { gap: 2.5rem; }
}
@media (max-width: 768px) {
    .two-col, .two-col.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }
}

/* ============================================
   MARKETPLACE SECTION
   ============================================ */

.marketplace {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--honey-cream) 100%);
}

.marketplace-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--honey-light);
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--honey-amber);
    border-color: var(--honey-amber);
    color: white;
}

/* ============================================
   LOCAL FARMER DIRECTORY
   ============================================ */

.state-section {
    margin-bottom: 3rem;
}

.state-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px solid var(--honey-light);
    margin-bottom: 1.5rem;
}

.state-header h3 {
    font-size: 1.75rem;
}

.farmer-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 160, 61, 0.1);
    transition: all 0.3s;
}

.farmer-card:hover {
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.1);
    border-color: var(--honey-gold);
}

.farmer-icon {
    width: 60px;
    height: 60px;
    background: var(--honey-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.farmer-icon svg {
    width: 30px;
    height: 30px;
    color: var(--honey-amber);
}

.farmer-info {
    flex: 1;
}

.farmer-info h4 {
    margin-bottom: 0.25rem;
}

.farmer-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.farmer-types {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.farmer-types span {
    padding: 0.25rem 0.6rem;
    background: var(--honey-cream);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--honey-dark);
}

.farmer-links {
    display: flex;
    gap: 0.75rem;
}

.farmer-links a {
    font-size: 0.85rem;
    color: var(--honey-amber);
    font-weight: 500;
}

.farmer-links a:hover {
    text-decoration: underline;
}

.farmer-claim a:hover {
    color: var(--honey-amber) !important;
}

.farmer-claim a:hover span {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .farmer-card { flex-direction: column; gap: 1rem; padding: 1.25rem; }
    .farmer-icon { width: 50px; height: 50px; }
    .farmer-icon svg { width: 24px; height: 24px; }
    .state-header h3 { font-size: 1.4rem; }
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
    padding: 1rem 5%;
    padding-top: 5.5rem;
    background: var(--honey-cream);
}

.breadcrumb ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--honey-amber);
}

.breadcrumb span {
    color: var(--text-light);
}

.breadcrumb li:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb { padding-top: 4.5rem; }
    .breadcrumb ul { font-size: 0.82rem; flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .breadcrumb { padding-top: 4rem; padding-left: 3%; padding-right: 3%; }
    .breadcrumb ul { font-size: 0.78rem; }
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
    background: linear-gradient(135deg, var(--honey-cream) 0%, var(--honey-light) 100%);
    text-align: center;
    padding: 5rem 5%;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    border-radius: 50px;
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo .logo-true {
    color: #F3E8D4;
}

.footer-brand .logo .logo-wordmark {
    font-size: 1.55rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--honey-gold);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    footer { padding: 3rem 4% 2rem; }
}
@media (max-width: 600px) {
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
    footer { padding: 2.5rem 3.5% 1.5rem; }
    .footer-bottom { margin-top: 2rem; padding-top: 1.5rem; }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.bg-white { background: white; }
.bg-cream { background: var(--honey-cream); }
.bg-dark { background: var(--text-dark); color: white; }

/* ============================================
   TRUECOMB HONEY COLOR SCALE™
   ============================================ */

.tc-color-scale {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0.4rem 0;
}

.tc-color-scale-pip {
    width: 18px;
    height: 6px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.tc-color-scale-pip.pip-1 { background: #FFFFF0; border: 1px solid #E0D8CC; }
.tc-color-scale-pip.pip-2 { background: #FFE4B5; }
.tc-color-scale-pip.pip-3 { background: #EEE8AA; }
.tc-color-scale-pip.pip-4 { background: #D4A03D; }
.tc-color-scale-pip.pip-5 { background: #8B4513; }
.tc-color-scale-pip.pip-6 { background: #3E2723; }

.tc-color-scale-pip.active {
    height: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.tc-color-scale-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    margin-left: 6px;
    white-space: nowrap;
}

/* Flavor intensity scale */
.tc-flavor-scale {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0.3rem 0;
}

.tc-flavor-bar {
    height: 4px;
    border-radius: 2px;
    background: rgba(212, 160, 61, 0.15);
    flex: 1;
    max-width: 80px;
    position: relative;
    overflow: hidden;
}

.tc-flavor-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #F2C14E, #D4A03D, #B8860B);
}

.tc-flavor-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    margin-left: 6px;
    white-space: nowrap;
}

/* TrueComb Score badge */
.tc-score {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    background: linear-gradient(135deg, #FFFCF5, #FFF8E7);
    border: 1px solid rgba(212, 160, 61, 0.25);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
}

.tc-score-value {
    font-size: 0.9rem;
    font-weight: 800;
    background: linear-gradient(90deg, #F2C14E, #D4A03D, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tc-score-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   RECIPE HUB & RECIPE PAGES
   ============================================ */

/* ── Recipe Hub ── */
.recipe-hub-hero {
    text-align: center;
    padding: 7rem 1.5rem 2.5rem;
    background: linear-gradient(135deg, #FFFCF5 0%, #FFF8E7 50%, #F5E6C8 100%);
}
.recipe-hub-hero h1 { font-size: 2.8rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; }
.recipe-hub-hero p { font-size: 1.15rem; color: var(--text-medium); max-width: 600px; margin: 0 auto; }

/* Category filter pills */
.recipe-filters {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 0;
}
.recipe-filter-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}
.recipe-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.filter-pill {
    padding: 0.45rem 1rem;
    border-radius: 50px;
    border: 1.5px solid rgba(212, 160, 61, 0.25);
    background: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}
.filter-pill:hover, .filter-pill.active {
    background: var(--honey-gold);
    color: #fff;
    border-color: var(--honey-gold);
}

/* Ingredient chips */
.ingredient-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.ingredient-chip {
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    background: var(--bg-main);
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.15s ease;
}
.ingredient-chip:hover, .ingredient-chip.active {
    background: #FFF8E7;
    border-color: var(--honey-gold);
    color: var(--honey-dark);
}

/* Featured recipe card */
.recipe-featured {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}
.featured-recipe-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: linear-gradient(135deg, #FFF8E7 0%, #F5E6C8 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 160, 61, 0.2);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.featured-recipe-card:hover {
    box-shadow: 0 8px 30px rgba(212, 160, 61, 0.15);
    transform: translateY(-2px);
}
.featured-recipe-info { flex: 1; }
.featured-recipe-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--honey-gold);
    color: #fff;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}
.featured-recipe-info h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-dark); }
.featured-recipe-info p { font-size: 1rem; color: var(--text-medium); line-height: 1.6; margin-bottom: 0.8rem; }
.featured-recipe-meta { display: flex; gap: 1.2rem; font-size: 0.82rem; color: var(--text-light); font-weight: 500; }
.featured-honey-badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(212, 160, 61, 0.3);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--honey-dark);
    margin-top: 0.5rem;
}

/* Recipe grid */
.recipe-hub-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem 3rem;
}
.recipe-hub-grid h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--text-dark); }
.recipe-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.2rem;
}

/* Recipe card (hub) */
.rh-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}
.rh-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: rgba(212, 160, 61, 0.3);
}
.rh-card-category {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--bg-main);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--honey-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}
.rh-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.rh-card p { font-size: 0.88rem; color: var(--text-medium); line-height: 1.5; margin-bottom: 0.7rem; }
.rh-card-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--text-light); font-weight: 500; margin-bottom: 0.5rem; }
.rh-card-honey {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--honey-dark);
    padding: 0.2rem 0.5rem;
    background: #FFF8E7;
    border-radius: 4px;
    display: inline-block;
}

/* Recipe hub CTA */
.recipe-hub-cta {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--bg-main);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.recipe-hub-cta h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.5rem; }
.recipe-hub-cta p { color: var(--text-medium); margin-bottom: 1.2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Individual Recipe Pages ── */

/* Recipe hero */
.recipe-hero {
    padding: 7rem 1.5rem 2rem;
    background: linear-gradient(135deg, #FFFCF5 0%, #FFF8E7 50%, #F5E6C8 100%);
}
.recipe-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}
.recipe-hero-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(212, 160, 61, 0.15);
    color: var(--honey-dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}
.recipe-hero h1 { font-size: 2.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.6rem; line-height: 1.15; }
.recipe-hero .recipe-intro { font-size: 1.1rem; color: var(--text-medium); line-height: 1.6; margin-bottom: 1.2rem; max-width: 650px; }
.recipe-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.recipe-hero-meta span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}
.recipe-hero-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* Best Honey Conversion Box */
.best-honey-conversion {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.8rem 2rem;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFFCF5 100%);
    border: 2px solid var(--honey-gold);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(212, 160, 61, 0.12);
}
.best-honey-conversion h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.honey-rec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}
.honey-rec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.honey-rec-item:last-child { border-bottom: none; }
.honey-rec-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.honey-rec-note {
    font-size: 0.85rem;
    color: var(--text-medium);
}
.honey-rec-link {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--honey-amber);
    text-decoration: none;
    white-space: nowrap;
}
.honey-rec-link:hover { text-decoration: underline; }
.best-honey-conversion .btn-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* Recipe main layout */
.recipe-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Recipe sections */
.recipe-section { margin-bottom: 2.5rem; }
.recipe-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 160, 61, 0.2);
}

/* Ingredients */
.ingredients-list {
    list-style: none;
    padding: 0;
}
.ingredients-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.95rem;
    color: var(--text-dark);
}
.ingredients-list li:last-child { border-bottom: none; }
.ingredient-link {
    color: var(--honey-amber);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--honey-amber);
}
.ingredient-link:hover { border-bottom-style: solid; }

/* Instructions */
.instructions-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
}
.instructions-list li {
    counter-increment: step;
    padding: 1rem 0 1rem 3.2rem;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.instructions-list li:last-child { border-bottom: none; }
.instructions-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2.2rem;
    height: 2.2rem;
    background: var(--honey-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.instructions-list li h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}
.instructions-list li p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* TrueComb Tip callout */
.truecomb-tip {
    background: #FFFCF5;
    border-left: 4px solid var(--honey-gold);
    padding: 1rem 1.2rem;
    border-radius: 0 10px 10px 0;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}
.truecomb-tip strong {
    color: var(--honey-dark);
}

/* Tips list */
.tips-list {
    list-style: none;
    padding: 0;
}
.tips-list li {
    padding: 0.5rem 0;
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.tips-list li:last-child { border-bottom: none; }
.tips-list li strong { color: var(--text-dark); }

/* Honey Flavor Pairings */
.honey-pairings {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 1.8rem 2rem;
    margin-bottom: 2.5rem;
}
.honey-pairings h2 { border-bottom: none; padding-bottom: 0; margin-bottom: 1.2rem; }
.pairings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.pairing-col h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}
.pairing-col.best h3 { color: #2e7d32; }
.pairing-col.avoid h3 { color: #c62828; }
.pairing-col ul {
    list-style: none;
    padding: 0;
}
.pairing-col li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.pairing-col.best li::before { content: "✓ "; color: #2e7d32; font-weight: 700; }
.pairing-col.avoid li::before { content: "✗ "; color: #c62828; font-weight: 700; }

/* Product Comparison Block */
.product-picks {
    margin-bottom: 2.5rem;
}
.product-picks h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 160, 61, 0.2);
}
.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.product-pick-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 1.3rem 1.4rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-pick-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: rgba(212, 160, 61, 0.3);
}
.product-pick-name { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
.product-pick-desc { font-size: 0.82rem; color: var(--text-medium); margin-bottom: 0.6rem; }
.product-pick-score {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.5rem;
    background: linear-gradient(135deg, #FFFCF5, #FFF8E7);
    border: 1px solid rgba(212, 160, 61, 0.25);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--honey-dark);
    margin-bottom: 0.8rem;
}
.product-pick-links {
    display: flex;
    gap: 0.6rem;
}
.product-pick-links a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--honey-amber);
    text-decoration: none;
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--honey-gold);
    border-radius: 50px;
    transition: all 0.15s ease;
}
.product-pick-links a:hover {
    background: var(--honey-gold);
    color: #fff;
}

/* Related Recipes */
.related-recipes { margin-bottom: 2rem; }
.related-recipes h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 160, 61, 0.2);
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.related-recipe {
    display: block;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 1.2rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}
.related-recipe:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: rgba(212, 160, 61, 0.3);
}
.related-recipe h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
.related-recipe p { font-size: 0.82rem; color: var(--text-medium); }

/* Homepage "Honey in the Kitchen" section */
.kitchen-recipes {
    padding: 4rem 5%;
    background: var(--bg-main);
}
.kitchen-recipes h2 { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 0.4rem; }
.kitchen-recipes > p { text-align: center; color: var(--text-medium); margin-bottom: 2rem; }
.kitchen-recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
}
.kitchen-recipe-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    padding: 1.3rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.kitchen-recipe-card:hover {
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.kitchen-recipe-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
.kitchen-recipe-card .kr-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.3rem; }
.kitchen-recipe-card p:last-child { font-size: 0.85rem; color: var(--text-medium); line-height: 1.5; }
.kitchen-recipes .view-all {
    text-align: center;
}
.kitchen-recipes .view-all a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--honey-amber);
    text-decoration: none;
}
.kitchen-recipes .view-all a:hover { text-decoration: underline; }

/* ── Responsive recipe styles ── */
@media (max-width: 768px) {
    .recipe-hub-hero h1 { font-size: 2rem; }
    .recipe-hero h1 { font-size: 2rem; }
    .featured-recipe-card { flex-direction: column; gap: 1.2rem; padding: 1.5rem; }
    .pairings-grid { grid-template-columns: 1fr; }
    .recipe-cards-grid { grid-template-columns: 1fr; }
    .product-cards { grid-template-columns: 1fr; }
    .best-honey-conversion { padding: 1.2rem 1.3rem; }
    .recipe-hero { padding: 5rem 1.25rem 1.5rem; }
    .recipe-main { padding: 0 1.25rem 2rem; }
    .honey-pairings { padding: 1.2rem 1.3rem; }
}
@media (max-width: 600px) {
    .recipe-hub-hero { padding: 4.5rem 1rem 2rem; }
    .recipe-hub-hero h1 { font-size: 1.7rem; }
    .recipe-hero h1 { font-size: 1.7rem; }
    .recipe-hero .recipe-intro { font-size: 0.95rem; }
    .recipe-filters { padding: 1rem 1rem 0; }
    .recipe-featured { padding: 0 1rem; }
    .featured-recipe-card { padding: 1.2rem; }
    .featured-recipe-info h3 { font-size: 1.35rem; }
    .recipe-hub-grid { padding: 0.75rem 1rem 2rem; }
    .rh-card { padding: 1.1rem 1.2rem; }
    .kitchen-recipes { padding: 2.5rem 3.5%; }
    .newsletter { padding: 3rem 3.5%; }
}
@media (max-width: 480px) {
    .recipe-hub-hero h1 { font-size: 1.45rem; }
    .recipe-hero h1 { font-size: 1.45rem; }
    .instructions-list li { padding-left: 2.8rem; }
    .instructions-list li::before { width: 2rem; height: 2rem; font-size: 0.78rem; }
}

/* ============================================
   TYPE & ARTICLE PAGE MOBILE FIXES
   ============================================ */

/* Type pages use inline style padding:2rem on cards — reduce on mobile */
@media (max-width: 768px) {
    .container { padding-left: 0.5rem; padding-right: 0.5rem; }
    .page-hero[style*="padding-top:3rem"] { padding-top: 2rem !important; }
}
@media (max-width: 600px) {
    .bg-white > .container,
    .bg-cream > .container,
    section > .container {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/* ============================================
   TOUCH & MOBILE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
    .btn { min-height: 44px; padding: 0.85rem 1.75rem; font-size: 0.95rem; }
    .btn-shop { min-height: 44px; padding: 0.7rem 1.35rem; }
    .filter-btn { min-height: 42px; padding: 0.65rem 1.2rem; }
    .marketplace-filters { gap: 0.6rem; }
}

@media (max-width: 480px) {
    .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
}

/* Disable hover transforms on touch devices */
@media (hover: none) {
    .card:hover,
    .brand-card:hover,
    .type-card:hover,
    .info-card:hover {
        transform: none;
    }
    .btn-primary:hover { transform: none; }
    .btn-shop:hover { transform: none; }
}
