/* ZensTea page-specific styles — consolidated from WordPress inline <style> blocks.
   These classes are page-specific (contact/guarantee/gift/shipping/community/
   craftsmanship/testimonials) and were NOT in the main style.css. */

/* ===== from page-community.php ===== */
/* ===== HERO ===== */
.zt-comm-hero {
    position: relative;
    min-height: 48vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.zt-comm-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
}
.zt-comm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(45,74,62,0.85) 0%, rgba(45,74,62,0.5) 100%);
}
.zt-comm-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4.5rem 2rem;
    max-width: 680px;
}
.zt-comm-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #FFFFFF;
    line-height: 1.12;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.zt-comm-hero-sub {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: #D4C5A0;
    line-height: 1.8;
    text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

/* ===== SECTION TITLES ===== */
.zt-comm-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #2D4A3E;
    margin-bottom: 1.5rem;
}

/* ===== SOCIAL CARDS ===== */
.zt-comm-social {
    padding: 5rem 0;
    background: #F9F7F2;
}
.zt-comm-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.zt-comm-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #FFFFFF;
    border: 1px solid #E8E4E1;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.zt-comm-social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #9A7B4F;
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.zt-comm-social-card:hover::before {
    transform: scaleX(1);
}
.zt-comm-social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45,74,62,0.12);
    border-color: #C9B8A3;
}
.zt-comm-social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}
.zt-comm-ig .zt-comm-social-icon { background: #FFF5F0; color: #E1306C; }
.zt-comm-pin .zt-comm-social-icon { background: #FFF0F0; color: #BD081C; }
.zt-comm-fb .zt-comm-social-icon { background: #F0F4FF; color: #1877F2; }
.zt-comm-tt .zt-comm-social-icon { background: #F5F0FF; color: #000000; }
.zt-comm-social-card:hover .zt-comm-social-icon { transform: scale(1.1); }
.zt-comm-social-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #2D4A3E;
    margin-bottom: 0.3rem;
}
.zt-comm-social-handle {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    color: #9A7B4F;
    margin-bottom: 0.5rem;
}
.zt-comm-social-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: #8B8B8B;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.zt-comm-social-cta {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #9A7B4F;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: letter-spacing 0.3s ease;
}
.zt-comm-social-card:hover .zt-comm-social-cta {
    letter-spacing: 3px;
}

/* ===== PARTNERS ===== */
.zt-comm-partners {
    padding: 5rem 0;
    background: #FFFFFF;
}
.zt-comm-partners-intro {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #6B6B6B;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.zt-comm-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.zt-comm-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.2rem;
    background: #FAFAF8;
    border: 1px solid #E8E4E1;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.zt-comm-partner-card:hover {
    border-color: #9A7B4F;
    background: #FFFFFF;
}
.zt-comm-partner-badge {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9A7B4F;
    background: #F5F2ED;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}
.zt-comm-partner-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #2D4A3E;
    margin-bottom: 0.4rem;
}
.zt-comm-partner-card p {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: #8B8B8B;
    line-height: 1.5;
}

/* ===== NEWSLETTER ===== */
.zt-comm-newsletter {
    padding: 5rem 0;
    background: #F9F7F2;
}
.zt-comm-newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.zt-comm-newsletter-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #6B6B6B;
    line-height: 1.8;
}
.zt-comm-newsletter-form {
    display: flex;
    gap: 0.8rem;
}
.zt-comm-newsletter-form input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: 1px solid #D8D4D0;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    color: #2D4A3E;
    background: #FFFFFF;
}
.zt-comm-newsletter-form input:focus {
    outline: none;
    border-color: #9A7B4F;
}
.zt-comm-newsletter-form input::placeholder {
    color: #B0ACA8;
    font-style: italic;
}
.zt-comm-newsletter-note {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    color: #9A9A9A;
    margin-top: 0.6rem;
}

/* ===== CTA ===== */
.zt-comm-cta {
    padding: 5rem 0;
    background: #FFFFFF;
}
.zt-comm-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.zt-comm-cta-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1.02rem;
    color: #6B6B6B;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .zt-comm-social-grid,
    .zt-comm-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zt-comm-newsletter-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 600px) {
    .zt-comm-social-grid,
    .zt-comm-partners-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .zt-comm-newsletter-form {
        flex-direction: column;
    }
    .zt-comm-hero {
        min-height: 38vh;
    }
}

