/*
Theme Name: Agritel Child
Theme URI: https://agritel.example
Description: Child theme for Shoptimizer – custom styles for Agritel
Author: John Thomas
Author URI: https://agritel.example/about
Template: shoptimizer
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agritel-child
*/

/* Colours */
:root{
  --ag-blue:#3D96D3; --ag-red:#E30A17;
  --ink:#0b1320; --muted:#4B5563; --line:#E6EBE8; --bg:#F5F7FA; --white:#fff;
}

/* ================================
   Logo sizing
   ================================ */
@media (min-width: 768px) {
  header.main-header .logo { height: 25px !important; }
}
@media (max-width: 600px) {
  header.main-header .logo { height: 15px !important; }
}
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1300px !important; 
}

.wcpt-table .quantity.wcpt-display-type-input {
  width: 60px !important;
}
/* ================================
   Inline info block beside the logo
   ================================ */
.agritel-header-info {
  display: none;                 /* hidden on small screens by default */
  align-items: center;
  gap: 18px 24px;
  margin-left: 16px;             /* space away from the logo */
  font-size: 13px;
  line-height: 1.25;
  white-space: nowrap;
}
@media (min-width: 993px) { 
  .agritel-header-info { display: inline-flex; }
}
@media (min-width: 993px){
.header-widget-region, .header-widget-region a {
  display: none;
  }
}
/* Each item (phone block, Trustpilot block) */
.agritel-header-item { display: grid; gap: 2px; min-width: 0; }

/* Title rows (phone number + star/score) */
.agritel-header-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* Secondary line (opening hours / “Trustpilot reviews”) */
.agritel-header-desc {
  font-size: 13px;
  opacity: .85;
  line-height: 1.1;
}

