/* ============================================
    NÔNG SẢN VIỆT — PAGES PREMIUM CSS
   Styling for: Shop, Đặt Hàng, Tin Tức, Liên Hệ
   ============================================ */

/* ============================================
   SHARED PAGE STYLES
   ============================================ */

/* Hero banners (shared styles) */
.contact-hero,
.order-hero,
.news-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4d8228 0%, #5a8a2d 50%, #7bb83e 100%);
    overflow: hidden;
    text-align: center;
}

.contact-hero::before,
.order-hero::before,
.news-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(82, 183, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 163, 115, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.contact-hero-overlay,
.order-hero-overlay,
.news-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 5C15 5 5 15 5 30s10 25 25 25 25-10 25-25S45 5 30 5z' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.contact-hero .container,
.order-hero .container,
.news-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content,
.order-hero-content,
.news-hero-content {
    padding: 60px 20px 50px;
}

.contact-hero-badge,
.order-hero-badge,
.news-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-hero-title,
.order-hero-title,
.news-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.contact-hero-subtitle,
.order-hero-subtitle,
.news-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: clamp(14px, 2vw, 16px);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.contact-hero-breadcrumb,
.order-hero-breadcrumb,
.news-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
}

.contact-hero-breadcrumb a,
.order-hero-breadcrumb a,
.news-hero-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-hero-breadcrumb a:hover,
.order-hero-breadcrumb a:hover,
.news-hero-breadcrumb a:hover {
    color: #fff;
}

.contact-hero-breadcrumb span,
.order-hero-breadcrumb span,
.news-hero-breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.contact-hero-breadcrumb span:last-child,
.order-hero-breadcrumb span:last-child,
.news-hero-breadcrumb span:last-child {
    color: #fff;
    font-weight: 500;
}

/* Section labels */
.contact-section-label,
.order-section-label,
.news-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #7bb83e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contact-section-label.center,
.order-section-label.center,
.news-section-label.center {
    justify-content: center;
}

.contact-label-icon,
.order-label-icon,
.news-label-icon {
    font-size: 20px;
}

.contact-section-title,
.order-section-title,
.news-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    color: #4d8228;
    margin: 0 0 24px;
    line-height: 1.3;
}

.contact-section-title.center,
.order-section-title.center,
.news-section-title.center {
    text-align: center;
}

.order-section-desc.center {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 40px;
}

/* ============================================
   LIÊN HỆ (CONTACT) PAGE
   ============================================ */

/* Contact Info Cards */
.contact-info-section {
    padding: 70px 0 50px;
    background: #fafcfa;
}

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

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #e8f0e8;
    transition: all 0.35s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(107,158,58,0.12);
    border-color: #9acd66;
}

.contact-info-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.contact-info-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #4d8228;
    margin: 0 0 8px;
}

.contact-info-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 4px 0;
}

.contact-phone-link {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #5a8a2d !important;
    text-decoration: none;
}

.contact-sub-text {
    font-size: 12px !important;
    color: #999 !important;
}

/* Contact Form Section */
.contact-form-section {
    padding: 70px 0;
    background: #fff;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-desc {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-premium-form .form-group {
    margin-bottom: 20px;
}

.contact-premium-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.contact-premium-form .required {
    color: #e53935;
}

.contact-premium-form input,
.contact-premium-form select,
.contact-premium-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Roboto', 'Be Vietnam Pro', sans-serif;
    color: #333;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-premium-form input:focus,
.contact-premium-form select:focus,
.contact-premium-form textarea:focus {
    border-color: #9acd66;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(154,205,102,0.1);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #5a8a2d, #7bb83e);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107,158,58,0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107,158,58,0.4);
}

.contact-form-success {
    text-align: center;
    padding: 40px;
}

.contact-form-success .success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-form-success h3 {
    color: #5a8a2d;
    font-size: 22px;
    margin-bottom: 8px;
}

/* Map */
.contact-map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

/* Social */
.contact-social-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #4d8228;
    margin-bottom: 16px;
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.contact-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    background: #fafafa;
}

