/**
 * Preggie Article Hub - Main Styles
 *
 * Nordic Minimalist Design
 *
 * Brand Colors:
 * - Pink: #dc9193
 * - Blue: #92b9dd
 * - White: #fafbfc
 */

:root {
    /* Brand Colors */
    --preggie-pink: #dc9193;
    --preggie-pink-light: #f0d4d5;
    --preggie-pink-dark: #c67a7c;
    --preggie-blue: #92b9dd;
    --preggie-blue-light: #c5d9ee;
    --preggie-blue-dark: #6a9bc7;
    --preggie-white: #fafbfc;

    /* Neutral Colors */
    --preggie-gray-50: #f9fafb;
    --preggie-gray-100: #f3f4f6;
    --preggie-gray-200: #e5e7eb;
    --preggie-gray-300: #d1d5db;
    --preggie-gray-400: #9ca3af;
    --preggie-gray-500: #6b7280;
    --preggie-gray-600: #4b5563;
    --preggie-gray-700: #374151;
    --preggie-gray-800: #1f2937;
    --preggie-gray-900: #111827;

    /* Typography */
    --preggie-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", sans-serif;

    /* Spacing */
    --preggie-spacing-xs: 4px;
    --preggie-spacing-sm: 8px;
    --preggie-spacing-md: 16px;
    --preggie-spacing-lg: 24px;
    --preggie-spacing-xl: 32px;
    --preggie-spacing-2xl: 48px;
    --preggie-spacing-3xl: 64px;

    /* Border Radius */
    --preggie-radius-sm: 4px;
    --preggie-radius-md: 8px;
    --preggie-radius-lg: 12px;
    --preggie-radius-full: 9999px;

    /* Shadows */
    --preggie-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --preggie-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --preggie-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --preggie-transition-fast: 150ms ease;
    --preggie-transition-normal: 250ms ease;
}

/* ============================================
   BASE STYLES
   ============================================ */

.preggie-hub-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--preggie-spacing-lg);
    font-family: var(--preggie-font-sans);
}

/* ============================================
   BUTTONS
   ============================================ */

.preggie-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--preggie-radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--preggie-transition-fast);
    text-decoration: none;
    line-height: 1.4;
}

.preggie-button--primary {
    background-color: var(--preggie-blue);
    color: white;
}

.preggie-button--primary:hover {
    background-color: var(--preggie-blue-dark);
    color: white;
}

.preggie-button--secondary {
    background-color: var(--preggie-pink);
    color: white;
}

.preggie-button--secondary:hover {
    background-color: var(--preggie-pink-dark);
    color: white;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.preggie-hub-breadcrumbs {
    margin-bottom: var(--preggie-spacing-lg);
}

.preggie-breadcrumb {
    font-size: 14px;
    color: var(--preggie-gray-500);
}

.preggie-breadcrumb a {
    color: var(--preggie-gray-500);
    text-decoration: none;
    transition: color var(--preggie-transition-fast);
}

.preggie-breadcrumb a:hover {
    color: var(--preggie-blue);
}

.preggie-breadcrumb .breadcrumb_last {
    color: var(--preggie-gray-700);
}

/* ============================================
   HUB HEADER
   ============================================ */

.preggie-hub-header {
    text-align: center;
    margin-bottom: var(--preggie-spacing-2xl);
}

.preggie-hub-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--preggie-gray-900);
    margin: 0 0 var(--preggie-spacing-md) 0;
    line-height: 1.2;
}

.preggie-hub-intro {
    font-size: 1.125rem;
    color: var(--preggie-gray-600);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   HUB NAVIGATION
   ============================================ */

.preggie-hub-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--preggie-spacing-sm);
    justify-content: center;
    margin-bottom: var(--preggie-spacing-2xl);
    padding: var(--preggie-spacing-md);
    background: var(--preggie-gray-50);
    border-radius: var(--preggie-radius-lg);
}

