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;
}

a:hover {
    text-decoration: none;
    color: unset;
}

a:visited {
    text-decoration: none;
    color: unset;
}

: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);
    padding: 7px 0;
    text-align: center;
}

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

/* 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: 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: center;
    gap: 44px;
    width: 100%;
}

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

.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-newsletter {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 34px;
    flex: 1;
}

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

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

.site-footer .footer-content .ft-menu-content .ft-newsletter .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 .ft-newsletter .newsletter-form .newsletter-field {
    position: relative;
}

.site-footer .footer-content .ft-menu-content .ft-newsletter .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 .ft-newsletter .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;
}

/* 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-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%;
    /* max-width: 560px; */
    min-height: 450px;
}

.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);
    /* transition: transform 0.35s ease; */
    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.card-1:hover {
    transform: rotate(-5deg) translateY(-4px);
}
.hero-image .banner-pro-card.card-2:hover {
    transform: rotate(9deg) translateY(-4px);
} */
.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: flex;
    flex-direction: column;
    gap: 16px;
}

.what-you-need .what-you-need-content .featured-farm-card {
    background-color: var(--white);
    border-radius: 17.37px;
    padding: 14px 30px 14px 14px;
    display: flex;
    gap: 18px;
    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: 397px;
    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: 244px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

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

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-title {
    font-size: 24px;
    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: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 21px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap;
}

.what-you-need .what-you-need-content .featured-farm-card .featured-farm-description {
    margin-top: 30px;
    color: var(--grey-text-color);
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.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;
}

/* 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: 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 .con {
    width: 25%;
}

.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 {
    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(102, 112, 133, 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.png');
    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;
}

.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: static;
    flex: 0 0 auto;
    vertical-align: middle;
}

.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 {
    background-color: rgba(240, 255, 232, 1);
    border-radius: 4px;
    text-align: center;
    padding: 4px;
    color: rgba(40, 120, 2, 1);
    margin-bottom: 21px;
}

.farm-flex-wrapper .container .product-standards .standard-item-flex .standard-item:last-child h4 {
    background-color: var(--secondary-color);
    border-radius: 4px;
    text-align: center;
    padding: 4px;
    color: var(--primary-color);
    margin-bottom: 21px;
}

.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;
}

.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__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: 24px;
    line-height: 1;
    font-weight: 700;
}

.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 rgba(188, 188, 188, 1);
    border-radius: 4px;
    background: var(--white);
    color: rgba(188, 188, 188, 1);
    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 {
    border-color: rgba(203, 203, 203, 1);
    background: #fff;
    color: rgba(188, 188, 188, 1);
}

.farm-product-card__button.is-out-of-stock {
    color: rgba(188, 188, 188, 1);
    background: rgba(255, 255, 255, 0.95);
}

.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 {
    background: rgba(218, 10, 86, 1);
    border-color: rgba(218, 10, 86, 1);
    color: rgba(255, 255, 255, 1);
}

.farm-product-card__button.is-primary:hover {
    background: rgba(187, 9, 74, 1);
    border-color: rgba(187, 9, 74, 1);
    color: rgba(255, 255, 255, 1);
}

.farm-product-card__button.is-out-of-stock:hover {
    color: rgba(145, 145, 145, 1);
}

/* 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: grid;
    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;
    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 {
    width: auto;
    opacity: 1;
    transform: none;
    margin-right: 0px;
}

.trellis-page .trellis-swiper .swiper-slide img {
    width: 100%;
    height: 242px;
    display: block;
    /* object-fit: cover; */
    border-radius: 16px;
    /* box-shadow: 0 14px 30px rgba(24, 31, 21, 0.12); */
}

.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: 242px;
    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;
}

@media (max-width: 1024px) {
    .trellis-page .trellis-showcase-slider {
        max-width: 980px;
    }

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

@media (max-width: 767px) {
    .trellis-page .trellis-showcase-slider {
        padding: 0 0 34px;
    }

    .trellis-page .trellis-swiper .swiper-slide img,
    .trellis-page .trellis-swiper .swiper-wrapper img {
        height: 210px;
        border-radius: 14px;
    }
}

.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;
    right: 45%;
    top: 35%;
}