.contact-social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-social-card.facebook { border-color: #1877F2; }
.contact-social-card.facebook:hover { background: #EBF3FF; }
.contact-social-card.zalo { border-color: #0068FF; }
.contact-social-card.zalo:hover { background: #E6F0FF; }
.contact-social-card.instagram { border-color: #E4405F; }
.contact-social-card.instagram:hover { background: #FDE8EC; }
.contact-social-card.youtube { border-color: #FF0000; }
.contact-social-card.youtube:hover { background: #FFE6E6; }

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

.social-name {
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

/* FAQ */
.contact-faq-section {
    padding: 70px 0;
    background: #f7faf7;
}

.contact-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8f0e8;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-faq-item:hover {
    border-color: #9acd66;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    color: #4d8228;
    font-size: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f7f4;
}

.faq-toggle {
    font-size: 22px;
    font-weight: 300;
    color: #9acd66;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.contact-faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px;
}

.faq-answer p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.contact-cta {
    padding: 70px 0;
    background: #fff;
}

.contact-cta-inner {
    background: linear-gradient(135deg, #4d8228, #5a8a2d);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(154,205,102,0.2), transparent 60%);
}

.contact-cta-inner h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 4vw, 30px);
    margin-bottom: 12px;
    position: relative;
}

.contact-cta-inner p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
}

.contact-cta-actions,
.order-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

.contact-cta-btn,
.order-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-cta-btn.primary,
.order-cta-btn.primary {
    background: #9acd66;
    color: #fff;
    box-shadow: 0 4px 15px rgba(154,205,102,0.4);
}

.contact-cta-btn.primary:hover,
.order-cta-btn.primary:hover {
    background: #7bb83e;
    transform: translateY(-2px);
}

.contact-cta-btn.secondary,
.order-cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.contact-cta-btn.secondary:hover,
.order-cta-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ============================================
   ĐẶT HÀNG (ORDER) PAGE
   ============================================ */

/* Order Steps */
.order-steps-section {
    padding: 70px 0 60px;
    background: #fafcfa;
}

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

.order-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #e8f0e8;
    transition: all 0.35s ease;
}

.order-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(107,158,58,0.12);
    border-color: #9acd66;
}

.order-step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(107,158,58,0.06);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.order-step-icon {
    font-size: 42px;
    margin-bottom: 16px;
    display: block;
}

.order-step-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #4d8228;
    margin: 0 0 10px;
}

.order-step-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* Order Products */
.order-products-section {
    padding: 70px 0;
    background: #fff;
}

.order-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.order-product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all 0.35s ease;
}

.order-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border-color: #9acd66;
}

.order-product-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f5f5f5;
}

.order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.order-product-card:hover .order-product-image img {
    transform: scale(1.08);
}

.order-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
    font-size: 48px;
}

.order-product-badge {
    position: absolute;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.order-product-badge.sale {
    top: 10px;
    right: 10px;
    background: #e53935;
    color: #fff;
}

.order-product-badge.origin {
    top: 10px;
    left: 10px;
    background: rgba(77,130,40,0.85);
    color: #fff;
    backdrop-filter: blur(4px);
}

.order-product-info {
    padding: 16px 18px 20px;
}

.order-product-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}

.order-product-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.order-product-name a:hover {
    color: #5a8a2d;
}

.order-product-cert {
    display: inline-block;
    font-size: 11px;
    color: #7bb83e;
    background: #e8f5e9;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.order-product-price {
    font-size: 16px;
    font-weight: 800;
    color: #e53935;
    margin-bottom: 12px;
}

.order-product-price del {
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

.order-product-price ins {
    text-decoration: none;
}

.order-add-to-cart-btn {
    display: block;
    text-align: center;
    padding: 10px 16px;
    background: #5a8a2d;
    color: #fff !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-add-to-cart-btn:hover {
    background: #7bb83e;
    transform: translateY(-1px);
}

.order-no-products {
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 40px;
}

.order-view-all {
    text-align: center;
}

.order-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 36px;
    background: transparent;
    color: #5a8a2d;
    border: 2px solid #5a8a2d;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-view-all-btn:hover {
    background: #5a8a2d;
    color: #fff;
}

