/* ============================================================
   EGG SHEG — PRODUCT PAGE STYLES
   Loaded alongside style.css (inherits all root variables).
   ============================================================ */

/* ----------------------------------------------------------
   BREADCRUMB
   ---------------------------------------------------------- */
.product-breadcrumb {
    padding: 0.85rem 0;
    background: var(--brand-sand);
    border-bottom: 1px solid rgba(72, 39, 19, 0.08);
}

.product-breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    padding: 0;
    margin: 0;
}

.product-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(72, 39, 19, 0.6);
    font-family: var(--normal-font);
}

.product-breadcrumb li:last-child {
    color: var(--brand-brown);
    font-weight: 700;
}

.product-breadcrumb a {
    color: rgba(72, 39, 19, 0.6);
    transition: color 0.3s;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    color: var(--brand-yellow);
}

.product-breadcrumb .sep {
    font-size: 0.65rem;
    opacity: 0.45;
}

/* ----------------------------------------------------------
   PRODUCT HERO
   ---------------------------------------------------------- */
.product-hero {
    padding: 4rem 0 3rem;
    background-color: var(--brand-cream);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 80px;
}

.product-main-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

/* Purchase Module */
.product-purchase {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.product-tags-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-purchase h1 {
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    line-height: 1.15;
    color: var(--brand-brown);
    text-align: left;
    margin-bottom: 0;
}

.product-purchase h1 strong {
    color: var(--brand-green);
}

.product-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(72, 39, 19, 0.72);
    line-height: 1.65;
    margin: 0;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #e6f5dc;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    font-family: var(--normal-font);
}

.product-price-display {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand-brown);
    font-family: var(--heading-font);
    line-height: 1;
}

.product-price-display .price-unit {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(72, 39, 19, 0.6);
    font-family: var(--normal-font);
}

.purchase-divider {
    border: none;
    border-top: 1px solid rgba(72, 39, 19, 0.1);
    margin: 0;
}

.purchase-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.purchase-buttons-group .btn {
    text-align: center;
    width: 100%;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    background-color: #25d366;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-family: var(--normal-font);
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.money-back-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(72, 39, 19, 0.7);
    font-weight: 600;
    font-family: var(--normal-font);
}

.money-back-note i {
    color: var(--brand-green);
}

/* ----------------------------------------------------------
   TRUST / ANTI-FAKE SECTION
   ---------------------------------------------------------- */
.trust-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--brand-sand);
}

.trust-section h2 {
    text-align: left;
}

.trust-section h2 strong {
    color: var(--brand-green);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 0.5rem;
}

.trust-intro {
    margin-bottom: 1.5rem;
}

.geo-shipping-banner {
    background: var(--brand-brown);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.geo-shipping-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Comparison Table */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 380px;
}

.table-wrapper th {
    background-color: var(--brand-brown);
    color: #fff;
    padding: 1rem 1.2rem;
    text-align: left;
    font-family: var(--heading-font);
    font-size: 0.95rem;
    font-weight: normal;
}

.table-wrapper td {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(72, 39, 19, 0.06);
    font-family: var(--normal-font);
    color: rgba(72, 39, 19, 0.8);
    line-height: 1.5;
}

.table-wrapper tbody tr:nth-child(even) {
    background-color: rgba(72, 39, 19, 0.02);
}

.table-wrapper td.highlight {
    color: var(--brand-green);
    font-weight: 700;
}

/* ----------------------------------------------------------
   NUTRITION SECTION
   ---------------------------------------------------------- */
.nutrition-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--brand-brown);
    text-align: center;
}

.nutrition-section h2 {
    color: #fff;
}

.nutrition-section h2 span {
    color: var(--brand-yellow);
}

.nutrition-section > .container > p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.nutrition-item {
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: background 0.3s, transform 0.3s;
}

.nutrition-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-5px);
}

.nutrition-icon {
    font-size: 2.2rem;
    color: var(--brand-yellow);
    margin-bottom: 0.85rem;
}

.nutrition-item h4 {
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
}

.nutrition-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.55;
}

/* ----------------------------------------------------------
   DELIVERY ZONES
   ---------------------------------------------------------- */
.zones-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--brand-cream);
}

.zones-section h2 {
    text-align: left;
}

.zones-section h2 span {
    color: var(--brand-green);
}

.zones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.zone-chip {
    background: var(--brand-sand);
    border: 1px solid rgba(72, 39, 19, 0.12);
    color: var(--brand-brown);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--normal-font);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.zone-chip i {
    color: var(--brand-yellow);
    font-size: 0.72rem;
}

.zones-cta-note {
    margin-top: 1.5rem;
    padding: 1rem 1.4rem;
    background: #e6f5dc;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.zones-cta-note i {
    color: var(--brand-green);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.zones-cta-note p {
    font-size: 0.9rem;
    color: rgba(72, 39, 19, 0.82);
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

.zones-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: block;
}

/* ----------------------------------------------------------
   PACKS / PRICING SECTION (PRODUCT PAGE)
   ---------------------------------------------------------- */
.product-packs-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--brand-sand);
}