/* ===== from page-contact.php ===== */
/* ===== CONTACT HERO ===== */
.zt-contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.zt-contact-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
}
.zt-contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(45,74,62,0.88) 0%, rgba(45,74,62,0.55) 100%);
}
.zt-contact-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 2rem;
    max-width: 680px;
}
.zt-contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    color: #FFFFFF;
    line-height: 1.12;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.zt-contact-hero-sub {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #D4C5A0;
    line-height: 1.8;
    text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

/* ===== SPLIT MAIN ===== */
.zt-contact-main {
    padding: 0;
    background: #F9F7F2;
}
.zt-contact-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 700px;
}

/* LEFT */
.zt-contact-left {
    padding: 5rem 4rem 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zt-contact-left-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #2D4A3E;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.zt-contact-left-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #6B6B6B;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

/* Contact Cards */
.zt-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.zt-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: #FFFFFF;
    border: 1px solid #E8E4E1;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.zt-contact-card:hover {
    border-color: #9A7B4F;
    box-shadow: 0 4px 20px rgba(154,123,79,0.1);
    transform: translateX(4px);
}
.zt-contact-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F2ED;
    border-radius: 50%;
    color: #9A7B4F;
}
.zt-contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #2D4A3E;
    margin-bottom: 0.15rem;
}
.zt-contact-card-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #9A7B4F;
    margin-bottom: 0.1rem;
}
.zt-contact-card-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: #7A7A7A;
}

/* RIGHT: Form */
.zt-contact-right {
    padding: 5rem 3rem 5rem 4rem;
    background: #FFFFFF;
    display: flex;
    align-items: flex-start;
}
.zt-contact-form {
    width: 100%;
    max-width: 520px;
}
.zt-form-intro {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2D4A3E;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #9A7B4F;
}

/* Form Fields */
.zt-contact-form label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1E3A2F;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.zt-contact-form input,
.zt-contact-form select,
.zt-contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #D8D4D0;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    color: #2D4A3E;
    background: #FAFAF8;
    transition: all 0.25s ease;
    -webkit-appearance: none;
}
.zt-contact-form input:focus,
.zt-contact-form select:focus,
.zt-contact-form textarea:focus {
    outline: none;
    border-color: #9A7B4F;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(154,123,79,0.08);
}
.zt-contact-form input::placeholder,
.zt-contact-form textarea::placeholder {
    color: #9A9490;
    font-style: italic;
}
.zt-contact-form textarea {
    resize: vertical;
    min-height: 130px;
}
.zt-contact-form select {
    height: auto;
    min-height: 48px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A7B4F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.zt-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.zt-form-group {
    margin-bottom: 1.3rem;
}
.zt-form-privacy {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    color: #7A7A7A;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.zt-form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 0.85rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}
.zt-form-submit:hover {
    background: #2D4A3E;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45,74,62,0.2);
}

/* ===== FAQ ===== */
.zt-contact-faq {
    padding: 5rem 0;
    background: #F9F7F2;
}
.zt-contact-faq-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #2D4A3E;
    text-align: center;
    margin-bottom: 2.5rem;
}
.zt-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
    max-width: 950px;
    margin: 0 auto;
}
.zt-faq-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.zt-faq-item {
    background: #FFFFFF;
    border: 1px solid #E8E4E1;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.zt-faq-item:hover {
    border-color: #C9B8A3;
}
.zt-faq-item[open] {
    border-color: #9A7B4F;
}
.zt-faq-item summary {
    padding: 1.1rem 1.4rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    color: #2D4A3E;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.zt-faq-item summary:hover {
    background: #FDFCFA;
}
.zt-faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: #9A7B4F;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s;
}
.zt-faq-item[open] summary::after {
    content: '\2212';
    transform: rotate(180deg);
}
.zt-faq-item p {
    padding: 0 1.4rem 1.1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #6B6B6B;
    line-height: 1.75;
}
.zt-faq-item a {
    color: #9A7B4F;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .zt-contact-main-inner {
        grid-template-columns: 1fr;
    }
    .zt-contact-left {
        padding: 3rem 2rem;
    }
    .zt-contact-right {
        padding: 3rem 2rem;
    }
    .zt-faq-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .zt-form-row-2 {
        grid-template-columns: 1fr;
    }
    .zt-contact-hero {
        min-height: 40vh;
    }
    .zt-contact-hero-inner {
        padding: 3rem 1.5rem;
    }
    .zt-contact-left {
        padding: 2.5rem 1.5rem;
    }
    .zt-contact-right {
        padding: 2.5rem 1.5rem;
    }
}