.preggie-hub-nav-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--preggie-gray-600);
    text-decoration: none;
    border-radius: var(--preggie-radius-full);
    transition: all var(--preggie-transition-fast);
}

.preggie-hub-nav-item:hover {
    background: white;
    color: var(--preggie-blue);
}

.preggie-hub-nav-item.active {
    background: var(--nav-color, var(--preggie-blue));
    color: white;
}

/* ============================================
   ARTICLE GRID
   ============================================ */

.preggie-article-grid {
    display: grid;
    gap: var(--preggie-spacing-lg);
}

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

.preggie-article-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.preggie-article-grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

.preggie-article-grid--list {
    grid-template-columns: 1fr;
}

@media (max-width: 1024px) {
    .preggie-article-grid--3col,
    .preggie-article-grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .preggie-article-grid--2col,
    .preggie-article-grid--3col,
    .preggie-article-grid--4col {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ARTICLE CARD
   ============================================ */

.preggie-article-card {
    background: white;
    border-radius: var(--preggie-radius-lg);
    overflow: hidden;
    box-shadow: var(--preggie-shadow-sm);
    transition: all var(--preggie-transition-normal);
}

.preggie-article-card:hover {
    box-shadow: var(--preggie-shadow-md);
    transform: translateY(-2px);
}

.preggie-article-card__image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.preggie-article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--preggie-transition-normal);
}

.preggie-article-card:hover .preggie-article-card__image img {
    transform: scale(1.05);
}

.preggie-article-card__content {
    padding: var(--preggie-spacing-lg);
}

.preggie-article-card__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--category-color, var(--preggie-pink));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--preggie-spacing-sm);
    text-decoration: none;
    transition: opacity var(--preggie-transition-fast);
}

.preggie-article-card__category:hover {
    opacity: 0.8;
}

.preggie-article-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--preggie-gray-900);
    margin: 0 0 var(--preggie-spacing-sm) 0;
    line-height: 1.4;
}

.preggie-article-card__title a {
    color: inherit;
    text-decoration: none;
}

.preggie-article-card__title a:hover {
    color: var(--preggie-blue);
}

.preggie-article-card__excerpt {
    font-size: 14px;
    color: var(--preggie-gray-600);
    line-height: 1.6;
    margin: 0 0 var(--preggie-spacing-md) 0;
}

.preggie-article-card__meta {
    font-size: 13px;
    color: var(--preggie-gray-400);
    display: flex;
    align-items: center;
    gap: var(--preggie-spacing-sm);
}

.preggie-article-card__separator {
    color: var(--preggie-gray-300);
}

/* Featured Card */
.preggie-article-card--featured {
    grid-column: span 2;
}

.preggie-article-card--featured .preggie-article-card__title {
    font-size: 1.5rem;
}

@media (max-width: 640px) {
    .preggie-article-card--featured {
        grid-column: span 1;
    }
}

/* ============================================
   PRODUCT CARD
   ============================================ */

.preggie-product-card {
    background: white;
    border: 1px solid var(--preggie-gray-200);
    border-radius: var(--preggie-radius-lg);
    overflow: hidden;
    transition: all var(--preggie-transition-fast);
}

.preggie-product-card:hover {
    border-color: var(--preggie-blue);
    box-shadow: var(--preggie-shadow-md);
}

.preggie-product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.preggie-product-card__image {
    position: relative;
    aspect-ratio: 1;
    background: var(--preggie-gray-50);
}

.preggie-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--preggie-spacing-md);
}

.preggie-product-card__badge {
    position: absolute;
    top: var(--preggie-spacing-sm);
    left: var(--preggie-spacing-sm);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--preggie-radius-sm);
}

.preggie-product-card__badge--sale {
    background: var(--preggie-pink);
    color: white;
}

.preggie-product-card__content {
    padding: var(--preggie-spacing-md);
}

.preggie-product-card__title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--preggie-gray-800);
    margin: 0 0 var(--preggie-spacing-xs) 0;
}