.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;
}

.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-left: 8px;
}

/* 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;
    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;
}

.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: 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%);
}

.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: 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%);
}

.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: 100%;
    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;
}

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

.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: center;
    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);
}

.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;
    font-weight: 1.2;
    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);
}
.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: 16px;
    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: linear-gradient(90deg, #f01464 0%, #d40953 100%);
}
.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);
}

/* 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;
    }
}

@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 .site-branding p {
        font-size: 11px;
    }

    .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,
    .site-footer .footer-content .ft-menu-content,
    #hero-section .hero-section,
    .sell-through-section .sell-through-container,
    .what-you-need .what-you-need-content .featured-farm-card {
        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-newsletter,
    .site-footer .footer-content .ft-menu-content .ft-menu,
    .site-footer .footer-content .ft-menu-content {
        width: 100%;
        flex-wrap: wrap;
    }
    .site-footer .footer-content .ft-menu-content .ft-menu {
        flex: 0 0 45%;
    }

    #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,
    .what-you-need .what-you-need-content .featured-farm-card .featured-farm-media {
        width: 100%;
        max-width: none;
    }

    #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;
    }

    .features-section .features-content .features-con-container,
    .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);
    }

    .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-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .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 {
        width: calc(50% - 16px);
    }

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

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

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

    .wholesale-features {
        flex-wrap: wrap;
        justify-content: center;
    }

    .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-img img,
    .who-this-is-for__image img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

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

    .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: 760px;
        height: auto;
        clip-path: none;
        padding: 28px 24px;
        filter: none;
        border-radius: 12px;
    }

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

    .trellis-page .trellis-included-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trellis-card:nth-child(odd),
    .trellis-card:nth-child(even) {
        margin: 0;
    }
}

@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;
        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);
    }
}

@media (max-width: 830px) {
    .hero-image .banner-pro-card.card-2 {
        right: 23%;
    }
}

@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 {
        padding: 10px 0;
    }

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

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

    .site-header .site-branding p {
        display: none;
    }

    .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: 20px 0 36px;
    }

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

    #hero-section .hero-section .hero-content .hero-title {
        font-size: 34px;
    }

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

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

    #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;
    }

    .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-title {
        font-size: 22px;
    }

    .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;
    }

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

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

    .site-footer .footer-content .ft-site-content .ft-logo,
    .site-footer .footer-content .ft-menu-content .ft-newsletter .newsletter-form .newsletter-field,
    .site-footer .footer-content .ft-menu-content .ft-newsletter .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: cover;
        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;
        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: none;
    }

    .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: 24px;
        line-height: 1.2;
    }

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

    .trellis-page .trellis-hero-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .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;
    }
    
}
@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: 570px) {
    .hero-image .banner-pro-card.card-1 {
        left: 15%;
    }
}

@media screen and (max-width: 575px) {
    .farm-product-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

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

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

    .site-header .header-main {
        padding: 12px 14px;
        gap: 12px;
    }

    .site-header .site-branding .custom-logo-link img {
        max-width: 160px;
    }

    .site-header .header-menu-toggle,
    .site-header .header-icons .header-cart,
    .site-header .header-icons .header-account {
        width: 40px;
        height: 40px;
    }

    #hero-section .hero-section .hero-content .hero-title {
        font-size: 28px;
    }

    .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: 180px;
    }

    .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: 100%;
    }

    .ready-to-shop {
        padding: 36px 0 42px;
    }

    /* 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: 64px 16px;
    }

    .trellis-page .trellis-hero-content {
        padding: 22px 18px;
    }

    .trellis-page .trellis-hero-thumbs img {
        width: calc(50% - 6px);
    }

    .trellis-page .trellis-included-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .diy-trellis-visual .diy-trellis-visual__frame img {
        min-height: 200px;
    }
}

@media (max-width: 395px) {
    .hero-image .banner-pro-card.card-1 {
        left: 10%;
    }
    .hero-image .banner-pro-card.card-2 {
        right: 10%;
    }
}

@media (max-width: 360px) {
    .hero-image .banner-pro-card.card-1 {
        left: 6%;
    }
    .hero-image .banner-pro-card.card-2 {
        right: 6%;
    }
}
