body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
    overflow-x: hidden;
    line-height: unset;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Libre Baskerville', serif;
    margin: 0;
}

p {
    margin: 0;
}

.post,
.page {
    margin: unset;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: unset;
    outline: none;
    border: none;
}

a:hover {
    text-decoration: none;
    outline: none;
}

a:visited {
    text-decoration: none;
    outline: none;
}

mark, ins {
	background-color: unset !important;
	background: unset !important;
}

:root {
    --primary-color: rgba(218, 10, 86, 1);
    --secondary-color: rgba(255, 247, 248, 1);
    --white: rgba(255, 255, 255, 1);
    --text-color: rgba(24, 25, 31, 1);
    --dark-text-color: rgba(82, 3, 32, 1);
    --grey-text-color: rgba(82, 85, 96, 1);
    --black: rgba(0, 0, 0, 1);
}

.ft-12 {
    font-size: 12px;
}

.ft-14 {
    font-size: 14px;
}

.ft-16 {
    font-size: 16px;
}

.ft-18 {
    font-size: 18px;
}

.ft-22 {
    font-size: 22px;
}

.ft-32 {
    font-size: 32px;
}

.ft-48 {
    font-size: 48px;
}

.fw-500 {
    font-weight: 500;
}

.fw-700 {
    font-weight: 700;
}

.lh-12 {
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    /* padding: 0 16px; */
    box-sizing: border-box;
}

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

/* top spots line */
.site-header .top-spots-line {
    background-color: var(--text-color);
    color: var(--white);
    height: var(--mdp-marquee-height, 40px);
    text-align: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.site-header .top-spots-line .spots-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Header marquee (single-line, infinite scroll) */
.site-header .top-spots-line .spots-content.mdp-marquee {
    width: 100%;
    justify-content: center;
    gap: 12px;
}

.site-header .top-spots-line .mdp-marquee__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.site-header .top-spots-line .mdp-marquee__viewport {
    /* flex: 1 1 auto; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
}

.site-header .top-spots-line .mdp-marquee__inner {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: none;
}

.site-header .top-spots-line .mdp-marquee__group {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex: 0 0 auto;
    padding-right: 56px;
}

.site-header .top-spots-line .mdp-marquee__group[aria-hidden="true"] {
    display: none;
}

.site-header .top-spots-line .mdp-marquee__text {
    display: inline-block;
}

.site-header .top-spots-line .mdp-marquee:hover .mdp-marquee__inner {
    animation-play-state: paused;
}

@keyframes mdp-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    .site-header .top-spots-line .mdp-marquee__inner {
        animation: mdp-marquee-scroll var(--mdp-marquee-duration, 20s) linear infinite;
    }

    .site-header .top-spots-line .mdp-marquee__group[aria-hidden="true"] {
        display: inline-flex;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header .top-spots-line .mdp-marquee__inner {
        animation: none;
        transform: none;
    }

    .site-header .top-spots-line .mdp-marquee__viewport {
        overflow-x: auto;
    }
}

/* Header Css */
.site-header {
    background-color: var(--white);
    box-shadow: 0px 1px 13px 0px rgba(0, 0, 0, 0.12);
}

.site-header .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 20px;
    gap: 20px;
    box-sizing: border-box;
}

.site-header .site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 20%;
}

.site-header .site-branding .custom-logo-link {
    margin-top: 5px;
}

.site-header .site-branding p {
    color: var(--text-color);
    text-transform: uppercase;
    line-height: 12px;
}

.site-header .main-navigation {
    width: 45%;
}

.site-header .header-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    border: unset;
    /* border: 1px solid rgba(218, 10, 86, 0.2); */
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
}

.site-header .header-menu-toggle__bar {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--dark-text-color);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header .main-navigation ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.site-header .main-navigation ul li a {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.46px;
}

.site-header .header-icons {
    width: 15%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.site-header .header-icons .header-cart,
.site-header .header-icons .header-account {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-header .header-icons a .header-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.46px;
}

.site-header .header-icons .header-cart .cart-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.site-header .header-icons .header-cart .cart-icon-wrap img {
    display: block;
}

.site-header .header-icons .header-cart .cart-count {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    z-index: 2;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.site-header .header-icons .header-cart .cart-count[data-count="0"] {
    display: none;
}

.site-header.is-nav-open .header-menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .header-menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.site-header.is-nav-open .header-menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#top-header-menu .current-menu-item>a {
    color: var(--primary-color);
    position: relative;
    text-decoration: none;
}

#top-header-menu .current-menu-item>a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60%;
    height: 3px;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Footer */
.site-footer {
    background-image: url('../images/ft-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 44px 0 70px;
}

.site-footer .footer-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.site-footer .footer-content .ft-site-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer .footer-content .ft-site-content .ft-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer .footer-content .ft-site-content .ft-logo .custom-logo {
    width: 58px;
    height: auto;
}

.site-footer .footer-content .ft-site-content .ft-logo p {
    color: var(--text-color);
    text-transform: uppercase;
    line-height: 12px;
}

.site-footer .footer-content .ft-site-content .ft-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.site-footer .footer-content .ft-menu-content {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 44px;
    width: 100%;
}

.site-footer .footer-content .ft-menu-content .ft-menu {
    flex: 0 0 280px;
}

.site-footer .footer-content .ft-menu-content .ft-menu .footer-menu li a,
.site-footer .footer-content .ft-menu-content .ft-policy-menu .policy-menu li a {
    color: var(--dark-text-color);
    font-size: 16px;
    line-height: 32px;
}

.site-footer .footer-content .ft-menu-content .ft-policy-menu {
    flex: 0 0 170px;
}

.site-footer .footer-content .ft-menu-content .newsletter-form {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    width: 100%;
}

.site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-box h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-field {
    position: relative;
}

.site-footer .footer-content .ft-menu-content .newsletter-form .wpcf7-spinner {
    margin: 0;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 3;
    pointer-events: none;
}

.site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-field .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

/* Keep the submit button from shifting when CF7 shows the validation tip. */
.site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-field .wpcf7-not-valid-tip {
    position: absolute;
    left: 20px;
    top: calc(100% + 8px);
    margin: 0;
    font-size: 12px;
    pointer-events: none;
}

/* CF7 default response box changes the footer UI on click; keep it hidden for invalid states. */
.site-footer .footer-content .ft-menu-content .newsletter-form .wpcf7 form.invalid .wpcf7-response-output,
.site-footer .footer-content .ft-menu-content .newsletter-form .wpcf7 form.failed .wpcf7-response-output,
.site-footer .footer-content .ft-menu-content .newsletter-form .wpcf7 form.aborted .wpcf7-response-output,
.site-footer .footer-content .ft-menu-content .newsletter-form .wpcf7 form.spam .wpcf7-response-output {
    display: none;
}

/* Show a styled success message without breaking layout. */
.site-footer .footer-content .ft-menu-content .newsletter-form .wpcf7 form.sent .wpcf7-response-output {
    display: block;
    margin: 12px 0 0;
    padding: 10px 12px;
    border: 1px solid rgba(218, 10, 86, 0.3);
    background: rgba(218, 10, 86, 0.06);
    color: var(--dark-text-color);
    border-radius: 12px;
    font-size: 12px;
}

.site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-field input[type="email"] {
    width: 100%;
    padding: 14px 72px 14px 20px;
    border-radius: 22px;
    border: 1px solid rgba(231, 232, 242, 1);
    font-size: 14px;
    color: var(--text-color);
    outline: none;
}

.site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 48.31px;
    border-radius: 22px;
    background: #d81b60;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Bug 15: ensure the submit button is always tappable on mobile */
    z-index: 4;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
}
.site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-btn img,
.site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-btn svg {
    pointer-events: none;
}

.site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-btn:disabled {
    opacity: 1;
    cursor: progress;
}

/* Hero section */
#hero-section {
    position: relative;
    background-image: url('../images/banner-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0 77px;
}

#hero-section .container {
    max-width: 1332px;
    margin: 0 auto;
}

#hero-section .hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

#hero-section .hero-section .hero-content {
    width: 65%;
}

#hero-section .hero-section .hero-content .hero-image.display-mobile {
    display: none;
}

#hero-section .hero-section .hero-content .hero-title {
    line-height: 78px;
    color: var(--white);
}

#hero-section .hero-section .hero-content .hero-description {
    line-height: 22px;
    color: var(--secondary-color);
    margin-bottom: 33px;
    max-width: 658px;
    width: 100%;
}

#hero-section .hero-section .hero-content .hero-btn {
    display: flex;
    gap: 10px;
}

#hero-section .hero-section .hero-content .hero-btn .hero-button {
    line-height: 22px;
    color: var(--white);
    padding: 12px;
    max-width: 227px;
    width: 100%;
    text-align: center;
}

#hero-section .hero-section .hero-content .hero-btn .hero-btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

#hero-section .hero-section .hero-content .hero-btn .hero-btn-secondary {
    background-color: transparent;
    border: 1px solid var(--white);
}

.hero-image {
    position: relative;
    width: 35%;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
}

/* .hero-image .banner-pro-card {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 17.37px;
    background-color: var(--white);
    padding: 11.47px 15.69px;
    width: 100%;
    max-width: 278px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
    transform-origin: center center;
}

.hero-image .banner-pro-card.card-1 {
    z-index: 2;
    top: 145px;
    left: -24px;
    transform: rotate(-7.17deg);
}

.hero-image .banner-pro-card.card-2 {
    z-index: 1;
    top: 80px;
    left: 150px;
    transform: rotate(11.73deg);
}
.hero-image .banner-pro-card .banner-pro-card-image {
    position: relative;
}

.hero-image .banner-pro-card .banner-pro-card-image img {
    max-width: 100%;
    height: auto;
}

.hero-image .banner-pro-card .banner-pro-card-image .pro-b-main {
    background: var(--secondary-color);
    height: auto;
    width: 100%;
    max-width: 249px;
    height: 226px;
    border-radius: 15.29px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 9px;
}

.hero-image .banner-pro-card .banner-pro-card-image .pro-b-main-trans-1 img {
    transform: rotate(7.17deg);
}

.hero-image .banner-pro-card .banner-pro-card-image .pro-b-main-trans-2 img {
    transform: rotate(-11.73deg);
}

.hero-image .banner-pro-card .banner-pro-card-image .pro-b-overlay {
    position: absolute;
    top: 7px;
    right: 8px;
    background: var(--white);
    height: auto;
    width: 100%;
    max-width: 43.08px;
    max-height: 35.44px;
    border-radius: 8.34px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .banner-pro-card .pro-card-content .pro-card-title {
    font-size: 16.68px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 20px;
    margin-bottom: 13.57px;
}

.hero-image .banner-pro-card .pro-card-content .pro-card-description {
    font-size: 12.51px;
    line-height: 120%;
    font-weight: 600;
    color: var(--black);
} */

/* feature section */
.features-section {
    padding: 62px 0;
}

.features-section .features-content {
    box-shadow: 0px 8px 42px 0px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.features-section .features-content .features-con-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1044px;
    margin: 0 auto;
}

.features-section .features-content .features-con-container .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
    padding: 25px 0px;
    border-radius: 20px;
    background-color: var(--white);
    width: 100%;
}

.features-section .features-content .features-con-container .feature-item p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
}

.what-you-need {
    padding: 48px 0;
    background-color: var(--secondary-color);
    width: 100%;
}

.what-you-need .container {
    max-width: 1217px;
    margin: 0 auto;
}

.what-you-need .what-you-need-content h2 {
    color: var(--dark-text-color);
    text-align: center;
    margin-bottom: 12px;
}

.what-you-need .what-you-need-content p {
    color: var(--grey-text-color);
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
}

.what-you-need .what-you-need-content .wyn-card-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin: 23px 0px 72.5px 0px;
}

.what-you-need .what-you-need-content .wyn-card-container .wyn-card {
    background-color: var(--white);
    border-radius: 17.37px;
    padding: 9.73px 14.59px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    width: 100%;
    max-width: 278px;
    min-height: 308px;
}

.what-you-need .what-you-need-content .wyn-card-container .wyn-card .wyn-card-content .wyn-card-title {
    text-align: left;
    color: var(--text-color);
    font-size: 16.68px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.what-you-need .what-you-need-content .wyn-card-container .wyn-card .wyn-card-content .wyn-card-description {
    text-align: left;
    color: var(--grey-text-color);
    font-size: 12.51px;
    line-height: 1.2;
    font-weight: 600;
}

.what-you-need .what-you-need-content .wyn-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 0;
    width: 100%;
    max-width: 227px;
    text-align: center;
    margin: 0 auto;
}

.what-you-need .what-you-need-content .wyn-btn .wyn-button {
    line-height: 19px;
    font-weight: 600;
}

.what-you-need .what-you-need-content .featured-farm {
    margin-top: 74px;
}

.what-you-need .what-you-need-content .featured-farm h3 {
    color: var(--dark-text-color);
    text-align: center;
    margin-bottom: 12px;
}

.what-you-need .what-you-need-content .featured-farm p {
    color: var(--grey-text-color);
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
}

.what-you-need .what-you-need-content .featured-farm-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 1180px) {
    .what-you-need .what-you-need-content .featured-farm-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .what-you-need .what-you-need-content .featured-farm-list {
        grid-template-columns: 1fr;
    }
}