.preggie-product-card__rating {
    margin-bottom: var(--preggie-spacing-xs);
}

.preggie-product-card__price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--preggie-gray-900);
}

.preggie-product-card__price del {
    color: var(--preggie-gray-400);
    font-weight: 400;
    font-size: 0.875rem;
    margin-right: var(--preggie-spacing-xs);
}

.preggie-product-card__price ins {
    text-decoration: none;
    color: var(--preggie-pink-dark);
}

.preggie-product-card__actions {
    padding: 0 var(--preggie-spacing-md) var(--preggie-spacing-md);
}

.preggie-product-card__button {
    width: 100%;
}

/* Compact Style */
.preggie-product-card--compact .preggie-product-card__link {
    display: flex;
    align-items: center;
}

.preggie-product-card--compact .preggie-product-card__image {
    width: 80px;
    flex-shrink: 0;
}

.preggie-product-card--compact .preggie-product-card__content {
    flex: 1;
}

.preggie-product-card--compact .preggie-product-card__actions {
    padding: var(--preggie-spacing-md);
}

/* Horizontal Style */
.preggie-product-card--horizontal {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
}

.preggie-product-card--horizontal .preggie-product-card__link {
    display: contents;
}

.preggie-product-card--horizontal .preggie-product-card__actions {
    padding: var(--preggie-spacing-md);
}

@media (max-width: 640px) {
    .preggie-product-card--horizontal {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEWSLETTER BOX
   ============================================ */

.preggie-newsletter-box {
    padding: var(--preggie-spacing-2xl);
    border-radius: var(--preggie-radius-lg);
    text-align: center;
}

.preggie-newsletter-box--pink {
    background: linear-gradient(135deg, var(--preggie-pink-light), var(--preggie-pink));
}

.preggie-newsletter-box--blue {
    background: linear-gradient(135deg, var(--preggie-blue-light), var(--preggie-blue));
}

.preggie-newsletter-box--light {
    background: var(--preggie-gray-50);
    border: 1px solid var(--preggie-gray-200);
}

.preggie-newsletter-box__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 var(--preggie-spacing-sm) 0;
    color: var(--preggie-gray-900);
}

.preggie-newsletter-box__description {
    font-size: 1rem;
    margin: 0 0 var(--preggie-spacing-lg) 0;
    color: var(--preggie-gray-700);
}

.preggie-newsletter-box__form input[type="email"] {
    padding: 12px 16px;
    border: 1px solid var(--preggie-gray-300);
    border-radius: var(--preggie-radius-md);
    font-size: 14px;
    width: 100%;
    max-width: 300px;
}

.preggie-newsletter-box__form button {
    margin-top: var(--preggie-spacing-sm);
}

/* Inline Style */
.preggie-newsletter-box--inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: var(--preggie-spacing-lg);
}

.preggie-newsletter-box--inline .preggie-newsletter-box__content {
    flex: 1;
}

.preggie-newsletter-box--inline .preggie-newsletter-box__form {
    display: flex;
    gap: var(--preggie-spacing-sm);
}

@media (max-width: 768px) {
    .preggie-newsletter-box--inline {
        flex-direction: column;
        text-align: center;
    }

    .preggie-newsletter-box--inline .preggie-newsletter-box__form {
        flex-direction: column;
        width: 100%;
    }
}

/* Card Style */
.preggie-newsletter-box--card {
    border: 2px solid var(--preggie-gray-200);
    background: white;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.preggie-faq-accordion {
    max-width: 800px;
    margin: 0 auto var(--preggie-spacing-2xl);
}

.preggie-faq-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 var(--preggie-spacing-lg) 0;
    color: var(--preggie-gray-900);
}

.preggie-faq-items {
    display: flex;
    flex-direction: column;
    gap: var(--preggie-spacing-sm);
}

.preggie-faq-item {
    border: 1px solid var(--preggie-gray-200);
    border-radius: var(--preggie-radius-md);
    overflow: hidden;
    background: white;
}

