html {
    font-size: 130%;
}

:root {
            --dark-olive: #3d4a3c;
            --warm-orange: #c8601a;
            --cream: #faf6ef;
            --white: #ffffff;
            --charcoal: #2d2d2d;
            --light-gray: #f5f5f5;
            --border-color: #e8e8e8;
        }

.ck-content h1, .ck-content h2, .ck-content h3, .ck-content h4, .ck-content h5, .ck-content h6 {
font-family: Georgia, serif;
            font-weight: 600;
            line-height: 1.2;
}

.ck-content button {
cursor: pointer;
            font-family: inherit;
            border: none;
            transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */

.ck-content .hero {
padding: 40px;
            background: var(--cream) !important;
            background-color: var(--cream) !important;
            position: relative;
            overflow: hidden;
}

.ck-content .hero-wrapper {
max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            gap: 60px;
            align-items: center;
}

.ck-content .hero-left {
position: relative;
            z-index: 2;
}

.ck-content .hero-left::before {
content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: url('https://fm-production-media.s3.us-east-1.amazonaws.com/untitled-design-35.png');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            border-radius: 50%;
            z-index: -1;
}

.ck-content .hero-content {
animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
}

.ck-content .hero h1 {
font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--dark-olive);
            line-height: 1.2;
}

.ck-content .hero .subhead {
font-size: 1.1rem;
            margin-bottom: 30px;
            font-weight: 700;
            line-height: 1.8;
            color: var(--dark-olive);
            text-shadow: 0 1px 4px rgba(255,255,255,0.9);
}

.ck-content .hero .price {
font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--warm-orange);
}

.ck-content .cta-button {
background-color: var(--dark-olive);
            color: var(--white);
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            display: inline-block;
            margin: 20px 10px 20px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(61, 74, 60, 0.3);
}

.ck-content .cta-button:hover {
background-color: var(--white);
            color: var(--dark-olive);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(61, 74, 60, 0.4);
            border: 2px solid var(--dark-olive);
}

.ck-content .cta-button.secondary {
background-color: transparent;
            border: 2px solid var(--dark-olive);
            color: var(--dark-olive);
}

.ck-content .cta-button.secondary:hover {
background-color: var(--dark-olive);
            color: var(--white);
}

.ck-content .hero-trust {
margin-top: 40px;
            font-size: 0.95rem;
            color: #555;
}

.ck-content .stars {
color: #ffc107;
            margin: 0 8px;
            letter-spacing: 2px;
}

.ck-content .hero-right {
display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 0.8s ease 0.2s both;
}

@keyframes fadeInRight {
from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
}

.ck-content .hero-image {
width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            object-fit: cover;
}

/* ===== TRUST BAR ===== */

.ck-content .trust-bar {
background-color: var(--cream);
            padding: 60px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            text-align: center;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
}

.ck-content .trust-item {
display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
}

.ck-content .trust-icon {
width: 160px;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.5rem;
}

.ck-content .trust-icon svg {
width: 160px;
            height: 160px;
}

.ck-content .trust-icon img {
width: 160px;
            height: 160px;
            object-fit: contain;
            border-radius: 0;
}

.ck-content .trust-item p {
font-weight: 700;
            color: var(--charcoal);
            font-size: 1.1rem;
            margin: 0;
}

/* ===== HOW IT WORKS ===== */

.ck-content .how-it-works {
padding: 80px 20px;
            background-color: var(--white);
}

.ck-content .section-header {
text-align: center;
            margin-bottom: 60px;
}

.ck-content .section-header h2 {
font-size: 2.2rem;
            color: var(--dark-olive);
            margin-bottom: 15px;
}

.ck-content .section-header p {
font-size: 1.1rem;
            color: #666;
            max-width: 500px;
            margin: 0 auto;
}

.ck-content .steps {
display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
}

.ck-content .step {
text-align: center;
            position: relative;
            transition: transform 0.3s ease;
}