/* Links */
.agritel-header-info a {
  color: inherit;
  text-decoration: none;
}
.agritel-header-info a:hover,
.agritel-header-info a:focus {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ================================
   Trustpilot-style badge (single star)
   ================================ */

/* Clean sans stack similar to Raja (no external fonts) */
.agritel-header-item.agritel-tp,
.agritel-header-item.agritel-tp * {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Background-image star so theme SVG rules can't break it */
.agritel-tp-star--bg {
  width: 12px;
  height: 12px;
  display: inline-block;
  flex: 0 0 12px;
  line-height: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image:
    url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='%2300B67A' d='M12 2l3.09 6.31 6.82.93-4.95 4.86 1.17 6.9L12 18.56 5.87 21l1.17-6.9L2.09 9.24l6.82-.93L12 2z'/>\
</svg>");
}

/* Hard overrides inside the header to beat any theme CSS */
header.main-header .agritel-header-info .agritel-tp-star--bg {
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  min-height: 12px !important;
  max-width: 12px !important;
  max-height: 12px !important;
  flex: 0 0 12px !important;
}

/* Slightly smaller on tighter desktops (optional) */
@media (max-width: 1200px) {
  header.main-header .agritel-header-info .agritel-tp-star--bg {
    width: 11px !important;
    height: 11px !important;
    min-width: 11px !important;
    min-height: 11px !important;
    max-width: 11px !important;
    max-height: 11px !important;
    flex: 0 0 11px !important;
  }
}

/* Label below in Trustpilot green */
.agritel-tp-label {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
}
.agritel-tp-label a {
  color: #00B67A;              /* Trustpilot green */
}
.agritel-tp-label a:hover,
.agritel-tp-label a:focus {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Desktop only */
@media (min-width: 993px) {
  /* Put text + icon on one row, with the ICON on the LEFT even though it’s after the text in HTML */
  .secondary-navigation .menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-direction: row-reverse; /* icon-wrapper is after text in your markup → this flips it to appear first */
  }

  /* Neutralise Shoptimizer’s absolute positioning */
  .secondary-navigation .icon-wrapper {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: inline-flex;
    line-height: 0;
  }

  /* Tidy icon size */
  .secondary-navigation .icon-wrapper svg {
    width: 25px;
    height: 25px;
    display: block;
  }
}
@media (min-width: 993px) {
  .secondary-navigation .menu li:not(.ri) a {
    padding-top: 8px;
  }
}

/* --- Show the top bar ONLY on tablet & mobile --- */

/* Hide on desktop */
@media (min-width: 993px) {
  .topbar-wrapper {
    display: none !important;
  }
}

/* Show on tablet & mobile */
@media (max-width: 992px) {
  /* Neutralise Shoptimizer's "hide-on-mobile" on this element */
  .topbar-wrapper.hide-on-mobile {
    display: block !important;
  }

  /* Optional: tidy the layout on small screens */
  .topbar-wrapper .top-bar .col-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    flex-wrap: wrap;
    text-align: center;
  }
  .topbar-wrapper .top-bar a {
    text-decoration: none;
  }
  .topbar-wrapper .top-bar p {
    margin: 0;
    line-height: 1.3;
  }
}

/* Tablet & mobile (≤992px): burger on the left, logo centred next to it */
@media (max-width: 992px) {
  .site-branding button.menu-toggle {
    background-color: transparent !important;
  }
.shoptimizer-cart a.cart-contents .shoptimizer-cart-icon .mini-count {
  top: -10px;
}
  /* Centre the logo and leave space for the floated toggle */
  .site-branding {
    display: block !important;
    text-align: center !important;
    padding-top: 21px !important;
    padding-left: 48px !important;      /* room for the floated toggle */
    margin: 0 !important;
  }

  /* Sensible logo size on tablet/mobile */
  header.main-header :is(.custom-logo-link img, .logo img) {
    height: 24px;
    width: auto;
  }
}

/* Tablet only: centre the search by absolutely positioning it inside .m-search-bh */
@media (min-width: 768px) and (max-width: 992px) {
  /* Make sure the header row allows absolute positioning and has stacking context */
  header.main-header { position: relative; z-index: 0; }

  /* The wrapper that reserves space for the centred search */
  .m-search-bh {
    position: relative;            /* positioning context for the absolute child */
    height: 48px;                  /* gives the row some height so nothing overlaps */
    /* If you prefer a taller search bar, increase this (e.g. 56px) */
  }

  /* Centre the search box inside the wrapper */
  .m-search-bh .site-search {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-39%) !important;
    top: 6px !important;
    width: clamp(280px, 52vw, 560px) !important;
    z-index: 10;
    box-shadow: none;
    background-color: transparent !important;
  }

  .shoptimizer-cart a.cart-contents .shoptimizer-cart-icon .mini-count { color: #fff; }

  .shoptimizer-myaccount svg { stroke: #3D96D3; }

  .shoptimizer-myaccount svg {
    width: 30px;
    height: 30px;
  }

  .shoptimizer-cart-icon svg {
    width: 30px;
    height: 30px;
    position: relative;
    top: 3px;
  }

.shoptimizer-myaccount {
    right: 70px;
    top: 1px;
  }

  /* Make the internal form truly fill that width */
  .m-search-bh .dgwt-wcas-search-form,
  .m-search-bh .dgwt-wcas-sf-wrapp,
  .m-search-bh .dgwt-wcas-search-input {
    width: 100% !important;
  }

  /* Keep other header controls clickable above/below if needed */
  :is(button.menu-toggle, a.menu-toggle) { z-index: 11; }
}

/* (Optional) Debug — remove after confirming it applies */
@media (min-width: 768px) and (max-width: 992px) {
  /* outline helps verify you’ve targeted the right element */
  /* header.main-header .m-search-bh .site-search{ outline: 1px dashed #00b67a !important; } */
}
@media (max-width: 992px) {
  .m-search-bh:not(.woocommerce-checkout.min-ck) .site-header .col-full {
    margin-bottom: 0;
  }
}

/* Show only on mobile/tablet; hide on desktop */
@media (min-width: 993px){
  .mobile-quick-menu{ display: none !important; }
}

/* Mobile & tablet layout */
@media (max-width: 992px){
  header.main-header .mobile-quick-menu{
    display: block;
    width: 100%;
    margin-top: 8px;           /* space under the header row */
  }
.m-search-bh .site-search, .m-search-toggled .site-search {
    top: -23px;
  }
  /* Horizontal pill menu with safe scroll if it overflows */
 .mobile-quick-menu__list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px 0;
    margin: 0;
    list-style: none;
    scrollbar-width: none;
  }

  .mobile-quick-menu__list::-webkit-scrollbar{ display: none; }

  .mobile-quick-menu__list > li{ flex: 0 0 auto; }

  .mobile-quick-menu__list a{
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
  }
  .mobile-quick-menu__list a:hover,
  .mobile-quick-menu__list a:focus{
    background: #e8eaee;
    text-decoration: none;
  }
}

  .site-search.type-outline {
    box-shadow: none;
  }
  
/* === Agritel Mini Banner (denser variant with chips) === */
.ag-mini-banner{
  --ag-bg:#3D96D3; --ag-white:#fff; --ag-white-2:rgba(255,255,255,.85); --ag-white-3:rgba(255,255,255,.18);
  --badge-w:240px; --badge-w-m:160px;

  position:relative; background:var(--ag-bg); border-radius:16px; overflow:hidden; margin-top:24px;
}
.ag-mini-banner__link{ position:absolute; inset:0; z-index:1; }
.ag-mini-banner__inner{
  position:relative; z-index:2; display:flex; align-items:center; gap:20px; padding:16px 18px;
}

/* Badge */
.ag-mini-banner__header{ width:var(--badge-w); max-width:100%; }
.ag-mini-banner__header img{ display:block; width:auto; height:auto; max-width:var(--badge-w); }

/* Copy */
.ag-mini-banner__content{ flex:1 1 auto; min-width:0; }
.ag-mini-banner__title{ margin:0 0 4px; font-weight:700; color:var(--ag-white); font-size:clamp(18px,1.6vw,22px); line-height:1.2; }
.ag-mini-banner__desc{ margin:0 0 8px; font-size:14px; line-height:1.45; color:var(--ag-white-2); }

/* Chips (quick links) */
.ag-mini-banner__chips{ display:flex; flex-wrap:wrap; gap:8px; margin:0; padding:0; list-style:none; }
.ag-mini-banner__chips a{
  display:inline-block; padding:6px 10px; border-radius:999px; background:var(--ag-white-3); color:var(--ag-white);
  font-size:13px; text-decoration:none; border:1px solid rgba(255,255,255,.22);
}
.ag-mini-banner__chips a:hover{ background:rgba(255,255,255,.24); }

/* Actions */
.ag-mini-banner__actions{ display:flex; flex-wrap:wrap; gap:10px; }
.ag-mini-banner__cta{
  position:relative; z-index:3; display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:10px; text-decoration:none; font-size:14px; font-weight:600; white-space:nowrap;
  background:var(--ag-white); color:var(--ag-bg); border:1px solid var(--ag-white-3);
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}
.ag-mini-banner__cta:hover{ transform:translateY(-1px); box-shadow:0 6px 16px rgba(0,0,0,.15); }
.ag-mini-banner__cta--ghost{ background:transparent; color:#fff; border-color:var(--ag-white-3); }
.ag-mini-banner__cta--ghost:hover{ background:rgba(255,255,255,.14); }

/* Separator (desktop only) */
@media (min-width: 992px){
  .ag-mini-banner__inner::before{
    content:""; position:absolute; left:calc(var(--badge-w) + 20px); top:12px; bottom:12px; width:1px; background:var(--ag-white-3);
  }
}

/* Mobile stack */
@media (max-width: 767.98px){
  .ag-mini-banner__inner{ flex-direction:column; text-align:center; gap:12px; padding:14px; }
  .ag-mini-banner__header{ width:var(--badge-w-m); }
  .ag-mini-banner__header img{ max-width:var(--badge-w-m); }
  .ag-mini-banner__actions, .ag-mini-banner__chips{ justify-content:center; }
  .ag-mini-banner__cta{ width:100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){ .ag-mini-banner__cta{ transition:none; } }



/* === Agritel Trust strip (works on light OR dark backgrounds) === */
.ag-trust{
  --ink:#1F2937; --ink-2:#4B5563; --line:#E6EBE8; --tint:#F7FAFF; --tp-green:#00B67A;
  border-radius:12px;
  margin-top:12px;
  background:var(--tint);
  border:1px solid var(--line);
}
.ag-trust__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:12px 16px;
}

/* Rating */
.ag-trust__rating{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; color:var(--ink); }
.ag-trust__rating strong{ font-weight:700; }
.ag-trust__rating span{ color:var(--ink-2); }

/* Stars row */
.ag-stars{ display:inline-flex; gap:4px; margin-right:2px; }
.ag-stars svg{ width:16px; height:16px; fill:var(--tp-green); }

/* Link */
.ag-trust__link{ margin-left:6px; font-weight:600; text-decoration:none; border-bottom:1px solid transparent; }
.ag-trust__link:hover{ border-bottom-color:currentColor; }

/* Badges */
.ag-trust__badges{ display:flex; gap:14px; margin:0; padding:0; list-style:none; }
.ag-trust__badges img {
  height: 22px;
  width: auto;
  display: block;
  color: #fff;
}

/* Desktop divider */
@media (min-width: 992px){
  .ag-trust__inner{ position:relative; }
  .ag-trust__inner::before{
    content:""; position:absolute; left:50%; top:10px; bottom:10px; width:1px; background:var(--line);
    transform:translateX(-50%); opacity:.6;
  }
  .ag-trust__rating{ padding-right:20px; }
  .ag-trust__badges{ padding-left:20px; }
}

/* Mobile */
@media (max-width: 767.98px){
  .ag-trust__inner{ flex-direction:column; text-align:center; }
  .ag-trust__badges{ justify-content:center; flex-wrap:wrap; }
}

/* Tighten when following your products grid */
.ag-products-grid + .ag-trust{ margin-top:12px; }

/* === Variant: Trust strip on Agritel blue (#3D96D3) === */
.ag-trust--on-blue{
  background: transparent;                           /* blend with the blue section */
  border: 1px solid rgba(255,255,255,.22);
}
.ag-trust--on-blue .ag-trust__rating{ color:#fff; }
.ag-trust--on-blue .ag-trust__rating span{ color:rgba(255,255,255,.85); }
.ag-trust--on-blue .ag-trust__link{
  color:#fff; border-bottom:1px solid transparent;
}
.ag-trust--on-blue .ag-trust__link:hover{
  border-bottom-color: rgba(255,255,255,.7);
}
.ag-trust--on-blue .ag-stars svg{ fill: var(--tp-green); } /* swap to #fff if you prefer all-white stars */

/* Divider & badges on blue */
@media (min-width: 992px){
  .ag-trust--on-blue .ag-trust__inner::before{
    background: rgba(255,255,255,.22);
  }
}
.ag-trust--on-blue .ag-trust__badges img{
  /* If your badge artwork is dark, uncomment the next line to invert it to white on blue */
  /* filter: brightness(0) invert(1); opacity:.95; */
}

/* === Help me choose – red variant === */
.ag-help{
  --ag-red:#E30A17; --ag-white:#fff;
  background:var(--ag-red);
  color:var(--ag-white);
  border-radius:16px;
  margin:20px 0;
}
.ag-help__inner{ display:flex; gap:18px; align-items:center; padding:18px; }
.ag-help__copy h2{ margin:0 0 4px; font-size:22px; }
.ag-help__copy p{ margin:0; opacity:.92; }
.ag-help__copy a{ color:#fff; text-decoration:underline; }

/* CTAs – white pills with red text */
.ag-help__actions{ margin-left:auto; display:flex; gap:10px; flex-wrap:wrap; }
.ag-help__btn{
  background:#fff;
  color:var(--ag-red);
  border:1px solid rgba(255,255,255,.25);
  padding:10px 14px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.ag-help__btn:hover{ transform:translateY(-1px); box-shadow:0 6px 16px rgba(0,0,0,.18); }
.ag-help__btn:focus-visible{ outline:2px solid #fff; outline-offset:2px; }

/* Mobile stack */
@media (max-width: 767.98px){
  .ag-help__inner{ flex-direction:column; text-align:center; }
  .ag-help__actions{ margin-left:0; justify-content:center; }
}
.ag-help__btn--ghost{ background:transparent; color:#fff; border-color:rgba(255,255,255,.65); }
.ag-help__btn--ghost:hover{ background:rgba(255,255,255,.08); }






/* ---------------------------------------------
   Home – Lite reviews strip (with logos & meta)
---------------------------------------------- */
.ag-reviews-lite{
  --ink:#0b1320;
  --muted:#4B5563;
  --line:#E6EBE8;
  --bg:#F7FAFF;
  --blue:#3D96D3;

  margin: 3rem auto;
  padding: 2.5rem 1.5rem 2.75rem;
  max-width: 1200px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
}

/* Header: title + summary + logos + "Read all reviews" link */
.ag-reviews-lite__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1.5rem;
  margin-bottom:2rem;
}

.ag-reviews-lite__head-main{
  display:flex;
  flex-direction:column;
}

.ag-reviews-lite__head-main h2{
  margin:0 0 0.75rem;
  font-size:1.6rem;
  font-weight:800;
  color:var(--blue);
}

/* Summary (stars + 4.9/5 + "based on...") */
.ag-reviews-lite__summary{
  display:flex;
  align-items:center;
  gap:0.75rem;
  margin-bottom:0.75rem;
}

.ag-reviews-lite__summary-stars{
  font-size:1.1rem;
  color:#F5A623; /* gold-ish stars */
}

.ag-reviews-lite__summary-text strong{
  display:block;
  font-size:1.1rem;
}

.ag-reviews-lite__summary-text span{
  display:block;
  font-size:0.85rem;
  color:#5b6475;
}

/* Logos row (Trustpilot, Google etc.) */
.ag-reviews-lite__logos{
  display:flex;
  align-items:center;
  gap:0.75rem;
}

.ag-reviews-lite__logo img{
  display:block;
  height:22px;
  width:auto;
}

/* "Read all reviews" link */
.ag-reviews-lite__link{
  align-self:center;
  font-size:0.9rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  text-decoration:none;
  color:var(--blue);
  border-bottom:1px solid transparent;
}

.ag-reviews-lite__link:hover,
.ag-reviews-lite__link:focus-visible{
  border-bottom-color:currentColor;
}

/* Review cards */
.ag-reviews-lite__rail{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:1.5rem;
}

@media (min-width:768px){
  .ag-reviews-lite__rail{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

.ag-reviews-lite__card{
  background:#fff;
  border-radius:14px;
  padding:1.25rem 1.3rem 1.2rem;
  box-shadow:0 8px 24px rgba(0,0,0,0.04);
  height:100%;
  display:flex;
  flex-direction:column;
}

.ag-reviews-lite__stars{
  font-size:1rem;
  color:#F5A623;
  margin-bottom:0.35rem;
}

.ag-reviews-lite__card blockquote{
  margin:0 0 0.9rem;
  font-size:0.95rem;
  line-height:1.5;
  color:var(--ink);
}

.ag-reviews-lite__card footer{
  margin-top:auto;
  font-size:0.85rem;
  color:var(--muted);
}

.ag-reviews-lite__name{
  font-weight:600;
}

.ag-reviews-lite__meta{
  margin-top:0.2rem;
  font-size:0.8rem;
  color:#868fa3;
}

/* Mobile tweaks */
@media (max-width:768px){
  .ag-reviews-lite{
    margin:2rem 0;
    padding-inline:1.25rem;
  }

  .ag-reviews-lite__head{
    flex-direction:column;
    align-items:flex-start;
  }

  .ag-reviews-lite__link{
    align-self:flex-start;
    margin-top:0.5rem;
  }
}

/* Optional dark-on-blue variant if you drop this into a blue section */
.ag-reviews-lite.ag--on-blue{
  background:transparent;
  border-color:rgba(255,255,255,0.22);
}

.ag-reviews-lite.ag--on-blue .ag-reviews-lite__head-main h2,
.ag-reviews-lite.ag--on-blue .ag-reviews-lite__link{
  color:#fff;
}

.ag-reviews-lite.ag--on-blue .ag-reviews-lite__summary-text span{
  color:rgba(255,255,255,0.85);
}

.ag-reviews-lite.ag--on-blue .ag-reviews-lite__card{
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.2);
}

.ag-reviews-lite.ag--on-blue .ag-reviews-lite__card blockquote,
.ag-reviews-lite.ag--on-blue .ag-reviews-lite__card footer{
  color:#fff;
  opacity:0.9;
}

.ag-reviews-lite.ag--on-blue .ag-reviews-lite__logos img{
  /* Uncomment if your logo artwork is dark and you want it inverted on blue */
  /* filter:brightness(0) invert(1); */
}



/* Section shell */
.ag-guides{ background:var(--bg); border:1px solid var(--line); border-radius:16px; margin:20px 0; }
.ag-guides__inner{ padding:16px 18px; }
.ag-guides__head{ display:flex; justify-content:space-between; align-items:flex-end; gap:12px; margin-bottom:12px; }
.ag-guides__head h2{ margin:0; font-size:22px; color:var(--ink); }
.ag-guides__all{ font-weight:600; text-decoration:none; border-bottom:1px solid transparent; }
.ag-guides__all:hover{ border-bottom-color:currentColor; }

/* Split hero */
.ag-guide-hero{
  display:grid; grid-template-columns:360px 1fr; gap:18px; align-items:center;
}
.ag-guide-hero__media{ border-radius:14px; overflow:hidden; background:var(--white); border:1px solid var(--line); }
.ag-guide-hero__media img{ width:100%; aspect-ratio:1/1; object-fit:cover; display:block; }

.ag-guide-hero__content h3{ margin:0 0 6px; font-size:22px; }
.ag-guide-hero__deck{ margin:0 0 8px; color:var(--muted); }
.ag-guide-hero__bullets{ margin:0 0 12px 0; padding-left:18px; color:var(--ink); }
.ag-guide-hero__bullets li{ margin:4px 0; }

/* CTA + chips */
.ag-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:10px; font-weight:700; text-decoration:none;
  background:var(--ag-blue); color:#fff; border:1px solid rgba(0,0,0,.08);
  transition:transform .12s ease, box-shadow .12s ease;
}
.ag-btn:hover{ transform:translateY(-1px); box-shadow:0 8px 20px rgba(0,0,0,.15); }

.ag-guide-hero__subs{ margin-top:10px; display:flex; gap:8px; flex-wrap:wrap; }
.ag-chip{
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 10px; border-radius:999px; font-weight:600; text-decoration:none;
  background:#fff; color:var(--ag-blue); border:1px solid var(--line);
}
.ag-chip:hover{ border-color:var(--ag-blue); }

/* Responsive */
@media (max-width:1024px){
  .ag-guide-hero{ grid-template-columns:300px 1fr; }
}
@media (max-width:767.98px){
  .ag-guide-hero{ grid-template-columns:1fr; }
  .ag-guide-hero__content{ text-align:left; }
}
/* === Agritel: 3 promo tiles on brand blue === */
.ag-promos{ margin-top:16px; }
.ag-promos__grid{
  display:grid; gap:14px; grid-template-columns:repeat(3,minmax(0,1fr));
}

/* Blue band */
.ag-promos--blue{
  --ag-blue:#3D96D3;
  background:var(--ag-blue);
  border-radius:16px;
  padding:16px;
}

/* White cards on blue */
.ag-promos--blue .ag-promo{
  background:#fff;
  border:1px solid #E6EBE8;
  border-radius:12px;
  padding:14px;
  display:flex; flex-direction:column; gap:6px;
  text-decoration:none;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.ag-promos--blue .ag-promo:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(0,0,0,.08); }

.ag-promos--blue .ag-promo__icon{ font-size:22px; line-height:1; color:#3D96D3; }
.ag-promos--blue .ag-promo__title{ margin:0; font-weight:700; font-size:18px; color:#1F2937; }
.ag-promos--blue .ag-promo__desc{ margin:0; font-size:14px; color:#4B5563; }
.ag-promos--blue .ag-promo__cta{ margin-top:auto; font-weight:600; font-size:14px; color:#3D96D3; text-decoration:underline; }

/* Responsive */
@media (max-width: 991.98px){ .ag-promos__grid{ grid-template-columns:1fr 1fr; } }
@media (max-width: 575.98px){ .ag-promos__grid{ grid-template-columns:1fr; } }

/* === Client/logo strip – white card, XL logos === */
.ag-logos--white{
  background:#fff;
  border:1px solid #E6EBE8;
  border-radius:16px;
  padding:20px;
  margin-top:16px;
}

/* Desktop: exactly 5 columns; tablet 4; mobile 3 */
.ag-logos__list{
  display:grid; align-items:center; justify-items:center;
  gap:20px 28px; margin:0; padding:0; list-style:none;
  grid-template-columns:repeat(5, minmax(0,1fr));
}
@media (max-width: 1023.98px){ .ag-logos__list{ grid-template-columns:repeat(4, minmax(0,1fr)); } }
@media (max-width: 639.98px){  .ag-logos__list{ grid-template-columns:repeat(3, minmax(0,1fr)); } }

/* Bigger, crisper logos (override Elementor's img rules) */
.ag-logos--white .ag-logos__list img{
  display:block;
  height:72px !important;     /* XL height */
  width:auto !important;
  max-width:200px;             /* prevents ultra-wide logos from dominating */
  object-fit:contain;
  opacity:.98;
  transition:opacity .12s ease, transform .12s ease;
}
.ag-logos--white .ag-logos__list img:hover{ opacity:1; transform:translateY(-1px); }

/* Optional: even larger on very wide screens */
@media (min-width: 1400px){
  .ag-logos--white .ag-logos__list img{ height:84px !important; max-width:200px; }
}

/* XL modifier you can toggle on/off */
.ag-logos--xl .ag-logos__list img{ height:140px !important; }
@media (max-width: 1023.98px){ .ag-logos--xl .ag-logos__list img{ height:50px !important; max-width: 140px; } }
@media (max-width: 639.98px){  .ag-logos--xl .ag-logos__list img{ height:35px !important; max-width: 90px; } }

/* === Newsletter (blue band) === */
.ag-news--blue{
  --ag-blue:#3D96D3; --ink:#fff; --ink-2:rgba(255,255,255,.85);
  background:var(--ag-blue); border-radius:16px; padding:16px; margin-top:16px; color:var(--ink);
}
.ag-news__inner{ display:grid; gap:10px; align-items:center; }
.ag-news__title{ margin:0; font-size:20px; font-weight:700; }
.ag-news__form{ display:flex; gap:8px; flex-wrap:wrap; }
.ag-news__form input{
  flex:1 1 260px; min-width:240px; background:#fff; color:#111;
  border:1px solid rgba(0,0,0,.15); border-radius:10px; padding:10px 12px; font-size:14px;
}
.ag-news__form button{
  background:#fff; color:#3D96D3; border:1px solid rgba(255,255,255,.2);
  border-radius:10px; padding:10px 14px; font-weight:600; font-size:14px;
  transition:transform .12s ease, box-shadow .12s ease; cursor:pointer;
}
.ag-news__form button:hover{ transform:translateY(-1px); box-shadow:0 6px 16px rgba(0,0,0,.15); }
.ag-news__legal{ margin:0; font-size:13px; color:var(--ink-2); }

/* === Footer top row (contact + badges) === */
.ag-footer-top{
  background:#fff; border:1px solid #E6EBE8; border-radius:16px;
  padding:16px; margin-top:16px;
}
.ag-footer-top__grid{
  display:grid; gap:14px 24px; grid-template-columns: 1.2fr 1fr; align-items:center;
}
.ag-contact h3{ margin:0 0 6px; font-size:18px; font-weight:700; color:#1F2937; }
.ag-contact p{ margin:0 0 6px; color:#4B5563; font-size:14px; }
.ag-contact a{ color:#3D96D3; text-decoration:underline; text-underline-offset:2px; }

.ag-payments{ display:flex; gap:14px; justify-content:flex-end; margin:0; padding:0; list-style:none; }
.ag-payments img{ height:28px; width:auto; display:block; opacity:.95; }
.ag-payments img:hover{ opacity:1; }

@media (max-width: 767.98px){
  .ag-footer-top__grid{ grid-template-columns:1fr; }
  .ag-payments{ justify-content:flex-start; flex-wrap:wrap; }
}

/* Keep footer part of main scroll (audit) */
footer, .site-footer{ overflow:visible !important; }

/* === Global type scale & section rhythm (homepage first) === */
:root{
  --h1:28px; --h2:22px; --h3:18px;
  --lead:16px; --body:14px;
  --section-gap: 16px; /* consistent vertical rhythm */
}
h1{ font-size:var(--h1); line-height:1.2; margin:0 0 8px; }
h2{ font-size:var(--h2); line-height:1.25; margin:0 0 8px; }
h3{ font-size:var(--h3); line-height:1.3; margin:0 0 6px; }
p, ul, ol{ font-size:var(--body); line-height:1.5; margin:0 0 8px; }

/* Standardise section spacing on home */
.ag-mini-banner,
.ag-trust,
.ag-promos,
.ag-products,
.ag-logos,
.ag-news,
.ag-footer-top { margin-top: var(--section-gap); }

/* === Help & FAQs — Agritel Red band === */
.ag-faq.ag-faq--red{
  --ag-red:#E30A17;             /* main background */
  --ink:#ffffff;                /* primary text on red */
  --ink-2:rgba(255,255,255,.9); /* secondary text on red */
  --line:rgba(255,255,255,.25); /* subtle divider on red */

  background:var(--ag-red);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  margin-top:16px;
  color:var(--ink);
}

.ag-faq__title{
  margin:0 0 10px;
  font-size:20px; font-weight:700; color:#fff;
}

/* Grid of FAQ items */
.ag-faq__grid{
  display:grid; gap:10px 16px; grid-template-columns:repeat(2,minmax(0,1fr));
}
@media (max-width:767.98px){ .ag-faq__grid{ grid-template-columns:1fr; } }

/* FAQ cards (default: white cards on red band) */
.ag-faq details{
  background:#fff;
  border:1px solid #E6EBE8;
  border-radius:12px;
  padding:10px 12px;
  color:#1F2937;
}

/* Summary row styling */
.ag-faq summary{
  cursor:pointer; list-style:none; font-weight:700; color:#1F2937; display:flex; align-items:center;
}
.ag-faq summary::-webkit-details-marker{ display:none; }

/* Plus / minus indicator */
.ag-faq summary::after{
  content:"+";
  margin-left:auto; font-weight:700; color:#E30A17;
}
.ag-faq details[open] summary::after{ content:"–"; }

/* Focus states for keyboard users */
.ag-faq summary:focus-visible{
  outline:2px solid #3D96D3; outline-offset:2px; border-radius:6px;
}

/* Body copy within the panel */
.ag-faq p{ margin:8px 0 0; font-size:14px; line-height:1.5; color:#4B5563; }
.ag-faq a{ color:#3D96D3; text-decoration:underline; text-underline-offset:2px; }

/* --- OPTIONAL: "Ghost" style (use alongside ag-faq--red) ---
   Add an extra class 'ag-faq--ghost' to the section if you prefer
   translucent panels instead of white cards. */
.ag-faq.ag-faq--red.ag-faq--ghost details{
  background:rgba(255,255,255,.1);
  border:1px solid var(--line);
  color:#fff;
}
.ag-faq.ag-faq--red.ag-faq--ghost p{ color:var(--ink-2); }
.ag-faq.ag-faq--red.ag-faq--ghost summary::after{ color:#fff; }
.ag-faq.ag-faq--red.ag-faq--ghost a{ color:#fff; text-decoration:underline; }

/* === SEO text band – clean editorial layout (no JS) === */
.ag-seo--white{
  --ink:#1F2937; --ink-2:#4B5563; --line:#E6EBE8; --brand:#3D96D3;
  background:#fff; border:1px solid var(--line); border-radius:16px;
  padding:16px; margin-top:16px;
}
.ag-seo__inner{ max-width:980px; margin:0 auto; }
.ag-seo__title{ margin:0 0 8px; font-size:20px; font-weight:700; color:var(--ink); }
.ag-seo__lead{ margin:0 0 10px; font-size:14px; line-height:1.6; color:var(--ink-2); }
.ag-seo a{ color:var(--brand); text-decoration:underline; text-underline-offset:2px; }

/* Details toggle */
.ag-seo__more{ border:1px solid var(--line); border-radius:12px; padding:12px; background:#F8FAFD; }
.ag-seo__more > summary{
  cursor:pointer; list-style:none; font-weight:700; color:var(--ink);
  display:inline-flex; align-items:center; gap:8px;
}
.ag-seo__more > summary::-webkit-details-marker{ display:none; }
.ag-seo__more > summary::after{
  content:"Read more"; /* fallback text for screen readers if styles drop */
  position:absolute; left:-9999px;
}
/* Icon */
.ag-seo__more > summary:before{
  content:"＋"; font-weight:700; color:var(--brand);
}
.ag-seo__more[open] > summary:before{ content:"–"; }

/* Expanded content */
.ag-seo__grid{
  margin-top:10px;
  display:grid; gap:10px 24px;
  grid-template-columns:1fr 1fr;
}
.ag-seo__grid h3{ margin:2px 0 6px; font-size:16px; font-weight:700; color:var(--ink); }
.ag-seo__grid ul{ margin:0; padding-left:18px; color:var(--ink-2); font-size:14px; line-height:1.5; }
@media (max-width: 767.98px){ .ag-seo__grid{ grid-template-columns:1fr; } }

/* Map card */
.ag-map{ background:#fff; border:1px solid #E6EBE8; border-radius:16px; padding:16px; margin-top:16px; }
.ag-map__grid{ display:grid; gap:14px 16px; grid-template-columns: 1fr 1.5fr; align-items:start; }
.ag-map__info h2{ margin:0 0 6px; font-size:20px; font-weight:700; color:#1F2937; }
.ag-map__info p{ margin:0 0 6px; color:#4B5563; font-size:14px; }
.ag-map__btn{ display:inline-block; margin-top:6px; padding:8px 12px; border-radius:10px; background:#3D96D3; color:#fff; text-decoration:none; }
.ag-map__embed iframe{ width:100%; height:220px; border:0; border-radius:12px; }
@media (max-width:767.98px){ .ag-map__grid{ grid-template-columns:1fr; } }







/* === Shoptimizer footer → Agritel style === */
.site-footer, .footer-widgets {
  --bg:#3D96D3; --ink:#fff; --ink-2:rgba(255,255,255,.85); --line:rgba(255,255,255,.2);
  background:var(--bg); color:var(--ink);
  border-top:1px solid var(--line);
  font-size:14px;
}
.footer-widgets .widget-title { color:#fff; font-weight:700; margin-bottom:8px; font-size:16px; }

/* Links */
.site-footer a { color:var(--ink-2); text-decoration:none; }
.site-footer a:hover { color:#fff; text-decoration:underline; text-underline-offset:2px; }

/* Contact list spacing */
.footer-widgets .widget_text p { margin-bottom:8px; }

/* Trust badges + social */
.ag-footer__trust, .ag-footer__social, .ag-footer__payments {
  display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin:8px 0 0; padding:0; list-style:none;
}
.ag-footer__trust img { height:20px; width:auto; display:block; opacity:.95; }
.ag-footer__social a { color:#fff; opacity:.9; }
.ag-footer__social a:hover { opacity:1; }

/* Payments (white icons we generated) */
.ag-footer__payments img { height:24px; width:auto; opacity:.95; display:block; }
.ag-footer__payments img:hover { opacity:1; }

/* Newsletter form in footer widgets (CF7/Klaviyo friendly) */
.site-footer input[type="email"]{
  background:#fff; color:#111; border:1px solid rgba(0,0,0,.15);
  border-radius:10px; padding:10px 12px; font-size:14px; min-width:220px; width:100%;
}
.site-footer input[type="submit"], .site-footer button[type="submit"]{
  background:#fff; color:#3D96D3; border:1px solid rgba(255,255,255,.2);
  border-radius:10px; padding:10px 14px; font-weight:600; font-size:14px; cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease;
}
.site-footer input[type="submit"]:hover, .site-footer button[type="submit"]:hover{
  transform:translateY(-1px); box-shadow:0 6px 16px rgba(0,0,0,.15);
}

/* Credits/legal bar */
.site-info { border-top:1px solid var(--line); margin-top:18px; padding-top:12px; color:var(--ink-2); }
.site-info a { color:#fff; text-decoration:underline; text-underline-offset:2px; }

/* Mobile: ensure no inner scrolling footers */
.site-footer, .footer-widgets { overflow:visible !important; }

/* Make widget lists breathe a bit */
.footer-widgets .widget_nav_menu ul li { margin-bottom:6px; }

/* Optionally enlarge logos on big screens */
@media (min-width:1400px){
  .ag-footer__payments img { height:28px; }
}
/* Fix footer contact icons breaking onto their own line */
.site-footer .widget_text p img[src*="icon-"]{
  display:inline-block !important;
  height:18px !important;   /* tweak to 16–20 if you prefer */
  width:auto !important;
  margin-right:8px;
  vertical-align:-3px;      /* nudges icon to sit on baseline */
  line-height:1;
}

/* Make the paragraph breathe a touch */
.site-footer .widget_text p{ line-height:1.5; margin:0 0 8px; }

.ag-contactlist{ list-style:none; margin:0 0 8px; padding:0; }
.ag-contactlist li{
  display:flex; align-items:center; gap:10px;
  margin:0 0 6px;
}
.ag-contactlist .ag-icon{
  height:18px; width:auto; flex:0 0 auto; display:block;
}
.ag-contactlist a{ color:#fff; text-decoration:underline; text-underline-offset:2px; }








.ag-resultsbar{display:flex;gap:12px;align-items:center;justify-content:space-between;border:1px solid #E6EBE8;border-radius:12px;padding:10px;background:#fff;margin:6px 0 12px;}
.ag-resultsbar__count{font-weight:600;color:#1F2937;}
.ag-resultsbar__filters{border:1px solid #E6EBE8;border-radius:8px;padding:8px 10px;background:#F8FAFD;cursor:pointer;}
.ag-vat-toggle label{margin-left:10px;color:#4B5563;font-size:13px;}
.ag-endoflist{text-align:center;color:#6B7280;margin:12px 0 0;}
@media (max-width: 767.98px){ .ag-resultsbar{flex-wrap:wrap;gap:8px;} }

ul.products li.product img {
  height: 245px;
  object-fit: contain;
}

/* Home strapline – RAJA-style: single flowing sentence */
.home .home-hero-tagline {
  max-width: none;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  color: #151b26;
}

/* Spans stay inline so the sentence flows naturally */
.home .home-hero-tagline span {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
}

/* Highlighted words in Agritel blue */
.home .home-hero-tagline .ag-accent {
  color: #3D96D3;      /* Agritel colour */
  font-weight: 700;
}

/* Make sure no old decorations are left */
.home .home-hero-tagline::before,
.home .home-hero-tagline::after {
  content: none !important;
}
@media (max-width: 767px) {
.home .home-hero-tagline {
  font-size: 20px;
}
}
/* Home – Top sellers heading */
.home .ag-products-grid .ag-products__head {
  display: block !important;               /* override inline flex */
  text-align: center;
  margin-bottom: 1.8rem !important;
}

.home .ag-products-grid .ag-products__head h2 {
  margin: 0 0 0.4rem !important;
  font-size: clamp(1.7rem, 2.1vw, 2rem);   /* larger, but not shouty */
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #3D96D3;                          /* Agritel blue */
}

/* "View all" link under the title */
.home .ag-products-grid .ag-products__head .ag-products__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* ---------------------------------------------
   "Why buy packaging from Agritel?" – About band
   --------------------------------------------- */
.ag-about{
  --ag-blue:#3D96D3;

  margin: 3rem 0;
  padding: 2.4rem 1.8rem;
  border-radius: 18px;
  background: var(--ag-blue);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}

/* Tidy the inner container and keep it centred */
.ag-about > .elementor-container{
  max-width: 1100px;
  margin: 0 auto;
}

/* Strong, clear title */
.ag-about h2{
  margin: 0 0 1.1rem;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Optional intro line just under the title */
.ag-about p:first-of-type {
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
  opacity: 0.95;
  color: #000;
}

/* Turn any columns inside this section into soft white “cards” */
.ag-about .elementor-column > .elementor-widget-wrap{
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 1.2rem 1.35rem;
}

/* Bullet lists / key points */
.ag-about ul{
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.ag-about li{
  margin: 0.25rem 0;
}

/* Sub-heads inside cards, if you’re using them */
.ag-about h3{
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
}

/* Mobile tweaks */
@media (max-width: 767.98px){
  .ag-about{
    padding: 2rem 1.3rem;
    margin: 2.5rem 0;
  }

  .ag-about h2{
    font-size: 1.5rem;
    text-align: left;
  }
}
.site-footer .widget li, .site-footer .widget p {
  font-size: 15px !important;
}
/* ================================
   Contact page layout & styling
   (matches older Agritel site)
   ================================ */

/* Constrain the whole contact content and centre it */
.page-contact .site-main .entry-content {
  max-width: 1180px;
  margin: 0 auto 3rem;
}

/* Map at the top – full-width card */
.page-contact .entry-content iframe {
  width: 100% !important;
  min-height: 360px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  margin-bottom: 2.5rem;
}

/* Two-column layout: Head Office (left) + Form (right) */
.page-contact .entry-content .wp-block-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Card styling for both columns */
.page-contact .entry-content .wp-block-column {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  padding: 20px 22px 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* Typography inside the cards */
.page-contact .entry-content h2,
.page-contact .entry-content h3,
.page-contact .entry-content h4,
.page-contact .entry-content h6 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  color: #3D96D3; /* Agritel blue */
}

.page-contact .entry-content p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #4B5563;
}

/* Contact details list spacing */
.page-contact .entry-content p a {
  color: #3D96D3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Contact form styling (CF7) */
.page-contact .wpcf7-form p {
  margin-bottom: 10px;
}

.page-contact .wpcf7-form label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.page-contact .wpcf7-form input[type="text"],
.page-contact .wpcf7-form input[type="email"],
.page-contact .wpcf7-form input[type="tel"],
.page-contact .wpcf7-form textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  padding: 9px 11px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

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

/* Submit button – similar feel to old site */
.page-contact .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  background: #3D96D3;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.page-contact .wpcf7-submit:hover {
  background: #192e5e;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.20);
}

/* Responsive: stack the cards on mobile */
@media (max-width: 768px) {
  .page-contact .entry-content .wp-block-columns {
    grid-template-columns: 1fr;
  }

  .page-contact .entry-content .wp-block-column {
    padding: 18px 16px 20px;
  }

  .page-contact .entry-content iframe {
    min-height: 260px;
    margin-bottom: 1.8rem;
  }
}
header.woocommerce-products-header, .shoptimizer-category-banner {
    background-color: #eee !important;
}

/* =====================================================
   Single product – visual hierarchy in the buy box
   ===================================================== */

.single-product .summary.entry-summary .product_title {
  font-size: clamp(1.6rem, 2.1vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

/* Price – big, bold, on-brand colour */
.single-product .summary.entry-summary .price { 
  margin: 0.25rem 0 0.8rem;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  font-weight: 800;
  color: #3D96D3; /* Agritel blue */
}

.single-product .summary.entry-summary .price .woocommerce-Price-amount,
.single-product .summary.entry-summary .price .woocommerce-Price-currencySymbol {
  font-size: inherit;
}

/* Short description as a highlighted “spec” panel */
.single-product .summary.entry-summary .woocommerce-product-details__short-description {
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #F5F7FA;
  border: 1px solid #E5E7EB;
  font-size: 0.95rem;
  color: #374151;
}

/* Optional: make the first sentence a touch stronger */
.single-product .summary.entry-summary .woocommerce-product-details__short-description p:first-child {
  font-weight: 600;
}

/* =====================================================
   Single product – USP strip under short description
   ===================================================== */

.single-product .summary.entry-summary .ag-product-usps,
.dd-archive-trust .ag-product-usps {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  list-style: none;
  border-radius: 12px;
  background: #F8FAFD;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.single-product .summary.entry-summary .ag-product-usps li,
.dd-archive-trust .ag-product-usps li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: #374151;
  flex: 1 1 180px;
}
.dd-archive-trust {
  margin: 0 0 1rem;
}

.dd-archive-trust__intro {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: #4B5563;
}
.dd-free-delivery-note {
  margin: 0.4rem 0 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #16a34a; /* green highlight */
}

/* Category archives – align with intro text */
.dd-archive-trust .dd-free-delivery-note {
  text-align: left;
}


/* Little round icon pills */
.ag-product-usps__icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: #3D96D3;
  color: #fff;
}
/* ==============================================
   Category / shop product cards – titles & prices
   ============================================== */

/* Scope to shop + category + tag archives */
.post-type-archive-product ul.products li.product,
.tax-product_cat ul.products li.product,
.tax-product_tag ul.products li.product {
  /* just here in case we want shared tweaks later */
}

/* Product title – larger, bolder, clearer */
.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
  margin: 0.45rem 0 0.3rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111827;
}

/* Price – strong and on-brand */
.post-type-archive-product ul.products li.product .price,
.tax-product_cat ul.products li.product .price,
.tax-product_tag ul.products li.product .price {
  display: block;
  margin-top: 0.1rem;
  font-size: 1rem;
  font-weight: 800;
}

/* Old price on sale – smaller and muted */
.post-type-archive-product ul.products li.product .price del,
.tax-product_cat ul.products li.product .price del,
.tax-product_tag ul.products li.product .price del {
  opacity: 0.65;
  font-weight: 400;
  font-size: 0.9em;
}

/* Sale/new price – keep the strong styling */
.post-type-archive-product ul.products li.product .price ins,
.tax-product_cat ul.products li.product .price ins,
.tax-product_tag ul.products li.product .price ins {
  font-weight: 800;
  text-decoration: none;
}

/* Slight bump again on wider screens */
@media (min-width: 992px) {
  .post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  .tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  .tax-product_tag ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
  }

  .post-type-archive-product ul.products li.product .price,
  .tax-product_cat ul.products li.product .price,
  .tax-product_tag ul.products li.product .price {
    font-size: 1.05rem;
  }
}
.cart-drawer-heading {
  font-size: clamp(1.6rem, 2.1vw, 1.9rem); 
}
.ckobp-before-you-go {
  font-size: clamp(1.6rem, 2.1vw, 1.9rem) !important; 
}
.shoptimizer-mini-cart-wrap .widget_shopping_cart li.mini_cart_item, .commercekit-order-bump .ckobp-name {
  font-size: 15px important;
}
.commercekit-order-bump .ckobp-price {
  font-size: 15px important;
  font-weight: bold;
} 
.shoptimizer-mini-cart-wrap .widget_shopping_cart li.mini_cart_item, .commercekit-order-bump .ckobp-name, .commercekit-order-bump .ckobp-price {
  font-size: 14px !important;
}
/* Free delivery progress bar (cart + checkout) */
.ag-free-shipping-bar {
  margin: 0 0 1.5rem;
  padding: 0.8rem 1rem 1rem;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #F5F7FA;
}

.ag-free-shipping-bar__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.45rem;
}

.ag-free-shipping-bar__text--qualified {
  color: #3D96D3; /* Agritel blue */
}

.ag-free-shipping-bar__track {
  position: relative;
  height: 7px;
  border-radius: 999px;
  background: #E5E7EB;
  overflow: hidden;
}

.ag-free-shipping-bar__fill {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #3D96D3, #26c39f);
  transition: width 0.25s ease-out;
}

/* Slightly tighter on mobile */
@media (max-width: 767.98px) {
  .ag-free-shipping-bar {
    margin-bottom: 1.2rem;
    padding-inline: 0.85rem;
  }
}
@media (min-width: 993px) {
  .header-5 .shoptimizer-cart .cart-contents .amount {
    font-size: 14px;
    font-weight: 700;
  }
}
@media (min-width: 993px) {
  .secondary-navigation .menu li:not(.ri) a {
    font-weight: 700;
  }
}/* Top maintenance / improvements bar */.site-maintenance-bar {  background: #FFC94A;  color: #1A2238;  padding: 10px 15px;  font-size: 15px;  line-height: 1.5;  z-index: 9999;  box-shadow: 0 2px 4px rgba(0,0,0,0.15);  text-align: center;}.site-maintenance-bar__inner {    max-width: 1200px;              /* match site width */    margin: 0 auto;    display: flex;    align-items: center;    justify-content: center;    gap: 8px;    text-align: center;    flex-wrap: wrap;}.site-maintenance-bar__icon {    font-size: 18px;}.site-maintenance-bar__text {    font-weight: 600;}.site-maintenance-bar p {    margin: 0;}.site-maintenance-bar a {  color: #3D96D3;  text-decoration: underline;  font-weight: 700;}.site-maintenance-bar a:hover {    text-decoration: none;}/* Slightly smaller text on very small screens */@media (max-width: 480px) {    .site-maintenance-bar {        font-size: 14px;        padding: 8px 10px;    }}
/* Fix big white gap above nav on mobile / tablet */
@media (max-width: 992px) {
  .col-full-nav {
    /* stop it behaving like a full-height off-canvas panel */
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    background: transparent !important;
  }
}
@media (max-width: 992px) {
  .main-navigation {
    display: none !important;
  }
  .header-widget-region {
    margin-top: 0px;
  }
}








.ag-resultsbar{display:flex;gap:12px;align-items:center;justify-content:space-between;border:1px solid #E6EBE8;border-radius:12px;padding:10px;background:#fff;margin:6px 0 12px;}
.ag-resultsbar__count{font-weight:600;color:#1F2937;}
.ag-resultsbar__filters{border:1px solid #E6EBE8;border-radius:8px;padding:8px 10px;background:#F8FAFD;cursor:pointer;}
.ag-vat-toggle label{margin-left:10px;color:#4B5563;font-size:13px;}
.ag-endoflist{text-align:center;color:#6B7280;margin:12px 0 0;}
@media (max-width: 767.98px){ .ag-resultsbar{flex-wrap:wrap;gap:8px;} }


ul.products li.product img {
  height: 200px;
  object-fit: contain;
}
/* Trust strip background */
.dd-trust-strip {
    background: #f5f8ff;
    padding: 40px 0 50px;
    border-top: 1px solid rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.03);
}

.dd-trust-strip .elementor-container {
    align-items: stretch;
}

/* Card-style trust items */
.dd-trust-item .elementor-widget-container {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 22px 26px;
    box-shadow: 0 8px 22px rgba(0,0,0,.04);
    border: 1px solid rgba(64,152,211,0.08);
    text-align: center;
    overflow: hidden;
}

/* Small gradient bar at the top of each card */
.dd-trust-item .elementor-widget-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4098D3, #F7941D);
}

/* Icons */
.dd-trust-item .elementor-icon {
    background: #eff6ff;
    border-radius: 999px;
    padding: 12px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dd-trust-item .elementor-icon i,
.dd-trust-item .elementor-icon svg {
    color: #4098D3;
    font-size: 22px;
}

/* Titles & text */
.dd-trust-item .elementor-icon-box-title {
    font-weight: 700;
    font-size: 17px;
    color: #4098D3;
    margin-bottom: 6px;
}

.dd-trust-item .elementor-icon-box-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

/* Spacing on mobile */
@media (max-width: 767px) {
    .dd-trust-strip .elementor-column {
        margin-bottom: 18px;
    }
}
.dd-products-grid {
    max-width: 1200px;
    margin: 40px auto 10px;
    padding: 0 0 40px;
}

.dd-products-grid__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px;
}

.dd-products-grid__titles {
    max-width: 600px;
}

.dd-products-grid__title {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 700;
    color: #111827;
}

.dd-products-grid__sub {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
}

.dd-products-grid__link {
    font-size: 14px;
    color: #4098D3;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.dd-products-grid__link:hover {
    border-color: #4098D3;
}
/* --- Static eBay reviews band --- */

.dd-reviews-band {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 28px 18px 22px;

}
.dd-reviews-bandss {
    background: linear-gradient(135deg, #f5f8ff 0%, #e9f3ff 50%, #ffffff 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.dd-reviews-band__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.dd-reviews-band__titles {
    max-width: 620px;
}

.dd-reviews-band__eyebrow {
    margin: 0 0 4px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #2563eb;
}

.dd-reviews-band__title {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 700;
    color: #111827;
}

.dd-reviews-band__sub {
    margin: 0 0 14px;
    font-size: 14px;
    color: #4b5563;
}

.dd-reviews-band__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: #F7941D;        /* Discount Delights orange */
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

.dd-reviews-band__btn:hover {
    background: #f58a06;
}

/* Right-hand rating cluster */
.dd-reviews-band__rating {
    text-align: right;
    font-size: 13px;
    color: #4b5563;
}

.dd-reviews-band__stars {
    font-size: 20px;
    color: #f59e0b;
    margin-bottom: 4px;
}

.dd-reviews-band__score {
    margin: 0;
    font-weight: 600;
    color: #111827;
}

.dd-reviews-band__source {
    margin: 2px 0 6px;
}

.dd-reviews-band__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #111827;
    color: #f9fafb;
    font-size: 12px;
}

/* Review cards */
.dd-reviews-band__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dd-reviews-band__card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 14px 12px;
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    font-size: 14px;
    overflow: hidden;
}

.dd-reviews-band__card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #4098D3, #F7941D);
}

.dd-reviews-band__card-stars {
    font-size: 14px;
    color: #f59e0b;
    margin-bottom: 4px;
}

.dd-reviews-band__card-text {
    margin: 0 0 8px;
    line-height: 1.5;
    color: #111827;
}

.dd-reviews-band__card-meta {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
}

/* Mobile / tablet tweaks */
@media (max-width: 991px) {
    .dd-reviews-band__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .dd-reviews-band__rating {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .dd-reviews-band {
        margin: 30px 12px 50px;
        padding: 20px 14px 16px;
    }

    .dd-reviews-band__grid {
        grid-template-columns: 1fr;
    }
}
/* --- Help / Support strip --- */

.dd-help-strip {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 16px;
}

.dd-help-strip__inner {
    border-radius: 20px;
    padding: 22px 0 20px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15,23,42,0.06);
    border: 1px solid rgba(64,152,211,0.08);
}

.dd-help-strip__head {
    text-align: left;
    margin-bottom: 18px;
}

.dd-help-strip__title {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.dd-help-strip__sub {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
}

/* Cards grid */
.dd-help-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.dd-help-strip__card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 14px 14px 12px;
    border: 1px solid rgba(0,0,0,0.04);
}

.dd-help-strip__icon {
    font-size: 22px;
    margin-bottom: 6px;
}

.dd-help-strip__card-title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.dd-help-strip__card-text {
    margin: 0 0 8px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.dd-help-strip__link {
    display: inline-block;
    font-size: 13px;
    color: #4098D3;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    font-weight: 500;
}

.dd-help-strip__link:hover {
    border-color: #4098D3;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .dd-help-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .dd-help-strip__inner {
        padding: 18px 14px 16px;
    }

    .dd-help-strip__grid {
        grid-template-columns: 1fr;
    }
}
/* --- Common questions + Payment & security strip --- */

.dd-faq-strip {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 16px;
}

.dd-faq-strip__inner {
    border-radius: 20px;
    padding: 22px 18px 18px;
    background: #f9fafb;
    border: 1px solid rgba(64,152,211,0.08);
    box-shadow: 0 10px 28px rgba(15,23,42,0.04);
}

.dd-faq-strip__cols {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.dd-faq-strip__col {
    flex: 1 1 0;
}

/* Headings / labels */

.dd-faq-strip__eyebrow {
    margin: 0 0 4px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #2563eb;
}

.dd-faq-strip__eyebrow--right {
    text-align: right;
}

.dd-faq-strip__title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.dd-faq-strip__title--small {
    font-size: 18px;
    text-align: right;
}

/* FAQ items */

.dd-faq-strip__items {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.dd-faq-strip__item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.dd-faq-strip__item:last-child {
    border-bottom: none;
}

.dd-faq-strip__q {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.dd-faq-strip__a {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.dd-faq-strip__a a {
    color: #4098D3;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.dd-faq-strip__a a:hover {
    border-color: #4098D3;
}

/* Payment & security column */

.dd-faq-strip__col--security {
    max-width: 360px;
}

.dd-faq-strip__security-text {
    margin: 6px 0 10px;
    font-size: 14px;
    color: #4b5563;
    text-align: right;
}

.dd-faq-strip__bullets {
    margin: 0 0 12px;
    padding-left: 18px;
    font-size: 13px;
    color: #4b5563;
    text-align: left;
}

.dd-faq-strip__bullets li {
    margin-bottom: 4px;
}

/* Payment methods */

.dd-faq-strip__payments {
    text-align: right;
}

.dd-faq-strip__payments-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.dd-faq-strip__payments-row {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dd-faq-strip__pm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.10);
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 4px 10px rgba(15,23,42,0.05);
}

/* Responsive tweaks */

@media (max-width: 991px) {
    .dd-faq-strip__cols {
        flex-direction: column;
    }

    .dd-faq-strip__col--security {
        max-width: none;
    }

    .dd-faq-strip__title--small,
    .dd-faq-strip__eyebrow--right,
    .dd-faq-strip__security-text,
    .dd-faq-strip__payments,
    .dd-faq-strip__payments-label {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .dd-faq-strip__inner {
        padding: 18px 14px 14px;
        border-radius: 16px;
    }
}
footer .col-full {
  max-width: 1300px !important;
}
/* --- Discount Delights footer (Elementor, 4 widgets) --- */

/* Top footer section */
.dd-footer {
    background: #0f172a;
    color: #e5e7eb;
    margin-top: 40px;
}

/* Container & columns layout */
.dd-footer .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    font-size: 14px;
}

.dd-footer__heading {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: #f9fafb;
}

.dd-footer__text {
    margin: 0 0 8px;
    color: #e5e7eb;
    line-height: 1.6;
}

.dd-footer__text--hours {
    margin-top: 6px;
}

.dd-footer__small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: #9ca3af;
}

/* Links */

.dd-footer__links {
    list-style: none;
    margin: 0 0 6px;
    padding: 0;
}

.dd-footer__links--sub {
    margin-top: 4px;
}

.dd-footer__links li {
    margin-bottom: 4px;
}

.dd-footer__links a,
.dd-footer__text a {
    color: #e5e7eb;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.dd-footer__links a:hover,
.dd-footer__text a:hover {
    border-color: #e5e7eb;
}

/* Payments */

.dd-footer__payments-block {
    margin-top: 8px;
}

.dd-footer__payments-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.dd-footer__pm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #020617;
    border: 1px solid rgba(148,163,184,0.7);
    font-size: 12px;
    font-weight: 600;
    color: #e5e7eb;
    box-shadow: 0 4px 10px rgba(15,23,42,0.35);
}

/* Bottom bar section */

.dd-footer-bottom {
    background: #0f172a;
    border-top: 1px solid rgba(148,163,184,0.5);
}

.dd-footer-bottom .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6px;
    font-size: 12px;
}

.dd-footer__bottom-text {
    margin: 0;
    color: #e5e7eb;
}

.dd-footer__bottom-text--muted {
    color: #9ca3af;
}

/* Responsive */

@media (max-width: 991px) {
    .dd-footer .elementor-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .dd-footer .elementor-container {
        grid-template-columns: 1fr;
        padding: 24px 14px 14px;
    }

    .dd-footer-bottom .elementor-container {
        padding: 10px 14px 14px;
    }
}
.shoptimizer-cart .cart-contents {
  color: #404040 !important;
}

.dd-related-links {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
    font-size: 0.95rem;
}

.dd-related-links h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.dd-related-group {
    margin-bottom: 0.75rem;
}

.dd-related-group h4 {
    font-size: 1rem;
    margin: 0 0 0.25rem;
}

.dd-related-group ul {
    margin: 0;
    padding-left: 1.1rem;
}

.dd-related-group li {
    margin: 0.1rem 0;
}
#tab-description ul {
  margin-left: 30px !important;
}
@media (max-width: 767px) {
  .header-widget-region {
    margin-top: 37px;
  }
}

.ag-product-usps li {
  margin: 0;
}

/* On larger screens show all 4 in one row */
@media (min-width: 992px) {
  .ag-product-usps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.dd-company-meta {
  margin: 0.4rem 0 0.6rem;
  font-size: 0.75rem;
  text-align: center;
  color: #6B7280; /* muted grey */
}
.dd-saving-line {
  margin: .35rem 0 .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: #374151;
  float: left;
  width: 100%;
}
.dd-saving-line {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151; /* same grey as body text */
}
@media (max-width: 767.98px) {
.single-product .summary.entry-summary .ag-product-usps li {
  color: #374151;
  flex: 0 0 calc(100% - 14px);
}
}
.ag-product-usps p {
  width: 100%;
  text-align: center !important;
  text-transform: uppercase;
  background: #3F98D3;
  color: #fff;
  padding: 5px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 10px;
}