/* ===== from page-guarantee.php ===== */
/* ===== HERO ===== */
.zt-guar-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.zt-guar-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
}
.zt-guar-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(45,74,62,0.88) 0%, rgba(45,74,62,0.5) 100%);
}
.zt-guar-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 2rem;
    max-width: 680px;
}
.zt-guar-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    color: #FFFFFF;
    line-height: 1.12;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.zt-guar-hero-sub {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #D4C5A0;
    line-height: 1.8;
    text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

/* ===== PROMISE BADGE ===== */
.zt-guar-promise {
    padding: 5rem 0;
    background: #F9F7F2;
}
.zt-guar-badge {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem 3rem;
    background: #FFFFFF;
    border: 2px solid #9A7B4F;
    border-radius: 12px;
    position: relative;
}
.zt-guar-badge::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(154,123,79,0.2);
    border-radius: 8px;
    pointer-events: none;
}
.zt-guar-badge-icon {
    font-size: 2.5rem;
    color: #9A7B4F;
    margin-bottom: 1rem;
}
.zt-guar-badge-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #2D4A3E;
    margin-bottom: 0.8rem;
}
.zt-guar-badge-divider {
    width: 60px;
    height: 2px;
    background: #9A7B4F;
    margin: 0 auto 1.2rem;
}
.zt-guar-badge-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: #5A5A5A;
    line-height: 1.85;
}

/* ===== 4 PILLARS ===== */
.zt-guar-pillars {
    padding: 5rem 0;
    background: #FFFFFF;
}
.zt-guar-pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.zt-guar-pillar {
    padding: 2.2rem 2rem 2.2rem 2.5rem;
    border-left: 3px solid #9A7B4F;
    background: #FAFAF8;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}
.zt-guar-pillar:hover {
    background: #F5F2ED;
    transform: translateX(4px);
}
.zt-guar-pillar-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #9A7B4F;
    margin-bottom: 0.4rem;
    line-height: 1;
}
.zt-guar-pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #2D4A3E;
    margin-bottom: 0.6rem;
}
.zt-guar-pillar-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    color: #6B6B6B;
    line-height: 1.75;
}

/* ===== PROCESS ===== */
.zt-guar-process {
    padding: 5rem 0;
    background: #F9F7F2;
}
.zt-guar-process-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #2D4A3E;
    text-align: center;
    margin-bottom: 3rem;
}
.zt-process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}
.zt-process-step {
    text-align: center;
    flex: 1;
    max-width: 170px;
    padding: 0 0.5rem;
}
.zt-process-step-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #2D4A3E;
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(45,74,62,0.2);
}
.zt-process-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #2D4A3E;
    margin-bottom: 0.4rem;
}
.zt-process-step p {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: #7A7A7A;
    line-height: 1.5;
}
.zt-process-line {
    flex: 0 0 40px;
    height: 2px;
    background: #D4D0CC;
    margin-top: 26px;
    align-self: flex-start;
}

/* ===== CTA ===== */
.zt-guar-cta {
    padding: 5rem 0;
    background: #FFFFFF;
    text-align: center;
}
.zt-guar-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #2D4A3E;
    margin-bottom: 1rem;
}
.zt-guar-cta-text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #6B6B6B;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .zt-guar-pillar-grid { grid-template-columns: 1fr; max-width: 500px; }
    .zt-process-steps { flex-wrap: wrap; gap: 1.5rem; }
    .zt-process-line { display: none; }
    .zt-guar-hero { min-height: 40vh; }
    .zt-guar-badge { margin: 0 1.5rem; padding: 2.5rem 1.5rem; }
}