.preggie-faq-item__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--preggie-spacing-md) var(--preggie-spacing-lg);
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--preggie-gray-800);
    text-align: left;
    transition: background var(--preggie-transition-fast);
    font-family: inherit;
}

.preggie-faq-item__header:hover {
    background: var(--preggie-gray-50);
}

.preggie-faq-item__header[aria-expanded="true"] {
    background: var(--preggie-gray-50);
}

.preggie-faq-item__question {
    flex: 1;
    padding-right: var(--preggie-spacing-md);
}

.preggie-faq-item__icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.preggie-faq-item__icon::before,
.preggie-faq-item__icon::after {
    content: '';
    position: absolute;
    background: var(--preggie-gray-400);
    transition: transform var(--preggie-transition-fast);
}

.preggie-faq-item__icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preggie-faq-item__icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preggie-faq-item__header[aria-expanded="true"] .preggie-faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.preggie-faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--preggie-transition-normal);
}

.preggie-faq-item__content.is-open {
    max-height: 2000px;
}

.preggie-faq-item__answer {
    padding: 0 var(--preggie-spacing-lg) var(--preggie-spacing-lg);
    font-size: 15px;
    line-height: 1.7;
    color: var(--preggie-gray-600);
}

.preggie-faq-item__answer p:first-child {
    margin-top: 0;
}

.preggie-faq-item__answer p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CATEGORY HUB
   ============================================ */

.preggie-category-hub {
    margin-bottom: var(--preggie-spacing-2xl);
}

.preggie-category-hub__header {
    text-align: center;
    margin-bottom: var(--preggie-spacing-xl);
}

.preggie-category-hub__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 var(--preggie-spacing-sm) 0;
    color: var(--preggie-gray-900);
}

.preggie-category-hub__intro {
    font-size: 1.125rem;
    color: var(--preggie-gray-600);
    margin: 0;
}

.preggie-category-hub__grid {
    display: grid;
    gap: var(--preggie-spacing-lg);
}

.preggie-category-hub--2col .preggie-category-hub__grid {
    grid-template-columns: repeat(2, 1fr);
}

.preggie-category-hub--3col .preggie-category-hub__grid {
    grid-template-columns: repeat(3, 1fr);
}

.preggie-category-hub--4col .preggie-category-hub__grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .preggie-category-hub--3col .preggie-category-hub__grid,
    .preggie-category-hub--4col .preggie-category-hub__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .preggie-category-hub--2col .preggie-category-hub__grid,
    .preggie-category-hub--3col .preggie-category-hub__grid,
    .preggie-category-hub--4col .preggie-category-hub__grid {
        grid-template-columns: 1fr;
    }
}

.preggie-category-hub__item {
    text-decoration: none;
    display: block;
}

.preggie-category-hub__item-inner {
    background: white;
    border: 1px solid var(--preggie-gray-200);
    border-radius: var(--preggie-radius-lg);
    padding: var(--preggie-spacing-xl);
    transition: all var(--preggie-transition-fast);
    position: relative;
    overflow: hidden;
}

.preggie-category-hub__item-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--category-color, var(--preggie-pink));
    opacity: 0;
    transition: opacity var(--preggie-transition-fast);
}

.preggie-category-hub__item:hover .preggie-category-hub__item-inner {
    border-color: var(--category-color, var(--preggie-blue));
    box-shadow: var(--preggie-shadow-md);
}

.preggie-category-hub__item:hover .preggie-category-hub__item-inner::before {
    opacity: 1;
}

.preggie-category-hub__item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 var(--preggie-spacing-sm) 0;
    color: var(--preggie-gray-900);
}

.preggie-category-hub__item-description {
    font-size: 14px;
    color: var(--preggie-gray-600);
    margin: 0 0 var(--preggie-spacing-md) 0;
    line-height: 1.6;
}

.preggie-category-hub__item-count {
    font-size: 13px;
    color: var(--preggie-gray-400);
}