.what-you-need .what-you-need-content .featured-farm-card {
    background-color: var(--white);
    border-radius: 17.37px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0px 8px 42px 0px rgba(0, 0, 0, 0.05);
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-media {
    width: 100%;
    max-width: none;
    flex-shrink: 0;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-media a {
    display: block;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--dark-text-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-title a {
    color: var(--dark-text-color);
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-title img {
    width: 18px;
    height: 18px;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-location {
    margin-top: 4px;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    text-align: left;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-btn {
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 16px;
    margin-top: auto;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    white-space: normal;
    border-radius: 10px;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-description {
    margin-top: 8px;
    color: var(--grey-text-color);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    flex: 1 1 auto;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-badges {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-badges span {
    background-color: rgba(240, 255, 232, 1);
    color: rgba(40, 120, 2, 1);
    border-radius: 37px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 139px;
    width: 100%;
    text-align: center;
}

/* How buying works */
.how-buying-works {
    padding: 62px 0;
}

.how-buying-works .how-buying-works-content {
    box-shadow: 0px 8px 42px 0px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 42px 0;
}

.how-buying-works .how-buying-works-content h2 {
    color: var(--dark-text-color);
    text-align: center;
    margin-bottom: 37px;
}

.how-buying-works .how-buying-works-content .how-buying-works-steps {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 958px;
    margin: 0 auto;
    gap: 18%;
}

.how-buying-works .how-buying-works-content .how-buying-works-steps::before {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    top: 42px;
    border-top: 2px dashed rgba(218, 10, 86, 0.3);
    z-index: 0;
}

.how-buying-works .how-buying-works-content .how-buying-works-steps .step-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 19px;
}

.how-buying-works .how-buying-works-content .how-buying-works-steps .step-item p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
}

.how-buying-works .how-buying-works-content .how-buying-works-steps .step-item .step-icon-count {
    position: relative;
}

.how-buying-works .how-buying-works-content .how-buying-works-steps .step-item .step-icon-count span {
    position: absolute;
    right: 0px;
    height: 22px;
    width: 22px;
    background-color: var(--dark-text-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* sell through section css */
.sell-through-section {
    padding: 61px 0;
    background-color: var(--secondary-color);
}

.sell-through-section .sell-through-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sell-through-section .sell-through-container .sell-through-content {
    width: 60%;
}

.sell-through-section .sell-through-container .sell-through-content h2 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.sell-through-section .sell-through-container .sell-through-content p {
    color: var(--grey-text-color);
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 46px;
    max-width: 620px;
}

.sell-through-section .sell-through-container .sell-through-content ul li {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 30px;
}

.sell-through-section .sell-through-container .sell-through-content .sell-through-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px;
    width: 100%;
    max-width: 212px;
    text-align: center;
    margin-top: 46px;
}

.sell-through-section .sell-through-container .sell-through-content .sell-through-btn .sell-button {
    line-height: 19px;
    font-weight: 600;
    color: var(--white);
}

.sell-through-section .sell-through-container .sell-through-image {
    width: 40%;
}

.sell-through-section .sell-through-container .sell-through-image img {
    max-width: 100%;
    height: auto;
}

.sell-through-section .sell-through-container .sell-through-image.display-mobile {
    display: none;
}

/* Ready to shop section */
.ready-to-shop {
    padding: 50px 0px 80px 0px;
    background: url('../images/ready-to-shop-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.ready-to-shop .ready-to-shop-content {
    max-width: 651px;
    margin: 0 auto;
}

.ready-to-shop .ready-to-shop-content h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 12px;
    line-height: 78px;
}

.ready-to-shop .ready-to-shop-content p {
    color: var(--white);
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 33px;
}

.ready-to-shop .ready-to-shop-content .ready-to-shop-btn {
    text-align: center;
    background-color: var(--white);
    padding: 16px 0px;
    max-width: 227px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 7px 18.1px 0px rgba(0, 0, 0, 0.25);
}

.ready-to-shop .ready-to-shop-content .ready-to-shop-btn .ready-button {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: var(--primary-color);
}

/* Contact us page */
.contact-us-section {
    margin-top: 48px;
}

.contact-us-section .contact-title {
    text-align: center;
    background-color: var(--secondary-color);
    position: relative;
    margin-bottom: 48px;
}

.contact-us-section .contact-title h1 {
    color: var(--primary-color);
    padding: 39px 0 35px;
    line-height: 55px;
    letter-spacing: 0.46px;
    font-weight: 700;
}

.contact-us-section .contact-title .con-primary {
    width: 100%;
    max-width: 1082px;
    height: 51px;
    background-color: var(--primary-color);
    margin: 0 auto;
    margin-bottom: 48px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-info .contact-us-info {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    /* gap: 10%; */
    width: 100%;
    margin-bottom: 46px;
    margin-top: 80px;
}

/* Farm archive title (uses contact-style layout with unique classes) */
.mdp-archive-title-section {
    margin-top: 48px;
}

.mdp-archive-title-section .mdp-archive-title {
    text-align: center;
    background-color: var(--secondary-color);
    position: relative;
    margin-bottom: 48px;
}

.mdp-archive-title-section .mdp-archive-title h1 {
    color: var(--primary-color);
    padding: 39px 0 35px;
    line-height: 55px;
    letter-spacing: 0.46px;
    font-weight: 700;
}

.mdp-archive-title-section .mdp-archive-title .mdp-archive-title__bar {
    width: 95%;
    max-width: 1082px;
    height: 51px;
    background-color: var(--primary-color);
    margin: 0 auto;
    margin-bottom: 48px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-info .contact-us-info .con {
    width: 100%;
}

.contact-info .contact-us-info .con.con-email {
    max-width: 266px;
}

.contact-info .contact-us-info .con.con-phone,
.contact-info .contact-us-info .con.con-address {
    max-width: 261px;
}

.contact-info .contact-us-info .con.con-social {
    max-width: 192px;
}

.contact-info .contact-us-info .con img {
    margin-bottom: 24px;
}

.contact-info .contact-us-info .con.con-social .social-links img {
    margin-bottom: unset;
}

.contact-info .contact-us-info .con.con-social .social-links {
    display: flex;
    justify-content: space-between;
}

.contact-info .contact-us-info .con h3 {
    color: var(--black);
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-info .contact-us-info .con a,
.contact-info .contact-us-info .con p {
    color: var(--grey-text-color);
    font-size: 22px;
    line-height: 1.3;
}

.contact-form-section {
    padding-bottom: 39px;
}

.contact-form-section .contact-form-container {
    width: 100%;
    text-align: center;
    border-radius: 22px;
    box-shadow: 0px 0px 3.2px 0px rgba(53, 54, 55, 0.1);
}

.contact-form-section .contact-form-container .contact-form-content {
    background: url('../images/contact-frm-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0;
    border-top-right-radius: 22px;
    border-top-left-radius: 22px;
}

.contact-form-section .contact-form-container .contact-form-content h2 {
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-form-section .contact-form-container .contact-form-content ul li {
    list-style-type: disc;
    color: var(--white);
    font-size: 18px;
    line-height: 195%;
    list-style-position: inside;
    text-align: center;
    padding: 0;
}

.custom-contact-form {
    max-width: 862px;
    margin: 0 auto;
    padding: 36px 0 19px;
    text-align: left;
}

.custom-contact-form .wpcf7 form {
    margin: 0;
    padding: 16px;
}

.custom-contact-form .form-row {
    margin-bottom: 18px;
}

.custom-contact-form .two-col {
    display: flex;
    gap: 26px;
}

.custom-contact-form .two-col .form-group {
    width: 50%;
}

.custom-contact-form .form-group label {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    /* paragraph-spacing: 16px; */
    color: rgba(51, 63, 81, 1);
    margin-bottom: 10px;
    font-weight: 500;
}

.custom-contact-form .form-group label .required {
    color: var(--primary-color) !important;
}

.custom-contact-form input:not([type="submit"]):not([type="checkbox"]):not([type="file"]),
.custom-contact-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid rgba(213, 218, 225, 1);
    border-radius: 8px;
    background: var(--white);
    color: rgba(51, 63, 81, 1);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
    color: rgba(102, 112, 133, 1);
    opacity: 1;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
    border-color: #b8becb;
    box-shadow: 0 0 0 2px rgba(218, 10, 86, 0.08);
}

.custom-contact-form textarea {
    min-height: 128px;
    height: 128px;
    resize: vertical;
}

.custom-contact-form .checkbox-row {
    margin-top: -2px;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.3;
    color: #2b3551;
}

.custom-contact-form .checkbox-row span {
    margin: unset;
}

.custom-contact-form .checkbox-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 1.3;
    margin: 0;
}

.custom-contact-form .checkbox-row input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--primary-color);
}

.custom-contact-form .file-upload-field {
    border: 1px dashed rgba(213, 218, 225, 1);
    border-radius: 10px;
    padding: 42px 20px;
    text-align: center;
    min-height: 128px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: var(--white);
}

.custom-contact-form .file-upload-field::before {
    content: "";
    width: 22px;
    height: 22px;
    background-image: url('../images/add-file.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.custom-contact-form .file-upload-field::after {
    content: "Add a File";
    font-size: 16px;
    line-height: 24px;
    color: rgba(102, 112, 133, 1);
    position: absolute;
    left: 50%;
    top: 64px;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
}

.custom-contact-form .file-upload-field.has-file::after {
    content: attr(data-file-name);
}

.custom-contact-form .file-upload-field .wpcf7-form-control-wrap,
.custom-contact-form .file-upload-field .wpcf7-form-control-wrap label {
    width: 100%;
    height: 100%;
}

.custom-contact-form .file-upload-field input[type="file"] {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    min-height: auto;
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.custom-contact-form .submit-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
    position: relative;
}

.custom-contact-form .submit-row input[type="submit"] {
    background: var(--primary-color);
    color: var(--white);
    border: 0;
    border-radius: 0;
    min-width: 354px;
    height: 56px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    flex: 0 0 auto;
}

.custom-contact-form .submit-row input[type="submit"]:hover {
    opacity: 0.92;
}

.custom-contact-form .submit-row .wpcf7-spinner {
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.wpcf7 form.submitting input[type="submit"],
.wpcf7 form.submitting button[type="submit"] {
    pointer-events: none;
    opacity: 0.78;
    cursor: progress;
}

.wpcf7 form.submitting .submit-row,
.wpcf7 form.submitting .trellis-form-submit {
    cursor: progress;
}

.custom-contact-form .wpcf7-not-valid-tip {
    font-size: 14px;
    margin-top: 6px;
}

.custom-contact-form .wpcf7 form .wpcf7-response-output {
    margin: 14px 0 0;
    font-size: 14px;
}

/* Single farm page css */
.farm-top-banner {
    padding: 13px 0px 53px 0px;
    background-color: var(--secondary-color);
}

.farm-top-banner.has-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.farm-top-banner.has-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.86);
}

.farm-top-banner.has-banner .container {
    position: relative;
    z-index: 1;
}

.farm-top-banner h1 {
    line-height: 78px;
    text-align: center;
    color: var(--dark-text-color);
}

.farm-top-banner .farm-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
}

.farm-top-banner .farm-flex .verified-badge {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: rgba(40, 120, 2, 1);
}

.farm-top-banner .farm-flex .verified-flex {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(240, 255, 232, 1);
    padding: 10px;
    border-radius: 999px;
    position: absolute;
    right: 10%;
    top: 24%;
}

.farm-top-banner p {
    color: var(--grey-text-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    max-width: 719px;
    text-align: center;
    margin: 0 auto;
}

.farm-top-banner .btn-flex {
    max-width: 227px;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 13px 0;
    max-height: 48px;
    text-align: center;
    margin: 46px auto 0px;
}

.farm-top-banner .btn-flex .farm-btn {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
}

.farm-highlights {
    padding: 62px 0;
}

.farm-highlights .highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.farm-highlights .highlight-grid .highlight-box {
    background-color: var(--white);
    border-radius: 12px;
    padding: 44px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 8px 42px 0px rgba(0, 0, 0, 0.05);
}

.farm-highlights .highlight-grid .highlight-box img,
.farm-highlights .highlight-grid .highlight-box .farm-highlight-card__icon {
    margin-bottom: 20px;
}

.farm-highlights .highlight-grid .highlight-box .farm-highlight-card__icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.farm-highlights .highlight-grid .highlight-box h4,
.farm-highlights .highlight-grid .highlight-box .farm-highlight-card__title {
    color: var(--text-color);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
}

.farm-highlights .highlight-grid .highlight-box p,
.farm-highlights .highlight-grid .highlight-box .farm-highlight-card__meta {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--grey-text-color);
    text-align: center;
    font-weight: 600;
}

@media (max-width: 575px) {
    .farm-highlights .highlight-grid {
        grid-template-columns: 1fr;
    }
}

.about-farm {
    background-color: var(--secondary-color);
    padding: 42px 41px 0px 41px;
    max-width: 1240px;
    border-radius: 8px;
    margin: 0 auto;
}

.about-farm .about-flex .about-text h2 {
    color: var(--dark-text-color);
    font-size: 48px;
    font-weight: 700;
    line-height: 68px;
}

.about-farm .about-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about-farm .about-flex .about-text {
    width: 62%;
}

.about-farm .about-flex .about-text p {
    color: var(--grey-text-color);
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.about-farm .about-flex .about-text .info-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.about-farm .about-flex .about-text .info-list li {
    display: flex;
    align-items: center;
    gap: 13px;
}

.about-farm .about-flex .about-image {
    width: 38%;
}

.farm-flex-wrapper {
    padding: 62px 0px;
}

.farm-flex-wrapper .container {
    display: flex;
    gap: 16px;
}

.farm-flex-wrapper .container .product-standards {
    box-shadow: 0px 8px 42px 0px rgba(0, 0, 0, 0.05);
    width: 50%;
    padding: 16px 65px 38px;
    border-radius: 8px;
    background-color: var(--white);
}

.farm-flex-wrapper .container .farm-policies {
    box-shadow: 0px 8px 42px 0px rgba(0, 0, 0, 0.05);
    width: 50%;
    padding: 16px 33px;
    border-radius: 8px;
    background-color: var(--white);
}

.farm-flex-wrapper .container .product-standards h3 {
    margin-bottom: 32px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-text-color);
    text-align: center;
}

.farm-flex-wrapper .container .farm-policies h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-text-color);
    text-align: center;
    margin-bottom: 16px;
}

.farm-flex-wrapper .container .product-standards .standard-item-flex {
    display: flex;
    justify-content: space-between;
}

.farm-flex-wrapper .container .product-standards .standard-item-flex .standard-item:first-child h4 {
    width: 100%;
    max-width: 123px;
    background-color: rgba(240, 255, 232, 1);
    border-radius: 4px;
    text-align: center;
    padding: 4px 14px;
    color: rgba(40, 120, 2, 1);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Josefin Sans', sans-serif;
}

.farm-flex-wrapper .container .product-standards .standard-item-flex .standard-item:last-child h4 {
    width: 100%;
    max-width: 123px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    text-align: center;
    padding: 4px 14px;
    color: var(--primary-color);
    margin-bottom: 21px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Josefin Sans', sans-serif;
}

.farm-flex-wrapper .container .product-standards .standard-item-flex .standard-item ul {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.farm-flex-wrapper .container .product-standards .standard-item-flex .standard-item ul li {
    color: var(--grey-text-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.farm-flex-wrapper .container .farm-policies .policy-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 23px;
    width: 100%;
}

.farm-flex-wrapper .container .farm-policies .policy-item .policy-item-icon {
    width: 2%;
}

.farm-flex-wrapper .container .farm-policies .policy-item .policty-item-con {
    width: 98%;
}

.farm-flex-wrapper .container .farm-policies .policy-item:last-child {
    margin-bottom: unset;
}

.farm-flex-wrapper .container .farm-policies .policy-item .policty-item-con p:first-child {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color);
}

.farm-flex-wrapper .container .farm-policies .policy-item .policty-item-con p:last-child {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--grey-text-color);
}

.farm-products {
    padding-bottom: 99px;
}

.farm-products h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 18px;
}

.farm-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.farm-product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    border: 1px solid rgba(222, 224, 230, 1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(82, 3, 32, 0.06);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.farm-product-card:hover,
.farm-product-card:focus-within {
    border-color: rgba(218, 10, 86, 1);
    box-shadow: 0 10px 24px rgba(82, 3, 32, 0.08);
}

.farm-product-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 158px;
    padding: 14px 0px;
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(241, 228, 232, 1);
}

.farm-product-card__media img {
    width: auto;
    max-width: 100%;
    max-height: 156px;
    object-fit: contain;
}

.farm-product-card__placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(82, 3, 32, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
}

.farm-product-card__placeholder img {
    width: 32px;
    height: 32px;
    opacity: 0.55;
}

.farm-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 12px 14px 14px;
}

.farm-product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.farm-product-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 17px;
    padding: 2px 4px;
    border-radius: 999px;
    background: rgba(240, 255, 232, 1);
    color: rgba(40, 120, 2, 1);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
}

.farm-product-card__badge img {
    width: 10px;
    height: 10px;
    object-fit: contain;
}

.farm-product-card__badge.is-out-of-stock {
    background: rgba(255, 109, 91, 0.14);
    color: rgba(216, 72, 52, 1);
}

.farm-product-card__badge.is-fruit {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.farm-product-card__delivery {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap;
}

.farm-product-card__title {
    margin: 0 0 6px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: rgba(82, 3, 32, 1);
}

.farm-product-card__title a {
    color: inherit;
}

.farm-product-card__farm {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
    color: rgba(82, 3, 32, 1);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}

.farm-product-card__farm img {
    width: 14px;
    height: 14px;
}

.farm-product-card__farm img.farm-product-card__organic-seal {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-left: 2px;
}

.mdp-single-product__organic-seal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 4px;
    padding: 6px 10px 6px 6px;
    border: 1px solid rgba(82, 3, 32, 0.15);
    border-radius: 999px;
    background: rgba(82, 3, 32, 0.03);
    font-size: 13px;
    font-weight: 600;
    color: rgba(82, 3, 32, 1);
}

.mdp-single-product__organic-seal img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.farm-product-card__variation {
    margin-bottom: 12px;
    color: var(--dark-text-color);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.farm-product-card__variation-label {
    color: var(--grey-text-color);
}

.farm-product-card__variation-value {
    color: var(--grey-text-color);
}

.farm-product-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(236, 236, 236, 1);
}

.farm-product-card__price-wrap {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.farm-product-card__price {
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}
.farm-product-card__price del {
    color: var(--grey-text-color);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}
.farm-product-card__price .woocommerce-Price-amount {
    color: inherit;
}

.farm-product-card__price-suffix {
    color: rgba(179, 164, 169, 1);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.farm-product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    min-height: 30px;
    padding: 4px 14px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.farm-product-card__button.is-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.farm-product-card__button.is-out-of-stock {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.farm-product-card__button:hover {
    text-decoration: none;
}

.farm-product-card:hover .farm-product-card__button.is-primary,
.farm-product-card:focus-within .farm-product-card__button.is-primary,
.farm-product-card__button.is-primary:hover {
    background: rgba(187, 9, 74, 1);
    border-color: rgba(187, 9, 74, 1);
    color: #fff;
}

.farm-product-card__button.is-out-of-stock:hover {
    background: var(--primary-color);
    color: #fff;
}

.farm-product-card__notify {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}

.farm-product-card__notify-form {
    display: flex;
    align-items: stretch;
    gap: 4px;
}

.farm-product-card__notify-form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 4px 8px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.2;
}

.farm-product-card__notify-form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(218, 10, 86, 0.25);
}

.farm-product-card__notify-form button[type="submit"] {
    padding: 4px 10px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.farm-product-card__notify-form button[type="submit"]:hover {
    background: rgba(187, 9, 74, 1);
}

.farm-product-card__notify-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.farm-product-card__notify-msg {
    font-size: 12px;
    line-height: 1.3;
    color: #444;
}

.farm-product-card__notify-msg.is-success {
    color: #1b6b34;
}

.farm-product-card__notify-msg.is-error {
    color: #b8084a;
}

/* Dragon Fruit Trellis page */
.trellis-page {
    padding: 26px 0 70px;
}

.trellis-page .trellis-breadcrumb {
    margin-bottom: 14px;
}

.trellis-page .trellis-breadcrumb a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.trellis-page .trellis-breadcrumb span {
    margin: 0 4px;
    font-size: 16px;
    color: var(--text-color);
}

.trellis-page .trellis-breadcrumb span:last-child {
    color: rgba(193, 53, 18, 1);
}

.trellis-page .trellis-hero {
    /* background: var(--white); */
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    background: url(../images/trellis-about.png);
    background-repeat: no-repeat;
    background-position: right;
    height: 413px;
    width: 100%;
}

.trellis-page .trellis-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--primary-color);
    color: var(--white);
    ;
    padding: 41px 0px 0px 27px;
    position: relative;
    z-index: 2;
    width: 945px;
    height: 413px;
    clip-path: polygon(0 0, 100% 0, 58% 100%, 0% 100%);
    filter: drop-shadow(0 10px 5.1px rgba(0, 0, 0, 0.25));
}

/* shadow layer */
.trellis-page .trellis-hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 58% 100%, 0% 100%);
    z-index: -1;
    filter: drop-shadow(0 10px 5.1px rgba(0, 0, 0, 0.25));
}

.trellis-page .trellis-hero-content h1 {
    font-size: 26px;
    letter-spacing: 0.46px;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 665px;
}

.trellis-page .trellis-hero-content h2 {
    font-size: 20px;
    letter-spacing: 0.46px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(243, 210, 121, 1);
    max-width: 665px;
}

.trellis-page .trellis-hero-content p {
    font-size: 18px;
    line-height: 24px;
    margin-top: 12px;
    max-width: 665px;
}

.trellis-page .trellis-hero-thumbs {
    display: flex;
    gap: 30px;
    margin-top: 35px;
}

.trellis-page .trellis-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
}

.trellis-page .trellis-included {
    padding: 38px 0 28px;
}

.trellis-page .trellis-included h3,
.trellis-page .trellis-showcase h3 {
    text-align: center;
    color: #4d001f;
    font-size: 36px;
    margin-bottom: 20px;
}

.trellis-page .trellis-included-grid {
    display: flex;
    /* grid-template-columns: repeat(5, 1fr); */
    gap: 14px;
}

.trellis-page .trellis-card {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 20px 10px 21px;
    text-align: center;
    min-height: 204px;
    max-width: 232px;
    box-shadow: 0 1px 6px 0px rgba(218, 10, 86, 0.16);
}

.trellis-card:nth-child(odd) {
    margin-bottom: 26px;
}

.trellis-card:nth-child(even) {
    margin-top: 26px;
}

.trellis-page .trellis-card img {
    margin-bottom: 6px;
}

.trellis-page .trellis-card p {
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color);
}

.trellis-page .trellis-showcase {
    padding: 24px 0 36px;
}

.trellis-page .trellis-showcase-slider {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    overflow: hidden;
}

.trellis-page .trellis-swiper {
    overflow: hidden;
}

.trellis-page .trellis-swiper .swiper-slide {
    /* let Swiper compute uniform widths per slidesPerView; width:auto here
       reverted to image-natural-width and made portrait/landscape mix jitter. */
    opacity: 1;
    transform: none;
    margin-right: 0px;
}

.trellis-page .trellis-swiper .swiper-slide {
    background: #f4ede2;
    border-radius: 16px;
    overflow: hidden;
}

.trellis-page .trellis-swiper .swiper-slide img {
    width: 100%;
    height: 380px;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
}

.trellis-page .trellis-swiper .swiper-slide.swiper-slide-next,
.trellis-page .trellis-swiper .swiper-slide.swiper-slide-prev {
    opacity: 71%;
}

.trellis-page .trellis-swiper .swiper-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
}

.trellis-page .trellis-showcase h4 {
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 20px;
    line-height: 55px;
    font-weight: 700;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    letter-spacing: 0.46px;
}

.trellis-page .trellis-showcase p {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: var(--grey-text-color);
    font-size: 18px;
    line-height: 24px;
}

.trellis-page .trellis-form-wrap {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.trellis-page .trellis-form-title {
    background: url('../images/trellis-form-title.png');
    background-size: cover;
    color: var(--white);
    text-align: center;
    padding: 39px 40px 46px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.trellis-page .trellis-form {
    padding: 22px 24px 28px;
}

/* GRID */
.trellis-page .trellis-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 18px;
}

/* FIELD */
.trellis-page .trellis-field label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: rgba(51, 63, 81, 1);
    /* margin-bottom: 6px; */
    display: block;
}

input[type="checkbox"] {
    width: unset !important;
}

/* INPUT */
.trellis-page .trellis-field input,
.trellis-page .trellis-field textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    padding: 10px 11px;
    font-size: 14px;
    color: rgba(102, 112, 133, 1);
    background: var(--white);
}

.trellis-page .trellis-field textarea {
    resize: vertical;
}

/* FULL WIDTH FIELD */
.trellis-page .trellis-field-full {
    grid-column: 1 / -1;
}

.trellis-page .trellis-email-row input[type="email"] {
    flex: 1;
}

.trellis-page .trellis-news {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    white-space: nowrap;
}

/* SUBMIT */
.trellis-page .trellis-form-submit {
    margin-top: 16px;
    text-align: center;
    padding: 8px;
    cursor: pointer;
    position: relative;
}

.trellis-page .wpcf7-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.trellis-page .trellis-form-submit input[type="submit"] {
    max-width: 354px;
    background-color: var(--primary-color);
    width: 100%;
    height: 56px;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0px 1px 2px 0px rgba(105, 81, 255, 0.05);
}

/* Trellis form design (CF7) */
.trellis-page .trellis-form-wrap .trellis-contact-form {
    max-width: 920px;
    padding: 22px 28px 28px;
}

.trellis-page .trellis-form-wrap .trellis-contact-form .wpcf7 form {
    margin: 0;
}

.trellis-page .trellis-form-wrap .trellis-contact-form .form-row {
    margin-bottom: 14px;
}

.trellis-page .trellis-form-wrap .trellis-contact-form .two-col {
    display: flex;
    gap: 20px;
}

.trellis-page .trellis-form-wrap .trellis-contact-form .two-col .form-group {
    width: 50%;
}

.trellis-page .trellis-form-wrap .trellis-contact-form .form-group label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 26px;
    line-height: 1.2;
    color: rgba(51, 63, 81, 1);
    margin-bottom: 8px;
    font-weight: 500;
}

.trellis-page .trellis-form-wrap .trellis-contact-form .form-group label .required {
    color: var(--primary-color);
}

.trellis-page .trellis-form-wrap .trellis-contact-form input:not([type="submit"]):not([type="checkbox"]),
.trellis-page .trellis-form-wrap .trellis-contact-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(213, 218, 225, 1);
    border-radius: 10px;
    background: var(--white);
    color: rgba(102, 112, 133, 1);
    font-size: 16px;
    line-height: 24px;
    box-sizing: border-box;
}

.trellis-page .trellis-form-wrap .trellis-contact-form input::placeholder,
.trellis-page .trellis-form-wrap .trellis-contact-form textarea::placeholder {
    color: rgba(102, 112, 133, 1);
    opacity: 1;
}

.trellis-page .trellis-form-wrap .trellis-contact-form textarea {
    min-height: 140px;
}

.trellis-page .trellis-form-wrap .trellis-contact-form .checkbox-row {
    display: flex;
    align-items: center;
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.2;
    color: rgba(102, 112, 133, 1);
}

.trellis-page .trellis-form-wrap .trellis-contact-form .checkbox-row label {
    margin: 0;
    font-size: 14px;
    color: rgba(102, 112, 133, 1);
    gap: 7px;
}

.trellis-page .trellis-form-wrap .trellis-contact-form .checkbox-row input[type="checkbox"] {
    width: 13px;
    height: 13px;
    accent-color: #4c57d9;
}

.trellis-page .trellis-form-wrap .trellis-contact-form .submit-row {
    display: flex;
    justify-content: center;
    margin-top: 18px;
    position: relative;
}

.trellis-page .trellis-form-wrap .trellis-contact-form .submit-row input[type="submit"] {
    min-width: 300px;
    height: 52px;
    background: var(--primary-color);
    color: var(--white);
    border: 0;
    border-radius: 0;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
}

