/* ===== Supporting pages — Phase 6 premium redesign =====
   Shared design language for About, Contact and Returns/Exchange (the
   informational, non-catalogue pages). Linked only in those pages' own
   <head> — does not touch shop/category/product-detail/home stylesheets
   or any shared include's markup other than the small, additive tweaks
   made directly in about.php / contact.php / return.php themselves. */

:root {
    --v-sp-green: #1c5034;
    --v-sp-green-dark: #123626;
    --v-sp-cream: #faf6ee;
    --v-sp-line: #e7e1d4;
}

/* -------------------------------------------------------------------- */
/* Hero                                                                  */
/* -------------------------------------------------------------------- */
.v-page-hero {
    position: relative;
}

.v-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 54, 38, 0.55) 0%, rgba(18, 54, 38, 0.72) 100%);
}

.v-page-hero .container {
    position: relative;
    z-index: 2;
}

.v-page-hero .bread {
    font-family: 'Lora', serif;
}

.v-page-desc {
    max-width: 680px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.65;
}

/* -------------------------------------------------------------------- */
/* Section rhythm                                                       */
/* -------------------------------------------------------------------- */
.v-content-section {
    padding: 60px 0;
}

.v-content-section.v-cream {
    background: var(--v-sp-cream);
}

.v-section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}

.v-section-heading h2 {
    font-family: 'Lora', serif;
    color: var(--v-sp-green-dark);
    font-weight: 700;
    font-size: 1.9rem;
    margin: 0 0 10px;
}

.v-section-heading p {
    color: #6b6459;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.v-subheading {
    font-family: 'Lora', serif;
    color: var(--v-sp-green-dark);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 16px;
}

/* -------------------------------------------------------------------- */
/* Eyebrow pill label (used above section headings)                     */
/* -------------------------------------------------------------------- */
.v-eyebrow {
    display: inline-block;
    background: rgba(28, 80, 52, 0.08);
    color: var(--v-sp-green);
    border: 1px solid rgba(28, 80, 52, 0.18);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.v-eyebrow.v-eyebrow-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

/* -------------------------------------------------------------------- */
/* Feature grid (replaces fragile inline margin-left hacks on the old   */
/* "1 Day Shipping / Always Fresh / ..." row - equal columns, no magic  */
/* numbers, wraps cleanly at any width)                                 */
/* -------------------------------------------------------------------- */
.v-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .v-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* -------------------------------------------------------------------- */
/* "Part of the IGO Group" panel                                        */
/* -------------------------------------------------------------------- */
.v-igo-panel {
    position: relative;
    background: linear-gradient(135deg, var(--v-sp-green-dark) 0%, var(--v-sp-green) 100%);
    border-radius: 22px;
    padding: 52px 44px;
    color: #fff;
    overflow: hidden;
}

.v-igo-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.1), transparent 55%);
    pointer-events: none;
}

.v-igo-panel h2 {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0 0 14px;
    position: relative;
}

.v-igo-panel p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 62ch;
    margin: 0 0 24px;
    position: relative;
}

.v-igo-stats {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 28px 40px;
    margin: 0 0 26px;
    position: relative;
}

@media (max-width: 767px) {
    .v-igo-stats {
        grid-template-columns: repeat(2, auto);
    }
}

.v-igo-stats dt {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.v-igo-stats dd {
    margin: 2px 0 0;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.v-igo-panel .btn-igo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--v-sp-green-dark);
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v-igo-panel .btn-igo:hover {
    color: var(--v-sp-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* -------------------------------------------------------------------- */
/* Generic content card                                                 */
/* -------------------------------------------------------------------- */
.v-content-card {
    background: #fff;
    border: 1px solid var(--v-sp-line);
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 8px 24px rgba(20, 40, 30, 0.05);
}

.v-content-card img,
.v-content-card iframe {
    border-radius: 12px;
}

/* -------------------------------------------------------------------- */
/* Bullet list (replaces raw <i>...</i><span class="icon">...</span><br>) */
/* -------------------------------------------------------------------- */
.v-bullet-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.v-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--v-sp-line);
    color: #445048;
    font-size: 0.98rem;
    line-height: 1.55;
}

.v-bullet-list li:last-child {
    border-bottom: none;
}

.v-bullet-list li ion-icon {
    flex: 0 0 auto;
    color: var(--v-sp-green);
    font-size: 1.2rem;
    margin-top: 2px;
}

.v-bullet-list.v-bullet-plain li {
    border-bottom: none;
    padding: 6px 0;
}

/* -------------------------------------------------------------------- */
/* Info / stat cards (contact info, trust points)                       */
/* -------------------------------------------------------------------- */
.v-info-card {
    background: #fff;
    border: 1px solid var(--v-sp-line);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(20, 40, 30, 0.1);
}

.v-info-card ion-icon {
    font-size: 28px;
    color: var(--v-sp-green);
    margin-bottom: 10px;
}

.v-info-card span.v-info-label {
    display: block;
    font-weight: 700;
    color: var(--v-sp-green-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.v-info-card p,
.v-info-card a {
    margin: 0;
    color: #445048;
    font-size: 0.95rem;
    word-break: break-word;
}

.v-info-card a:hover {
    color: var(--v-sp-green);
}

/* Phone card lists several numbers - one per line, easy to tap. */
.v-info-card a[href^="tel:"] {
    display: block;
    line-height: 1.8;
    white-space: nowrap;
}

/* -------------------------------------------------------------------- */
/* Contact form polish (existing #contactForm markup/fields untouched)  */
/* -------------------------------------------------------------------- */
.contact-page-form {
    background: #fff;
    border: 1px solid var(--v-sp-line);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(20, 40, 30, 0.05);
}

.contact-page-form h2 {
    font-family: 'Lora', serif;
    color: var(--v-sp-green-dark);
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 0 20px;
}

.contact-page-form .single-input-field {
    margin-bottom: 18px;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    border: 1px solid var(--v-sp-line);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    background: var(--v-sp-cream);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: var(--v-sp-green);
    background: #fff;
}

.contact-page-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-page-form .single-input-fieldsbtn button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--v-sp-green);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px 34px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-page-form .single-input-fieldsbtn button:hover {
    background: var(--v-sp-green-dark);
    transform: translateY(-2px);
}

.contact-page-map iframe {
    display: block;
    box-shadow: 0 8px 24px rgba(20, 40, 30, 0.08);
}

/* -------------------------------------------------------------------- */
/* Responsive                                                            */
/* -------------------------------------------------------------------- */
@media (max-width: 767px) {
    .v-content-section {
        padding: 40px 0;
    }

    .v-content-card {
        padding: 24px;
        border-radius: 14px;
    }

    .v-section-heading h2 {
        font-size: 1.5rem;
    }

    .v-page-desc {
        font-size: 0.92rem;
        padding: 0 10px;
    }

    .v-igo-panel {
        padding: 34px 24px;
        border-radius: 18px;
    }

    .v-igo-panel h2 {
        font-size: 1.4rem;
    }
}
