/* Make menu/page names smaller site-wide */
header nav a,
header .menu a,
header .main-menu a,
header .site-navigation a,
header .primary-menu a,
.main-navigation a,
.site-header a {
    font-size: 13px !important;
    padding-left: 7px !important;
    padding-right: 7px !important;
    white-space: nowrap !important;
}


/* Force all custom HTML sections to stay bright */
section, .homepage-hero {
    background: none !important;
    color: #1A1A1A !important;
}

/* Make all headings match your logo style */
section h1, section h2, section h3, section h4 {
    color: #1A1A1A !important;
    opacity: 1 !important;
}

/* Remove Blocksy global dark overlay */
[data-overlay] {
    --overlay-opacity: 0 !important;
}


/* Remove huge white gap at bottom of homepage sections */
.home .site-main > * {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove extra padding Storefront adds to homepage container */
.home .entry-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Fix the last block specifically */
.home .site-main > *:last-child {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}


/* WhatsApp icon-only header button */
.gp-wa-icon-only a,
.gp-wa-icon-only .ct-button {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background-color: #25D366 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* FIX HERO CUT OFF (LIGHT VERSION) */
@media (max-width: 768px) {
  .gp-hero {
    padding: 70px 20px 50px !important;
  }
}

@media (max-width: 768px) {
  .gp-hero {
    padding-top: 90px !important;
  }
}

@media (max-width: 768px) {
  .whatsapp-button,
  .whatsapp-widget {
    top: 80px !important;
  }
}

@media (max-width: 768px) {
  .gp-hero h1 {
    line-height: 1.2;
    margin-top: 10px;
  }
}







/* === GLOBAL INFORMATION PAGE STYLE === */

.gp-about-page,
.gp-quality-page,
.gp-reconstitution-guide,
.gp-guide-page,
.gp-hub-page,
.gp-work-with-us-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 45px 20px;
}

/* Lead text */

.gp-lead {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Headings */

.gp-about-page h1,
.gp-quality-page h1,
.gp-reconstitution-guide h1,
.gp-guide-page h1,
.gp-hub-page h1,
.gp-work-with-us-page h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.gp-about-page h2,
.gp-quality-page h2,
.gp-reconstitution-guide h2,
.gp-guide-page h2,
.gp-hub-page h2,
.gp-work-with-us-page h2 {
    font-size: 36px;
    line-height: 1.25;
    margin-top: 45px;
    margin-bottom: 18px;
}

.gp-about-page h3,
.gp-quality-page h3,
.gp-reconstitution-guide h3,
.gp-guide-page h3,
.gp-hub-page h3,
.gp-work-with-us-page h3 {
    font-size: 26px;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 12px;
}

/* Text */

.gp-about-page p,
.gp-quality-page p,
.gp-reconstitution-guide p,
.gp-guide-page p,
.gp-hub-page p,
.gp-work-with-us-page p,
.gp-about-page li,
.gp-quality-page li,
.gp-reconstitution-guide li,
.gp-guide-page li,
.gp-hub-page li,
.gp-work-with-us-page li {
    font-size: 18px;
    line-height: 1.7;
}

/* Dividers */

.gp-about-page hr,
.gp-quality-page hr,
.gp-reconstitution-guide hr,
.gp-guide-page hr,
.gp-hub-page hr,
.gp-work-with-us-page hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 45px 0;
}

/* Button rows */

.gp-button-row,
.gp-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

/* Main buttons */

.gp-btn,
.gp-link-btn {
    display: inline-block;
    background: #16c5e0;
    color: #ffffff !important;
    padding: 15px 26px;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: 0.2s ease;
}

.gp-btn:hover,
.gp-link-btn:hover {
    background: #12b3cc;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.gp-btn-secondary {
    background: #111827;
}

.gp-btn-secondary:hover {
    background: #000000;
}

/* Info boxes */

.gp-info-box {
    background: #f5fbff;
    border-left: 5px solid #16c5e0;
    padding: 22px;
    border-radius: 12px;
    margin: 25px 0;
    line-height: 1.7;
    font-size: 18px;
}

.gp-warning-box {
    background: #fff7ed;
    border-left: 5px solid #f97316;
    padding: 22px;
    border-radius: 12px;
    margin: 25px 0;
    line-height: 1.7;
    font-size: 18px;
}

/* Card grids */

.gp-card-grid,
.gp-grid {
    display: grid;
    gap: 22px;
    margin: 35px 0;
}

.gp-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gp-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gp-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Cards */

.gp-card,
.gp-card-simple {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.gp-card p,
.gp-card-simple p {
    margin-bottom: 0;
}

/* Link pills */

.gp-product-list,
.gp-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.gp-product-list a,
.gp-link-grid a {
    display: inline-block;
    background: #f5fbff;
    color: #006d83 !important;
    border: 2px solid #16c5e0;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s ease;
}

.gp-product-list a:hover,
.gp-link-grid a:hover {
    background: #16c5e0;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Non-link pills */

.gp-product-list span,
.gp-non-link-list span {
    display: inline-block;
    background: #f5fbff;
    color: #111827 !important;
    border: 1px solid #d1d5db;
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 700;
}

/* Text links */

.gp-text-link,
.gp-about-page a:not(.gp-btn):not(.gp-link-btn),
.gp-quality-page a:not(.gp-btn):not(.gp-link-btn),
.gp-reconstitution-guide a:not(.gp-btn):not(.gp-link-btn),
.gp-guide-page a:not(.gp-btn):not(.gp-link-btn),
.gp-hub-page a:not(.gp-btn):not(.gp-link-btn),
.gp-work-with-us-page a:not(.gp-btn):not(.gp-link-btn) {
    color: #006d83 !important;
    font-weight: 800;
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

.gp-text-link:hover {
    color: #16c5e0 !important;
}

/* UK flag image */

.gp-flag-img {
    width: 28px;
    height: auto;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 3px;
}

/* Mobile */

@media (max-width: 768px) {
    .gp-about-page,
    .gp-quality-page,
    .gp-reconstitution-guide,
    .gp-guide-page,
    .gp-hub-page,
    .gp-work-with-us-page {
        padding: 30px 16px;
    }

    .gp-about-page h1,
    .gp-quality-page h1,
    .gp-reconstitution-guide h1,
    .gp-guide-page h1,
    .gp-hub-page h1,
    .gp-work-with-us-page h1 {
        font-size: 38px;
    }

    .gp-about-page h2,
    .gp-quality-page h2,
    .gp-reconstitution-guide h2,
    .gp-guide-page h2,
    .gp-hub-page h2,
    .gp-work-with-us-page h2 {
        font-size: 30px;
    }

    .gp-about-page h3,
    .gp-quality-page h3,
    .gp-reconstitution-guide h3,
    .gp-guide-page h3,
    .gp-hub-page h3,
    .gp-work-with-us-page h3 {
        font-size: 24px;
    }

    .gp-lead,
    .gp-about-page p,
    .gp-quality-page p,
    .gp-reconstitution-guide p,
    .gp-guide-page p,
    .gp-hub-page p,
    .gp-work-with-us-page p,
    .gp-about-page li,
    .gp-quality-page li,
    .gp-reconstitution-guide li,
    .gp-guide-page li,
    .gp-hub-page li,
    .gp-work-with-us-page li,
    .gp-info-box,
    .gp-warning-box {
        font-size: 17px;
    }

    .gp-button-row,
    .gp-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .gp-btn,
    .gp-link-btn {
        width: 100%;
        text-align: center;
    }

    .gp-card-grid,
    .gp-grid,
    .gp-grid-3,
    .gp-grid-4 {
        grid-template-columns: 1fr;
    }
}