.preggie-category-hub__item-arrow {
    position: absolute;
    bottom: var(--preggie-spacing-lg);
    right: var(--preggie-spacing-lg);
    color: var(--preggie-gray-300);
    transition: all var(--preggie-transition-fast);
}

.preggie-category-hub__item:hover .preggie-category-hub__item-arrow {
    color: var(--category-color, var(--preggie-blue));
    transform: translateX(4px);
}

/* ============================================
   PAGINATION
   ============================================ */

.preggie-pagination {
    margin-top: var(--preggie-spacing-2xl);
    display: flex;
    justify-content: center;
}

.preggie-pagination .nav-links {
    display: flex;
    gap: var(--preggie-spacing-xs);
}

.preggie-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--preggie-spacing-sm);
    font-size: 14px;
    color: var(--preggie-gray-600);
    background: white;
    border: 1px solid var(--preggie-gray-200);
    border-radius: var(--preggie-radius-md);
    text-decoration: none;
    transition: all var(--preggie-transition-fast);
}

.preggie-pagination .page-numbers:hover {
    border-color: var(--preggie-blue);
    color: var(--preggie-blue);
}

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

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.preggie-hub-newsletter {
    margin-top: var(--preggie-spacing-3xl);
}

/* ============================================
   NO CONTENT MESSAGES
   ============================================ */

.preggie-no-articles,
.preggie-no-categories {
    text-align: center;
    padding: var(--preggie-spacing-2xl);
    color: var(--preggie-gray-500);
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .preggie-hub-title {
        font-size: 1.75rem;
    }

    .preggie-hub-intro {
        font-size: 1rem;
    }

    .preggie-hub-wrapper {
        padding: var(--preggie-spacing-md);
    }

    .preggie-newsletter-box {
        padding: var(--preggie-spacing-lg);
    }

    .preggie-category-hub__title {
        font-size: 1.5rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.preggie-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.preggie-hero--height-full {
    min-height: 85vh;
}

.preggie-hero--height-medium {
    min-height: 60vh;
}

.preggie-hero--height-auto {
    padding: var(--preggie-spacing-3xl) 0;
}

/* Background styles */
.preggie-hero--bg-gradient {
    background: linear-gradient(
        135deg,
        #fdfbf9 0%,
        var(--preggie-pink-light) 50%,
        var(--preggie-blue-light) 100%
    );
}

.preggie-hero--bg-light {
    background: #fff;
}

.preggie-hero--bg-warm {
    background: #fdfbf9;
}

.preggie-hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--preggie-spacing-lg);
}

.preggie-hero__inner {
    display: grid;
    gap: var(--preggie-spacing-2xl);
    align-items: center;
    padding: var(--preggie-spacing-2xl) 0;
}

.preggie-hero--layout-image-right .preggie-hero__inner {
    grid-template-columns: 1fr 1fr;
}

.preggie-hero--layout-centered .preggie-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.preggie-hero__content {
    max-width: 540px;
}

.preggie-hero--layout-centered .preggie-hero__content {
    max-width: 100%;
    margin: 0 auto;
}

.preggie-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--preggie-pink-dark);
    box-shadow: var(--preggie-shadow-sm);
    margin-bottom: var(--preggie-spacing-lg);
}

.preggie-hero__label svg {
    fill: var(--preggie-pink);
}

.preggie-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--preggie-gray-900);
    margin: 0 0 var(--preggie-spacing-md) 0;
}

.preggie-hero__title em {
    font-style: italic;
    color: var(--preggie-pink-dark);
}

.preggie-hero__subtitle {
    font-size: 1.125rem;
    color: var(--preggie-gray-600);
    line-height: 1.7;
    margin: 0 0 var(--preggie-spacing-xl) 0;
}

.preggie-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--preggie-spacing-md);
}

.preggie-hero--layout-centered .preggie-hero__buttons {
    justify-content: center;
}

.preggie-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all var(--preggie-transition-normal);
}