.stock-note {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff4da;
    border: 1px solid rgba(238, 169, 45, 0.35);
    color: var(--brand-brown);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--normal-font);
}

.stock-note i {
    color: var(--brand-yellow);
}

.pack-card-color-lock {
    background: #fff4da;
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-brown);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.5rem auto;
    font-family: var(--normal-font);
}

.pack-card-color-lock i {
    color: var(--brand-yellow);
}

/* ----------------------------------------------------------
   GUARANTEE + FINAL CTA
   ---------------------------------------------------------- */
.guarantee-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--brand-brown) 0%, #7a3a05 100%);
    text-align: center;
    color: #fff;
}

.guarantee-section h2 {
    color: #fff;
}

.guarantee-section h2 span {
    color: var(--brand-yellow);
}

.guarantee-section > .container > p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
    margin: 0.5rem auto 0 auto;
}

.guarantee-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2.5rem 0 2rem;
}

.guarantee-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-icon-item i {
    font-size: 2.2rem;
    color: var(--brand-yellow);
}

.guarantee-icon-item span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-family: var(--normal-font);
}

.guarantee-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee-cta-group .btn-whatsapp {
    width: auto;
}

/* ----------------------------------------------------------
   PRODUCT FAQ
   ---------------------------------------------------------- */
.product-faq-section {
    padding: var(--spacing-lg) 0;
    background-color: #fff;
}

/* ----------------------------------------------------------
   NUTRITION HIGHLIGHT ITEMS (white eggs fitness section)
   ---------------------------------------------------------- */
.nutrition-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.nutrition-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-soft);
}

.nutrition-highlight-item i {
    font-size: 1.5rem;
    color: var(--brand-yellow);
    flex-shrink: 0;
}

.nutrition-highlight-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.nutrition-highlight-item strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-brown);
    font-family: var(--heading-font);
    line-height: 1;
}

.nutrition-highlight-item span {
    font-size: 0.8rem;
    color: rgba(72, 39, 19, 0.65);
    font-family: var(--normal-font);
    font-weight: 600;
}

/* ----------------------------------------------------------
   FARMING NOTE (below nutrition stats)
   ---------------------------------------------------------- */
.farming-note {
    margin-top: 1.25rem;
    font-family: var(--normal-font);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-brown);
    background: rgba(68, 153, 63, 0.08);
    border-left: 3px solid var(--brand-green);
    padding: 0.6rem 1rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ----------------------------------------------------------
   HOW IT WORKS
   ---------------------------------------------------------- */
.how-it-works-section {
    padding: 4rem 0;
    background-color: var(--brand-brown);
    text-align: center;
}

.how-it-works-section h2 {
    font-family: var(--heading-font);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--brand-yellow);
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(238, 169, 45, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-yellow);
    color: var(--brand-brown);
    font-family: var(--heading-font);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.6rem;
}

.step p {
    font-family: var(--normal-font);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ----------------------------------------------------------
   CUSTOMER REVIEWS
   ---------------------------------------------------------- */
.product-reviews-section {
    padding: 4rem 0;
    background: var(--brand-sand);
    text-align: center;
}

.product-reviews-section h2 {
    font-family: var(--heading-font);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--brand-brown);
    margin-bottom: 2.5rem;
}

.product-reviews-section h2 span {
    color: var(--brand-yellow);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    text-align: left;
    border-top: 3px solid var(--brand-yellow);
}

.review-stars {
    color: var(--brand-yellow);
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
    letter-spacing: 2px;
}

.review-card p {
    font-family: var(--normal-font);
    font-size: 1rem;
    color: rgba(72, 39, 19, 0.85);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.reviewer-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-brown);
    color: var(--brand-yellow);
    font-family: var(--heading-font);
    font-size: 1rem;
    flex-shrink: 0;
}

.reviewer div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.reviewer strong {
    font-family: var(--normal-font);
    font-size: 0.95rem;
    color: var(--brand-brown);
}

.reviewer span {
    font-family: var(--normal-font);
    font-size: 0.8rem;
    color: rgba(72, 39, 19, 0.55);
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 900px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
        max-width: 480px;
        margin: 0 auto;
    }

    .product-purchase h1 {
        text-align: center;
    }

    .product-tags-row {
        justify-content: center;
    }

    .product-price-display {
        text-align: center;
    }

    .money-back-note {
        justify-content: center;
    }

    .delivery-badge {
        margin: 0 auto;
    }

    .trust-section h2 {
        text-align: center;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zones-section h2 {
        text-align: center;
    }

    .zones-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zones-img {
        max-width: 480px;
        margin: 0 auto;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .nutrition-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .guarantee-icons {
        gap: 1.5rem;
    }

    .guarantee-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .guarantee-cta-group .btn-whatsapp,
    .guarantee-cta-group .btn {
        width: 100%;
        text-align: center;
    }
}