.trellis-page .trellis-form-wrap .trellis-contact-form .submit-row .wpcf7-spinner {
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

/* WPForms: center loader + prevent double clicks while loading (best-effort). */
.wpforms-container.wpforms-loading .wpforms-submit-container {
    position: relative;
}

.wpforms-container.wpforms-loading .wpforms-submit,
.wpforms-container.wpforms-loading button[type="submit"],
.wpforms-container.wpforms-loading input[type="submit"] {
    pointer-events: none;
    cursor: progress;
    opacity: 0.78;
}

.wpforms-container .wpforms-submit-container .wpforms-submit-spinner,
.wpforms-container .wpforms-submit-container .wpforms-loading-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Our Trellis Design page */
.our-trillis-design {
    padding: 16px 0px 0px 0px;
}

.our-trellis-bannner {
    margin-bottom: 48px;
}

.our-trillis-design .trellis-breadcrumb {
    margin-bottom: 14px;
}

.our-trillis-design .trellis-breadcrumb a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.our-trillis-design .trellis-breadcrumb span {
    margin: 0 4px;
    font-size: 16px;
    color: var(--text-color);
}

.our-trillis-design .trellis-breadcrumb span:last-child {
    color: rgba(193, 53, 18, 1);
}

.our-trillis-design .our-trellis-bannner .our-trellis-content {
    background: url('../images/our-trellis-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px;
    padding: 36px 0px 49px 32px;
}

.our-trillis-design .our-trellis-bannner .our-trellis-content h4 {
    font-size: 14px;
    letter-spacing: 0.46px;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(7.7px);
    width: 100%;
    max-width: 212px;
    padding: 10px 0;
    text-align: center;
    border-radius: 200px;
}

.our-trillis-design .our-trellis-bannner .our-trellis-content h1 {
    font-size: 49px;
    line-height: 64px;
    letter-spacing: 0.46px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    width: 100%;
    max-width: 620px;
    margin-bottom: 8px;
}

.our-trillis-design .our-trellis-bannner .our-trellis-content p {
    font-size: 18px;
    line-height: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.our-trillis-design .our-trellis-bannner .our-trellis-content ul li {
    font-size: 16px;
    line-height: 20px;
    color: var(--white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trellis-wins {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 12.97%, #FFF7F8 99.87%);
    padding: 13px 0px 46px 0px;
}

.trellis-wins .trellis-wins-container {
    margin: 13px 0px 46px 0px;
}

.trellis-wins .trellis-wins-container h2 {
    font-size: 32px;
    line-height: 55px;
    letter-spacing: 0.46px;
    font-weight: 700;
    color: var(--dark-text-color);
    text-align: center;
    margin-bottom: 45px;
}

.trellis-wins .trellis-wins-container .trellis-wins-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trellis-wins .trellis-wins-container .trellis-wins-content .trellis-wins-card {
    width: 100%;
    max-width: 375px;
    padding: 12px;
    background: var(--white);
    border-radius: 22px;
}

.trellis-wins .trellis-wins-container .trellis-wins-content .trellis-wins-card img {
    margin-bottom: 16px;
}

.trellis-wins .trellis-wins-container .trellis-wins-content .trellis-wins-card h3 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 10px;
}

.trellis-wins .trellis-wins-container .trellis-wins-content .trellis-wins-card h6 {
    font-size: 14px;
    line-height: 1.5;
    color: var(--grey-text-color);
    font-weight: 400;
}

.kit-components {
    margin-top: 45px;
}

.kit-components,
.who-this-is-for {
    padding: 0px 0px 81px 0px;
}

.kit-components .kit-components-container,
.who-this-is-for .who-this-is-for-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.kit-components .kit-components-container .kit-components-content,
.kit-components .kit-components-container .kit-components-img,
.who-this-is-for .who-this-is-for-container .who-this-is-for-content,
.who-this-is-for .who-this-is-for-container .who-this-is-for__image {
    width: 50%;
}

.who-this-is-for .who-this-is-for-container .who-this-is-for-content {
    max-width: 490px;
}

.kit-components .kit-components-container .kit-components-content h3,
.who-this-is-for .who-this-is-for-container .who-this-is-for-content h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 55px;
    color: var(--dark-text-color);
    margin-bottom: 40px;
}

.kit-components .kit-components-container .kit-components-content ul,
.who-this-is-for .who-this-is-for-container .who-this-is-for-content ul {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.kit-components .kit-components-container .kit-components-content ul li,
.who-this-is-for .who-this-is-for-container .who-this-is-for-content ul li {
    font-size: 18px;
    line-height: 1.31;
    color: var(--grey-text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* How to Grow Dragon Fruit css */
.ht-dragon-fruit .ht-dragon-fruit-title {
    text-align: center;
    background-color: var(--secondary-color);
    position: relative;
    margin-bottom: 48px;
}

.ht-dragon-fruit .ht-dragon-fruit-title h1 {
    color: var(--primary-color);
    padding: 39px 0 50px;
    line-height: 55px;
    letter-spacing: 0.46px;
    font-weight: 700;
}

.ht-dragon-fruit .ht-dragon-fruit-title .ht-primary {
    width: 95%;
    max-width: 1082px;
    height: 51px;
    background-color: var(--primary-color);
    margin: 0 auto;
    margin-bottom: 48px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dragon-fruit-soil-mix .dragon-fruit-soil-mix-content {
    margin-top: 77px;
}

.dragon-fruit-soil-mix .dragon-fruit-soil-mix-content .dragon-fruit-soil-mix-title,
.strategy-timing .strategy-timing-content .strategy-timing-title,
.sunlight-management .sunlight-management-content .sunlight-management-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.dragon-fruit-soil-mix .dragon-fruit-soil-mix-content .dragon-fruit-soil-mix-title h2,
.strategy-timing .strategy-timing-content .strategy-timing-title h2,
.sunlight-management .sunlight-management-content .sunlight-management-title h2 {
    color: var(--dark-text-color);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.dragon-fruit-soil-mix .dragon-fruit-soil-mix-content ul li,
.sunlight-management .sunlight-management-content ul li,
.strategy-timing .strategy-timing-content ul li {
    font-size: 18px;
    line-height: 1.3;
    color: var(--grey-text-color);
    font-weight: 400;
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 16px;
}

.strategy-timing {
    margin-top: 51px;
}

.sunlight-management {
    margin: 51px 0 84px 0;
}

.ht-dragon-fruit-breadcrumb {
    margin-bottom: 14px;
    margin-top: 16px;
}

.ht-dragon-fruit-breadcrumb a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.ht-dragon-fruit-breadcrumb span {
    margin: 0 4px;
    font-size: 16px;
    color: var(--text-color);
}

.ht-dragon-fruit-breadcrumb span:last-child {
    color: rgba(193, 53, 18, 1);
}

/* Root cutting page */
.root-cutting-page {
    padding: 16px 0 36px;
}

.root-cutting-breadcrumb {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.root-cutting-breadcrumb a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.root-cutting-breadcrumb span {
    margin: 0 4px;
    font-size: 16px;
    color: var(--text-color);
}

.root-cutting-breadcrumb .breadcrumb-arrow {
    margin: 0 4px;
}

.root-cutting-breadcrumb span:last-child {
    color: rgba(193, 53, 18, 1);
}

.root-cutting-hero {
    margin-bottom: 77px;
}

.root-cutting-hero .root-cutting-hero__title-wrap {
    text-align: center;
    background-color: var(--secondary-color);
    position: relative;
    margin-bottom: 48px;
}

.root-cutting-hero .root-cutting-hero__title-wrap h1 {
    color: var(--primary-color);
    padding: 39px 0 50px;
    line-height: 55px;
    letter-spacing: 0.46px;
    font-weight: 700;
}

.root-cutting-hero .root-cutting-hero__title-wrap .root-cutting-hero__bar {
    width: 95%;
    max-width: 1082px;
    height: 51px;
    background-color: var(--primary-color);
    margin: 0 auto;
    margin-bottom: 48px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rooting-section {
    margin-bottom: 22px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-box {
    background: var(--secondary-color);
    border-left: 3px solid var(--primary-color);
    padding: 15px 11px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.note-box p {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.subsection-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #333;
}

.mistake-box ul,
.step .list-style {
    padding-left: 20px;
}

.step .list-style li {
    list-style: disc;
}

.step li {
    margin-bottom: 5px;
}

.mistake-box {
    background: var(--secondary-color);
    border-left: 3px solid var(--primary-color);
    padding: 13px 11px;
}

.mistake-box p {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 7px;
}

.mistake-box ul {
    padding-left: 30px;
}

.mistake-box ul li {
    font-size: 22px;
    line-height: 34px;
    color: var(--dark-text-color);
    font-weight: 600;
    list-style: disc;
}

.subsection {
    margin-bottom: 16px;
    display: flex;
    gap: 5px;
}

.subsection .subsection-icon {
    margin-right: 5px;
}

.subsection p {
    font-size: 18px;
    color: var(--grey-text-color);
    line-height: 1.3;
}

.subsection ul li {
    font-size: 18px;
    line-height: 1.3;
    color: var(--grey-text-color);
    /* display: flex;
    align-items: center; */
}

.step p {
    font-size: 18px;
    color: var(--grey-text-color);
    line-height: 1.3;
}

.list-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

/* DIY trellis build page */
.diy-trellis-page {
    padding: 16px 0 80px;
}

.diy-trellis-breadcrumb {
    margin-bottom: 14px;
}

.diy-trellis-breadcrumb a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.diy-trellis-breadcrumb span {
    margin: 0 4px;
    font-size: 16px;
    color: var(--text-color);
}

.diy-trellis-breadcrumb span:last-child {
    color: rgba(193, 53, 18, 1);
}

.diy-trellis-hero {
    margin-bottom: 81px;
}

.diy-trellis-hero .diy-trellis-hero__title-wrap {
    text-align: center;
    background-color: var(--secondary-color);
    position: relative;
    margin-bottom: 48px;
}

.diy-trellis-hero .diy-trellis-hero__title-wrap h1 {
    color: var(--primary-color);
    padding: 39px 0 60px;
    line-height: 55px;
    letter-spacing: 0.46px;
    font-weight: 700;
}

.diy-trellis-hero .diy-trellis-hero__title-wrap .diy-trellis-hero__bar {
    width: 100%;
    max-width: 1082px;
    height: 51px;
    background-color: var(--primary-color);
    margin: 0 auto;
    margin-bottom: 48px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.diy-trellis-visual .diy-trellis-visual__frame {
    border-radius: 22px;
}

.diy-trellis-visual .diy-trellis-visual__frame img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-bottom: 42px;
}

.diy-trellis-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.diy-trellis-content-col h2 {
    color: var(--dark-text-color);
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 26px;
}

.diy-trellis-content-col ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.diy-trellis-content-col ul li {
    color: var(--grey-text-color);
    font-size: 18px;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

/* Return policy page */
.return-policy-page {
    padding: 16px 0 80px;
}

.return-policy-breadcrumb {
    margin-bottom: 14px;
}

.return-policy-breadcrumb a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.return-policy-breadcrumb span {
    margin: 0 4px;
    font-size: 16px;
    color: var(--text-color);
}

.return-policy-breadcrumb span:last-child {
    color: rgba(193, 53, 18, 1);
}

.return-policy-hero {
    margin-bottom: 73px;
}

.return-policy-hero .return-policy-hero__title-wrap {
    text-align: center;
    background-color: var(--secondary-color);
    position: relative;
    margin-bottom: 48px;
}

.return-policy-hero .return-policy-hero__title-wrap h1 {
    color: var(--primary-color);
    padding: 39px 0 60px;
    line-height: 55px;
    letter-spacing: 0.46px;
    font-weight: 700;
}

.return-policy-hero .return-policy-hero__title-wrap .return-policy-hero__bar {
    width: 95%;
    max-width: 1082px;
    height: 51px;
    background-color: var(--primary-color);
    margin: 0 auto;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.return-policy-story h2 {
    color: var(--dark-text-color);
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 26px;
}

.return-policy-story ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.return-policy-story ul li {
    color: var(--grey-text-color);
    font-size: 18px;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

/* Wholesale page */
.wholesale-page {
    padding: 16px 0px 0px 0px;
}

.wholesale-breadcrumb {
    margin-bottom: 14px;
}

.wholesale-breadcrumb a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.wholesale-breadcrumb span {
    margin: 0 4px;
    font-size: 16px;
    color: var(--text-color);
}

.wholesale-breadcrumb span:last-child {
    color: rgba(193, 53, 18, 1);
}

.wholesale-hero {
    margin-bottom: 63px;
}

.wholesale-hero__title-wrap {
    text-align: center;
    background-color: var(--secondary-color);
    position: relative;
    margin-bottom: 48px;
}

.wholesale-hero__title-wrap h1 {
    color: var(--primary-color);
    padding: 39px 0 60px;
    line-height: 55px;
    letter-spacing: 0.46px;
    font-weight: 700;
}

.wholesale-hero__bar {
    width: 100%;
    max-width: 1082px;
    height: 51px;
    background-color: var(--primary-color);
    margin: 0 auto;
    margin-bottom: 48px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wholesale-categories {
    width: 100%;
    max-width: 981px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 auto 59px;
}

.wholesale-categories a {
    padding: 0px 18px;
    border-radius: 999px;
    background: var(--secondary-color);
    color: var(--dark-text-color);
    font-size: 18px;
    line-height: 55px;
    text-decoration: none;
    border: none;
    cursor: unset;
}

.wholesale-categories a:hover {
    background: var(--primary-color);
    color: #fff;
}

.wholesale-partner {
    display: flex;
    gap: 68px;
    /* flex-wrap: wrap; */
    margin-bottom: 47px;
    align-items: center;
    width: 100%;
}

.wholesale-partner .wholesale-partner-text {
    width: 50%;
}

.wholesale-partner .wholesale-partner-image {
    width: 50%;
}

.wholesale-partner-text h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--dark-text-color);
}

.wholesale-partner-text ul {
    padding-left: 24px;
    color: var(--grey-text-color);
    line-height: 1.6;
    list-style: disc;
}

.wholesale-partner-text ul li {
    position: relative;
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 18px;
}

.wholesale-partner-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.wholesale-features {
    display: flex;
    gap: 20px;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    width: 100%;
}

.wholesale-card {
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.wholesale-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.wholesale-card-content {
    padding: 18px 25px;
}

.wholesale-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    letter-spacing: 0.48px;
    margin-bottom: 8px;
}

.wholesale-card p {
    color: var(--grey-text-color);
    font-size: 18px;
    line-height: 1.31;
    margin-bottom: 8px;
}

/* Single Product Page */
.single-product-page {
    padding: 20px 0;
}

.product-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.product-gallery {
    flex: 1;
}

.product-summary {
    flex: 1;
    padding-left: 20px;
}

.product-summary .product_title {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.product-summary .price {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-summary .woocommerce-product-details__short-description {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.product-summary .cart {
    margin-bottom: 20px;
}

.product-tabs {
    margin-top: 40px;
}

/* Custom Single Product Page */
.dragon-product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.dragon-product-container {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.dragon-product-gallery {
    flex: 1;
    max-width: 500px;
}

.main-product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.product-thumbnail-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}

.dragon-product-details {
    flex: 1;
    padding-left: 20px;
}

.product-title {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.farm-name {
    font-size: 16px;
    color: var(--grey-text-color);
    margin-bottom: 20px;
    display: block;
}

.product-price {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.per-cutting {
    font-size: 16px;
    color: var(--text-color);
    margin-left: 10px;
}

.size-selection {
    margin-bottom: 20px;
}

.size-selection label {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--grey-text-color);
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
}

.add-to-cart {
    margin-bottom: 30px;
}

.shipping-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    margin-bottom: 30px;
}

.shipping-icon {
    font-size: 24px;
}

.shipping-text strong {
    font-size: 18px;
    color: var(--text-color);
}

.shipping-text p {
    font-size: 16px;
    color: var(--grey-text-color);
    margin: 5px 0;
}

.shipping-note {
    font-size: 14px;
    color: var(--dark-text-color);
    margin-top: 10px;
}

.dragon-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.feature-box {
    flex: 1;
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    margin: 0 10px;
}

.feature-box img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 16px;
    color: var(--text-color);
}

.product-description-section,
.product-faq {
    margin-bottom: 40px;
}

.product-description-section h2,
.product-faq h2 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    color: var(--grey-text-color);
}

/* Buyer Protection Page */
.mdp-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

.mdp-bp {
    background: #fff;
}

.mdp-bp__hero {
    padding: 104px 0px;
    text-align: center;
    background: var(--secondary-color);
}

.mdp-bp__title {
    margin: 0;
    font-size: 48px;
    line-height: 78px;
    color: var(--dark-text-color);
}

.mdp-bp__subtitle {
    color: var(--grey-text-color);
    font-size: 18px;
    line-height: 22px;
}

.mdp-bp__section {
    padding: 62px 0;
}

.mdp-bp__heading {
    text-align: center;
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark-text-color);
    margin-bottom: 20px;
}

.mdp-bp__heading--left {
    text-align: left;
    margin-bottom: 8px;
}

.mdp-bp__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.mdp-bp-card {
    box-shadow: 0px 8px 42px 0px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 44px 20px 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    text-align: center;
    gap: 20px;
}

.mdp-bp-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mdp-bp-card__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-color);
}

.mdp-bp__section--split {
    padding: 48px 0;
    background-color: var(--secondary-color);
}

.mdp-bp__block:first-child {
    /* padding-top: 6px; */
    margin-bottom: 44px;
}

.mdp-bp__hint {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: var(--grey-text-color);
    margin-bottom: 28px;
}

.mdp-bp__bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mdp-bp__bullets li {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: baseline;
    gap: 13px;
}

.mdp-bp__note {
    margin-top: 28px;
    border-left: 3px solid var(--grey-text-color);
    background: rgba(243, 243, 243, 1);
    padding: 10px;
    font-size: 18px;
    line-height: 30px;
    color: var(--grey-text-color);
}

.mdp-bp-section {
    padding: 62px 0px;
}

.mdp-bp__reminder {
    box-shadow: 0px 8px 42px 0px rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    background: var(--white);
    padding: 27px;
    display: flex;
    gap: 12px;
    align-items: start;
}

.mdp-bp__reminder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mdp-bp__reminder-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text-color);
    margin-bottom: 12px;
}

.mdp-bp__reminder-text {
    margin: 0;
    font-size: 18px;
    color: var(--grey-text-color);
    line-height: 30px;
}

.mdp-bp__cta {
    padding: 89px 0px 89px 0px;
    background: url('../images/ready-to-shop-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.mdp-bp__cta .mdp-container {
    max-width: 800px;
    margin: 0 auto;
}

.mdp-bp__cta-title {
    color: var(--white);
    text-align: center;
    margin: 0 0 12px;
    line-height: 78px;
    font-size: 48px;
    font-weight: 700;
}

.mdp-bp__cta-text {
    color: var(--white);
    text-align: center;
    font-weight: 600;
    margin: 0;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 30px;
}

.mdp-bp__cta-button {
    display: block;
    text-align: center;
    background-color: var(--white);
    padding: 16px 0px;
    max-width: 227px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 7px 18.1px 0px rgba(0, 0, 0, 0.25);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: var(--primary-color) !important;
    text-decoration: none;
    border: 0;
    border-radius: 0;
}

.sell-page-hero {
    background: var(--secondary-color);
    text-align: center;
    padding: 46px 16px 53px;
}

.sell-page-hero h1 {
    font-size: 48px;
    line-height: 78px;
    font-weight: 700;
    color: var(--dark-text-color);
}

.sell-page-hero p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: var(--grey-text-color);
    max-width: 719px;
    margin: 0 auto;
}

.sell-btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 13px 28px;
    text-decoration: none;
    display: inline-block;
    margin-top: 33px;
    font-size: 18px;
    line-height: 22px;
    width: 100%;
    max-width: 227px;
}

.sell-page-eligibility {
    padding: 62px 16px;
}

.sell-page-eligibility h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-text-color);
    text-align: center;
}

.sell-eligibility-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
}

.sell-eligibility-card {
    background: #fff;
    padding: 44px 51px;
    width: 400px;
    border-radius: 8px;
    box-shadow: 0px 8px 42px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.sell-eligibility-card img {
    margin-bottom: 20px;
}

.sell-eligibility-card p {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-color);
}

.sell-page-process {
    background: var(--secondary-color);
    padding: 48px 16px;
}

.sell-page-process h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-text-color);
    text-align: center;
    margin-bottom: 49px;
}

.sell-process-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    margin: 0 auto;
    gap: 12%;
}

.sell-process-steps::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 26px;
    border-top: 1px dashed var(--primary-color);
    z-index: 0;
}

.sell-process-step {
    /* width: 180px; */
    text-align: center;
    position: relative;
    z-index: 1;
}

.sell-process-step span {
    background: var(--primary-color);
    color: var(--white);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 19px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.sell-process-step p {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-color);
}

.sell-page-fees {
    padding: 62px 16px;
    text-align: center;
}

.sell-page-fees h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 38px;
}

.sell-page-fees .sell-page-fees-content {
    box-shadow: 0px 8px 42px 0px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 44px 16px;
}

.sell-fee-wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 25px;
}

.sell-fee-wrapper .saperater-line {
    border-left: 1px solid rgba(233, 233, 233, 1);
}

.sell-fee-item h3 {
    font-size: 48px;
    line-height: 78px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--grey-text-color);
}

.sell-fee-item:first-child h3 {
    color: var(--primary-color);
}

.sell-fee-item p {
    font-size: 18px;
    font-weight: 700;
    color: var(--grey-text-color);
    text-transform: uppercase;
}

.sell-page-order-info {
    padding: 33px 16px;
    background-color: rgba(246, 246, 246, 1);
    width: 100%;
    max-width: 936px;
    margin: 49px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.sell-page-order-info .box {
    width: 100%;
    max-width: 137px;
    background-color: var(--white);
    color: var(--text-color);
    padding: 10px;
}

.sell-page-order-info .box.highlight {
    background-color: rgba(233, 255, 237, 1);
    color: rgba(58, 149, 39, 1);
}

.sell-page-order-info .symbol {
    font-size: 22px;
}

.sell-page-fees-text {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.sell-page-requirements {
    background: var(--secondary-color);
    padding: 43px 16px;
}

.sell-page-requirements h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-text-color);
    text-align: center;
}

.sell-page-requirements p {
    line-height: 30px;
    color: var(--grey-text-color);
    text-align: center;
}

.sell-requirement-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    /* flex-wrap: wrap; */
    margin-top: 23px;
    width: 100%;
}

.sell-requirement-box {
    background: var(--white);
    padding: 30px 40px 16px 34px;
    width: 50%;
    border-radius: 4px;
}

.sell-requirement-box p {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-color);
}

.sell-requirement-box:first-child .sell-requirement-box-flex img {
    background-color: rgba(240, 255, 232, 1);
    padding: 8px 6px;
    border-radius: 4px;
}

.sell-requirement-box:last-child .sell-requirement-box-flex img {
    background-color: var(--secondary-color);
    padding: 8px 6px;
    border-radius: 4px;
}