.preggie-hero__btn--primary {
    background: var(--preggie-pink);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 145, 147, 0.3);
}

.preggie-hero__btn--primary:hover {
    background: var(--preggie-pink-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 145, 147, 0.4);
}

.preggie-hero__btn--primary svg {
    transition: transform var(--preggie-transition-fast);
}

.preggie-hero__btn--primary:hover svg {
    transform: translateX(3px);
}

.preggie-hero__btn--secondary {
    background: white;
    color: var(--preggie-gray-800);
    box-shadow: var(--preggie-shadow-sm);
}

.preggie-hero__btn--secondary:hover {
    background: var(--preggie-gray-50);
    color: var(--preggie-gray-900);
}

/* Hero visual */
.preggie-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preggie-hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.preggie-hero__image {
    width: 100%;
    height: auto;
    border-radius: var(--preggie-radius-lg);
    box-shadow: var(--preggie-shadow-lg);
}

/* Hero responsive */
@media (max-width: 900px) {
    .preggie-hero--layout-image-right .preggie-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .preggie-hero__content {
        max-width: 100%;
    }

    .preggie-hero__buttons {
        justify-content: center;
    }

    .preggie-hero__visual {
        order: -1;
    }

    .preggie-hero__image-wrapper {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .preggie-hero__buttons {
        flex-direction: column;
    }

    .preggie-hero__btn {
        width: 100%;
    }
}

/* ============================================
   USP BAR
   ============================================ */

.preggie-usp-bar {
    padding: var(--preggie-spacing-lg) 0;
}

.preggie-usp-bar--default {
    background: white;
    border-top: 1px solid var(--preggie-gray-100);
    border-bottom: 1px solid var(--preggie-gray-100);
}

.preggie-usp-bar--light {
    background: var(--preggie-gray-50);
}

.preggie-usp-bar--bordered {
    background: white;
    border: 1px solid var(--preggie-gray-200);
    border-radius: var(--preggie-radius-lg);
    margin: var(--preggie-spacing-lg);
}

.preggie-usp-bar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--preggie-spacing-lg);
}

.preggie-usp-bar__grid {
    display: grid;
    gap: var(--preggie-spacing-lg);
}

.preggie-usp-bar--cols-4 .preggie-usp-bar__grid {
    grid-template-columns: repeat(4, 1fr);
}

.preggie-usp-bar--cols-3 .preggie-usp-bar__grid {
    grid-template-columns: repeat(3, 1fr);
}

.preggie-usp-bar--cols-2 .preggie-usp-bar__grid {
    grid-template-columns: repeat(2, 1fr);
}

.preggie-usp-bar__item {
    display: flex;
    align-items: flex-start;
    gap: var(--preggie-spacing-md);
    padding: var(--preggie-spacing-sm) 0;
}

.preggie-usp-bar__text {
    flex: 1;
    min-width: 0;
}

.preggie-usp-bar__icon {
    width: 48px;
    height: 48px;
    margin-top: 2px;
    border-radius: var(--preggie-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--preggie-transition-fast);
}

.preggie-usp-bar__item:hover .preggie-usp-bar__icon {
    transform: scale(1.1);
}

.preggie-usp-bar__icon svg {
    width: 24px;
    height: 24px;
}

.preggie-usp-bar__icon--pink {
    background: var(--preggie-pink-light);
}
.preggie-usp-bar__icon--pink svg {
    stroke: var(--preggie-pink-dark);
}

.preggie-usp-bar__icon--blue {
    background: var(--preggie-blue-light);
}
.preggie-usp-bar__icon--blue svg {
    stroke: var(--preggie-blue-dark);
}

.preggie-usp-bar__icon--warm {
    background: #fef5f0;
}
.preggie-usp-bar__icon--warm svg {
    stroke: #c9896a;
}

.preggie-usp-bar__icon--mint {
    background: #f0faf8;
}
.preggie-usp-bar__icon--mint svg {
    stroke: #5a9a8a;
}