.ck-content .step:hover {
transform: translateY(-8px);
}

.ck-content .step:not(:last-child)::after {
content: 'â';
            position: absolute;
            right: -35px;
            top: 120px;
            font-size: 2rem;
            color: var(--warm-orange);
            font-weight: bold;
}

@media (max-width: 768px) {
.ck-content .step:not(:last-child)::after {
content: 'â';
                right: auto;
                top: auto;
                bottom: -30px;
}
}

.ck-content .step-image {
width: 100%;
            aspect-ratio: 3/4;
            border-radius: 16px;
            object-fit: cover;
            margin-bottom: 20px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ck-content .step h3 {
font-size: 1.3rem;
            color: var(--dark-olive);
            margin-bottom: 10px;
}

.ck-content .step p {
color: #666;
            font-size: 0.95rem;
}

/* ===== WHAT'S INSIDE ===== */

.ck-content .whats-inside {
padding: 80px 20px;
            background-color: var(--cream);
}

.ck-content .whats-inside-container {
max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: flex-start;
}

.ck-content .category-cards {
display: flex;
            flex-direction: column;
            gap: 20px;
}

.ck-content .category-card {
background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
}

.ck-content .category-card:hover {
transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 12);
}

.ck-content .category-image {
width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
}

.ck-content .category-info {
padding: 20px;
            text-align: center;
}

.ck-content .category-name {
font-weight: 700;
            color: var(--dark-olive);
            font-size: 1rem;
            margin-bottom: 8px;
}

.ck-content .category-value {
font-size: 0.9rem;
            color: var(--warm-orange);
            font-weight: 600;
}