.sell-requirement-box .sell-requirement-box-flex {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sell-requirement-box .line {
    border-bottom: 1px solid rgba(233, 233, 233, 1);
    margin: 16px auto;
}

.sell-requirement-box ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sell-requirement-box ul li {
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 13px;
}

.sell-page-requirements .sell-requirement-ship {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid rgba(114, 76, 204, 1);
    background-color: rgba(238, 242, 255, 1);
    padding: 10px;
}

.sell-page-requirements .sell-requirement-ship p {
    font-size: 18px;
    color: rgba(114, 76, 204, 1);
    text-align: left;
}

.sell-page-cta {
    background: url('../images/ready-to-shop-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 89px 16px;
}

.sell-page-cta h2 {
    font-size: 48px;
    line-height: 78px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.sell-page-cta p {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    color: var(--white);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.sell-btn-secondary {
    background: var(--white);
    color: var(--primary-color) !important;
    padding: 13px 28px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    max-width: 227px;
}

/* Blog page css */
.blog-hero {
    background: url('../images/blog-bn-bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 574px;
}

.blog-hero .blog-hero-content {
    padding: 54px 0px 10px;
}

.blog-hero .blog-hero-content h1 {
    font-size: 56px;
    letter-spacing: 1.2px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
}

.blog-hero .blog-hero-content p {
    font-size: 18px;
    text-align: center;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
}

.blog-hero .blog-hero-image {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.nursery-section {
    padding: 63px 0px 39px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 247, 248, 1) 100%);
}

.nursery-section .nursery-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nursery-section .nursery-wrapper .nursery-card {
    width: 100%;
    max-width: 400px;
    background-color: var(--white);
    border-radius: 22px;
}

.nursery-section .nursery-wrapper .nursery-card .nursery-content {
    padding: 17px 12px 25px;
}

.nursery-section .nursery-wrapper .nursery-card img {
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.nursery-section .nursery-wrapper .nursery-card .nursery-content h3 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 12px;
}

.nursery-section .nursery-wrapper .nursery-card .nursery-content .nursery-cont-detail p {
    font-size: 16px;
    color: var(--grey-text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nursery-section .nursery-wrapper .nursery-card .nursery-content .nursery-cont-detail {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.nursery-section .nursery-wrapper .nursery-card .nursery-content hr {
    color: rgba(206, 206, 206, 1) !important;
    background-color: rgba(206, 206, 206, 1) !important;
    margin-bottom: 25px;
}

.nursery-section .nursery-wrapper .nursery-card .nursery-content .desc {
    font-size: 14px;
    line-height: 1.2;
    color: var(--grey-text-color);
    font-family: 'Libre Baskerville', serif;

}

.mdp-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.mdp-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    background: unset;
    border: unset;
}

.mdp-pagination ul.page-numbers li {
    margin: 0;
    padding: 0;
}

.mdp-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(213, 218, 225, 1);
    border-radius: 10px;
    background: var(--white);
    color: var(--dark-text-color);
    font-weight: 600;
}

.mdp-pagination .page-numbers.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.mdp-pagination a.page-numbers:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.workshops-section {
    padding: 50px 0 84px;
}

.workshops-section .section-heading {
    margin-bottom: 30px;
}

.workshops-section .section-heading h2 {
    margin-bottom: 12px;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-text-color);
}

.workshops-section .section-heading p {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--grey-text-color);
}

.workshops-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.workshop-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0px 10px;
    border: 1px solid rgba(213, 218, 225, 1);
    border-radius: 14px;
    background: var(--white);
}

.workshop-date {
    width: 97px;
    min-width: 97px;
    padding: 28px;
    margin: 10px 0px;
    border-radius: 12px;
    background: #fff5f7;
    text-align: center;
}

.workshop-date .day {
    display: block;
    font-size: 16px;
    line-height: 12px;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 16px;
}

.workshop-date .month {
    display: block;
    font-size: 16px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--dark-text-color);
}

.workshop-content {
    flex: 1;
    padding: 16px 0px;
}

.workshop-content .event-badge {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 5px;
    border-radius: 2px;
    background: rgba(239, 255, 231, 1);
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(126, 174, 78, 1);
}

.workshop-content h3 {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 12px;
    color: var(--dark-text-color);
    font-weight: 400;
}

.workshop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.workshop-meta .meta-item {
    display: flex;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--grey-text-color);
}

.workshop-meta .meta-item img {
    width: 16px;
    height: 16px;
}

.workshop-empty-state {
    padding: 24px;
    border: 1px dashed #d7dbe3;
    border-radius: 14px;
    text-align: center;
    color: #5f6570;
}

.restock-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 59px;
    padding: 46px 56px;
    border-radius: 14px;
    background: var(--primary-color);
}

.restock-banner__content {
    max-width: 578px;
}

.restock-banner__content h3 {
    margin-bottom: 14px;
    font-size: 32px;
    color: var(--white);
}

.restock-banner__content p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.restock-banner__form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 460px;
}

.restock-banner__form input {
    flex: 1;
    min-height: 51px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: var(--white);
    font-size: 14px;
    color: var(--text-color);
    outline: unset;
}

.restock-banner__form input::placeholder {
    color: var(--grey-text-color);
}

.restock-banner__form button {
    min-width: 126px;
    min-height: 51px;
    padding: 0 20px;
    border: 0;
    border-radius: 4px;
    background: rgba(120, 2, 33, 1);
    font-size: 14px;
    color: var(--white);
}

/* WCFM vendor setup css */
.wc-setup-steps {
    padding: 10px 0px;
    color: var(--text-color);
}
.wc-setup-content .form-table input::placeholder{
    color: rgb(125, 132, 146) !important;
}

.wc-setup-content .form-table .wcfm_title {
    color: var(--grey-text-color) !important;
}
.wc-setup-content .wc-setup-actions .wcfm_submit_button {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    text-shadow: unset !important;
    font-weight: 600 !important;
    border: 1px solid var(--primary-color) !important;
    box-shadow: unset !important;
}
.wc-setup-content .wc-setup-actions .wcfm_submit_button:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary-color) !important;
}
.wc-setup-content .wc-setup-actions a.button-next {
    background-color: transparent !important;
    border: 1px solid var(--grey-text-color) !important;
    color: var(--grey-text-color) !important;
    font-weight: 500 !important;
}

/* Responsive */
@media (max-width: 1440px) {
    .ft-48 {
        font-size: 42px;
    }

    .container {
        padding: 0 16px;
    }

    .site-header .main-navigation ul {
        gap: 22px;
    }

    .site-header .main-navigation ul li a,
    .site-header .header-icons a .header-label {
        font-size: 16px;
    }

    #hero-section .hero-section .hero-content .hero-title,
    .ready-to-shop .ready-to-shop-content h2 {
        line-height: 1.15;
    }

    .site-header .site-branding p {
        font-size: 10px;
    }
}

@media (max-width: 1024px) {
    body.mdp-nav-open {
        overflow: hidden;
    }

    .container {
        padding: 0 18px;
    }

    .site-header .header-main {
        flex-wrap: wrap;
        padding: 14px 18px;
        gap: 16px;
    }

    .site-header .site-branding,
    .site-header .main-navigation,
    .site-header .header-icons {
        width: auto;
    }

    .site-header .site-branding {
        flex: 1;
        min-width: 0;
    }

    .site-header .header-menu-toggle {
        display: inline-flex;
    }

    .site-header .main-navigation {
        display: none;
        order: 4;
        width: 100%;
        padding-top: 4px;
    }

    .site-header.is-nav-open .main-navigation {
        display: block;
    }

    .site-header .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px 0 4px;
        border-top: 1px solid rgba(24, 25, 31, 0.08);
    }

    .site-header .main-navigation ul li {
        width: 100%;
    }

    .site-header .main-navigation ul li a {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 17px;
    }

    #top-header-menu .current-menu-item>a::after {
        left: 0;
        bottom: 6px;
        width: 48px;
        transform: none;
    }

    .site-header .header-icons {
        gap: 14px;
    }

    .site-header .header-icons .header-cart,
    .site-header .header-icons .header-account {
        gap: 6px;
    }

    .site-footer .footer-content {
        flex-direction: column;
    }

    .site-footer .footer-content,
    .site-footer .footer-content .ft-menu-content {
        gap: 32px;
    }

    .site-footer .footer-content .ft-site-content,
    .site-footer .footer-content .ft-menu-content .ft-menu {
        width: 100%;
        flex-wrap: wrap;
    }

    #hero-section {
        padding: 32px 0 52px;
    }

    #hero-section .hero-section .hero-content,
    /* .hero-image, */
    .sell-through-section .sell-through-container .sell-through-content,
    .sell-through-section .sell-through-container .sell-through-image {
        width: 100%;
        max-width: none;
    }

    .hero-image {
        align-items: center;
        min-height: 350px;
        width: 40%;
    }

    /* #hero-section .hero-section .hero-content {
        order: 2;
    } */

    /* .hero-image {
        order: 1;
        min-height: 420px;
    } */

    /* .hero-image .banner-pro-card.card-1 {
        left: 20%;
        top: 100px;
    }

    .hero-image .banner-pro-card.card-2 {
        left: auto;
        right: 33%;
        top: 33px;
    } */

    .what-you-need .what-you-need-content .wyn-card-container,
    .how-buying-works .how-buying-works-content .how-buying-works-steps {
        flex-wrap: wrap;
    }

    .features-section .features-content .features-con-container {
        justify-content: center;
        padding: 18px;
    }

    .features-section .features-content .features-con-container .feature-item {
        width: calc(50% - 12px);
    }

    .features-section .features-content .features-con-container .feature-item img {
        width: 40px;
        height: auto;
    }

    .features-section .features-content .features-con-container .feature-item p {
        font-size: 14px;
        text-align: center;
    }

    .what-you-need .what-you-need-content .wyn-card-container {
        justify-content: center;
        gap: 20px;
        margin-bottom: 48px;
    }

    .what-you-need .what-you-need-content .featured-farm-card {
        padding: 16px;
    }

    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-description {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.7;
    }

    .how-buying-works .how-buying-works-content {
        padding: 34px 24px;
    }

    .how-buying-works .how-buying-works-content .how-buying-works-steps {
        gap: 28px;
        justify-content: center;
    }

    .how-buying-works .how-buying-works-content .how-buying-works-steps::before {
        display: none;
    }

    .how-buying-works .how-buying-works-content .how-buying-works-steps .step-item {
        width: calc(50% - 14px);
    }

    .sell-through-section .sell-through-container {
        gap: 32px;
    }

    .sell-through-section .sell-through-container .sell-through-content p,
    .sell-through-section .sell-through-container .sell-through-content ul li {
        line-height: 1.6;
    }

    .ready-to-shop {
        padding: 48px 0 56px;
    }

    .ready-to-shop .ready-to-shop-content p {
        line-height: 1.6;
    }

    /* Template pages */
    .contact-info .contact-us-info {
        /* flex-wrap: wrap; */
        justify-content: center;
        gap: 32px;
        margin-top: 56px;
    }

    .contact-info .contact-us-info .con h3 {
        font-size: 22px;
        line-height: 100%;
        margin-bottom: 10px;
    }

    .contact-info .contact-us-info .con a,
    .contact-info .contact-us-info .con p {
        font-size: 18px;
        line-height: 100%;
    }

    .contact-info .contact-us-info .con {
        /* width: calc(50% - 16px); */
        width: auto;
    }

    .contact-info .contact-us-info .con.con-social .social-links {
        justify-content: flex-start;
        gap: 16px;
    }

    .contact-info .contact-us-info .con.con-social .social-links a {
        height: 24px;
        font-size: 0px;
    }


    .wholesale-partner {
        flex-direction: column;
        gap: 28px;
    }

    .wholesale-partner .wholesale-partner-text,
    .wholesale-partner .wholesale-partner-image {
        width: 100%;
    }

    .wholesale-card {
        width: calc(50% - 10px);
        max-width: none;
    }

    .kit-components .kit-components-container,
    .who-this-is-for .who-this-is-for-container {
        /* flex-direction: column;
        align-items: stretch; */
        gap: 28px;
    }

    /* .kit-components-img,
    .who-this-is-for__image {
        width: 100%;
    } */

    .kit-components .kit-components-container .kit-components-content h3,
    .who-this-is-for .who-this-is-for-container .who-this-is-for-content h3 {
        font-size: 28px;
        line-height: 1.2;
    }

    .kit-components-img img,
    .who-this-is-for__image img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .trellis-page .trellis-hero {
        grid-template-columns: 1fr;
        height: auto;
        /* background-size: cover; */
        background-position: center right;
    }

    .trellis-page .trellis-hero-content {
        width: 100%;
        max-width: 720px;
        height: 340px;
        /* height: auto;
        clip-path: none;
        padding: 28px 24px;
        filter: none; */
        /* border-radius: 12px; */
    }

    .trellis-page .trellis-hero-content::before {
        display: none;
    }

    /* .trellis-card:nth-child(odd),
    .trellis-card:nth-child(even) {
        margin: 0;
    } */
    .trellis-page .trellis-showcase-slider {
        max-width: 980px;
    }

    .trellis-page .trellis-swiper .swiper-slide img {
        height: 340px;
    }

    .trellis-page .trellis-hero-content p {
        font-size: 16px;
        max-width: 500px;
    }

    .trellis-page .trellis-hero-content h1 {
        font-size: 22px;
    }

    .trellis-page .trellis-hero-content h2 {
        font-size: 18px;
    }

    .trellis-page .trellis-hero-thumbs img {
        max-width: 100px;
    }

    /* Dragon Fruit Trellis: enable slider without changing card sizing */
    .trellis-page .trellis-included-grid.trellis-included-swiper {
        /* display: block; */
        overflow: hidden;
        /* padding-bottom: 20px; */
    }

    .trellis-page .trellis-included-grid.trellis-included-swiper .trellis-card {
        width: auto;
        max-width: 232px;
    }

    .trellis-page .trellis-included-pagination {
        display: none !important;
    }
    .diy-trellis-content-col h2 {
        font-size: 28px;
    }
    .farm-top-banner .farm-flex {
        position: unset;
    }
    .farm-top-banner .farm-flex .verified-flex {
        position: unset;
    }
}

