/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

a {
    color: inherit;
}

/* Navigation Bar */
.navbar {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
}

/* Header Center Items */
.header-center-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-center-items__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

.header-center-items__item svg {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    width: 24px;
    height: 24px;
}

.nav-icon:hover {
    color: #000000;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 16px;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: #ffffff;
    padding: 1rem;
}

/* Product Image Section */
.product-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 1rem;
}

.product-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
}

/* Product Details Section */
.product-details-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Product Badges */
.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.product-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.badge-bestseller {
    background-color: #f59e0b;
}

.badge-highly-rated {
    background-color: #10b981;
}

.badge-great-value {
    background-color: #3b82f6;
}

.title-rating-section {
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Inline product sentence styling (matches surrounding paragraph text) */
.product-sentence {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0.5rem 0;
}

/* Ensure inline product name inherits the paragraph styling */


/* Rating Section */
.rating-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin-top: 1em;
}

.stars {
    display: flex;
    gap: 2px;
    font-size: 1.5rem;
}

.star {
    color: #d1d5db;
}

.star.filled {
    color: #fbbf24;
}

.star.half {
    background: linear-gradient(90deg, #fbbf24 50%, #d1d5db 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.review-count {
    color: #6b7280;
    font-weight: 400;
}

/* Reviews Section */
.reviews-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.reviews-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.review-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    font-weight: 600;
    color: #1a1a1a;
}

.review-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Quantity Section */
.quantity-section {
    padding: 0;
}

.quantity-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.quantity-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.quantity-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    padding: 1rem;
    border: 2px solid #000000;
    background-color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 100%;
}

.quantity-value {
    font-size: 1rem;
    line-height: 1.2;
}