.ck-content .harvest-preview {
position: relative;
            background: var(--white);
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ck-content .harvest-preview-label {
font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #999;
            margin-bottom: 8px;
            display: block;
            font-weight: 600;
}

.ck-content .harvest-preview-image {
width: 100%;
            border-radius: 12px;
            object-fit: cover;
            display: block;
}

.ck-content .harvest-preview-caption {
margin-top: 16px;
            font-size: 0.95rem;
            color: #555;
            font-weight: 500;
            text-align: center;
}

.ck-content .harvest-value-callout {
margin-top: 16px;
            padding: 16px;
            background-color: rgba(200, 96, 26, 0.1);
            border-left: 4px solid var(--warm-orange);
            border-radius: 6px;
            text-align: center;
}

.ck-content .harvest-value-callout p {
font-weight: 700;
            color: var(--warm-orange);
            margin: 0;
            font-size: 1rem;
}

.ck-content .whats-inside-note {
text-align: center;
            margin-top: 50px;
            padding: 30px;
            background-color: var(--white);
            border-left: 4px solid var(--warm-orange);
            border-radius: 8px;
            font-style: italic;
            color: #555;
            font-size: 0.95rem;
}

/* ===== VALUE COMPARISON ===== */

.ck-content .value-comparison {
padding: 80px 20px;
            background-color: var(--white);
}

.ck-content .comparison-container {
max-width: 1200px;
            margin: 40px auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
}

.ck-content .comparison-card {
border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ck-content .comparison-card.natural-grocers {
background-color: var(--light-gray);
            border: 2px solid var(--border-color);
}

.ck-content .comparison-card.harvest-box {
background: linear-gradient(135deg, rgba(200, 96, 26, 0.05), rgba(61, 74, 60, 0.02));
            border: 2px solid var(--warm-orange);
}

.ck-content .comparison-card h3 {
font-size: 1.4rem;
            color: var(--dark-olive);
            margin-bottom: 25px;
}

.ck-content .comparison-card.harvest-box h3 {
color: var(--warm-orange);
}

.ck-content .comparison-line {
display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 0.95rem;
}

.ck-content .comparison-line:last-child {
border-bottom: 2px solid var(--charcoal);
            margin-top: 10px;
            padding-top: 20px;
            padding-bottom: 0;
            font-weight: 700;
            font-size: 1.1rem;
}

.ck-content .comparison-label {
color: #666;
}

.ck-content .comparison-value {
font-weight: 600;
            color: var(--charcoal);
}

.ck-content .comparison-card.harvest-box .comparison-value {
color: var(--warm-orange);
}

.ck-content .sourcing-title {
font-weight: 700;
            color: var(--dark-olive);
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 0.95rem;
}

.ck-content .sourcing-list {
list-style: none;
            margin: 0;
            padding: 0;
}

.ck-content .sourcing-list li {
padding: 10px 0 10px 25px;
            position: relative;
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
}

.ck-content .sourcing-list li::before {
content: 'â';
            position: absolute;
            left: 0;
            color: var(--warm-orange);
            font-weight: bold;
            font-size: 1.1rem;
}

.ck-content .comparison-card.natural-grocers .sourcing-list li::before {
content: 'â';
            color: #999;
}

.ck-content .comparison-card.natural-grocers .sourcing-list li {
color: #888;
}

.ck-content .savings-callout {
margin-top: 25px;
            padding: 20px;
            background-color: rgba(200, 96, 26, 0.15);
            border-radius: 8px;
            text-align: center;
            display: none;
}

.ck-content .comparison-card.harvest-box .savings-callout {
display: block;
}

.ck-content .savings-callout p {
font-weight: 700;
            color: var(--warm-orange);
            margin: 0;
            font-size: 1rem;
}

.ck-content .courtney-quote {
margin-top: 40px;
            padding: 10px 25px 25px;
            background-color: var(--white);
            border-left: 4px solid var(--warm-orange);
            border-radius: 8px;
            font-style: italic;
            color: #555;
            font-size: 0.475rem;
            line-height: 1.8;
}

.ck-content .courtney-quote::before {
content: '"';
            font-size: 3rem;
            color: var(--warm-orange);
            opacity: 0.3;
            display: block;
            line-height: 0.6;
            margin-bottom: -15px;
}

.ck-content .courtney-attribution {
margin-top: 15px;
            font-weight: 600;
            color: var(--dark-olive);
            font-style: normal;
    font-size: 0.72rem;
}

/* ===== TESTIMONIALS ===== */

.ck-content .testimonials {
padding: 80px 20px;
            background-color: var(--cream);
}

.ck-content .testimonial-grid {
display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 40px auto;
}

.ck-content .testimonial-card {
background-color: var(--white);
            padding: 0;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 0;
            align-items: stretch;
            overflow: hidden;
}

.ck-content .testimonial-card:hover {
transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ck-content .testimonial-photo {
width: 100%;
            height: 100%;
            border-radius: 0;
            object-fit: cover;
            flex-shrink: 0;
            box-shadow: none;
            display: block;
}

.ck-content .testimonial-content {
flex: 1;
            padding: 20px;
}

.ck-content .testimonial-card > p {
margin: 0;
            height: 30%;
            overflow: hidden;
            flex-shrink: 0;
}

.ck-content .star-rating {
color: #ffc107;
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 12px;
            display: block;
}

.ck-content .testimonial-text {
font-size: 0.95rem;
            color: #333;
            margin-bottom: 15px;
            font-style: italic;
            line-height: 1.6;
}

.ck-content .testimonial-author {
font-weight: 700;
            color: var(--dark-olive);
            font-size: 0.9rem;
            margin-bottom: 3px;
}

.ck-content .testimonial-location {
color: #888;
            font-size: 0.8rem;
}

/* ===== DELIVERY SECTION ===== */

.ck-content .delivery-section {
padding: 80px 20px;
            background-color: var(--white);
}

.ck-content .delivery-container {
max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            gap: 50px;
            align-items: center;
}

.ck-content .delivery-content h3 {
font-size: 2.4rem;
            color: var(--dark-olive);
            margin-bottom: 20px;
}

.ck-content .delivery-content p {
font-size: 1rem;
            color: #555;
            margin-bottom: 15px;
            line-height: 1.8;
}

.ck-content .delivery-areas {
margin-top: 25px;
}

.ck-content .delivery-areas h4 {
font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 12px;
            font-size: 1.9rem;
}

.ck-content .delivery-areas ul {
list-style: none;
            margin-top: 10px;
}

.ck-content .delivery-areas li {
padding: 10px 0;
            color: var(--dark-olive);
            padding-left: 35px;
            font-size: 1.1rem;
            position: relative;
            font-weight: 600;
}

.ck-content .delivery-areas li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--white);
    font-weight: bold;
    font-size: 0.55rem;
    background: var(--warm-orange);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
}

.ck-content .delivery-map-image {
width: 90%;
            border-radius: 16px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            object-fit: cover;
}

/* ===== LOCAL FARMS SPOTLIGHT ===== */

.ck-content .local-farms {
padding: 80px 20px;
            background-color: var(--cream);
}

.ck-content .farms-grid {
display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 40px auto;
}

.ck-content .farm-card {
background: var(--white);
            border: 2px solid var(--border-color);
            padding: 40px 20px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            box-shadow: 0 2px 10px rgba(61, 74, 60, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
}

.ck-content .farm-card:hover {
transform: translateY(-8px);
            box-shadow: 0 12px 28px rgba(61, 74, 60, 0.15);
            border-color: var(--warm-orange);
}

.ck-content .farm-logo {
width: 150px;
            height: 150px;
            object-fit: contain;
            margin-bottom: 20px;
}

.ck-content .farm-name {
font-weight: 600;
            color: var(--dark-olive);
            font-size: 0.95rem;
            line-height: 1.4;
}

/* ===== FOUNDERS SECTION ===== */

.ck-content .founders-section {
padding: 60px 20px;
            background-color: var(--white);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
}

.ck-content .founders-wrapper {
max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
            text-align: center;
}

.ck-content .founder-image {
width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ck-content .founders-text {
grid-column: 1 / -1;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            font-weight: 500;
}

.ck-content .founders-text strong {
color: var(--dark-olive);
}

/* ===== FAQ SECTION ===== */

.ck-content .faq {
padding: 80px 20px;
            background-color: var(--cream);
}

.ck-content .faq-container {
max-width: 800px;
            margin: 40px auto;
}

.ck-content .faq-item {
margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ck-content .faq-toggle {
display: none;
}

.ck-content .faq-question {
background-color: var(--white);
            padding: 20px 25px;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark-olive);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
            user-select: none;
            width: 100%;
            border: none;
            font-size: 1.1rem;
}

.ck-content .faq-question:hover {
background-color: var(--light-gray);
}

.ck-content .faq-question::after {
content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            font-weight: 300;
}

.ck-content .faq-toggle:checked ~ .faq-question::after {
transform: rotate(45deg);
}

.ck-content .faq-answer {
background-color: var(--white);
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
}

.ck-content .faq-toggle:checked ~ .faq-answer {
max-height: 500px;
            padding: 20px 25px;
}

/* ===== FINAL CTA ===== */

.ck-content .final-cta {
background: linear-gradient(135deg, var(--warm-orange), #a84c0f);
            padding: 80px 20px;
            text-align: center;
            color: var(--white);
}

.ck-content .final-cta h2 {
font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--white);
}

.ck-content .final-cta p {
font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
}

/* ===== TRUST FOOTER ===== */

.ck-content .trust-footer {
background-color: var(--white);
            padding: 40px 20px;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
}

.ck-content .badge {
display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
}

.ck-content .badge img {
width: 40px;
            height: auto;
            object-fit: contain;
}

.ck-content .badge-text {
display: flex;
            align-items: center;
            gap: 10px;
}

.ck-content .badge-text::before {
content: 'â';
            font-size: 1.2rem;
            color: var(--warm-orange);
            font-weight: bold;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
.ck-content .hero-wrapper {
grid-template-columns: 1fr;
                gap: 40px;
}

.ck-content .delivery-container {
grid-template-columns: 1fr;
                gap: 40px;
}

.ck-content .founders-wrapper {
grid-template-columns: 1fr 1fr;
}

.ck-content .whats-inside-container {
grid-template-columns: 1fr;
}

.ck-content .comparison-container {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.ck-content .hero h1 {
font-size: 2rem;
}

.ck-content .hero .subhead {
font-size: 1rem;
}

.ck-content .hero {
padding: 40px 20px;
}

.ck-content .section-header h2 {
font-size: 1.8rem;
}

.ck-content .steps {
gap: 20px;
}

.ck-content .comparison-table th, .ck-content .comparison-table td {
padding: 15px;
                font-size: 0.9rem;
}

.ck-content .final-cta h2 {
font-size: 1.8rem;
}

.ck-content .trust-bar {
gap: 20px;
                padding: 40px 20px;
}

.ck-content .trust-footer {
gap: 20px;
}

.ck-content .farms-grid {
grid-template-columns: repeat(2, 1fr);
}

.ck-content .founders-wrapper {
grid-template-columns: 1fr;
}

.ck-content .testimonial-card {
flex-direction: column;
                text-align: center;
                align-items: center;
}

.ck-content .testimonial-photo {
margin: 0 auto;
}
}

@media (max-width: 480px) {
.ck-content .hero h1 {
font-size: 1.5rem;
}

.ck-content .hero-wrapper {
gap: 30px;
}

.ck-content .testimonial-grid {
grid-template-columns: 1fr;
}

.ck-content .comparison-table {
font-size: 0.85rem;
}

.ck-content .comparison-table th, .ck-content .comparison-table td {
padding: 10px;
}

.ck-content .farms-grid {
grid-template-columns: 1fr;
}

.ck-content .trust-footer {
flex-direction: column;
                gap: 15px;
}
}
/* ===== ICON BACKGROUND FIX ===== */
.ck-content .trust-item:nth-child(1) img,
.ck-content .trust-item:nth-child(2) img,
.ck-content .trust-item:nth-child(3) img {
    mix-blend-mode: multiply;
}

/* ===== HARVEST BOX 2-COL LAYOUT ===== */

.ck-content section.whats-inside {
    float: left;
    width: 40%;
    box-sizing: border-box;
    overflow: visible;
}

.ck-content .harvest-box-shortcode.harvest-box-default {
    float: left;
    width: 60%;
    box-sizing: border-box;
    background-color: var(--cream);
    padding: 80px 40px 80px 20px;
}

.ck-content .whats-inside-note {
    clear: both;
}

/* ===== CATEGORY IMAGE ASPECT RATIO ===== */

.ck-content .category-image {
    aspect-ratio: 5/2;
}

/* ===== COMPACT CATEGORY CARDS (float layout) ===== */

.ck-content .category-info {
    padding: 8px 12px;
}

.ck-content .category-name {
    font-size: 0.82rem;
    margin-bottom: 3px;
}

.ck-content .category-value {
    font-size: 0.72rem;
    line-height: 1.3;
}

.ck-content .category-cards {
    gap: 8px;
}

/* Close gap: remove right padding from whats-inside so cards sit flush against form */
.ck-content section.whats-inside {
    padding-right: 0;
}

/* Harvest-box flush left edge */
.ck-content .harvest-box-shortcode.harvest-box-default {
    padding-left: 20px;
}

/* ===== WHATS-INSIDE CONTAINER: single-column now harvest-preview removed ===== */

.ck-content .whats-inside-container {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0;
    gap: 0;
}

/* Push the section header + cards to the right so cards sit flush against the form */
.ck-content section.whats-inside {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ck-content section.whats-inside .section-header {
    width: 100%;
    padding: 0 20px;
}

.ck-content section.whats-inside .whats-inside-container {
    width: 100%;
    padding: 0 0 0 20px;
}

/* === WHATS-INSIDE HEADER (spans full width above both columns) === */
.ck-content .whats-inside-header {
    text-align: center;
    padding: 50px 20px 30px;
    background-color: var(--cream, #faf7f2);
    clear: both;
    width: 100%;
    box-sizing: border-box;
}
.ck-content .whats-inside-header h2 {
    font-size: 2.2rem;
    color: var(--dark-olive, #4a5240);
    margin-bottom: 12px;
}
.ck-content .whats-inside-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* === CATEGORY IMAGES: 20% shorter (2.5 / 0.8 = 3.125) === */
.ck-content .category-image {
    aspect-ratio: 3.125 !important;
}

/* === WHATS-INSIDE: flex chain to fill harvest-box height === */
.ck-content section.whats-inside {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: 1500px;
}
.ck-content section.whats-inside .whats-inside-container {
    flex: 1;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 0 0 20px;
    width: 100%;
    box-sizing: border-box;
}
.ck-content .category-cards {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    gap: 0 !important;
}

/* === FIX WHITE STRIP: harvest-box inner container → cream === */
.ck-content .harvest-box-content {
    background-color: var(--cream, #faf6ef) !important;
}

/* === HERO BACKGROUND: increase visibility (opacity 0.15 → 0.42) === */
.ck-content .hero-left::before {
    opacity: 0.42 !important;
}

/* === TRUST BAR ICONS: double size for icons 1-3, +25% for Colorado Proud === */
.ck-content .trust-item:nth-child(1) img,
.ck-content .trust-item:nth-child(2) img,
.ck-content .trust-item:nth-child(3) img {
    width: 180px !important;
    height: 180px !important;
}
.ck-content .trust-item:nth-child(4) img {
    width: 113px !important;
    height: 113px !important;
}
.ck-content .trust-icon {
    margin-bottom: 12px;
}

/* === GLOBAL ROUNDED CORNERS === */
/* Category cards */
.ck-content .category-card {
    border-radius: 16px !important;
    overflow: hidden;
}
/* Harvest box form container */
.ck-content .harvest-box-content {
    border-radius: 16px !important;
    overflow: hidden;
}
/* Value comparison cards */
.ck-content .value-card,
.ck-content .comparison-card,
.ck-content [class*="card"] {
    border-radius: 16px !important;
}
/* Week info / order header box */
.ck-content .order-header,
.ck-content .week-info,
.ck-content .harvest-box-header {
    border-radius: 12px !important;
}
/* Select dropdowns */
.ck-content select,
.ck-content .form-select,
.ck-content .woo-select {
    border-radius: 10px !important;
}
/* Buttons */
.ck-content .cta-button,
.ck-content button,
.ck-content .btn {
    border-radius: 10px !important;
}
/* Trust bar items */
.ck-content .trust-item {
    border-radius: 16px !important;
}
/* How it works steps */
.ck-content .step,
.ck-content .step-card,
.ck-content [class*="step"] {
    border-radius: 16px !important;
}
/* General containers with box-shadow (likely cards) */
.ck-content [style*="box-shadow"],
.ck-content .note,
.ck-content .whats-inside-note {
    border-radius: 16px !important;
}

/* === FIX BROKEN â CHARACTERS === */
/* Remove broken arrow between How It Works step cards */
.ck-content .step:not(:last-child)::after {
    content: none !important;
    display: none !important;
}
@media (max-width: 768px) {
    .ck-content .step:not(:last-child)::after {
        content: none !important;
        display: none !important;
    }
}
/* Replace broken â bullet with proper arrow in sourcing lists */
.ck-content .sourcing-list li::before {
    content: '→' !important;
    font-size: 0.95rem !important;
}
.ck-content .comparison-card.natural-grocers .sourcing-list li::before {
    content: '→' !important;
    color: rgb(153, 153, 153) !important;
}
/* Fix delivery areas list bullets */
.ck-content .delivery-areas li::before {
    content: '→' !important;
}

/* WHITE STRIP FIX: remove top padding gap on harvest-box-shortcode */
.ck-content .harvest-box-shortcode {
    background-color: var(--cream, #faf6ef) !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.ck-content .harvest-box-shortcode.harvest-box-default {
    padding-top: 0 !important;
}

/* KILL empty paragraph gaps (e.g. CKEditor-inserted  before shortcodes) */
.ck-content p:empty {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    height: 0 !important;
}

/* HERO CIRCLE: scoot right, show more image, fill whitespace */
.ck-content .hero-left::before {
    left: 40px !important;
    top: -60px !important;
    width: 480px !important;
    height: 480px !important;
    background-position: 55% 30% !important;
}

/* COURTNEY QUOTE: shrink box, increase font size */
.ck-content .courtney-quote {
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.ck-content .courtney-quote p {
    font-size: 1.01rem !important;
    line-height: 1.75 !important;
}
.ck-content .farm-card p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* FAQ dropdown toggle */
.ck-content .faq-item {
    cursor: pointer;
}



.ck-content .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}


/* Details/Summary FAQ accordion */
html { scroll-behavior: smooth; }

.ck-content details.faq-item {
    cursor: pointer;
    list-style: none;
}

.ck-content details.faq-item summary.faq-question {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ck-content details.faq-item summary.faq-question::-webkit-details-marker,
.ck-content details.faq-item summary.faq-question::marker {
    display: none;
    content: '';
}

.ck-content details.faq-item summary.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--warm-orange);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 10px;
}

.ck-content details.faq-item[open] summary.faq-question::after {
    content: '\2212';
}

.ck-content details.faq-item .faq-answer {
    padding: 10px 25px 20px;
}

/* FAQ accordion toggle (JS-based) */
html { scroll-behavior: smooth; }

.ck-content .faq-item {
    cursor: pointer;
}

.ck-content .faq-item p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ck-content .faq-item p::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--warm-orange);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 10px;
}

.ck-content .faq-item.active p::after {
    content: '\2212';
}

.ck-content .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.ck-content .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 10px 25px 20px;
}

/* Rounded corners for all major sections */
.ck-content .hero,
.ck-content .trust-bar,
.ck-content .whats-inside-header,
.ck-content .whats-inside,
.ck-content .harvest-box-shortcode,
.ck-content .testimonials,
.ck-content .local-farms,
.ck-content .faq,
.ck-content .delivery {
    border-radius: 16px;
}

/* Match hero and trust-bar card widths */
.ck-content .trust-bar {
    padding: 40px !important;
    margin: 20px 0px;
}
/* Remove trust-bar borders to match hero */
.ck-content .trust-bar {
    border-top: none !important;
    border-bottom: none !important;
}
/* Mobile fix: stack harvest box sections vertically */
@media (max-width: 768px) {
    .ck-content section.whats-inside {
        float: none !important;
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    .ck-content .harvest-box-shortcode.harvest-box-default {
        float: none !important;
        width: 100% !important;
        padding: 30px 20px !important;
    }
    .ck-content .category-cards {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    .ck-content .category-card {
        width: 45% !important;
        min-width: 140px !important;
    }
}
/* Accepting Orders badge - white text + fit within container */
.harvest-box-shortcode .badge.bg-success {
    color: #ffffff !important;
    font-size: 0.75rem !important;
    white-space: nowrap !important;
    padding: 8px 16px !important;
}
.harvest-box-shortcode .harvest-box-content .row.align-items-center {
    flex-wrap: nowrap !important;
}
.harvest-box-shortcode .harvest-box-content .row .col-md-4.text-md-end {
    flex-shrink: 0 !important;
}
/* Hide page title and breadcrumb on Harvest Box page */
.page-title,
.page-header {
    display: none !important;
}