.preggie-usp-bar__icon--purple {
    background: #f5f0fa;
}
.preggie-usp-bar__icon--purple svg {
    stroke: #8b5aa8;
}

.preggie-usp-bar__icon--coral {
    background: #fff0ed;
}
.preggie-usp-bar__icon--coral svg {
    stroke: #e07058;
}

.preggie-usp-bar__icon--sage {
    background: #f2f5f0;
}
.preggie-usp-bar__icon--sage svg {
    stroke: #6b8a5a;
}

.preggie-usp-bar__icon--gray {
    background: var(--preggie-gray-100, #f3f4f6);
}
.preggie-usp-bar__icon--gray svg {
    stroke: var(--preggie-gray-600, #4b5563);
}

.preggie-usp-bar__text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--preggie-gray-800);
    margin-bottom: 2px;
}

.preggie-usp-bar__text span {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: var(--preggie-gray-500);
}

/* USP Bar responsive */
@media (max-width: 900px) {
    .preggie-usp-bar--cols-4 .preggie-usp-bar__grid,
    .preggie-usp-bar--cols-3 .preggie-usp-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .preggie-usp-bar--cols-4 .preggie-usp-bar__grid,
    .preggie-usp-bar--cols-3 .preggie-usp-bar__grid,
    .preggie-usp-bar--cols-2 .preggie-usp-bar__grid {
        grid-template-columns: 1fr;
    }

    .preggie-usp-bar__item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: var(--preggie-spacing-sm);
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.preggie-testimonials {
    padding: var(--preggie-spacing-3xl) 0;
}

.preggie-testimonials--bg-white {
    background: white;
}

.preggie-testimonials--bg-light {
    background: var(--preggie-gray-50);
}

.preggie-testimonials--bg-warm {
    background: #fdfbf9;
}

.preggie-testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--preggie-spacing-lg);
}

.preggie-testimonials__title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--preggie-gray-900);
    margin: 0 0 var(--preggie-spacing-2xl) 0;
}

.preggie-testimonials__grid {
    display: grid;
    gap: var(--preggie-spacing-lg);
}

.preggie-testimonials--grid-3 .preggie-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.preggie-testimonials__card {
    background: white;
    border-radius: var(--preggie-radius-lg);
    padding: var(--preggie-spacing-xl);
    position: relative;
    box-shadow: var(--preggie-shadow-sm);
    transition: all var(--preggie-transition-normal);
}

.preggie-testimonials--bg-white .preggie-testimonials__card {
    background: var(--preggie-gray-50);
}

.preggie-testimonials__card:hover {
    box-shadow: var(--preggie-shadow-md);
    transform: translateY(-2px);
}

.preggie-testimonials__quote-mark {
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    line-height: 1;
    color: var(--preggie-pink-light);
    font-family: Georgia, serif;
    pointer-events: none;
}

.preggie-testimonials__quote {
    position: relative;
    font-size: 15px;
    line-height: 1.8;
    color: var(--preggie-gray-700);
    font-style: italic;
    margin: 0 0 var(--preggie-spacing-lg) 0;
    padding: 0;
    border: none;
}

.preggie-testimonials__author {
    display: flex;
    align-items: center;
    gap: var(--preggie-spacing-sm);
}

.preggie-testimonials__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--preggie-pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--preggie-pink-dark);
}

.preggie-testimonials__meta {
    display: flex;
    flex-direction: column;
}

.preggie-testimonials__name {
    font-weight: 600;
    color: var(--preggie-gray-800);
    font-size: 14px;
}

.preggie-testimonials__location {
    font-size: 13px;
    color: var(--preggie-gray-400);
}

/* Testimonials responsive */
@media (max-width: 900px) {
    .preggie-testimonials--grid-3 .preggie-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .preggie-testimonials--grid-3 .preggie-testimonials__grid,
    .preggie-testimonials--grid-2 .preggie-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .preggie-testimonials__card {
        max-width: 400px;
        margin: 0 auto;
    }
}