@media screen and (max-width: 991px) {
    .farm-products h2 {
        font-size: 38px;
    }

    .farm-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .workshops-section .section-heading h2 {
        font-size: 38px;
    }

    .workshop-card {
        gap: 18px;
    }

    .workshop-content h3 {
        font-size: 20px;
    }

    .restock-banner {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .restock-banner__content h3 {
        font-size: 34px;
    }

    .restock-banner__form {
        max-width: 100%;
    }

    .blog-hero {
        /* background-size: cover; */
        background-position: center top;
    }

    .sell-page-hero h1,
    .sell-page-eligibility h2,
    .sell-page-process h2,
    .sell-page-fees h2,
    .sell-page-requirements h2,
    .sell-page-cta h2 {
        font-size: 38px;
        line-height: 1.2;
    }

    .sell-eligibility-card {
        width: 100%;
        max-width: 360px;
        padding: 32px 24px;
    }

    .sell-process-steps {
        /* gap: 6%;
        flex-wrap: wrap;
        justify-content: center; */
    }

    .sell-process-steps::before {
        left: 4%;
        right: 4%;
    }

    .sell-fee-wrapper {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sell-page-order-info {
        flex-wrap: wrap;
        max-width: 100%;
        gap: 12px;
    }

    .sell-requirement-grid {
        flex-wrap: wrap;
    }

    .sell-requirement-box {
        width: calc(50% - 10px);
        min-width: 320px;
        padding: 24px;
    }

    .about-farm {
        padding: 34px 22px;
        margin-bottom: 40px;
    }

    .about-farm .about-flex {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }

    .about-farm .about-flex .about-text,
    .about-farm .about-flex .about-image {
        width: 100%;
    }

    .about-farm .about-flex .about-image {
        justify-content: center;
    }

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

    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-media {
        width: 100%;
        max-width: none;
    }

    .what-you-need .what-you-need-content .featured-farm-card {
        flex-direction: column;
    }

    .kit-components .kit-components-container .kit-components-content ul,
    .who-this-is-for .who-this-is-for-container .who-this-is-for-content ul {
        gap: 22px;
    }
    .wholesale-features {
        flex-wrap: wrap;
        justify-content: center;
    }
    .diy-trellis-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
    .farm-product-card__button.is-primary,
    .farm-product-card__button.is-out-of-stock {
        background-color: var(--primary-color);
        color: var(--white);
        background: var(--primary-color);
        border: 1px solid var(--primary-color);
    }
}

@media (max-width: 950px) {
    .farm-flex-wrapper .container .product-standards {
        padding: 16px 20px;
    }
}

@media (max-width: 880px) {
    .site-footer .footer-content .ft-menu-content {
        flex-wrap: wrap;
    }

    .site-footer .footer-content .ft-menu-content .ft-menu {
        order: 2;
    }

    .site-footer .footer-content .ft-menu-content .ft-policy-menu {
        order: 3;
    }

    .site-footer .footer-content .ft-menu-content .newsletter-form {
        order: 1;
    }

    .trellis-page .trellis-included-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trellis-page .trellis-card {
        width: 30%;
    }
}

@media (max-width: 830px) {

    /* .hero-image .banner-pro-card.card-2 {
        right: 23%;
    } */
    #hero-section .hero-section .hero-image.display-desktop {
        display: none;
    }

    #hero-section .hero-section .hero-content .hero-image.display-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        min-height: unset;
        margin: 0 auto 36px;
    }

    #hero-section .hero-section .hero-content .hero-description {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .ft-48 {
        font-size: 34px;
    }

    .ft-32 {
        font-size: 28px;
    }

    .ft-22 {
        font-size: 20px;
    }

    .ft-18 {
        font-size: 16px;
    }

    .site-header .top-spots-line {
        height: var(--mdp-marquee-height-mobile, 31px);
    }

    .site-header .top-spots-line .spots-content {
        gap: 8px;
    }

    .site-header .top-spots-line .spots-content.mdp-marquee {
        justify-content: flex-start;
    }

    .site-header .top-spots-line .mdp-marquee__viewport {
        justify-content: flex-start;
    }

    .site-header .top-spots-line .spots-content p,
    .site-header .top-spots-line .mdp-marquee__text {
        font-size: 12px;
        line-height: 1.4;
    }

    .site-header .site-branding p {
        /* display: none; */
        font-size: 7px;
        line-height: unset;
    }

    .site-header .header-icons a .header-label {
        display: none;
    }

    .site-header .header-icons .header-cart,
    .site-header .header-icons .header-account {
        width: 42px;
        height: 42px;
        justify-content: center;
        /* border: 1px solid rgba(218, 10, 86, 0.12); */
        border-radius: 12px;
    }

    #hero-section {
        padding: 24px 0 27px;
    }

    #hero-section .hero-section {
        gap: 18px;
    }

    #hero-section .hero-section .hero-content .hero-title {
        font-size: 30px;
        margin-bottom: 8px;
    }

    #hero-section .hero-section .hero-content .hero-description {
        margin-bottom: 24px;
    }

    #hero-section .hero-section .hero-content .hero-btn {
        flex-direction: column;
        gap: 20px;
    }

    #hero-section .hero-section .hero-content .hero-btn .hero-button,
    /* .what-you-need .what-you-need-content .wyn-btn, */
    .sell-through-section .sell-through-container .sell-through-content .sell-through-btn,
    .ready-to-shop .ready-to-shop-content .ready-to-shop-btn {
        max-width: none;
    }

    .sell-through-section .sell-through-container .sell-through-image.display-desktop {
        display: none;
    }

    .sell-through-section .sell-through-container .sell-through-image.display-mobile {
        display: block;
        text-align: center;
    }

    .sell-through-section .sell-through-container .sell-through-content p {
        margin: 0 auto;
        text-align: center;
    }

    .sell-through-section .sell-through-container .sell-through-content h2 {
        text-align: center;
    }

    .sell-through-section .sell-through-container .sell-through-content .sell-through-btn {
        margin-top: 20px;
    }

    .sell-through-section .sell-through-container .sell-through-content ul li {
        margin-bottom: 20px;
    }

    .hero-image {
        min-height: 350px;
    }

    /* .hero-image .banner-pro-card {
        max-width: 230px;
        padding: 10px 12px;
    }

    .hero-image .banner-pro-card.card-1 {
        top: 50px;
    }

    .hero-image .banner-pro-card.card-1 {
        left: 23%;
    }

    .hero-image .banner-pro-card.card-2 {
        top: 28px;
    }

    .hero-image .banner-pro-card .banner-pro-card-image .pro-b-main {
        height: 180px;
    } */

    .features-section,
    .how-buying-works,
    .sell-through-section,
    .what-you-need {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .features-section .features-content .features-con-container .feature-item,
    /* .what-you-need .what-you-need-content .wyn-card-container .wyn-card, */
    .how-buying-works .how-buying-works-content .how-buying-works-steps .step-item {
        width: 100%;
        max-width: none;
    }

    .what-you-need .what-you-need-content .wyn-card-container {
        margin: 20px 0 36px;
    }

    .what-you-need .what-you-need-content .featured-farm {
        margin-top: 48px;
    }

    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-media img {
        height: 220px;
    }

    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-head .featured-farm-title-wrap {
        width: 100%;
    }

    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-title {
        font-size: 22px;
        justify-content: space-between;
    }

    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-btn {
        width: 100%;
        text-align: center;
    }

    .how-buying-works .how-buying-works-content {
        padding: 28px 18px;
    }

    .sell-through-section .sell-through-container .sell-through-content ul li {
        align-items: flex-start;
    }

    .ready-to-shop .ready-to-shop-content h2 {
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .ready-to-shop .ready-to-shop-content p {
        margin-bottom: 39px;
        line-height: unset;
    }

    .site-footer {
        padding-bottom: 24px;
    }

    .site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-field,
    .site-footer .footer-content .ft-menu-content .newsletter-form {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer .footer-content .ft-site-content .ft-social-icons,
    .site-footer .footer-content .ft-menu-content .ft-policy-menu ul,
    .site-footer .footer-content .ft-menu-content .ft-menu ul {
        flex-wrap: wrap;
    }

    .nursery-section .nursery-wrapper {
        justify-content: center !important;
        flex-wrap: wrap;
    }

    .blog-hero .blog-hero-content h1 {
        font-size: 32px;
    }

    .blog-hero .blog-hero-content p {
        font-size: 16px;
    }

    .farm-products {
        padding-bottom: 70px;
    }

    .farm-products h2 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .farm-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .farm-product-card__price {
        font-size: 21px;
    }

    .farm-product-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .farm-product-card__button {
        width: 100%;
    }

    .workshops-section {
        padding: 40px 0 60px;
    }

    .workshops-section .section-heading h2 {
        font-size: 32px;
    }

    /* .workshop-card {
        flex-direction: column;
        align-items: flex-start;
    } */
    .workshop-date {
        width: auto;
        min-width: 0;
    }

    /* .workshop-meta {
        flex-direction: column;
        gap: 10px;
    } */
    .restock-banner {
        padding: 28px 20px;
    }

    .restock-banner__content h3 {
        font-size: 30px;
    }

    .restock-banner__form {
        flex-direction: column;
        align-items: stretch;
    }

    .restock-banner__form button {
        width: 100%;
    }

    /* Template pages */
    .blog-hero {
        background-size: 100% 400px;
        background-position: center top;
    }

    .blog-hero .blog-hero-content {
        padding: 40px 0 10px;
    }

    .blog-hero .blog-hero-content p {
        flex-wrap: wrap;
    }

    .sell-page-hero h1,
    .sell-page-eligibility h2,
    .sell-page-process h2,
    .sell-page-fees h2,
    .sell-page-requirements h2,
    .sell-page-cta h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .sell-page-hero p,
    .sell-page-cta p,
    .sell-page-fees-text,
    .sell-page-requirements p {
        font-size: 16px;
        line-height: 1.6;
    }

    .sell-process-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .sell-process-steps::before {
        display: none;
    }

    .sell-process-step {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
        width: 100%;
    }

    .sell-process-step span {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        margin: 0;
        margin-bottom: 0;
        font-size: 18px;
    }

    .sell-fee-wrapper {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .sell-fee-wrapper .saperater-line {
        display: none;
    }

    .sell-page-order-info {
        padding: 20px 12px;
        font-size: 16px;
    }

    .sell-page-order-info .box {
        max-width: none;
    }

    .sell-requirement-grid {
        flex-direction: column;
    }

    .sell-requirement-box {
        width: 100%;
        min-width: 0;
        padding: 22px 18px;
    }

    .sell-page-requirements .sell-requirement-ship {
        align-items: flex-start;
    }

    .contact-us-section,
    .mdp-archive-title-section {
        margin-top: 32px;
    }

    .contact-us-section .contact-title,
    .mdp-archive-title-section .mdp-archive-title {
        margin-bottom: 32px;
    }

    .contact-us-section .contact-title h1,
    .mdp-archive-title-section .mdp-archive-title h1,
    .wholesale-hero__title-wrap h1,
    .ht-dragon-fruit .ht-dragon-fruit-title h1,
    .root-cutting-hero .root-cutting-hero__title-wrap h1,
    .diy-trellis-hero .diy-trellis-hero__title-wrap h1,
    .return-policy-hero .return-policy-hero__title-wrap h1 {
        padding: 28px 0 44px;
        font-size: 28px;
        line-height: 1.2;
    }

    .contact-us-section .contact-title .con-primary,
    .mdp-archive-title-section .mdp-archive-title .mdp-archive-title__bar,
    .wholesale-hero__bar,
    .ht-dragon-fruit .ht-dragon-fruit-title .ht-primary,
    .root-cutting-hero .root-cutting-hero__title-wrap .root-cutting-hero__bar,
    .diy-trellis-hero .diy-trellis-hero__title-wrap .diy-trellis-hero__bar,
    .return-policy-hero .return-policy-hero__title-wrap .return-policy-hero__bar {
        height: 34px;
        width: calc(100% - 32px);
        max-width: none;
    }

    .contact-info .contact-us-info {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        margin-top: 44px;
    }

    .contact-info .contact-us-info .con {
        width: 100%;
        text-align: center;
    }

    .contact-info .contact-us-info .con.con-social .social-links {
        justify-content: center;
        gap: 18px;
    }

    .contact-info .contact-us-info .con h3 {
        font-size: 24px;
    }

    .contact-info .contact-us-info .con a,
    .contact-info .contact-us-info .con p {
        font-size: 18px;
        line-height: 1.4;
    }

    .custom-contact-form {
        padding: 28px 16px 18px;
    }

    .custom-contact-form .two-col {
        flex-direction: column;
        gap: 18px;
    }

    .custom-contact-form .two-col .form-group {
        width: 100%;
    }

    .custom-contact-form .submit-row input[type="submit"] {
        width: 100%;
        /* min-width: 0; */
    }

    .wholesale-hero {
        margin-bottom: 44px;
    }

    .wholesale-categories a {
        font-size: 16px;
        line-height: 44px;
    }

    .wholesale-card {
        width: 100%;
    }

    .wholesale-features {
        flex-direction: column;
    }

    .our-trillis-design .our-trellis-bannner .our-trellis-content {
        padding: 24px 16px;
        background-size: cover;
        background-position: center;
    }

    .our-trillis-design .our-trellis-bannner .our-trellis-content h1 {
        font-size: 32px;
        line-height: 1.2;
        max-width: 400px;
    }

    .our-trillis-design .our-trellis-bannner .our-trellis-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .kit-components .kit-components-container .kit-components-content h3,
    .who-this-is-for .who-this-is-for-container .who-this-is-for-content h3 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 22px;
    }

    .kit-components,
    .who-this-is-for {
        padding-bottom: 54px;
    }

    .trellis-page .trellis-hero-content h1 {
        font-size: 18px;
        line-height: 1.2;
    }

    .trellis-page .trellis-hero-content h2 {
        font-size: 16px;
        line-height: 1.2;
    }

    .trellis-page .trellis-hero-content p {
        font-size: 14px;
        line-height: 1.4;
        max-width: 400px;
    }

    .trellis-page .trellis-hero-content {
        max-width: 640px;
    }

    .trellis-page .trellis-hero-thumbs {
        gap: 12px;
        flex-wrap: wrap;
    }

    .trellis-page .trellis-hero-thumbs img {
        width: calc(33.333% - 8px);
        height: auto;
    }

    .trellis-page .trellis-included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trellis-page .trellis-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    /* .trellis-page .trellis-news {
        flex-direction: column;
        align-items: flex-start;
        white-space: normal;
    } */

    .diy-trellis-visual .diy-trellis-visual__frame img {
        min-height: 240px;
    }

    .diy-trellis-content-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }

    .note-box p,
    .mistake-box p,
    .mistake-box ul li {
        font-size: 18px;
        line-height: 1.5;
    }

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

    .return-policy-story h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .return-policy-story ul li {
        font-size: 16px;
        line-height: 1.6;
    }

    .trellis-page .trellis-form-title {
        font-size: 22px;
    }

    .trellis-page .trellis-included h3,
    .trellis-page .trellis-showcase h3 {
        font-size: 22px;
    }

    .kit-components .kit-components-container {
        flex-direction: column;
        align-items: stretch;
    }

    .who-this-is-for .who-this-is-for-container {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .kit-components .kit-components-container .kit-components-content,
    .who-this-is-for .who-this-is-for-container .who-this-is-for-content {
        width: 100%;
    }

    .kit-components .kit-components-container .kit-components-img,
    .who-this-is-for .who-this-is-for-container .who-this-is-for__image {
        width: 80%;
        margin: 0 auto;
    }

    /* .trellis-page .trellis-showcase-slider {
        padding: 0 0 34px;
    } */

    .trellis-page .trellis-swiper .swiper-slide img,
    .trellis-page .trellis-swiper .swiper-wrapper img {
        height: 360px;
        border-radius: 14px;
    }
    .mdp-bp__title {
        font-size: 34px;
    }
    .mdp-bp__heading,
    .mdp-bp__reminder-title,
    .mdp-bp__cta-title {
        font-size: 32px;
    }
    .mdp-bp__cta-title {
        line-height: 1.2;
    }
    .mdp-bp__cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .mdp-bp-card {
        width: 100%;
        max-width: 239px;
    }
    .mdp-bp__cta-text {
        font-size: 20px;
        line-height: 26px;
    }
    .mdp-bp__cta {
        padding: 40px 0px;
    }
    .mdp-bp__hero {
        padding: 60px 0px;
    }
    .dragon-fruit-soil-mix .dragon-fruit-soil-mix-content .dragon-fruit-soil-mix-title h2, .strategy-timing .strategy-timing-content .strategy-timing-title h2, .sunlight-management .sunlight-management-content .sunlight-management-title h2 {
        font-size: 28px;
    }
    .section-title {
        font-size: 28px;
    }
    .note-box {
        gap: 10px;
    }
    .farm-flex-wrapper .container {
        flex-wrap: wrap;
    }
    .farm-flex-wrapper .container .product-standards,
    .farm-flex-wrapper .container .farm-policies {
        padding: 16px 60px;
        width: 100%;
    }
    .farm-flex-wrapper {
        padding: 40px 0;
    }
    .about-farm .about-flex .about-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 670px) {
    .farm-top-banner .farm-flex {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 8px;
    }
}

@media (max-width: 620px) {
    /* .hero-image .banner-pro-card.card-1 {
        top: 65px;
    }

    .hero-image .banner-pro-card.card-2 {
        right: 15%;
    } */
}

@media (max-width: 600px) {
    .workshop-content h3 {
        margin-bottom: 8px;
        line-height: 100%;
    }

    .workshop-content .event-badge {
        margin-bottom: 10px;
    }

    .workshop-meta {
        gap: 8px;
    }
}


@media (max-width: 576px) {
    .features-section .features-content #mdp-features-con-container.mdp-features-swiper {
        display: block;
        padding: 12px 0 28px;
        justify-content: flex-start;
        gap: 0;
    }

    .features-section .features-content #mdp-features-con-container.mdp-features-swiper .swiper-wrapper {
        padding: 0px 0px;
    }

    .features-section .features-content #mdp-features-con-container.mdp-features-swiper .feature-item {
        width: 100%;
        padding: 18px 10px;
        gap: 12px;
        height: auto;
        box-sizing: border-box;
    }

    .features-section .features-content #mdp-features-con-container.mdp-features-swiper .feature-item img {
        width: 38px;
        height: auto;
    }

    .features-section .features-content #mdp-features-con-container.mdp-features-swiper .feature-item p {
        font-size: 14px;
        text-align: center;
    }

    .features-section .features-content #mdp-features-con-container.mdp-features-swiper .mdp-features-pagination {
        bottom: 8px;
    }

    .features-section .features-content #mdp-features-con-container.mdp-features-swiper .swiper-pagination-bullet {
        background: rgba(218, 10, 86, 0.25);
        opacity: 1;
    }

    .features-section .features-content #mdp-features-con-container.mdp-features-swiper .swiper-pagination-bullet-active {
        background: var(--primary-color);
    }

    .workshop-content h3 {
        font-size: 18px;
    }

    .workshop-meta .meta-item {
        font-size: 14px;
    }

    .workshop-meta .meta-item img {
        width: 14px;
        height: 14px;
    }

    .trellis-page .trellis-card {
        width: 50%;
    }

    .trellis-page .trellis-form {
        padding: unset;
    }

    .trellis-page {
        overflow-x: hidden;
    }

    .trellis-page>.container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .trellis-page .trellis-hero {
        display: flex;
        flex-direction: column;
        height: auto;
        background-image: none;
    }

    .trellis-page .trellis-hero::after {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        background: url(../images/trellis-about.png) center / cover no-repeat;
    }

    .trellis-page .trellis-hero-content {
        width: 100%;
        max-width: none;
        height: auto;
        clip-path: none;
        filter: none;
        padding: 24px 16px 0px;
        justify-content: flex-start;
        gap: 12px;
    }

    /* .trellis-page .trellis-hero-content h1 {
	        font-size: 24px;
	        line-height: 1.2;
	    } */
    /* .trellis-page .trellis-hero-content h2 {
	        font-size: 20px;
	        line-height: 1.25;
	    } */
    /* .trellis-page .trellis-hero-content p {
	        font-size: 15px;
	        line-height: 1.6;
	        margin-top: 0;
	    } */
    .trellis-page .trellis-hero-thumbs {
        /* flex-direction: column;
	        flex-wrap: nowrap; */
        /* align-items: stretch; */
        gap: 12px;
        margin-top: 8px;
    }

    .trellis-page .trellis-hero-thumbs img {
        /* width: 100%; */
        max-width: none;
        /* height: auto; */
        display: block;
        border-radius: 8px;
    }

    /* What's Included: mobile swiper */
    .trellis-page .trellis-included-grid.trellis-included-swiper {
        display: block;
        overflow: hidden;
        padding-bottom: 18px;
    }

    .trellis-page .trellis-included-grid.trellis-included-swiper .trellis-card {
        /* width: 100%; */
        max-width: 188px;
        min-height: 120px;
        max-height: 169px;
        padding: 36px 5px 13px;
        /* margin: 0; */
    }

    .trellis-page .trellis-card img {
        width: 100%;
        max-width: 40px;
    }

    .trellis-page .trellis-included-pagination {
        display: none !important;
    }

    .trellis-wins .trellis-wins-container {
        margin: unset;
    }

    .trellis-page .trellis-form-wrap .trellis-contact-form {
        padding: 27px 10px;
    }

    .trellis-page {
        padding: 26px 0px 40px;
    }

    .trellis-page .trellis-form-title {
        font-size: 18px;
    }
    .sell-page-hero h1{
        font-size: 24px;
    } 
    .sell-page-eligibility h2, 
    .sell-page-process h2, 
    .sell-page-fees h2, 
    .sell-page-requirements h2, 
    .sell-page-cta h2,
    .wholesale-partner-text h2 {
        font-size: 22px;
    }
    .sell-page-eligibility {
        padding: 26px 0;
    }
    .sell-process-step span  {
        width: 30px;
        height: 30px;
        font-size: 14px;
        flex: unset;
    }
    .sell-process-step p {
        font-size: 16px;
    }
    .sell-page-fees {
        padding: 40px 0;
    }
    .sell-requirement-box ul li {
        align-items: baseline;
        line-height: 24px;
    }
    .sell-page-requirements {
        padding: 40px 0px;
    }
    .mdp-bp__heading, .mdp-bp__reminder-title,
    .mdp-bp__cta-title {
        font-size: 22px;
    }
    .mdp-bp__title {
        font-size: 28px;
        line-height: 46px;
    }
    .mdp-bp__hero {
        padding: 60px 0;
    }
    .mdp-bp__bullets li {
        font-size: 16px;
    }
    .mdp-bp__bullets {
        gap: 16px;
    }
    .mdp-bp__hint,
    .mdp-bp__heading {
        margin-bottom: 16px;
    }
    .mdp-bp__reminder-text {
        font-size: 16px;
        line-height: 24px;
    }
    .mdp-bp-section,
    .mdp-bp__section,
    .mdp-bp__section--split {
        padding: 40px 0;
    }
    .mdp-bp__cta-text {
        font-size: 18px;
        line-height: 24px;
    }
    .section-title {
        font-size: 22px;
    }
    .note-box p, 
    .mistake-box p, 
    .mistake-box ul li {
        font-size: 16px;
        line-height: 1.5;
    }
    .wholesale-card p {
        font-size: 16px;
        line-height: 20px;
    }
    .diy-trellis-content-col h2 {
        font-size: 22px;
        margin-bottom: 18px;
    } 
    .diy-trellis-content-col ul li {
        font-size: 16px;
        line-height: 1.2;
    }
    .diy-trellis-content-col ul li img {
        width: 14px;
        height: 14px;
    }
}

@media screen and (max-width: 575px) {
    .farm-product-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .site-footer .footer-content .ft-menu-content {
        gap: 5px;
    }
}

@media (max-width: 570px) {

    /* .hero-image .banner-pro-card.card-1 {
        left: 15%;
    } */
    .how-buying-works .how-buying-works-content .how-buying-works-steps .step-item .step-icon-count span {
        height: 14px;
        width: 14px;
        font-size: 12px;
        right: -6px;
    }

    .how-buying-works .how-buying-works-content .how-buying-works-steps .step-item .step-icon-count img {
        width: 40px;
        height: auto;
    }

    .how-buying-works .how-buying-works-content .how-buying-works-steps .step-item {
        max-width: 220px;
    }
}

@media (max-width: 510px) {
    .trellis-page .trellis-card {
        width: 100%;
        max-width: unset;
    }
    .mdp-bp-card {
        max-width: unset;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .ft-48 {
        font-size: 22px;
    }

    .ft-32 {
        font-size: 20px;
    }

    .site-header .header-main {
        padding: 12px 14px;
        gap: 12px;
    }

    .site-header .site-branding .custom-logo-link img {
        max-width: 30px;
    }

    .site-header .header-menu-toggle,
    .site-header .header-icons .header-cart,
    .site-header .header-icons .header-account {
        width: 40px;
        height: 40px;
    }

    .site-header .header-icons {
        gap: 6px;
    }

    .site-footer .footer-content .ft-site-content .ft-logo .custom-logo {
        width: 30px;
    }

    .site-footer .footer-content .ft-site-content .ft-logo p {
        font-size: 8px;
        line-height: unset;
    }

    .site-footer .footer-content {
        gap: 12px;
    }

    .site-footer {
        padding: 23px 0px;
    }

    .site-footer .footer-content .ft-menu-content .newsletter-form {
        padding: 17px 8px;
    }

    .site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-field input[type="email"] {
        height: 42px;
    }

    .site-footer .footer-content .ft-menu-content .newsletter-form .newsletter-btn {
        height: 42px;
        width: 58px;
    }

    .site-footer .footer-content .ft-site-content .ft-social-icons {
        gap: 8px;
    }

    .site-footer .footer-content .ft-site-content .ft-social-icons img {
        width: 26px;
        height: 26px;
    }

    #hero-section .hero-section .hero-content .hero-title {
        font-size: 22px;
    }

    .hero-image {
        min-height: 260px;
    }

    /* .hero-image .banner-pro-card {
        max-width: 190px;
        border-radius: 14px;
    }

    .hero-image .banner-pro-card.card-1 {
        top: 35px;
        left: 14%;
    }
    .hero-image .banner-pro-card.card-2 {
        right: 15%;
        top: 5px;
    }

    .hero-image .banner-pro-card .banner-pro-card-image .pro-b-main-trans-1 img {
        height: 100px;
    }

    .hero-image .banner-pro-card .banner-pro-card-image .pro-b-main {
        height: 122px;
        border-radius: 12px;
    }

    .hero-image .banner-pro-card .pro-card-content .pro-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    } */

    /* .hero-image .banner-pro-card .pro-card-content .pro-card-description, */
    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-location,
    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-description {
        font-size: 14px;
    }

    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-media img {
        height: auto;
    }

    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-title {
        font-size: 20px;
    }

    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-badges span {
        max-width: unset;
        width: auto;
        font-size: 12px;
        padding: 8px 12px;
    }

    .ready-to-shop {
        padding: 20px 0px;
    }

    /* Template pages */
    .contact-us-section .contact-title h1,
    .mdp-archive-title-section .mdp-archive-title h1,
    .wholesale-hero__title-wrap h1,
    .ht-dragon-fruit .ht-dragon-fruit-title h1,
    .root-cutting-hero .root-cutting-hero__title-wrap h1,
    .diy-trellis-hero .diy-trellis-hero__title-wrap h1,
    .return-policy-hero .return-policy-hero__title-wrap h1 {
        padding: 22px 0 40px;
        font-size: 24px;
    }

    .contact-us-section .contact-title .con-primary,
    .mdp-archive-title-section .mdp-archive-title .mdp-archive-title__bar,
    .wholesale-hero__bar,
    .ht-dragon-fruit .ht-dragon-fruit-title .ht-primary,
    .root-cutting-hero .root-cutting-hero__title-wrap .root-cutting-hero__bar,
    .diy-trellis-hero .diy-trellis-hero__title-wrap .diy-trellis-hero__bar,
    .return-policy-hero .return-policy-hero__title-wrap .return-policy-hero__bar {
        height: 28px;
        width: calc(100% - 28px);
    }

    .contact-info .contact-us-info .con h3 {
        font-size: 22px;
    }

    .contact-info .contact-us-info .con a,
    .contact-info .contact-us-info .con p {
        font-size: 16px;
    }

    .contact-info .contact-us-info .con.con-social .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .wholesale-categories {
        margin-bottom: 40px;
    }

    .wholesale-categories a {
        padding: 0 14px;
        font-size: 15px;
        line-height: 40px;
    }

    .sell-page-order-info .symbol {
        display: none;
    }

    .sell-page-order-info {
        justify-content: flex-start;
    }

    .sell-page-order-info .box {
        max-width: none;
    }

    .sell-page-cta {
        padding: 40px 0;
    }

    .trellis-page .trellis-hero-content {
        padding: 22px 16px 0px;
    }

    /* .trellis-page .trellis-hero-thumbs img {
        width: 100%;
    } */

    .trellis-page .trellis-included-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .diy-trellis-visual .diy-trellis-visual__frame img {
        min-height: 200px;
    }

    .workshops-section .section-heading h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .workshops-section .section-heading p {
        font-size: 16px;
    }

    .restock-banner__content h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .restock-banner__content p {
        font-size: 16px;
        line-height: 24px;
    }

    .blog-hero .blog-hero-content h1 {
        font-size: 22px;
    }

    .blog-hero .blog-hero-content p {
        font-size: 14px;
    }

    .blog-hero .blog-hero-content p img {
        width: 14px;
        height: auto;
    }

    .contact-form-section .contact-form-container .contact-form-content ul li {
        font-size: 14px;
    }

    .contact-form-section .contact-form-container .contact-form-content {
        padding: 26px 10px;
    }

    .custom-contact-form {
        padding: unset;
    }

    /* .custom-contact-form .wpcf7 form {
        padding: unset;
    } */

    .kit-components .kit-components-container .kit-components-img,
    .who-this-is-for .who-this-is-for-container .who-this-is-for__image {
        width: 100%;
    }

    .trellis-wins .trellis-wins-container h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .our-trillis-design .our-trellis-bannner .our-trellis-content h1 {
        font-size: 24px;
    }

    .our-trillis-design .our-trellis-bannner .our-trellis-content h4 {
        font-size: 12px;
        margin-bottom: 4px;
    }
    .dragon-fruit-soil-mix .dragon-fruit-soil-mix-content .dragon-fruit-soil-mix-title h2, .strategy-timing .strategy-timing-content .strategy-timing-title h2, .sunlight-management .sunlight-management-content .sunlight-management-title h2 {
        font-size: 22px;
    } 
    .dragon-fruit-soil-mix .dragon-fruit-soil-mix-content ul li, .sunlight-management .sunlight-management-content ul li, .strategy-timing .strategy-timing-content ul li {
        font-size: 16px;
        line-height: 20px;
    }
    .root-cutting-hero {
        margin-bottom: 50px;
    }
    .farm-highlights .highlight-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .about-farm .about-flex .about-text h2,
    .farm-products h2 {
        font-size: 22px;
    }
    .about-farm .about-flex .about-text p {
        font-size: 16px;
        line-height: 24px;
    }
    .farm-flex-wrapper .container .product-standards, .farm-flex-wrapper .container .farm-policies {
        padding: 16px;
    }
    .farm-flex-wrapper .container .product-standards .standard-item-flex {
        gap: 8px;
    }
    .about-farm {
        padding: 20px 0px;
        margin-bottom: unset;
    }
    .farm-top-banner {
        padding: 26px 0px;
    }
    .farm-top-banner h1 {
        line-height: 55px;
    }
    .farm-highlights {
        padding: 40px 0;
    }
    .what-you-need {
        padding: 20px 0;
    }
    .what-you-need .what-you-need-content .featured-farm-list {
        margin-top: unset;
    }
}