/* ===== from page-gift-guide.php ===== */
.zt-gift-hero { position:relative; min-height:38vh; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.zt-gift-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center 40%; }
.zt-gift-hero-overlay { position:absolute; inset:0; background:linear-gradient(160deg,rgba(45,74,62,0.85),rgba(45,74,62,0.5)); }
.zt-gift-hero-inner { position:relative; z-index:1; text-align:center; padding:3.5rem 2rem; max-width:650px; }
.zt-gift-hero-title { font-family:'Playfair Display',serif; font-size:clamp(2rem,4.5vw,3rem); color:#FFF; line-height:1.15; margin-bottom:1rem; text-shadow:0 2px 20px rgba(0,0,0,0.3); }
.zt-gift-hero-sub { font-family:'Lato',sans-serif; font-size:1.05rem; color:#D4C5A0; line-height:1.7; text-shadow:0 1px 10px rgba(0,0,0,0.3); }

.zt-gift-scenarios { padding:4rem 0; background:#F9F7F2; }
.zt-gift-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.zt-gift-card { display:block; padding:2rem; background:#FFF; border:1px solid #E8E4E1; border-radius:8px; text-decoration:none; transition:all 0.3s ease; }
.zt-gift-card:hover { transform:translateY(-4px); box-shadow:0 8px 30px rgba(45,74,62,0.1); border-color:#C9B8A3; }
.zt-gift-card-tag { font-family:'Lato',sans-serif; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:#9A7B4F; background:#F5F2ED; padding:0.25rem 0.7rem; border-radius:3px; display:inline-block; margin-bottom:1rem; }
.zt-gift-card h3 { font-family:'Playfair Display',serif; font-size:1.2rem; color:#2D4A3E; margin-bottom:0.5rem; }
.zt-gift-card p { font-family:'Lato',sans-serif; font-size:0.88rem; color:#6B6B6B; line-height:1.6; margin-bottom:1rem; }
.zt-gift-price { font-family:'Lato',sans-serif; font-size:1rem; font-weight:700; color:#9A7B4F; }

.zt-gift-cta { padding:4rem 0; background:#FFF; text-align:center; }
.zt-gift-cta h2 { font-family:'Playfair Display',serif; font-size:clamp(1.5rem,3vw,2rem); color:#2D4A3E; margin-bottom:0.5rem; }

@media(max-width:768px) { .zt-gift-grid { grid-template-columns:1fr 1fr; } .zt-gift-hero { min-height:30vh; } }
@media(max-width:500px) { .zt-gift-grid { grid-template-columns:1fr; max-width:360px; margin:0 auto; } }

/* ===== from page-shipping.php ===== */
.zt-ship-hero { position:relative; min-height:38vh; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.zt-ship-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center 40%; }
.zt-ship-hero-overlay { position:absolute; inset:0; background:linear-gradient(160deg,rgba(45,74,62,0.85),rgba(45,74,62,0.5)); }
.zt-ship-hero-inner { position:relative; z-index:1; text-align:center; padding:3.5rem 2rem; }
.zt-ship-hero-title { font-family:'Playfair Display',serif; font-size:clamp(2rem,4.5vw,3rem); color:#FFF; line-height:1.15; text-shadow:0 2px 20px rgba(0,0,0,0.3); }

.zt-ship-content { padding:4rem 0; background:#F9F7F2; }
.zt-ship-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; }
.zt-ship-col h2 { font-family:'Playfair Display',serif; font-size:1.5rem; color:#2D4A3E; margin-bottom:1.5rem; }

.zt-ship-method { padding:1.5rem; background:#FFF; border:1px solid #E8E4E1; border-radius:8px; margin-bottom:1rem; }
.zt-ship-method-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:0.5rem; }
.zt-ship-method h3 { font-family:'Playfair Display',serif; font-size:1.05rem; color:#2D4A3E; }
.zt-ship-price { font-family:'Lato',sans-serif; font-size:1rem; font-weight:700; color:#9A7B4F; }
.zt-ship-method p { font-family:'Lato',sans-serif; font-size:0.9rem; color:#6B6B6B; line-height:1.6; }

.zt-ship-faq-item { background:#FFF; border:1px solid #E8E4E1; border-radius:6px; margin-bottom:0.6rem; overflow:hidden; }
.zt-ship-faq-item[open] { border-color:#9A7B4F; }
.zt-ship-faq-item summary { padding:1rem 1.2rem; font-family:'Playfair Display',serif; font-size:0.95rem; color:#2D4A3E; cursor:pointer; list-style:none; display:flex; justify-content:space-between; }
.zt-ship-faq-item summary::after { content:'+'; font-size:1.2rem; color:#9A7B4F; }
.zt-ship-faq-item[open] summary::after { content:'\2212'; }
.zt-ship-faq-item p { padding:0 1.2rem 1rem; font-family:'Lato',sans-serif; font-size:0.88rem; color:#6B6B6B; line-height:1.7; }
.zt-ship-faq-item a { color:#9A7B4F; text-decoration:underline; }

@media(max-width:768px) { .zt-ship-grid { grid-template-columns:1fr; } .zt-ship-hero { min-height:30vh; } }

/* ============================================================
   JOURNAL (茶志) + ARTICLE pages
   ============================================================ */
.zt-page-hero {
  position: relative; min-height: 52vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 40px 90px;
  background-size: cover; background-position: center;
}
.zt-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,74,62,0.55) 0%, rgba(45,74,62,0.72) 100%);
}
.zt-page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.zt-page-hero-title { color: #fff; font-size: 52px; line-height: 1.12; margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.zt-page-hero-desc { color: rgba(255,255,255,0.92); font-size: 18px; font-weight: 300; line-height: 1.8; max-width: 560px; margin: 0 auto; }

.zt-journal-list { padding: 90px 0; }
.zt-journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.zt-journal-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--zt-border);
  border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zt-journal-card:hover { transform: translateY(-6px); box-shadow: 0 14px 38px rgba(45,74,62,0.12); }
.zt-journal-image { aspect-ratio: 4 / 3; overflow: hidden; }
.zt-journal-image img { width: 100%; height: 100%; object-fit: cover; }
.zt-journal-content { padding: 28px 28px 32px; }
.zt-journal-content h3 { font-size: 22px; color: var(--zt-green); margin-bottom: 12px; line-height: 1.3; }
.zt-journal-content p { color: var(--zt-medium); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }

/* Article (post) */
.zt-article { padding: 80px 0 100px; }
.zt-article-inner { max-width: 760px; margin: 0 auto; }
.zt-article-title { font-size: 44px; line-height: 1.15; color: var(--zt-green); margin: 8px 0 18px; }
.zt-article-lead { font-size: 20px; line-height: 1.8; color: var(--zt-medium); font-weight: 300; margin-bottom: 36px; }
.zt-article h2 { font-size: 28px; color: var(--zt-green); margin: 44px 0 16px; }
.zt-article p { font-size: 17px; line-height: 1.9; color: var(--zt-dark); margin-bottom: 20px; }
.zt-article-figure { margin: 40px 0; }
.zt-article-figure img { width: 100%; border-radius: 10px; box-shadow: 0 12px 36px rgba(45,74,62,0.12); }
.zt-figure-cap { font-size: 13px; color: var(--zt-light); text-align: center; margin-top: 12px; font-style: italic; }
.zt-article-callout {
  margin: 44px 0; padding: 32px; background: var(--zt-off-white);
  border-left: 3px solid var(--zt-bronze); border-radius: 8px;
}
.zt-article-callout p { margin-bottom: 18px; }
.zt-article-foot { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--zt-border); }
.zt-article-foot a { color: var(--zt-bronze); text-decoration: none; font-weight: 700; letter-spacing: 1px; }

@media (max-width: 860px) {
  .zt-journal-grid { grid-template-columns: 1fr; gap: 28px; }
  .zt-page-hero-title { font-size: 36px; }
  .zt-article-title { font-size: 32px; }
}