/* Quick Order */
.order-quick-section {
    padding: 70px 0;
    background: #f7faf7;
}

.order-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.order-quick-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.order-quick-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-quick-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e0ede4;
    transition: all 0.3s ease;
}

.order-quick-method:hover {
    border-color: #9acd66;
    box-shadow: 0 4px 15px rgba(107,158,58,0.08);
}

.method-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
    border-radius: 12px;
    flex-shrink: 0;
}

.method-info strong {
    display: block;
    font-size: 14px;
    color: #4d8228;
    margin-bottom: 2px;
}

.method-value {
    font-size: 16px;
    font-weight: 700;
    color: #5a8a2d;
    text-decoration: none;
}

a.method-value:hover {
    color: #7bb83e;
}

/* Quick Order Form */
.order-quick-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e8f0e8;
}

.order-quick-form-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: #4d8228;
    margin: 0 0 24px;
}

.order-quick-form .form-group {
    margin-bottom: 18px;
}

.order-quick-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.order-quick-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.order-quick-form .required {
    color: #e53935;
}

.order-quick-form input,
.order-quick-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Roboto', 'Be Vietnam Pro', sans-serif;
    color: #333;
    transition: all 0.3s ease;
    background: #fafafa;
}

.order-quick-form input:focus,
.order-quick-form textarea:focus {
    border-color: #9acd66;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(154,205,102,0.1);
}

.order-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: linear-gradient(135deg, #5a8a2d, #7bb83e);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107,158,58,0.3);
    width: 100%;
    justify-content: center;
}

.order-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107,158,58,0.4);
}

.order-form-success {
    text-align: center;
    padding: 40px 20px;
}

.order-form-success .success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.order-form-success h3 {
    color: #5a8a2d;
    font-size: 20px;
    margin-bottom: 8px;
}

/* Trust */
.order-trust-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #4d8228, #5a8a2d);
}

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

.order-trust-item {
    text-align: center;
    padding: 20px;
}

.order-trust-item .trust-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.order-trust-item strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}

.order-trust-item span {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

/* ============================================
   TIN TỨC (NEWS) PAGE
   ============================================ */

/* Category Filter */
.news-categories-section {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.news-cat-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.news-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-cat-tag:hover,
.news-cat-tag.active {
    background: #5a8a2d;
    color: #fff;
    border-color: #5a8a2d;
}

.news-cat-count {
    background: rgba(0,0,0,0.1);
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 11px;
}

.news-cat-tag.active .news-cat-count {
    background: rgba(255,255,255,0.2);
}

/* Featured Post */
.news-featured-section {
    padding: 50px 0;
    background: #fff;
}

.news-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: #f7faf7;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e0ede4;
    transition: all 0.3s ease;
}

.news-featured-card:hover {
    box-shadow: 0 12px 40px rgba(107,158,58,0.1);
}

.news-featured-image {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-featured-card:hover .news-featured-image img {
    transform: scale(1.05);
}

.news-featured-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
    font-size: 64px;
}

.news-featured-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(107,158,58,0.9);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.news-featured-content {
    padding: 40px 30px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.news-meta-cat {
    background: #e8f5e9;
    color: #5a8a2d;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-meta-date,
.news-meta-reading {
    font-size: 12px;
    color: #999;
}

.news-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: #4d8228;
    margin: 0 0 14px;
    line-height: 1.3;
}

.news-featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.news-featured-title a:hover {
    color: #7bb83e;
}

.news-featured-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-featured-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5a8a2d;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-featured-readmore:hover {
    color: #7bb83e;
    gap: 10px;
}

/* Blog Posts Grid */
.news-grid-section {
    padding: 60px 0 70px;
    background: #fafcfa;
}

.news-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.news-post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all 0.35s ease;
}

.news-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border-color: #9acd66;
}

.news-post-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f0f0;
}

.news-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-post-card:hover .news-post-image img {
    transform: scale(1.05);
}

.news-post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    font-size: 40px;
}