@media (max-width: 460px) {
    .workshop-content h3 {
        font-size: 16px;
    }

    .blog-hero .blog-hero-content p {
        margin-bottom: 30px;
    }

    .blog-hero {
        background-size: 100% 300px;
    }

    .nursery-section {
        padding: 40px 0px 39px;
    }

    .trellis-page .trellis-swiper .swiper-slide img,
    .trellis-page .trellis-swiper .swiper-wrapper img {
        height: 340px;
    }
    .farm-top-banner .btn-flex {
        margin: 20px auto 0;
    }
}

@media (max-width: 426px) {
    .workshop-card {
        flex-direction: column;
        gap: 14px;
        padding: 10px;
    }

    .workshop-date {
        width: 100%;
        margin: 0px;
    }

    .workshop-content {
        padding: unset;
    }

    .nursery-section .nursery-wrapper .nursery-card .nursery-content h3 {
        font-size: 16px;
    }

    .nursery-section .nursery-wrapper .nursery-card .nursery-content .nursery-cont-detail p {
        font-size: 14px;
    }

    .nursery-section .nursery-wrapper .nursery-card .nursery-content .desc {
        font-size: 12px;
    }

    .nursery-section .nursery-wrapper .nursery-card .nursery-content hr {
        margin-bottom: 16px;
    }
    .farm-product-card__delivery,
    .farm-product-card__badge {
        font-size: 12px;
    }
}

@media (max-width: 395px) {
    .ft-18 {
        font-size: 14px;
    }

    /* .hero-image .banner-pro-card.card-1 {
        left: 10%;
    }
    .hero-image .banner-pro-card.card-2 {
        right: 10%;
    } */
    .what-you-need .what-you-need-content h2 {
        margin-bottom: 6px;
    }

    .what-you-need .what-you-need-content .wyn-card-container {
        gap: 13px;
    }

    .what-you-need .what-you-need-content .wyn-card-container .wyn-card {
        width: 100%;
        max-width: 100%;
        min-height: 225px;
    }

    .what-you-need .what-you-need-content .wyn-card-container .wyn-card img {
        width: 100%;
    }

    .what-you-need .what-you-need-content .wyn-card-container .wyn-card-content {
        width: 100%;
    }

    .what-you-need .what-you-need-content .featured-farm-card {
        padding: 14px;
    }

    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-badges {
        flex-wrap: wrap;
        gap: unset;
        justify-content: space-between;
    }

    .how-buying-works .how-buying-works-content .how-buying-works-steps .step-item p {
        font-size: 14px;
    }

    #hero-section .hero-section .hero-content .hero-title {
        font-size: 20px;
    }

    .workshop-card {
        gap: 10px;
    }

    .workshop-content {
        padding: 10px 0px;
    }

    .workshop-content h3 {
        font-size: 14px;
    }

    .workshop-content .event-badge {
        font-size: 10px;
    }

    .workshop-content .event-badge {
        margin-bottom: 6px;
    }

    .workshop-meta {
        gap: 4px;
    }

    /* .workshop-meta .meta-item {
        font-size: 12px;
        gap: 4px;
    }
    .workshop-meta .meta-item img {
        width: 12px;
        height: 12px;
    } */
    .kit-components .kit-components-container .kit-components-content h3,
    .who-this-is-for .who-this-is-for-container .who-this-is-for-content h3 {
        font-size: 22px;
    }

    .kit-components .kit-components-container .kit-components-content ul li,
    .who-this-is-for .who-this-is-for-container .who-this-is-for-content ul li {
        font-size: 16px;
    }

    .kit-components .kit-components-container .kit-components-content ul li img,
    .who-this-is-for .who-this-is-for-container .who-this-is-for-content ul li img {
        width: 18px;
        height: auto;
    }

    .kit-components .kit-components-container .kit-components-content ul,
    .who-this-is-for .who-this-is-for-container .who-this-is-for-content ul {
        gap: 16px;
    }
    .mdp-bp__hint,
    .mdp-bp__note {
        font-size: 16px;
        line-height: 20px;
    }
    .mdp-bp__heading,  
    .mdp-bp__cta-title {
        font-size: 20px;
    }
    .mdp-bp__reminder-title {
        font-size: 18px;
    }
    .mdp-bp__reminder {
        padding: 14px;
    }
    .farm-top-banner p {
        font-size: 16px;
        line-height: 24px;
        max-width: unset;
    }
}

@media (max-width: 360px) {

    /* .hero-image .banner-pro-card.card-1 {
        left: 6%;
    }
    .hero-image .banner-pro-card.card-2 {
        right: 6%;
    } */
    #hero-section .hero-section .hero-content .hero-title {
        font-size: 18px;
    }
}

@media (max-width: 350px) {
    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-badges {
        gap: 8px;
        justify-content: unset;
    }

    .trellis-page .trellis-news {
        flex-direction: column;
        align-items: flex-start;
        white-space: normal;
    }
}

.mdp-shipping-trust {
    padding: 60px 0;
}

.mdp-shipping-trust__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mdp-shipping-trust__media img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.mdp-shipping-trust__content h2 {
    margin: 0 0 16px;
}

.mdp-shipping-trust__content p {
    margin: 0;
}

@media (max-width: 768px) {
    .mdp-shipping-trust__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.hero-image .mdp-hero-cards {
    position: relative;
    width: 100%;
    min-height: 420px;
}

.hero-image .mdp-hero-card {
    position: absolute;
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
    object-fit: cover;
    background-color: #fff;
}

.hero-image .mdp-hero-card--1 {
    top: 0;
    right: 0;
    width: 62%;
    aspect-ratio: 4 / 5;
    transform: rotate(7deg);
    z-index: 2;
}

.hero-image .mdp-hero-card--2 {
    bottom: 0;
    left: 0;
    width: 45%;
    aspect-ratio: 3 / 5;
    transform: rotate(-7deg);
    z-index: 1;
}

@media (max-width: 992px) {
    .hero-image .mdp-hero-cards {
        min-height: 360px;
    }
}

@media (max-width: 600px) {
    .hero-image .mdp-hero-cards {
        min-height: 300px;
    }
}

/* Mobile QA: hero cuttings cards overflow their container due to rotation +
   box-shadow, visually clashing with the hero-description above and the
   Shop Marketplace button below. Tame shadow on mobile and add generous
   vertical clearance around the cards block. */
@media (max-width: 830px) {
    #hero-section .hero-section .hero-content .hero-image.display-mobile {
        margin: 24px auto 72px;
        overflow: visible;
    }
    .hero-image .mdp-hero-card {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    }
}

@media (max-width: 600px) {
    #hero-section .hero-section .hero-content .hero-image.display-mobile {
        margin: 32px auto 80px;
    }
    .hero-image .mdp-hero-card--1 {
        transform: rotate(4deg);
    }
    .hero-image .mdp-hero-card--2 {
        transform: rotate(-4deg);
    }
}

/* ==========================================================================
   Trellis Installations video embed (dragon-fruits-trellis.php)
   ========================================================================== */
.mdp-install-video {
    margin: 2rem auto 0;
    width: 100%;
    max-width: 960px;
}

.mdp-install-video video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    background-color: #000;
}

/* Service-area paragraph below showcase */
.trellis-service-area {
    max-width: 900px;
    margin: 40px auto 32px;
    padding: 0 16px;
    text-align: center;
}

.trellis-service-area p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--grey-text-color, #444);
    margin: 0;
}

/* ==========================================================================
   Our Trellis Design — pricing + WPForms embed (our-trellis-design.php)
   ========================================================================== */
.trellis-pricing {
    padding: 60px 0 40px;
}

.trellis-pricing__content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
}

.trellis-pricing__price {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 12px;
    color: var(--primary-color);
}

.trellis-pricing__sub {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    color: var(--grey-text-color, #444);
}

.trellis-pricing__form {
    max-width: 720px;
    margin: 0 auto;
    scroll-margin-top: 96px; /* so anchor jumps clear sticky header */
}

.trellis-pricing__form-placeholder {
    border: 1px dashed var(--primary-color);
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 20px;
    color: var(--primary-color);
}

.trellis-pricing__form-placeholder p {
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Our Trellis Design — "Not local? Build at home" kit section
   (uses .kit-components outer wrapper for existing layout CSS)
   ========================================================================== */
.mdp-trellis-kit__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mdp-trellis-kit__content h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-text-color, #1a1a1a);
}

.mdp-trellis-kit__content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.mdp-trellis-kit__lead {
    font-size: 18px;
    line-height: 1.55;
    margin: 0 0 8px;
    color: var(--grey-text-color, #444);
}

.mdp-trellis-kit__list {
    padding-left: 20px;
    margin: 0 0 12px;
    list-style: disc;
}

.mdp-trellis-kit__list li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--grey-text-color, #444);
}

.mdp-trellis-kit__ship {
    font-style: italic;
    margin: 16px 0 24px;
    color: var(--grey-text-color, #444);
}

.mdp-trellis-kit .mdp-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.mdp-trellis-kit .mdp-btn--primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.mdp-trellis-kit .mdp-btn--primary:hover,
.mdp-trellis-kit .mdp-btn--primary:focus {
    background-color: #b8084d;
    transform: translateY(-1px);
}

.mdp-trellis-kit__media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    display: block;
}

@media (max-width: 768px) {
    .mdp-trellis-kit__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mdp-trellis-kit__media {
        order: -1; /* image stacks above copy on mobile */
    }

    .trellis-pricing {
        padding: 40px 0 24px;
    }

    .trellis-pricing__price {
        font-size: 26px;
    }
}

/* ==========================================================================
   DIY Trellis Build page (page-diy-trellis-build.php)
   Scope: everything under `.mdp-diy-*` — zero style bleed outside this page.
   ========================================================================== */

/* Scroll-padding so jump-nav anchors don't land under a sticky header/nav. */
.mdp-diy-page { scroll-padding-top: 60px; }
html:has(.mdp-diy-page) { scroll-padding-top: 60px; }

/* ---------- Shared button classes (scoped to this page) ---------- */
.mdp-diy-page .mdp-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.mdp-diy-page .mdp-btn--primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.mdp-diy-page .mdp-btn--primary:hover,
.mdp-diy-page .mdp-btn--primary:focus {
    background-color: #b8084d;
    border-color: #b8084d;
    color: #fff;
    transform: translateY(-1px);
}

.mdp-diy-page .mdp-btn--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.mdp-diy-page .mdp-btn--secondary:hover,
.mdp-diy-page .mdp-btn--secondary:focus {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* ---------- 1. Hero ---------- */
.mdp-diy-hero {
    padding: 48px 0 24px;
}

.mdp-diy-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mdp-diy-hero__content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--dark-text-color, #1a1a1a);
}

.mdp-diy-hero__sub {
    font-size: 18px;
    line-height: 1.55;
    color: var(--grey-text-color, #475467);
    margin: 0 0 24px;
    max-width: 560px;
}

.mdp-diy-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mdp-diy-hero__media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    display: block;
    background-color: #f2f4f7; /* fills visible space until the image is uploaded */
    min-height: 280px;
    object-fit: cover;
}

/* ---------- Jump nav (mobile only) ---------- */
.mdp-diy-jumpnav { display: none; }

@media (max-width: 768px) {
    .mdp-diy-jumpnav {
        display: flex;
        gap: 0.75rem;
        overflow-x: auto;
        padding: 0.75rem 1rem;
        position: sticky;
        top: 0;
        z-index: 50;
        background: #fff;
        border-bottom: 1px solid #e6e8ef;
        -webkit-overflow-scrolling: touch;
    }

    .mdp-diy-jumpnav a {
        flex: 0 0 auto;
        padding: 0.5rem 0.9rem;
        border-radius: 999px;
        background: #f2f4f7;
        color: #101828;
        text-decoration: none;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .mdp-diy-jumpnav a:hover,
    .mdp-diy-jumpnav a:focus {
        background: #e6e8ef;
    }
}

/* ---------- Page body / section rhythm ---------- */
.mdp-diy-page__body {
    padding-bottom: 48px;
}

.mdp-diy-section {
    padding: 40px 0;
    border-bottom: 1px solid #e6e8ef;
}

.mdp-diy-section:last-of-type {
    border-bottom: none;
}

.mdp-diy-section h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--dark-text-color, #1a1a1a);
}

.mdp-diy-section > p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--grey-text-color, #475467);
    margin: 0 0 12px;
}

.mdp-diy-list {
    padding-left: 20px;
    margin: 0;
    list-style: disc;
}

.mdp-diy-list li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-text-color, #475467);
    margin-bottom: 8px;
}

.mdp-diy-list li a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ---------- Collapsible <details> sections (Materials / Upgrades / Tools / Steps) ---------- */
.mdp-diy-details { margin: 0; }

.mdp-diy-details > summary {
    list-style: none;
    cursor: default;
}

.mdp-diy-details > summary::-webkit-details-marker {
    display: none;
}

.mdp-diy-details > summary h2 {
    display: inline;
    margin: 0;
}

@media (max-width: 768px) {
    .mdp-diy-section--collapsible {
        padding: 0;
        border-bottom: 1px solid #e6e8ef;
    }

    .mdp-diy-section--collapsible .mdp-diy-details {
        padding: 0;
    }

    .mdp-diy-details > summary {
        cursor: pointer;
        padding: 16px 32px 16px 0;
        position: relative;
    }

    .mdp-diy-details > summary::after {
        content: "+";
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: #475467;
        line-height: 1;
    }

    .mdp-diy-details[open] > summary::after {
        content: "−";
    }

    .mdp-diy-details[open] {
        padding-bottom: 16px;
    }
}

/* ---------- Numbered step list ---------- */
.mdp-diy-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mdp-diy-steps > li {
    counter-increment: step;
    padding: 20px 0 20px 60px;
    position: relative;
    border-bottom: 1px solid #e6e8ef;
}

.mdp-diy-steps > li:last-child {
    border-bottom: none;
}

.mdp-diy-steps > li::before {
    content: "Step " counter(step);
    position: absolute;
    left: 0;
    top: 22px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    font-weight: 700;
}

.mdp-diy-steps > li > h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-text-color, #1a1a1a);
}

.mdp-diy-steps > li > p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-text-color, #475467);
}

.mdp-diy-steps > li img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 12px;
    display: block;
}

/* ---------- Video section ---------- */
.mdp-diy-video__frame {
    margin: 24px 0;
    display: flex;
    justify-content: center;
}

.mdp-diy-video__frame .instagram-media {
    min-height: 500px; /* prevents layout jank while embed.js boots */
}

.mdp-diy-video__fallback {
    text-align: center;
    margin: 8px 0 0;
}

.mdp-diy-video__fallback a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.mdp-diy-video__fallback a:hover,
.mdp-diy-video__fallback a:focus {
    text-decoration: underline;
}

/* ---------- FAQ ---------- */
.mdp-diy-faq {
    border-top: 1px solid #e6e8ef;
}

.mdp-diy-faq__item {
    border-bottom: 1px solid #e6e8ef;
    padding: 16px 0;
}

.mdp-diy-faq__item summary {
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding-right: 2rem;
    list-style: none;
    font-size: 17px;
    color: var(--dark-text-color, #1a1a1a);
}

.mdp-diy-faq__item summary::-webkit-details-marker {
    display: none;
}

.mdp-diy-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #475467;
    line-height: 1;
}

.mdp-diy-faq__item[open] summary::after {
    content: "−";
}

.mdp-diy-faq__item p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-text-color, #475467);
}

/* ---------- Bottom CTA ---------- */
.mdp-diy-bottom-cta {
    background-color: var(--secondary-color);
    padding: 56px 0;
    margin-top: 32px;
}

.mdp-diy-bottom-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.mdp-diy-bottom-cta__inner h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--dark-text-color, #1a1a1a);
}