.quantity-price-label {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.quantity-btn:hover {
    border-color: #000000;
    background-color: #ffffff;
}

.quantity-btn.active {
    border-color: #000000;
    background-color: #000000;
    color: #ffffff;
}

/* Price Section */
.price-section {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0;
}

.price-label {
    font-size: 1.1rem;
    color: #6b7280;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.quantity-display {
    font-size: 1rem;
    color: #6b7280;
}

/* Add to Cart Button */
.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2rem;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.add-to-cart-btn:hover {
    background-color: #333333;
}

.add-to-cart-btn:active {
    background-color: #000000;
}

/* Trust Icons */
.trust-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.trust-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

.trust-icon-item svg {
    width: 32px;
    height: 32px;
    color: #333;
    flex-shrink: 0;
}

.trust-icon-item span {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.2;
}

/* Promo Banner */
.promo-banner {
    background-color: #C8AEE8;
    color: #3C1230;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cupon-code-container {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 12px;
    box-sizing: border-box;
    margin-top: 8px;
}

.cupon-code-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.cupon-code-block {
    background-color: #F7F7F7;
    color: #333333;
    font-size: 18px;
    letter-spacing: 4px;
    display: flex;
    width: 100%;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 6px 50px 6px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    position: relative;
}

.cupon-code-block:after {
    content: "Copy";
    display: flex;
    font-size: 12px;
    letter-spacing: 0;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.cupon-code-description {
    font-style: Italic;
    font-size: 14px;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-title {
        font-size: 2.5rem;
    }

    .quantity-buttons {
        grid-template-columns: repeat(4, 1fr);
    }

    .header-center-items {
        display: none;
    }

    .nav-container {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }
}

@media (max-width: 640px) {
    .nav-container {
        grid-template-columns: auto auto;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .main-content {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .product-container {
        padding: 0.75rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .trust-icons {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .trust-icon-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        width: 100%;
    }

    .trust-icon-item svg {
        width: 24px;
        height: 24px;
    }

    .trust-icon-item span {
        font-size: 0.875rem;
    }

    .quantity-buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .quantity-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .quantity-value {
        font-size: 0.9rem;
    }

    .quantity-price-label {
        font-size: 0.85rem;
    }

    .product-image-section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .price-value {
        font-size: 1.75rem;
    }

    .stars {
        font-size: 1.25rem;
    }
}

/* =============================================
   Article / Blog Landing Page
   ============================================= */

.article-main {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px 4rem;
}

.article-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Hero */
.article-hero {
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2.5rem;
}

.article-category-badge {
    display: inline-block;
    background-color: #C8AEE8;
    color: #3C1230;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.article-lead {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 0.85rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta-divider {
    color: #d1d5db;
}

/* Sections */
.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0.25rem;
}

.article-section p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.article-section p:last-child {
    margin-bottom: 0;
}

/* Section header tag */
.section-header-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.section-header-tag--fem {
    background-color: #dcfce7;
    color: #166534;
}

.section-header-tag--auto {
    background-color: #ede9fe;
    color: #5b21b6;
}

/* Comparison Table */
.comparison-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-top: 1.25rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table thead tr {
    background-color: #f9fafb;
}

.comparison-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table td {
    padding: 0.875rem 1.25rem;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: #fafafa;
}

.comparison-label {
    font-weight: 600;
    color: #1a1a1a !important;
    font-size: 0.9rem;
}

.table-badge {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.table-badge--fem {
    background-color: #dcfce7;
    color: #166534;
}

.table-badge--auto {
    background-color: #ede9fe;
    color: #5b21b6;
}

/* Pros / Cons Grid */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pros-cons-card {
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid transparent;
}

.pros-cons-card--pros {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}

.pros-cons-card--cons {
    background-color: #fef2f2;
    border-color: #fecaca;
}

.pros-cons-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-cons-card--pros h3 {
    color: #166534;
}

.pros-cons-card--cons h3 {
    color: #991b1b;
}

.pros-cons-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pros-cons-card ul li {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
    padding-left: 1rem;
    position: relative;
}

.pros-cons-card--pros ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
    font-size: 0.8rem;
}

.pros-cons-card--cons ul li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

/* Product Grid Section */
.product-grid-section {
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.product-grid-section--auto {
    background-color: #faf7ff;
}

.product-grid-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.25rem !important;
}

.product-grid-subtitle {
    color: #9ca3af !important;
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
}

.seed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
}

/* Seed Card */
.seed-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.seed-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.seed-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.seed-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seed-card__body {
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.seed-card__badge {
    display: inline-block;
    background-color: #f59e0b;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    width: fit-content;
}

.seed-card__badge--award {
    background-color: #3b82f6;
}

.seed-card__badge--premium {
    background-color: #3C1230;
}

.seed-card__badge--beginner {
    background-color: #10b981;
}

.seed-card__badge--fast {
    background-color: #8b5cf6;
}

.seed-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.seed-card__type {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
}

.seed-card__stars {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.seed-card__stars .star {
    font-size: 0.85rem;
}

.seed-card__rating-text {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    margin-left: 4px;
}

.seed-card__cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
    margin-top: auto;
    padding-top: 0.5rem;
    display: block;
    border-top: 1px solid #f3f4f6;
}

.seed-card:hover .seed-card__cta {
    color: #374151;
}

/* Grid CTA Button */
.grid-cta-wrap {
    display: flex;
    justify-content: center;
}

.grid-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    border: 2px solid #000000;
}

.grid-cta-btn:hover {
    background-color: #1a1a1a;
}

.grid-cta-btn--auto {
    background-color: #5b21b6;
    border-color: #5b21b6;
}

.grid-cta-btn--auto:hover {
    background-color: #4c1d95;
}

.grid-cta-btn--outline {
    background-color: transparent;
    color: #000000;
}

.grid-cta-btn--outline:hover {
    background-color: #f3f4f6;
}

/* Decision Grid */
.decision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.decision-card {
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.decision-card--fem {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}

.decision-card--auto {
    background-color: #f5f3ff;
    border-color: #ddd6fe;
}

.decision-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.decision-card--fem .decision-card__header svg {
    stroke: #15803d;
}

.decision-card--auto .decision-card__header svg {
    stroke: #6d28d9;
}

.decision-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.decision-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.decision-card ul li {
    font-size: 0.9rem;
    color: #374151;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.decision-card--fem ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #15803d;
    font-size: 0.8rem;
    top: 2px;
}

.decision-card--auto ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6d28d9;
    font-size: 0.8rem;
    top: 2px;
}

.decision-card__link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #166534;
    text-decoration: none;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.decision-card__link:hover {
    text-decoration: underline;
}

.decision-card__link--auto {
    color: #5b21b6;
}

/* Trust Bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
}

.trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.trust-bar__item svg {
    stroke: #3C1230;
    width: 28px;
    height: 28px;
}

.trust-bar__item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.final-cta-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.final-cta-section p {
    color: #9ca3af;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-section .grid-cta-btn--outline {
    color: #ffffff;
    border-color: rgba(255,255,255,0.3);
}

.final-cta-section .grid-cta-btn--outline:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Hero CTAs */
.article-hero-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* 420 Promo Banner */
.promo-banner-img-wrap {
    text-align: center;
    margin: 0.5rem 0 2rem;
}

.promo-banner-img {
    max-width: 728px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

/* Product component 420 banner */
.product-promo-banner-wrap {
    max-width: 1200px;
    margin: 0 auto 0;
    padding: 1rem 16px 0;
    text-align: center;
}

.product-promo-banner-wrap img {
    max-width: 728px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Article Page Responsive */
@media (max-width: 968px) {
    .article-title {
        font-size: 2.25rem;
    }

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

    .product-grid-section {
        margin-left: 0;
        margin-right: 0;
        padding: 1.5rem;
    }

    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .article-title {
        font-size: 1.75rem;
    }

    .article-lead {
        font-size: 1rem;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
    }

    .seed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .seed-card__name {
        font-size: 0.9rem;
    }

    .decision-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        grid-template-columns: 1fr 1fr;
    }

    .final-cta-section {
        padding: 2rem 1.25rem;
    }

    .final-cta-section h2 {
        font-size: 1.4rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .grid-cta-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .article-main {
        padding: 0 12px 3rem;
    }
}

@media (max-width: 400px) {
    .seed-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =============================================
   End Article Page Styles
   ============================================= */

/* Footer */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    margin-top: 3rem;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #000000;
}

.footer-bottom {
    background-color: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 0.5rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-payment-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-icon {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.25rem 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background-color: #ffffff;
}

@media (max-width: 968px) {
    .footer {
        margin-top: 0;
    }

    body .footer-container {
        display: flex;
        flex-direction: column;
        margin-top: 0;
        gap: 0;
        padding: 20px 16px 26px 16px;
    }

    .footer-section {
        border-bottom: 1px solid #e5e7eb;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .footer-links {
        display: none;
        transition: max-height 0.3s ease;
        padding-bottom: 20px;
    }

    .footer-links.is-open {
        display: flex;
    }

    .footer-title {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 4px;
    }

    .footer-title:after {
        content: '+';
        display: flex;
        margin-left: 16px;
        font-size: 20px;
    }

    .footer-title.is-open:after {
        content: '—';
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-payment-icons {
        justify-content: center;
    }
}