.news-post-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(107,158,58,0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.news-post-content {
    padding: 20px 22px 24px;
}

.news-post-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.news-post-date,
.news-post-author {
    font-size: 12px;
    color: #999;
}

.news-post-title {
    font-size: 16px;
    font-weight: 700;
    color: #4d8228;
    margin: 0 0 8px;
    line-height: 1.4;
}

.news-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.news-post-title a:hover {
    color: #7bb83e;
}

.news-post-excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 14px;
}

.news-post-readmore {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #5a8a2d;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.news-post-readmore:hover {
    color: #7bb83e;
    gap: 8px;
}

/* No Posts */
.news-no-posts {
    text-align: center;
    padding: 60px 20px;
}

.news-no-posts-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.news-no-posts h3 {
    color: #4d8228;
    font-size: 22px;
    margin-bottom: 8px;
}

.news-no-posts p {
    color: #999;
}

/* Pagination */
.news-pagination {
    text-align: center;
}

.news-pagination .page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.news-pagination .page-numbers li {
    display: inline;
}

.news-pagination .page-numbers a,
.news-pagination .page-numbers span.current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #555;
    transition: all 0.3s;
}

.news-pagination .page-numbers a:hover {
    border-color: #5a8a2d;
    color: #5a8a2d;
}

.news-pagination .page-numbers span.current {
    background: #5a8a2d;
    color: #fff;
    border-color: #5a8a2d;
}

/* Newsletter */
.news-newsletter-section {
    padding: 70px 0;
    background: #fff;
}

.news-newsletter-inner {
    background: linear-gradient(135deg, #4d8228, #5a8a2d);
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.news-newsletter-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(154,205,102,0.2), transparent 60%);
}

.news-newsletter-content {
    position: relative;
}

.news-newsletter-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.news-newsletter-content h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 0 0 8px;
}

.news-newsletter-content p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

.news-newsletter-form {
    display: flex;
    gap: 10px;
    position: relative;
    flex-shrink: 0;
}

.news-newsletter-form input {
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    min-width: 280px;
    outline: none;
    transition: all 0.3s;
}

.news-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.news-newsletter-form input:focus {
    border-color: #9acd66;
    background: rgba(255,255,255,0.15);
}

.news-newsletter-form button {
    padding: 14px 28px;
    background: #9acd66;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.news-newsletter-form button:hover {
    background: #7bb83e;
    transform: translateY(-1px);
}

/* ============================================
   SHOP PAGE ENHANCEMENTS
   ============================================ */

/* WooCommerce Shop overrides */
body.woocommerce .site-content .ast-container,
body.woocommerce-page .site-content .ast-container {
    max-width: 1200px;
}

/* ============================================
   PRODUCT CARD - PREMIUM REDESIGN
   ============================================ */
.woocommerce ul.products li.product {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e8e8 !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 !important;
    margin-bottom: 24px !important;
    outline: none !important;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Reset focus/focus-within states to prevent stuck green border */
.woocommerce ul.products li.product:focus,
.woocommerce ul.products li.product:focus-within,
.woocommerce ul.products li.product:active {
    border-color: #e8e8e8 !important;
    outline: none !important;
}

.woocommerce ul.products li.product a:focus,
.woocommerce ul.products li.product a:focus-visible,
.woocommerce ul.products li.product a:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Hover - lift & glow */
.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(45, 106, 79, 0.15);
    border-color: #9acd66 !important;
}

/* Product image container */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product a img {
    border-radius: 0;
    margin: 0 !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.08);
}