.mdp-diy-bottom-cta__inner p {
    font-size: 17px;
    line-height: 1.55;
    color: var(--grey-text-color, #475467);
    margin: 0 0 24px;
}

.mdp-diy-bottom-cta__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Mobile / tablet responsive ---------- */
@media (max-width: 768px) {
    .mdp-diy-hero {
        padding: 24px 0 16px;
    }

    .mdp-diy-hero__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mdp-diy-hero__content h1 {
        font-size: 28px;
    }

    .mdp-diy-hero__sub {
        font-size: 16px;
    }

    .mdp-diy-hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .mdp-diy-hero__ctas .mdp-btn {
        text-align: center;
    }

    .mdp-diy-section {
        padding: 24px 0;
    }

    .mdp-diy-section h2 {
        font-size: 22px;
    }

    .mdp-diy-steps > li {
        padding: 16px 0 16px 0;
    }

    .mdp-diy-steps > li::before {
        position: static;
        display: block;
        margin-bottom: 4px;
    }

    .mdp-diy-bottom-cta__buttons {
        flex-direction: column;
    }

    .mdp-diy-bottom-cta__buttons .mdp-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Homepage April 2026 brief — wyn-card link wrappers, Coming Soon badge,
   and featured farm owner/tagline.
   ========================================================================== */

/* The wyn-card was a div; it's now an <a> for clickable categories. Keep the
   visual identical — strip default link styling and inherit text color. */
.what-you-need .what-you-need-content .wyn-card-container a.wyn-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.what-you-need .what-you-need-content .wyn-card-container a.wyn-card:hover,
.what-you-need .what-you-need-content .wyn-card-container a.wyn-card:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Coming Soon variant (the Fruit card) — dimmed, badged, non-clickable */
.what-you-need .what-you-need-content .wyn-card-container .wyn-card--coming-soon {
    position: relative;
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}

.wyn-card--coming-soon .wyn-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Featured farm — owner name + tagline (April 2026 brief) */
.featured-farm-owner {
    font-size: 14px;
    color: var(--grey-text-color, #475467);
    margin: 4px 0 0;
}

.featured-farm-tagline {
    font-size: 15px;
    line-height: 1.4;
    color: var(--primary-color);
    font-style: italic;
    margin: 8px 0 0;
}

/* Trellis showcase intro paragraph (April 2026 brief 1.4) */
.trellis-showcase-intro {
    max-width: 880px;
    margin: 8px auto 24px;
    text-align: center;
    font-size: 18px;
    line-height: 1.55;
    color: var(--grey-text-color, #475467);
}

/* Trellis service-area CTA button (April 2026 brief 1.5) */
.trellis-service-area__cta {
    margin-top: 16px;
    text-align: center;
}

.trellis-service-area__btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.trellis-service-area__btn:hover,
.trellis-service-area__btn:focus {
    background-color: #b8084d;
    transform: translateY(-1px);
    color: #fff;
}

/* April 2026 trellis brief — pricing heading + What You Need section */
.trellis-pricing__heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
    color: var(--dark-text-color, #1a1a1a);
    text-align: center;
}

.mdp-trellis-what-you-need {
    padding: 32px 0 48px;
}

.mdp-trellis-what-you-need__heading {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--dark-text-color, #1a1a1a);
}

.mdp-trellis-what-you-need__list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.mdp-trellis-what-you-need__list li {
    font-size: 17px;
    line-height: 1.55;
    color: var(--grey-text-color, #475467);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .trellis-pricing__heading {
        font-size: 26px;
    }
    .mdp-trellis-what-you-need__heading {
        font-size: 22px;
    }
}

/* =========================================================================
   Featured Farm card — flair variant (homepage)
   April 2026 brief: Wallace Ranch flair pass.
   ========================================================================= */

.featured-farm-card--flair {
	position: relative;
	background:
		linear-gradient(135deg, rgba(218, 10, 86, 0.04) 0%, rgba(82, 3, 32, 0.06) 100%),
		var(--white);
	border: 1px solid rgba(218, 10, 86, 0.15);
	border-radius: 24px;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.featured-farm-card--flair::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary-color), var(--dark-text-color));
	z-index: 1;
}

.featured-farm-card--flair:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 64px rgba(82, 3, 32, 0.15);
}

.featured-farm-card--flair .featured-farm-media {
	position: relative;
	max-width: 460px;
}

.featured-farm-card--flair .featured-farm-media img {
	border-radius: 18px;
	height: 320px;
	transition: transform 0.5s ease;
}

.featured-farm-card--flair:hover .featured-farm-media img {
	transform: scale(1.03);
}

.featured-farm-pullquote {
	margin-top: 20px;
	padding: 18px 22px;
	background-color: rgba(218, 10, 86, 0.05);
	border-left: 3px solid var(--primary-color);
	border-radius: 0 10px 10px 0;
}

.featured-farm-pullquote p {
	color: var(--dark-text-color);
	font-family: 'Libre Baskerville', serif;
	font-size: 17px;
	line-height: 1.5;
	font-style: italic;
	margin: 0 0 8px;
	text-align: left;
}

.featured-farm-pullquote cite {
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 600;
	font-style: normal;
}

/* =========================================================================
   Single-farm flair render (Wallace Ranch — single-farm--flair body class)
   ========================================================================= */

.single-farm--flair .mdp-farm-flair-hero {
	padding: 64px 0 48px;
	background:
		radial-gradient(ellipse at top right, rgba(218, 10, 86, 0.08) 0%, transparent 60%),
		linear-gradient(180deg, var(--secondary-color) 0%, var(--white) 100%);
}

.single-farm--flair .mdp-farm-flair-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.single-farm--flair .mdp-farm-flair-hero__eyebrow {
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.single-farm--flair .mdp-farm-flair-hero__title {
	color: var(--dark-text-color);
	margin: 0 0 24px;
	line-height: 1.05;
}

.single-farm--flair .mdp-farm-flair-stats {
	display: flex;
	gap: 32px;
	margin: 0 0 32px;
	padding: 0;
	list-style: none;
}

.single-farm--flair .mdp-farm-flair-stats li {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.single-farm--flair .mdp-farm-flair-stats__value {
	font-family: 'Libre Baskerville', serif;
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.1;
}

.single-farm--flair .mdp-farm-flair-stats__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--grey-text-color);
}

.single-farm--flair .mdp-farm-flair-cta {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-color), #b00a4a);
	color: var(--white);
	padding: 16px 32px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 16px;
	box-shadow: 0 6px 20px rgba(218, 10, 86, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single-farm--flair .mdp-farm-flair-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(218, 10, 86, 0.45);
	color: var(--white);
}

.single-farm--flair .mdp-farm-flair-hero__media {
	position: relative;
	aspect-ratio: 4 / 5;
}

.single-farm--flair .mdp-farm-flair-hero__photo {
	position: absolute;
	border-radius: 18px;
	object-fit: cover;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.single-farm--flair .mdp-farm-flair-hero__photo--primary {
	top: 0;
	right: 0;
	width: 78%;
	height: 92%;
	z-index: 2;
}

.single-farm--flair .mdp-farm-flair-hero__photo--secondary {
	bottom: 0;
	left: 0;
	width: 50%;
	height: 50%;
	transform: rotate(-4deg);
	z-index: 1;
	border: 6px solid var(--white);
}

.single-farm--flair .mdp-farm-flair-pullquote {
	padding: 56px 0;
	background-color: var(--secondary-color);
}

.single-farm--flair .mdp-farm-flair-pullquote blockquote {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.single-farm--flair .mdp-farm-flair-pullquote p {
	font-family: 'Libre Baskerville', serif;
	font-size: 26px;
	line-height: 1.4;
	color: var(--dark-text-color);
	font-style: italic;
	margin: 0 0 16px;
}

.single-farm--flair .mdp-farm-flair-pullquote cite {
	color: var(--primary-color);
	font-size: 15px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 0.05em;
}

.single-farm--flair .mdp-farm-flair-gallery {
	padding: 56px 0 72px;
}

.single-farm--flair .mdp-farm-flair-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.single-farm--flair .mdp-farm-flair-gallery__item {
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.single-farm--flair .mdp-farm-flair-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.single-farm--flair .mdp-farm-flair-gallery__item:hover img {
	transform: scale(1.06);
}

/* On flair pages, suppress the default farm-top-banner since the flair hero replaces it */
.single-farm--flair .farm-top-banner {
	display: none;
}

@media (max-width: 992px) {
	.single-farm--flair .mdp-farm-flair-hero__grid { grid-template-columns: 1fr; gap: 32px; }
	.single-farm--flair .mdp-farm-flair-hero__media { aspect-ratio: 5 / 4; }
}

@media (max-width: 600px) {
	.single-farm--flair .mdp-farm-flair-hero { padding: 36px 0 24px; }
	.single-farm--flair .mdp-farm-flair-stats { gap: 18px; flex-wrap: wrap; }
	.single-farm--flair .mdp-farm-flair-stats__value { font-size: 24px; }
	.single-farm--flair .mdp-farm-flair-pullquote p { font-size: 20px; }
	.single-farm--flair .mdp-farm-flair-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* =========================================================================
   Wholesale page (templates/wholesale.php)
   April 2026 brief — lead-gen layout, magenta + burgundy palette.
   ========================================================================= */

.mdp-wholesale {
	background-color: var(--white);
}

.mdp-wholesale .container {
	max-width: 1217px;
	margin: 0 auto;
	padding: 0 16px;
}

/* --- Hero --- */
.mdp-wholesale-hero {
	padding: 64px 0 56px;
	background:
		radial-gradient(ellipse at top right, rgba(218, 10, 86, 0.10) 0%, transparent 65%),
		linear-gradient(180deg, var(--secondary-color) 0%, var(--white) 100%);
}

.mdp-wholesale-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 56px;
	align-items: center;
}

.mdp-wholesale-hero__eyebrow {
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 14px;
}

.mdp-wholesale-hero__title {
	font-family: 'Libre Baskerville', serif;
	font-size: 48px;
	font-weight: 700;
	color: var(--dark-text-color);
	line-height: 1.08;
	margin: 0 0 18px;
}

.mdp-wholesale-hero__sub {
	font-size: 20px;
	line-height: 1.45;
	color: var(--text-color);
	margin: 0 0 14px;
}

.mdp-wholesale-hero__body {
	font-size: 16px;
	line-height: 1.6;
	color: var(--grey-text-color);
	margin: 0 0 28px;
}

.mdp-wholesale-cta {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-color), #b00a4a);
	color: var(--white);
	padding: 16px 32px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 16px;
	box-shadow: 0 6px 20px rgba(218, 10, 86, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mdp-wholesale-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(218, 10, 86, 0.45);
	color: var(--white);
}

.mdp-wholesale-cta--inverse {
	background: var(--white);
	color: var(--primary-color);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.mdp-wholesale-cta--inverse:hover {
	color: var(--primary-color);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.mdp-wholesale-hero__media img {
	width: 100%;
	height: auto;
	border-radius: 18px;
	box-shadow: 0 24px 56px rgba(82, 3, 32, 0.18);
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

/* --- Product cards --- */
.mdp-wholesale-cards {
	padding: 64px 0;
	background-color: var(--white);
}

.mdp-wholesale-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.mdp-wholesale-card {
	background-color: var(--white);
	border: 1px solid rgba(218, 10, 86, 0.12);
	border-radius: 18px;
	padding: 0 0 28px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mdp-wholesale-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(82, 3, 32, 0.12);
}

.mdp-wholesale-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: var(--secondary-color);
}

.mdp-wholesale-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.mdp-wholesale-card:hover .mdp-wholesale-card__media img {
	transform: scale(1.04);
}

.mdp-wholesale-card h3 {
	font-family: 'Libre Baskerville', serif;
	font-size: 22px;
	color: var(--dark-text-color);
	margin: 24px 24px 12px;
}

.mdp-wholesale-card p {
	color: var(--grey-text-color);
	font-size: 15px;
	line-height: 1.55;
	margin: 0 24px 18px;
}

.mdp-wholesale-card__link {
	display: inline-block;
	color: var(--primary-color);
	font-weight: 700;
	font-size: 14px;
	margin-left: 24px;
	transition: color 0.2s ease;
}

.mdp-wholesale-card__link:hover {
	color: var(--dark-text-color);
}

/* --- Section heading shared --- */
.mdp-wholesale-section-heading {
	font-family: 'Libre Baskerville', serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--dark-text-color);
	text-align: center;
	margin: 0 0 32px;
}

/* --- Buyer fit --- */
.mdp-wholesale-buyers {
	padding: 64px 0;
	background-color: var(--secondary-color);
}

.mdp-wholesale-buyers__list {
	max-width: 920px;
	margin: 0 auto;
	border-radius: 14px;
	overflow: hidden;
	background-color: var(--white);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.mdp-wholesale-buyer-row {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 28px;
	padding: 18px 26px;
	border-bottom: 1px solid rgba(218, 10, 86, 0.08);
}

.mdp-wholesale-buyer-row:last-child {
	border-bottom: 0;
}

.mdp-wholesale-buyer-row__who {
	font-weight: 700;
	color: var(--dark-text-color);
	font-size: 15px;
}

.mdp-wholesale-buyer-row__what {
	color: var(--grey-text-color);
	font-size: 15px;
	line-height: 1.55;
}

/* --- How it works --- */
.mdp-wholesale-how {
	padding: 64px 0;
	background-color: var(--white);
}

.mdp-wholesale-how__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}

.mdp-wholesale-step {
	text-align: center;
	padding: 0 8px;
}

.mdp-wholesale-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-color), var(--dark-text-color));
	color: var(--white);
	font-family: 'Libre Baskerville', serif;
	font-weight: 700;
	font-size: 22px;
	margin: 0 0 16px;
}

.mdp-wholesale-step h3 {
	font-family: 'Libre Baskerville', serif;
	font-size: 18px;
	color: var(--dark-text-color);
	margin: 0 0 10px;
}

.mdp-wholesale-step p {
	color: var(--grey-text-color);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

/* --- Why source --- */
.mdp-wholesale-why {
	padding: 64px 0;
	background-color: var(--secondary-color);
}

.mdp-wholesale-why__list {
	max-width: 760px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.mdp-wholesale-why__list li {
	position: relative;
	padding: 14px 0 14px 38px;
	font-size: 16px;
	color: var(--text-color);
	line-height: 1.55;
	border-bottom: 1px solid rgba(218, 10, 86, 0.10);
}

.mdp-wholesale-why__list li:last-child {
	border-bottom: 0;
}

.mdp-wholesale-why__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 22px;
	height: 22px;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: translateY(-50%);
	box-shadow: 0 0 0 4px rgba(218, 10, 86, 0.15);
}

.mdp-wholesale-why__list li::after {
	content: '✓';
	position: absolute;
	left: 6px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
}

/* --- Form section --- */
.mdp-wholesale-form-section {
	padding: 80px 0;
	background-color: var(--white);
}

.mdp-wholesale-form-wrap {
	max-width: 760px;
	margin: 0 auto;
	background-color: var(--white);
	border: 1px solid rgba(218, 10, 86, 0.12);
	border-radius: 18px;
	padding: 48px;
	box-shadow: 0 18px 48px rgba(82, 3, 32, 0.08);
}

.mdp-wholesale-form-intro {
	color: var(--grey-text-color);
	font-size: 16px;
	line-height: 1.55;
	margin: 0 0 28px;
	text-align: center;
}

.mdp-wholesale-form-disclaimer {
	margin-top: 28px;
	font-size: 13px;
	color: var(--grey-text-color);
	line-height: 1.5;
	text-align: center;
}

.mdp-wholesale-form-placeholder {
	padding: 24px;
	background-color: var(--secondary-color);
	border: 1px dashed var(--primary-color);
	border-radius: 10px;
	color: var(--dark-text-color);
}

/* WPForms inside wholesale page — match brand */
.mdp-wholesale-form-section .wpforms-container {
	margin: 0;
}

.mdp-wholesale-form-section .wpforms-form input[type="text"],
.mdp-wholesale-form-section .wpforms-form input[type="email"],
.mdp-wholesale-form-section .wpforms-form input[type="tel"],
.mdp-wholesale-form-section .wpforms-form input[type="url"],
.mdp-wholesale-form-section .wpforms-form select,
.mdp-wholesale-form-section .wpforms-form textarea {
	border: 1px solid rgba(82, 3, 32, 0.18) !important;
	border-radius: 8px !important;
	padding: 12px 14px !important;
	font-family: 'Josefin Sans', sans-serif !important;
	font-size: 15px !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.mdp-wholesale-form-section .wpforms-form input:focus,
.mdp-wholesale-form-section .wpforms-form select:focus,
.mdp-wholesale-form-section .wpforms-form textarea:focus {
	border-color: var(--primary-color) !important;
	box-shadow: 0 0 0 3px rgba(218, 10, 86, 0.15) !important;
	outline: none !important;
}

.mdp-wholesale-form-section .wpforms-form button[type="submit"] {
	background: linear-gradient(135deg, var(--primary-color), #b00a4a) !important;
	color: var(--white) !important;
	border: 0 !important;
	padding: 14px 28px !important;
	border-radius: 999px !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	cursor: pointer !important;
	box-shadow: 0 6px 18px rgba(218, 10, 86, 0.35) !important;
}

.mdp-wholesale-form-section .wpforms-form button[type="submit"]:hover {
	box-shadow: 0 10px 28px rgba(218, 10, 86, 0.45) !important;
	transform: translateY(-1px) !important;
}

/* --- Footer CTA --- */
.mdp-wholesale-footer-cta {
	padding: 56px 0;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-text-color) 100%);
	text-align: center;
}

.mdp-wholesale-footer-cta h2 {
	color: var(--white);
	font-family: 'Libre Baskerville', serif;
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 24px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
	.mdp-wholesale-hero__grid { grid-template-columns: 1fr; gap: 32px; }
	.mdp-wholesale-hero__title { font-size: 36px; }
	.mdp-wholesale-cards__grid { grid-template-columns: 1fr; }
	.mdp-wholesale-how__steps { grid-template-columns: repeat(2, 1fr); }
	.mdp-wholesale-buyer-row { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 600px) {
	.mdp-wholesale-hero { padding: 40px 0 32px; }
	.mdp-wholesale-hero__title { font-size: 28px; }
	.mdp-wholesale-hero__sub { font-size: 17px; }
	.mdp-wholesale-section-heading { font-size: 26px; }
	.mdp-wholesale-form-wrap { padding: 28px 18px; }
	.mdp-wholesale-how__steps { grid-template-columns: 1fr; }
}

/* =========================================================================
   Bug fix #1 — Featured Farm flair photo composition
   The flair branch wraps two <img> in .featured-farm-media__composition.
   The earlier rule .featured-farm-card--flair .featured-farm-media img
   { height: 320px } applied to BOTH images, doubling the column height.
   Override + position the composition so the secondary image overlaps
   the primary as a rotated polaroid accent.
   ========================================================================= */
.featured-farm-card--flair .featured-farm-media {
	position: relative;
	max-width: 460px;
	height: 360px;
}

.featured-farm-card--flair .featured-farm-media > a {
	display: block;
	width: 100%;
	height: 100%;
}

.featured-farm-card--flair .featured-farm-media__composition {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

/* Override the earlier `.featured-farm-card--flair .featured-farm-media img
   { height: 320px }` rule so absolute children below behave. */
.featured-farm-card--flair .featured-farm-media__composition img {
	height: auto;
}

.featured-farm-card--flair .featured-farm-media__photo--primary {
	position: absolute;
	top: 0;
	right: 0;
	width: 78%;
	height: 90%;
	object-fit: cover;
	border-radius: 18px;
	z-index: 2;
	box-shadow: 0 16px 36px rgba(82, 3, 32, 0.18);
}

.featured-farm-card--flair .featured-farm-media__photo--secondary {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 50%;
	object-fit: cover;
	border-radius: 14px;
	border: 6px solid var(--white);
	transform: rotate(-4deg);
	z-index: 1;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.featured-farm-card--flair:hover .featured-farm-media__photo--primary {
	transform: scale(1.02);
	transition: transform 0.5s ease;
}

@media (max-width: 768px) {
	.featured-farm-card--flair .featured-farm-media {
		max-width: 100%;
		height: 280px;
	}
}

/* =========================================================================
   Bug fix #2 — Featured Nurseries 3-column grid
   The Nurseries section reuses .wyn-card-container, but every existing rule
   for that class is scoped under `.what-you-need .what-you-need-content`,
   which Featured Nurseries is NOT inside. Re-assert the grid + card visuals
   scoped to .featured-nurseries-section so the layout matches Shop What
   You Need.
   ========================================================================= */
.featured-nurseries-section {
	padding: 32px 0 64px;
}

.featured-nurseries-section .container > h2,
.featured-nurseries-section .container > p {
	text-align: center;
}

.featured-nurseries-section .container > p {
	color: var(--grey-text-color);
	margin: 8px auto 28px;
	max-width: 780px;
}

.featured-nurseries-section .wyn-card-container {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 35px;
	margin: 23px 0 0;
}

.featured-nurseries-section .wyn-card-container .wyn-card {
	background-color: var(--white);
	border-radius: 17.37px;
	padding: 9.73px 14.59px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	width: 100%;
	max-width: 378px;
	min-height: 308px;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 6px 18px rgba(82, 3, 32, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-nurseries-section .wyn-card-container .wyn-card:hover,
.featured-nurseries-section .wyn-card-container .wyn-card:focus {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.featured-nurseries-section .wyn-card-container .wyn-card img {
	width: 100%;
	aspect-ratio: 3 / 2;
	height: auto;
	object-fit: contain;
	padding: 18px;
	background: var(--white);
	border-radius: 12px;
	display: block;
}

.featured-nurseries-section .wyn-card-container .wyn-card .wyn-card-content {
	width: 100%;
}

.featured-nurseries-section .wyn-card-container .wyn-card .wyn-card-content .wyn-card-title {
	text-align: left;
	color: var(--text-color);
	font-size: 16.68px;
	line-height: 1.2;
	margin-bottom: 4px;
}

.featured-nurseries-section .wyn-card-container .wyn-card .wyn-card-content .wyn-card-description {
	text-align: left;
	color: var(--grey-text-color);
	font-size: 12.51px;
	line-height: 1.35;
	font-weight: 600;
}

@media (max-width: 992px) {
	.featured-nurseries-section .wyn-card-container {
		flex-wrap: wrap;
		gap: 24px;
	}
	.featured-nurseries-section .wyn-card-container .wyn-card {
		max-width: calc(50% - 12px);
	}
}

@media (max-width: 600px) {
	.featured-nurseries-section .wyn-card-container .wyn-card {
		max-width: 100%;
	}
}

/* =========================================================================
   Blog markdown rendering — Parsedown output + custom citation chips
   May 2026 brief — fix raw-markdown blog post rendering.
   ========================================================================= */

.single-post .entry-content,
.single .post-content,
article.post .entry-content {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 17px;
	line-height: 1.7;
	color: var(--text-color);
	max-width: 760px;
	margin: 0 auto;
}

.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
	font-family: 'Libre Baskerville', serif;
	color: var(--dark-text-color);
	margin-top: 1.6em;
	margin-bottom: 0.6em;
	line-height: 1.25;
}

.single-post .entry-content h2 { font-size: 28px; }
.single-post .entry-content h3 { font-size: 22px; }
.single-post .entry-content h4 { font-size: 18px; }

.single-post .entry-content p {
	margin: 0 0 1.2em;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
	margin: 0 0 1.4em 1.4em;
	padding: 0;
}

.single-post .entry-content li { margin-bottom: 0.4em; }

.single-post .entry-content blockquote {
	margin: 1.6em 0;
	padding: 16px 22px;
	background-color: var(--secondary-color);
	border-left: 3px solid var(--primary-color);
	border-radius: 0 10px 10px 0;
	font-style: italic;
	color: var(--dark-text-color);
}

.single-post .entry-content blockquote p { margin: 0; }

.single-post .entry-content table {
	border-collapse: collapse;
	width: 100%;
	margin: 1.4em 0;
	font-size: 15px;
}

.single-post .entry-content th,
.single-post .entry-content td {
	border: 1px solid rgba(82, 3, 32, 0.15);
	padding: 10px 14px;
	text-align: left;
}

.single-post .entry-content th {
	background-color: var(--secondary-color);
	color: var(--dark-text-color);
	font-weight: 700;
}

.single-post .entry-content a {
	color: var(--primary-color);
	text-decoration: underline;
}

.single-post .entry-content a:hover {
	color: var(--dark-text-color);
}

.single-post .entry-content code {
	background: rgba(218, 10, 86, 0.07);
	padding: 2px 6px;
	border-radius: 4px;
	font-family: Consolas, Monaco, monospace;
	font-size: 0.92em;
}

.single-post .entry-content pre {
	background: var(--dark-text-color);
	color: var(--white);
	padding: 16px 18px;
	border-radius: 10px;
	overflow-x: auto;
	margin: 1.4em 0;
}

.single-post .entry-content pre code {
	background: transparent;
	padding: 0;
	color: inherit;
}

/* Quick Answer callout (custom blockquote variant) */
.mdp-quick-answer {
	background: linear-gradient(135deg, rgba(218, 10, 86, 0.06), rgba(82, 3, 32, 0.04));
	border: 1px solid rgba(218, 10, 86, 0.18);
	border-radius: 14px;
	padding: 22px 26px;
	margin: 0 0 1.8em;
}

.mdp-quick-answer h4 {
	font-family: 'Libre Baskerville', serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--primary-color);
	margin: 0 0 8px;
}

.mdp-quick-answer p {
	font-size: 17px;
	line-height: 1.55;
	color: var(--dark-text-color);
	margin: 0;
}

/* Inline citation chips */
sup.mdp-cite {
	display: inline-block;
	background-color: rgba(218, 10, 86, 0.10);
	color: var(--primary-color);
	font-size: 11px;
	font-weight: 700;
	padding: 2px 6px;
	margin: 0 2px;
	border-radius: 4px;
	vertical-align: super;
	cursor: help;
	transition: background-color 0.15s ease;
	line-height: 1.4;
}

sup.mdp-cite:hover {
	background-color: rgba(218, 10, 86, 0.20);
	color: var(--dark-text-color);
}

/* Mobile */
@media (max-width: 600px) {
	.single-post .entry-content { font-size: 16px; }
	.single-post .entry-content h2 { font-size: 24px; }
	.single-post .entry-content h3 { font-size: 19px; }
	.mdp-quick-answer { padding: 16px 18px; }
	.mdp-quick-answer p { font-size: 16px; }
}

/* Note: .featured-farm-media__composition is no longer rendered on the homepage card.
   Single-farm flair hero retains its own two-photo composition via .mdp-farm-flair-hero__photo--secondary. */

/* =========================================================================
   Fix: Featured Farm card has dead space below photo after secondary
   photo was removed. Let the media column size to its content; cap the
   photo height so the card stays balanced.
   ========================================================================= */
.featured-farm-card--flair .featured-farm-media {
	height: auto;
	align-self: stretch;
	display: flex;
	align-items: stretch;
}

.featured-farm-card--flair .featured-farm-media img {
	width: 100%;
	height: 100%;
	max-height: 360px;
	object-fit: cover;
	border-radius: 18px;
}

/* =========================================================================
   How to Grow Dragon Fruit page (templates/how-to-grow-dragon-fruit.php)
   April 2026 dev brief — mobile-first, accordion sections, sticky CTA.
   ========================================================================= */

.mdp-grow .container {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 20px;
}

/* --- Hero --- */
.mdp-grow-hero {
	padding: 56px 0 40px;
	background:
		radial-gradient(ellipse at top right, rgba(218, 10, 86, 0.10) 0%, transparent 65%),
		linear-gradient(180deg, var(--secondary-color) 0%, var(--white) 100%);
	text-align: center;
}

.mdp-grow-hero__eyebrow {
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.mdp-grow-hero__title {
	font-family: 'Libre Baskerville', serif;
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 700;
	color: var(--dark-text-color);
	line-height: 1.1;
	margin: 0 0 20px;
}

.mdp-grow-hero__intro {
	font-size: 17px;
	line-height: 1.6;
	color: var(--text-color);
	max-width: 720px;
	margin: 0 auto 28px;
}

.mdp-grow-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

/* --- CTA buttons --- */
.mdp-grow-cta {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mdp-grow-cta--primary {
	background: var(--primary-color);
	color: var(--white);
	box-shadow: 0 6px 20px rgba(218, 10, 86, 0.35);
}

.mdp-grow-cta--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(218, 10, 86, 0.5);
	color: var(--white);
	background: rgba(187, 9, 74, 1);
}

.mdp-grow-cta--secondary {
	background: var(--white);
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.mdp-grow-cta--secondary:hover {
	background: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
}

.mdp-grow-cta--inverse {
	background: var(--white);
	color: var(--dark-text-color);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	font-weight: 700;
}

.mdp-grow-cta--inverse:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
	color: var(--dark-text-color);
	background: #fff7fb;
}

/* --- Sticky anchor pill nav --- */
.mdp-grow-jumpnav {
	position: sticky;
	top: 0;
	z-index: 30;
	background: var(--white);
	border-bottom: 1px solid rgba(218, 10, 86, 0.12);
	padding: 12px 0;
}

.mdp-grow-jumpnav__list {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.mdp-grow-jumpnav__list::-webkit-scrollbar { display: none; }

.mdp-grow-jumpnav__list li { flex: 0 0 auto; }

.mdp-grow-jumpnav__list a {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid rgba(218, 10, 86, 0.25);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: var(--dark-text-color);
	text-decoration: none;
	background: var(--white);
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mdp-grow-jumpnav__list a:hover {
	background: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}

/* --- Body --- */
.mdp-grow-body {
	padding: 40px 0 24px;
}

/* --- Accordion --- */
.mdp-grow-accordion {
	margin: 0 0 12px;
	border: 1px solid rgba(218, 10, 86, 0.15);
	border-radius: 14px;
	background: var(--white);
	overflow: hidden;
	scroll-margin-top: 80px; /* room for sticky nav when anchor jump lands */
}

.mdp-grow-accordion[open] {
	box-shadow: 0 8px 28px rgba(82, 3, 32, 0.06);
}

.mdp-grow-accordion summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	font-family: 'Libre Baskerville', serif;
	font-size: 19px;
	font-weight: 700;
	color: var(--dark-text-color);
	transition: background-color 0.2s ease;
}

.mdp-grow-accordion summary::-webkit-details-marker { display: none; }

.mdp-grow-accordion summary:hover {
	background: var(--secondary-color);
}

.mdp-grow-accordion[open] summary {
	background: var(--secondary-color);
	border-bottom: 1px solid rgba(218, 10, 86, 0.12);
}

.mdp-grow-accordion__title { flex: 1; }

.mdp-grow-accordion__chevron {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--primary-color);
	color: var(--white);
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease;
}

.mdp-grow-accordion[open] .mdp-grow-accordion__chevron {
	transform: rotate(45deg);
}

.mdp-grow-accordion__body {
	padding: 20px 26px 24px;
	font-size: 16px;
	line-height: 1.65;
	color: var(--text-color);
}

.mdp-grow-accordion__body p { margin: 0 0 14px; }
.mdp-grow-accordion__body p:last-child { margin-bottom: 0; }

.mdp-grow-accordion__body h3 {
	font-family: 'Libre Baskerville', serif;
	font-size: 17px;
	color: var(--dark-text-color);
	margin: 16px 0 8px;
	font-weight: 700;
}

.mdp-grow-accordion__body ul {
	margin: 0 0 14px 1.2em;
	padding: 0;
}

.mdp-grow-accordion__body ul li { margin-bottom: 6px; }

.mdp-grow-accordion__pullout {
	margin: 18px 0 0;
	padding: 14px 18px;
	background: rgba(218, 10, 86, 0.06);
	border-left: 3px solid var(--primary-color);
	border-radius: 0 8px 8px 0;
	color: var(--dark-text-color);
}

/* --- Mid-page CTA --- */
.mdp-grow-midcta {
	margin: 28px 0;
}

.mdp-grow-midcta__inner {
	background: linear-gradient(135deg, rgba(218, 10, 86, 0.06), rgba(82, 3, 32, 0.04));
	border: 1px solid rgba(218, 10, 86, 0.18);
	border-radius: 18px;
	padding: 28px 24px;
	text-align: center;
}

.mdp-grow-midcta__inner h3 {
	font-family: 'Libre Baskerville', serif;
	font-size: 22px;
	color: var(--dark-text-color);
	margin: 0 0 8px;
}

.mdp-grow-midcta__inner p {
	color: var(--grey-text-color);
	margin: 0 0 18px;
	font-size: 15px;
}

/* --- Bottom CTA --- */
.mdp-grow-bottomcta {
	padding: 64px 0 96px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-text-color) 100%);
	text-align: center;
	color: var(--white);
}

.mdp-grow-bottomcta h2 {
	font-family: 'Libre Baskerville', serif;
	font-size: 32px;
	color: var(--white);
	margin: 0 0 16px;
}

.mdp-grow-bottomcta p {
	color: rgba(255, 255, 255, 0.92);
	max-width: 580px;
	margin: 0 auto 24px;
	font-size: 16px;
	line-height: 1.6;
}

.mdp-grow-bottomcta__related {
	margin-top: 28px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
}

.mdp-grow-bottomcta__related a {
	color: var(--white);
	text-decoration: underline;
}

.mdp-grow-bottomcta__related a:hover {
	color: var(--secondary-color);
}

/* --- Sticky mobile bottom CTA bar --- */
.mdp-grow-stickymobile {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 40;
	background: var(--white);
	border-top: 1px solid rgba(218, 10, 86, 0.18);
	padding: 10px 14px;
	box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
}

.mdp-grow-stickymobile__cta {
	display: block;
	width: 100%;
	text-align: center;
	background: var(--dark-text-color);
	color: var(--white);
	padding: 14px 20px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(82, 3, 32, 0.45);
}

.mdp-grow-stickymobile__cta:hover {
	color: var(--white);
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.mdp-grow-hero { padding: 36px 0 28px; }
	.mdp-grow-hero__intro { font-size: 16px; }
	.mdp-grow-jumpnav { padding: 10px 0; }
	.mdp-grow-jumpnav__list a { padding: 7px 14px; font-size: 13px; }

	.mdp-grow-accordion summary { padding: 16px 18px; font-size: 17px; }
	.mdp-grow-accordion__body { padding: 16px 18px 20px; font-size: 15px; }

	.mdp-grow-midcta__inner { padding: 22px 18px; }
	.mdp-grow-midcta__inner h3 { font-size: 19px; }

	.mdp-grow-bottomcta { padding: 48px 0 96px; }
	.mdp-grow-bottomcta h2 { font-size: 26px; }

	/* Show sticky mobile CTA only on mobile */
	.mdp-grow-stickymobile { display: block; }
	/* Reserve room so the sticky bar doesn't cover the bottom CTA */
	.mdp-grow-bottomcta { padding-bottom: 130px; }
}

@media (max-width: 480px) {
	.mdp-grow-hero__title { font-size: 28px; }
	.mdp-grow-hero__ctas { flex-direction: column; align-items: stretch; }
	.mdp-grow-hero__ctas .mdp-grow-cta { width: 100%; text-align: center; }
}

/* =========================================================================
   Site logo — temporary text wordmark while finalized logo is pending
   ========================================================================= */
.site-logo--wordmark {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 1;
}

.site-logo__mark {
	font-family: 'Libre Baskerville', serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--dark-text-color);
	letter-spacing: -0.01em;
	line-height: 1;
	transition: color 0.2s ease;
}

.site-logo--wordmark:hover .site-logo__mark {
	color: var(--primary-color);
}

@media (max-width: 600px) {
	.site-logo__mark { font-size: 20px; }
}

/* =========================================================================
   Trellis page — "What You Need" Amazon CTA
   ========================================================================= */
.mdp-trellis-amazon-link {
	margin-top: 16px;
	font-size: 14px;
	color: var(--grey-text-color);
}

.mdp-trellis-amazon-link em {
	display: block;
	margin-bottom: 8px;
}

.mdp-trellis-amazon-cta {
	display: inline-block;
	background: var(--white);
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	padding: 8px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.mdp-trellis-amazon-cta:hover {
	background: var(--primary-color);
	color: var(--white);
}

/* =========================================================================
   Trellis page customer build gallery
   ========================================================================= */
.mdp-trellis-customer-gallery {
	display: grid;
	gap: 14px;
}

.mdp-trellis-customer-gallery__primary {
	margin: 0;
}

.mdp-trellis-customer-gallery__primary img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 18px 44px rgba(82, 3, 32, 0.12);
}

.mdp-trellis-customer-gallery__primary figcaption {
	margin-top: 10px;
	font-size: 13px;
	color: var(--grey-text-color);
	font-style: italic;
	text-align: center;
}

.mdp-trellis-customer-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.mdp-trellis-customer-gallery__grid figure {
	margin: 0;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 10px;
}

.mdp-trellis-customer-gallery__grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.mdp-trellis-customer-gallery__grid figure:hover img {
	transform: scale(1.06);
}

@media (max-width: 600px) {
	.mdp-trellis-customer-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* =========================================================================
   Trellis page product gallery — replaces customer build gallery
   ========================================================================= */
.mdp-trellis-product-gallery {
	display: grid;
	gap: 14px;
}

.mdp-trellis-product-gallery__primary {
	margin: 0;
}

.mdp-trellis-product-gallery__primary img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 18px 44px rgba(82, 3, 32, 0.14);
}

.mdp-trellis-product-gallery__primary figcaption {
	margin-top: 12px;
	font-size: 14px;
	color: var(--dark-text-color);
	font-style: italic;
	text-align: center;
	font-family: 'Libre Baskerville', serif;
}

.mdp-trellis-product-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.mdp-trellis-product-gallery__grid figure {
	margin: 0;
}

.mdp-trellis-product-gallery__grid figure img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
	transition: transform 0.4s ease;
}

.mdp-trellis-product-gallery__grid figure:hover img {
	transform: scale(1.03);
}

.mdp-trellis-product-gallery__grid figcaption {
	margin-top: 8px;
	font-size: 12px;
	color: var(--grey-text-color);
	text-align: center;
	line-height: 1.4;
}

@media (max-width: 480px) {
	.mdp-trellis-product-gallery__grid {
		grid-template-columns: 1fr;
	}
}

/* =========================================================================
   Blog archive — /blog/ landing page (home.php in child theme)
   ========================================================================= */

.mdp-blog-archive {
	padding: 56px 0 80px;
	background: var(--white);
}

.mdp-blog-archive .container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

.mdp-blog-archive__header {
	text-align: center;
	margin-bottom: 48px;
}

.mdp-blog-archive__eyebrow {
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.mdp-blog-archive__title {
	font-family: 'Libre Baskerville', serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	color: var(--dark-text-color);
	margin: 0 0 14px;
	line-height: 1.1;
}

.mdp-blog-archive__intro {
	font-size: 17px;
	color: var(--grey-text-color);
	max-width: 580px;
	margin: 0 auto;
	line-height: 1.55;
}

.mdp-blog-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.mdp-blog-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid rgba(218, 10, 86, 0.12);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mdp-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(82, 3, 32, 0.12);
	border-color: rgba(218, 10, 86, 0.28);
}

.mdp-blog-card__media-link {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--secondary-color);
}

.mdp-blog-card__media {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.mdp-blog-card:hover .mdp-blog-card__media {
	transform: scale(1.04);
}

.mdp-blog-card__media--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--secondary-color), rgba(218, 10, 86, 0.10));
}

.mdp-blog-card__media--placeholder span {
	font-family: 'Libre Baskerville', serif;
	font-size: 64px;
	font-weight: 700;
	color: var(--primary-color);
	opacity: 0.6;
	line-height: 1;
}

.mdp-blog-card__body {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.mdp-blog-card__cat {
	color: var(--primary-color);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.mdp-blog-card__title {
	font-family: 'Libre Baskerville', serif;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 10px;
}

.mdp-blog-card__title a {
	color: var(--dark-text-color);
	text-decoration: none;
	transition: color 0.2s ease;
}

.mdp-blog-card__title a:hover {
	color: var(--primary-color);
}

.mdp-blog-card__meta {
	color: var(--grey-text-color);
	font-size: 13px;
	margin: 0 0 14px;
}

.mdp-blog-card__excerpt {
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 18px;
	flex: 1;
}

.mdp-blog-card__cta {
	align-self: flex-start;
	color: var(--primary-color);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.mdp-blog-card__cta:hover {
	color: var(--dark-text-color);
}

.mdp-blog-archive__pagination {
	margin-top: 56px;
	text-align: center;
}

.mdp-blog-archive__pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.mdp-blog-archive__pagination a,
.mdp-blog-archive__pagination .current {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--dark-text-color);
	background: var(--white);
	border: 1px solid rgba(218, 10, 86, 0.20);
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.mdp-blog-archive__pagination .current,
.mdp-blog-archive__pagination a:hover {
	background: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}

.mdp-blog-archive__empty {
	text-align: center;
	color: var(--grey-text-color);
	font-size: 17px;
	padding: 60px 0;
}

@media (max-width: 992px) {
	.mdp-blog-archive__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.mdp-blog-archive { padding: 40px 0 56px; }
	.mdp-blog-archive__grid { grid-template-columns: 1fr; gap: 20px; }
	.mdp-blog-archive__header { margin-bottom: 32px; }
}

/* =========================================================================
   References / Works Cited block on blog posts
   ========================================================================= */
.mdp-references {
	margin: 24px 0;
	padding: 20px 24px;
	background: rgba(82, 3, 32, 0.03);
	border-left: 3px solid var(--primary-color);
	border-radius: 0 10px 10px 0;
}

.mdp-references p {
	font-size: 14px;
	line-height: 1.55;
	color: var(--grey-text-color);
	margin: 0 0 10px;
	padding-left: 1.4em;
	text-indent: -1.4em;
}

.mdp-references p:last-child { margin-bottom: 0; }

.mdp-references em,
.mdp-references i {
	color: var(--text-color);
	font-style: italic;
}

/* WCFM page_collapsible hover state - re-applied from production. */
#wcfm-main-content .page_collapsible:hover label {
    color: var(--dark-text-color) !important;
}

/* ============================================================
   Polish pass (2026-05-15) — hero typography + Shop What You Need card aspect ratios
   ============================================================ */

/* Polish 1 — hero typography: prevent "Fruit" orphan via auto-balanced wrap */
#hero-section .hero-section .hero-content .hero-title {
    text-wrap: balance;
}

/* Polish 2 — Shop What You Need: uniform 4/3 image aspect across all 4 cards
   Scoped to .what-you-need so the Featured Nurseries section's .wyn-card (different aspect logos) is unaffected. */
.what-you-need .wyn-card-container .wyn-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* Polish 3 — Trellis form (wpforms-100574): grid layout so orphan one-half fields (Zip) align left */
#wpforms-form-100574 .wpforms-field-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}
#wpforms-form-100574 .wpforms-field-container > .wpforms-field {
    grid-column: span 2;
    float: none;
    width: auto;
    margin-right: 0;
}
#wpforms-form-100574 .wpforms-field-container > .wpforms-field.wpforms-one-half {
    grid-column: span 1;
}
@media (max-width: 600px) {
    #wpforms-form-100574 .wpforms-field-container { grid-template-columns: 1fr; }
    #wpforms-form-100574 .wpforms-field-container > .wpforms-field.wpforms-one-half { grid-column: span 1; }
}