/* Sale badge redesign */
.woocommerce ul.products li.product .onsale {
    background: linear-gradient(135deg, #ff6b35, #ff4444) !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 5px 14px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto !important;
    z-index: 2;
    box-shadow: 0 3px 12px rgba(255, 68, 68, 0.3);
    min-height: auto !important;
    min-width: auto !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* Origin & cert badges - horizontal pill style */
.ns-product-origin,
.ns-product-cert {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px 10px !important;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    margin: 0 !important;
}

.ns-product-origin {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #3d6b1e !important;
    border: 1px solid #bbf7d0;
}

.ns-product-cert {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #047857 !important;
    border: 1px solid #a7f3d0;
}

/* Badges container wrapper */
.woocommerce ul.products li.product .ns-product-origin:first-of-type {
    margin-left: 14px !important;
    margin-top: 12px !important;
}

.woocommerce ul.products li.product .ns-product-cert {
    margin-left: 4px !important;
    margin-bottom: 4px !important;
}

/* Category label */
.woocommerce ul.products li.product .ast-woo-product-category,
.woocommerce ul.products li.product .posted_in {
    padding: 6px 16px 0 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9acd66 !important;
    opacity: 0.85;
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 6px 16px 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1a1a2e;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

/* Price styling */
.woocommerce ul.products li.product .price {
    padding: 6px 16px 4px !important;
    font-size: 15px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.woocommerce ul.products li.product .price del {
    font-size: 12px !important;
    color: #999 !important;
    text-decoration: line-through;
    opacity: 0.7;
}

.woocommerce ul.products li.product .price ins {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #d63031 !important;
    text-decoration: none !important;
    background: none !important;
}

.woocommerce ul.products li.product .price > .woocommerce-Price-amount {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #5a8a2d !important;
}

/* ---- BUTTON WRAPPER ---- */
.ns-product-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 14px 14px !important;
    margin-top: auto;
}

/* Add to cart button */
.woocommerce ul.products li.product .ns-product-buttons .button,
.woocommerce ul.products li.product .ns-product-buttons a.add_to_cart_button {
    margin: 0 !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #5a8a2d, #7bb83e) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 10px 8px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-align: center !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: none !important;
    box-shadow: 0 3px 12px rgba(45, 106, 79, 0.25);
    white-space: nowrap;
}

.woocommerce ul.products li.product .ns-product-buttons .button:hover,
.woocommerce ul.products li.product .ns-product-buttons a.add_to_cart_button:hover {
    background: linear-gradient(135deg, #7bb83e, #9acd66) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.35);
}

/* Buy Now button */
.ns-buy-now-btn {
    margin: 0 !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #e67e22, #f39c12) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 10px 8px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-align: center !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: none !important;
    box-shadow: 0 3px 12px rgba(230, 126, 34, 0.3);
    white-space: nowrap;
    cursor: pointer;
}

.ns-buy-now-btn:hover {
    background: linear-gradient(135deg, #d35400, #e67e22) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    color: #fff !important;
}

/* When only 1 button (no Buy Now), make it full width */
.ns-product-buttons .button:only-child,
.ns-product-buttons a.add_to_cart_button:only-child {
    grid-column: 1 / -1;
}

/* Added to cart animation */
.woocommerce ul.products li.product .added_to_cart {
    display: none !important;
}

/* Product card - added shimmer on hover */
.woocommerce ul.products li.product::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.woocommerce ul.products li.product:hover::after {
    left: 100%;
}

/* Star rating in loop */
.woocommerce ul.products li.product .star-rating {
    margin: 4px 16px 0 !important;
    font-size: 12px;
}

/* Responsive adjustments for product buttons */
@media (max-width: 1200px) {
    .ns-product-buttons {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 768px) {
    .ns-product-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 8px 10px 12px !important;
    }
    
    .woocommerce ul.products li.product .ns-product-buttons .button,
    .woocommerce ul.products li.product .ns-product-buttons a.add_to_cart_button,
    .ns-buy-now-btn {
        font-size: 10px !important;
        padding: 8px 6px !important;
    }
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-grid,
    .order-quick-grid {
        grid-template-columns: 1fr;
    }
    .order-steps-grid,
    .order-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .order-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-featured-card {
        grid-template-columns: 1fr;
    }
    .news-featured-content {
        padding: 24px;
    }
    .news-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
    .news-newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .news-newsletter-form input {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-premium-form .form-row,
    .order-quick-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .order-steps-grid {
        grid-template-columns: 1fr;
    }
    .order-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .order-trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .news-posts-grid {
        grid-template-columns: 1fr;
    }
    .news-cat-filter {
        gap: 6px;
    }
    .news-cat-tag {
        padding: 6px 14px;
        font-size: 12px;
    }

    .contact-hero-title,
    .order-hero-title,
    .news-hero-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .order-product-grid {
        grid-template-columns: 1fr;
    }
    .order-trust-grid {
        grid-template-columns: 1fr;
    }
}