/* A3 — Wallace Ranch / Featured Farm USDA Organic seal (single-farm.php flair hero). Pinned top-right of the hero. */
.single-farm--flair .mdp-farm-flair-hero { position: relative; }
/* Organic seal sits inline to the RIGHT of the "Shop <farm>" CTA instead of
   floating over the hero photo (it was position:absolute top/right, which left
   it half-clipped behind the top image). */
.single-farm--flair .mdp-farm-flair-hero__cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.single-farm--flair .mdp-farm-flair-hero__organic-seal {
    width: 84px;
    height: 84px;
    object-fit: contain;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .single-farm--flair .mdp-farm-flair-hero__organic-seal { width: 64px; height: 64px; }
}

/* Audit F2 — primary CTAs: explicit :hover and :focus-visible (WCAG 2.4.7).
   Five of six buttons had no hover and none had focus-visible. */
.hero-btn-primary:hover,
.wyn-button:hover,
.featured-farm-btn:hover,
.farm-btn:hover {
    background: var(--dark-text-color);
    transform: translateY(-1px);
}
.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}
.hero-btn-primary:focus-visible,
.hero-btn-secondary:focus-visible,
.wyn-button:focus-visible,
.featured-farm-btn:focus-visible,
.farm-btn:focus-visible,
.mdp-farm-flair-cta:focus-visible {
    outline: 3px solid var(--dark-text-color);
    outline-offset: 3px;
}

/* Bug 11: make the whole Featured Farm card clickable via stretched link on the existing button */
.what-you-need .what-you-need-content .featured-farm-card {
    position: relative;
}
.what-you-need .what-you-need-content .featured-farm-card .featured-farm-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}
.what-you-need .what-you-need-content .featured-farm-card .featured-farm-media a,
.what-you-need .what-you-need-content .featured-farm-card .featured-farm-title a {
    position: relative;
    z-index: 2;
}
.what-you-need .what-you-need-content .featured-farm-card .featured-farm-btn {
    position: relative;
    z-index: 2;
}
.what-you-need .what-you-need-content .featured-farm-card:hover {
    box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

/* =========================================================================
   Bug fix #3 — Featured Farm flair card: single-image layout cleanup
   Background: the .featured-farm-card--flair CSS was authored for a two-image
   composition (primary + secondary polaroid). The current rendered HTML only
   outputs one <img>. The pre-existing rules set:
     .featured-farm-media { position: relative; height: 360px (280px mobile); }
     .--photo--primary    { position: absolute; top:0 right:0; width:78%; height:90%; }
   With no secondary photo, that left an L-shaped empty zone bottom-left of the
   media block; on mobile the body section's text felt cramped against the
   image's bottom edge and the head row collapsed weirdly.
   This fix: make the media block size to its content (single image fills
   normally) and adds explicit spacing between body sections on mobile.
   ========================================================================= */
.featured-farm-card--flair .featured-farm-media {
    height: auto;
}
.featured-farm-card--flair .featured-farm-media > a {
    height: auto;
}
.featured-farm-card--flair .featured-farm-media__photo--primary {
    position: static;
    width: 100%;
    height: 320px;
    max-height: 360px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(82, 3, 32, 0.12);
}
@media (max-width: 991px) {
    .featured-farm-card--flair .featured-farm-media__photo--primary {
        height: 260px;
    }
    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-head {
        gap: 10px;
        margin-bottom: 14px;
    }
    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-description {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.55;
    }
    .featured-farm-pullquote {
        margin-top: 16px;
        padding: 14px 16px;
    }
    .featured-farm-pullquote p {
        font-size: 15px;
        line-height: 1.5;
    }
    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-badges {
        margin-top: 16px;
        gap: 8px;
    }
    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-badges span {
        max-width: unset;
        width: auto;
        padding: 6px 12px;
        font-size: 12px;
    }
    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* =========================================================================
   Featured Farm of the Week — single-card layout fix
   "Featured Farm of the Week" highlights exactly ONE farm, but
   .featured-farm-list was a fixed 3-column grid, so the lone card sat in
   the left column and left the right two-thirds of the section empty
   (homepage bug: the section appeared "shifted to the left half page").
   Center the list and lay the single card out as a horizontal hero on
   desktop so it fills the section width. On mobile it stays a stacked card.
   ========================================================================= */
.what-you-need .what-you-need-content .featured-farm-list {
    grid-template-columns: minmax(0, 1fr);
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 769px) {
    .what-you-need .what-you-need-content .featured-farm-card {
        flex-direction: row;
        align-items: center;
        gap: 32px;
        padding: 24px;
    }
    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-media {
        flex: 0 0 460px;
        width: 460px;
        max-width: 460px;
    }
    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-body {
        width: auto;
        flex: 1 1 auto;
    }
}

/* =========================================================================
   Farm logos on product links (items 6 & 7)
   Item 6 — small round farm logo on each shop product card, linking to that
   farm's listings. The card's generic `.farm-product-card__farm img { 14px }`
   rule would shrink it, so target the logo explicitly.
   ========================================================================= */
.farm-product-card__farm-logo {
    display: inline-flex;
    flex-shrink: 0;
    line-height: 0;
}
.farm-product-card__farm .farm-product-card__farm-logo img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white, #fff);
}

/* Item 7 — farm logo in the single-product "Sold by" badge, linking to the
   farm's product landing page. */
.mdp-product__seller-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.mdp-product__seller-logo {
    display: inline-flex;
    flex-shrink: 0;
    line-height: 0;
}
.mdp-product__seller-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white, #fff);
}
