/* === WPBakery Accordion — Clean + Active Rules === */
:root{
  --bw-acc-text: #111;
  --bw-acc-accent: #410099; /* active red */
  --bw-acc-rule: #111;      /* divider line */
}

/* container reset */
.vc_tta.vc_tta-accordion,
.vc_tta-accordion .vc_tta-panels,
.vc_tta-accordion .vc_tta-panel{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* headings */
.vc_tta-accordion .vc_tta-panel-heading{
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

/* title */
.vc_tta-accordion .vc_tta-panel-title > a{
  display: block;
  position: relative;
  padding: 18px 0 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: var(--bw-acc-text) !important;
  font-size: clamp(20px, 2.2vw, 32px) !important;
  text-decoration: none !important;
  border: 0 !important;
}

/* divider under each heading (except active) */
.vc_tta-accordion .vc_tta-panel-heading::after{
  content: "" !important;
  display: block !important;
  height: 2px !important;
  background: var(--bw-acc-rule) !important;
}
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading::after{
  content: none !important;
  display: none !important; /* hide divider on active header */
}

/* plus/minus indicator — big, inset 10px from right */
.vc_tta-accordion .vc_tta-panel-title > a::after{
  content: "+" !important;
  position: absolute !important;
  right: 10px !important; /* inset from edge */
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 26px !important;
  font-weight: 900 !important;
  color: var(--bw-acc-text) !important;
}
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-title > a{
  color: var(--bw-acc-accent) !important;
}
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-title > a::after{
  content: "–" !important;
  color: var(--bw-acc-accent) !important;
}

/* remove VC’s built-in icons */
.vc_tta-accordion .vc_tta-controls-icon{ display:none !important; }

/* panel body */
.vc_tta-accordion .vc_tta-panel-body{
  padding: 14px 0 22px 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--bw-acc-text) !important;
}

/* ACTIVE: red bottom border on content body */
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-body{
  border-bottom: 3px solid var(--bw-acc-accent) !important;
  padding-bottom: 18px !important; /* visual breathing room above border */
}

/* lists with red bullets */
.vc_tta-accordion .vc_tta-panel-body ul{
  list-style: disc !important;
  padding-left: 22px !important;
  margin: 8px 0 16px !important;
}
.vc_tta-accordion .vc_tta-panel-body li::marker{
  color: var(--bw-acc-accent) !important;
}

/* ===== Post Grid Card (matches your HTML classes) ===== */
:root{
  --bw-card-radius: 14px;
  --bw-card-shadow: 0 10px 24px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.05);
  --bw-card-shadow-hover: 0 16px 36px rgba(0,0,0,.16), 0 2px 8px rgba(0,0,0,.08);
  --bw-card-text: #111;
  --bw-card-accent: #410099;
}

/* Card shell */
.vc_grid-item-mini .vc_gitem-animated-block{
  background: #fff;
  border-radius: var(--bw-card-radius);
  overflow: hidden;
  box-shadow: var(--bw-card-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  border: 0;
}
.vc_grid-item-mini .vc_gitem-animated-block:hover{
  transform: translateY(-2px);
  box-shadow: var(--bw-card-shadow-hover);
}

/* Make all zones transparent/clean */
.vc_grid-item-mini .vc_gitem-zone,
.vc_grid-item-mini .vc_gitem-zone-a,
.vc_grid-item-mini .vc_gitem-zone-c{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Image zone (supports WPBakery bg-image OR <img>) */
.vc_grid-item-mini .vc_gitem-zone-a{
  position: relative;
  line-height: 0;
  min-height: 220px;
  background-size: cover !important;
  background-position: center !important;
}
.vc_grid-item-mini .vc_gitem-zone-a img.vc_gitem-zone-img{
  display: block;
  width: 100%; height: 220px;
  object-fit: cover;
}
.vc_grid-item-mini .vc_gitem-zone-a .vc_gitem-link.vc-zone-link{
  position: absolute; inset: 0; z-index: 2;
}

/* Content zone */
.vc_grid-item-mini .vc_gitem-zone-c{ padding: 18px; color: var(--bw-card-text); }

/* Title + excerpt */
.vc_grid-item-mini .vc_gitem-post-data-source-post_title h4{
  margin: 8px 0 10px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--bw-card-text);
}
.vc_grid-item-mini .vc_gitem-post-data-source-post_excerpt p{
  margin: 0;
  color: var(--bw-card-text);
}

/* Read more / WPBakery button -> text-link style */
.vc_grid-item-mini .vc_btn3-container{ margin-top: 12px; }
.vc_grid-item-mini a.vc_btn3{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: var(--bw-card-accent) !important;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .02em;
  position: relative;
  padding-right: 18px !important;
  line-height: 1.2;
  text-decoration: none;
}

/* Arrow appears on hover/focus ONLY */
.vc_grid-item-mini a.vc_btn3::after{
  content: "→";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  opacity: 0; visibility: hidden;
  transition: opacity .15s ease, transform .15s ease;
}
.vc_grid-item-mini a.vc_btn3:hover::after,
.vc_grid-item-mini a.vc_btn3:focus-visible::after{
  opacity: 1; visibility: visible;
  transform: translate(2px, -50%);
}

/* Accessible focus ring */
.vc_grid-item-mini a.vc_btn3:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(227,30,36,.25);
  border-radius: 6px;
}

/* ================================
   Wishlist Table — Rounded Card Style
   Scope: YITH Wishlist (safe: only .wishlist_table)
   ================================ */

:root{
  --twt-radius: 14px;
  --twt-shadow: 0 10px 24px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.05);
  --twt-shadow-hover: 0 16px 36px rgba(0,0,0,.16), 0 2px 8px rgba(0,0,0,.08);
  --twt-accent: #410099;   /* brand red */
  --twt-bg: #ffffff;
  --twt-muted: #f6f7f9;
  --twt-border: #e9e9ee;
  --twt-text: #121212;
  --twt-subtle: #6b7280;
  --twt-success: #14a44d;
  --twt-danger: #d61e1e;
}

/* Outer card */
table.shop_table.wishlist_table.wishlist_view{
  border-collapse: separate !important;   /* required for rounded corners */
  border-spacing: 0 !important;
  width: 100%;
  background: var(--twt-bg);
  color: var(--twt-text);
  border: 1px solid var(--twt-border);
  border-radius: var(--twt-radius);
  box-shadow: var(--twt-shadow);
  overflow: hidden; /* helps clip rounded corners in some browsers */
}

/* Header */
table.shop_table.wishlist_table thead th{
  background: var(--twt-muted);
  color: #2b2f36;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 12.5px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--twt-border);
  white-space: nowrap;
}
table.shop_table.wishlist_table thead th.product-thumbnail{ width: 84px; }
table.shop_table.wishlist_table thead th.product-remove{ width: 48px; }
table.shop_table.wishlist_table thead th.product-add-to-cart{ text-align: right; }

/* Rows */
table.shop_table.wishlist_table tbody tr{
  transition: background .25s ease, box-shadow .25s ease;
}
table.shop_table.wishlist_table tbody tr + tr td{
  border-top: 1px solid var(--twt-border);
}
table.shop_table.wishlist_table tbody tr:hover{
  background: #fafafb;
}

/* Cells */
table.shop_table.wishlist_table td{
  padding: 16px;
  vertical-align: middle;
  color: var(--twt-text);
  line-height: 1.35;
}

/* Remove button (×) */
table.shop_table.wishlist_table td.product-remove a.remove{
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: transparent;
  color: var(--twt-subtle);
  border: 1px solid var(--twt-border);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
table.shop_table.wishlist_table td.product-remove a.remove:hover{
  background: var(--twt-accent);
  color: #fff;
  border-color: var(--twt-accent);
  box-shadow: 0 6px 14px rgba(227,30,36,.25);
}

/* Thumbnail */
table.shop_table.wishlist_table td.product-thumbnail a,
table.shop_table.wishlist_table td.product-thumbnail img{
  display: block;
}
table.shop_table.wishlist_table td.product-thumbnail img{
  width: 64px; height: 64px; object-fit: contain;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* Product name */
table.shop_table.wishlist_table td.product-name a{
  color: var(--twt-text);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
table.shop_table.wishlist_table td.product-name a:hover{
  color: var(--twt-accent);
}

/* Price */
table.shop_table.wishlist_table td.product-price .woocommerce-Price-amount{
  font-weight: 800;
  font-size: 16px;
}
table.shop_table.wishlist_table td.product-price .woocommerce-Price-currencySymbol{
  opacity: .75;
  margin-right: 2px;
}

/* Stock badge */
table.shop_table.wishlist_table td.product-stock-status .wishlist-in-stock,
table.shop_table.wishlist_table td.product-stock-status .wishlist-out-of-stock{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
table.shop_table.wishlist_table td.product-stock-status .wishlist-in-stock{
  color: var(--twt-success);
  background: color-mix(in srgb, var(--twt-success) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--twt-success) 28%, #fff);
}
table.shop_table.wishlist_table td.product-stock-status .wishlist-out-of-stock{
  color: var(--twt-danger);
  background: color-mix(in srgb, var(--twt-danger) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--twt-danger) 28%, #fff);
}

/* Add-to-cart / Select options button */
table.shop_table.wishlist_table td.product-add-to-cart{
  text-align: right;
}
table.shop_table.wishlist_table td.product-add-to-cart .add_to_cart_button,
table.shop_table.wishlist_table td.product-add-to-cart .button,
table.shop_table.wishlist_table td.product-add-to-cart a.alt{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--twt-accent);
  color: #fff !important;
  border: 1px solid var(--twt-accent);
  text-decoration: none !important;
  letter-spacing: .02em;
  font-size: 13px;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
table.shop_table.wishlist_table td.product-add-to-cart .add_to_cart_button:hover,
table.shop_table.wishlist_table td.product-add-to-cart .button:hover,
table.shop_table.wishlist_table td.product-add-to-cart a.alt:hover{
  background: #c81c21;
  border-color: #c81c21;
  box-shadow: 0 8px 18px rgba(227,30,36,.28);
  transform: translateY(-1px);
}

/* Focus ring for accessibility */
table.shop_table.wishlist_table a:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--twt-accent) 30%, transparent);
  border-radius: 8px;
}

/* Clean empty header cells */
table.shop_table.wishlist_table thead th.product-remove span.nobr,
table.shop_table.wishlist_table thead th.product-add-to-cart span.nobr{
  display: none;
}

/* ===== Responsive tweaks (respect YITH's responsive mode) ===== */

@media (max-width: 782px){
  /* Convert rows to soft cards for clarity */
  table.shop_table.wishlist_table.wishlist_view.responsive{
    border-radius: var(--twt-radius);
    box-shadow: var(--twt-shadow);
    border: 1px solid var(--twt-border);
    overflow: hidden;
  }
  table.shop_table.wishlist_table.wishlist_view thead{ display: none; }

  table.shop_table.wishlist_table.wishlist_view tbody tr{
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-areas:
      "thumb name"
      "thumb price"
      "thumb stock"
      "thumb actions";
    gap: 8px 12px;
    padding: 12px 14px;
    border-top: 1px solid var(--twt-border);
  }
  table.shop_table.wishlist_table.wishlist_view tbody tr:first-child{ border-top: none; }

  td.product-thumbnail{ grid-area: thumb; }
  td.product-name{ grid-area: name; padding-bottom: 0; }
  td.product-price{ grid-area: price; padding-top: 0; color: var(--twt-subtle); }
  td.product-stock-status{ grid-area: stock; }
  td.product-add-to-cart{ grid-area: actions; text-align: left; }
  td.product-remove{ position: absolute; top: 10px; right: 10px; }

  /* Make the button full-width on small screens */
  table.shop_table.wishlist_table td.product-add-to-cart .add_to_cart_button,
  table.shop_table.wishlist_table td.product-add-to-cart .button,
  table.shop_table.wishlist_table td.product-add-to-cart a.alt{
    width: 100%;
    justify-content: center;
    height: 44px;
  }
}

/* Optional subtle row lift on desktop hover */
@media (min-width: 783px){
  table.shop_table.wishlist_table tbody tr:hover{
    box-shadow: var(--twt-shadow-hover);
  }
}

/* ============================
   Wishlist alignment + button fix
   ============================ */

/* Consistent paddings across header & body */
table.shop_table.wishlist_table thead th,
table.shop_table.wishlist_table tbody td{
  padding-top: 18px;
  padding-bottom: 18px;
}

/* Column sizing for tidy alignment */
table.shop_table.wishlist_table thead th.product-remove,
table.shop_table.wishlist_table tbody td.product-remove{ width: 56px; text-align: center; }
table.shop_table.wishlist_table thead th.product-thumbnail,
table.shop_table.wishlist_table tbody td.product-thumbnail{ width: 92px; }
table.shop_table.wishlist_table thead th.product-price,
table.shop_table.wishlist_table tbody td.product-price{
  width: 180px;
  text-align: right;             /* prices line up neatly */
  white-space: nowrap;
}
table.shop_table.wishlist_table thead th.product-stock-status,
table.shop_table.wishlist_table tbody td.product-stock-status{
  width: 180px;
  text-align: center;
}
table.shop_table.wishlist_table thead th.product-add-to-cart,
table.shop_table.wishlist_table tbody td.product-add-to-cart{
  width: 220px;
  text-align: right;
}

/* Keep everything vertically centered in each row */
table.shop_table.wishlist_table tbody td{
  vertical-align: middle;
}

/* Price number width so digits align nicely */
table.shop_table.wishlist_table td.product-price .woocommerce-Price-amount{
  display: inline-block;
  min-width: 120px;
  text-align: right;
  font-weight: 800;
  font-size: 16px;
}

/* Stock badge sizing + centering */
table.shop_table.wishlist_table td.product-stock-status .wishlist-in-stock,
table.shop_table.wishlist_table td.product-stock-status .wishlist-out-of-stock{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 700;
}

/* Action button — proper pill with consistent height */
table.shop_table.wishlist_table td.product-add-to-cart .add_to_cart_button,
table.shop_table.wishlist_table td.product-add-to-cart .button,
table.shop_table.wishlist_table td.product-add-to-cart a.alt{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;          /* looks balanced with columns */
  height: auto;              /* FIX: consistent height */
  line-height: 1;            /* prevent tall line-height from stretching */
  padding: 10px 18px;
  border-radius: 9999px;     /* pill */
  background: var(--twt-accent);
  border: 1px solid var(--twt-accent);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none !important;
  box-shadow: 0 6px 14px rgba(227,30,36,.18);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
table.shop_table.wishlist_table td.product-add-to-cart .add_to_cart_button:hover,
table.shop_table.wishlist_table td.product-add-to-cart .button:hover,
table.shop_table.wishlist_table td.product-add-to-cart a.alt:hover{
  background: #c81c21;
  border-color: #c81c21;
  box-shadow: 0 8px 18px rgba(227,30,36,.28);
  transform: translateY(-1px);
}

/* Tighter mobile: let YITH responsive mode stack cleanly */
@media (max-width: 782px){
  table.shop_table.wishlist_table thead{ display: none; }
  table.shop_table.wishlist_table td.product-add-to-cart{
    text-align: left;
  }
  table.shop_table.wishlist_table td.product-add-to-cart .add_to_cart_button,
  table.shop_table.wishlist_table td.product-add-to-cart .button,
  table.shop_table.wishlist_table td.product-add-to-cart a.alt{
    width: 100%;
    min-width: 0;
  }
}

/* ===== Footer newsletter (Gravity Forms) ===== */
:root{
  --footer-accent: #410099;
  --footer-text: #ffffff;
  --footer-muted: #c8c8c8;
  --footer-line: rgba(255,255,255,.28);
}

.site-footer .gform_wrapper{
  color: var(--footer-text);
}

/* Label (EMAIL) */
.site-footer .gform_wrapper.gravity-theme .gfield_label,
.site-footer .gform_wrapper .gfield_label{
  color: var(--footer-text);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 15px;
  margin-bottom: 10px;
}

/* Field: single underline look */
.site-footer .gform_wrapper .gfield input[type="email"],
.site-footer .gform_wrapper .gfield input[type="text"],
.site-footer .gform_wrapper .gfield input[type="url"]{
  width: 100%;
  background: transparent;
  color: var(--footer-text);
  border: 0;
  border-bottom: 1px solid var(--footer-line);
  border-radius: 0;
  padding: 12px 0 14px;
  box-shadow: none;
  outline: none;
  font-size: 16px;
}
.site-footer .gform_wrapper .gfield input::placeholder{
  color: rgba(255,255,255,.55);
}
.site-footer .gform_wrapper .gfield input:focus{
  border-bottom-color: var(--footer-accent);
}

/* Disclaimer paragraph under the field */
.site-footer .gform_wrapper .gfield_description,
.site-footer .gform_wrapper .gfield_message,
.site-footer .gform_wrapper .gfield_consent_description{
  color: var(--footer-muted);
  font-size: 10px;
  line-height: 1.6;
  margin-top: 14px;
}

.site-footer .gform_wrapper .gfield_description a {
	color: var(--twt-red);
	font-size: 10px;
}

/* Submit area */
.site-footer .gform_wrapper.gravity-theme .gform_footer,
.site-footer .gform_wrapper.gravity-theme .gform_page_footer{
  padding: 10px 0 0;
  margin: 10px 0 0;
  border: 0;
  display: flex;
  justify-content: flex-end;
}

/* Red text-button aligned right */
.site-footer .gform_wrapper .gform_footer .gform_button{
  background: transparent !important;
  border: 0 !important;
  color: var(--footer-accent) !important;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .03em;
  padding: 0;
  height: auto;
  line-height: 1;
  border-radius: 0;
  box-shadow: none !important;
  cursor: pointer;
  position: relative;
}

/* subtle interaction */
.site-footer .gform_wrapper .gform_footer .gform_button:hover{
  opacity: .9;
  transform: translateY(-1px);
}
.site-footer .gform_wrapper .gform_footer .gform_button:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(227,30,36,.28);
}

/* Validation + confirmation styles (dark footer friendly) */
.site-footer .gform_wrapper .validation_message,
.site-footer .gform_wrapper .gfield_validation_message{
  background: transparent;
  color: #ffb4b4;
  border: 0;
  padding: 6px 0 0;
  font-size: 10px;
}
.site-footer .gform_confirmation_message{
  color: var(--footer-text);
  margin-top: 12px;
}

/* Optional: thin divider under label across full width */
.site-footer .gform_wrapper .gfield--type-email{
  padding-bottom: 6px;
  margin-bottom: 0px;
}
.site-footer .gform_wrapper .gfield--type-email input{
  border-bottom: 0; /* avoid double line if using the optional divider */
}

.site-footer .footer-widget.gform_widget {
	background-color: #ff5100;
    padding: 2rem;
    border-radius: 2rem 0rem 2rem 0rem;
}

.footer-widget.gform_widget .gform-theme--foundation .gform_footer, 
.footer-widget.gform_widget .gform-theme--foundation .gform_page_footer {
	margin-top: 0;
}

.footer-widget.gform_widget .gform-theme--foundation .gform_fields {
	display: block;
}

.footer-widget.gform_widget .gform-theme--foundation .gform_footer, 
.footer-widget.gform_widget .gform-theme--foundation .gform_page_footer {
    margin-top: 0;
    display: block;
    width: 100%;
}

.footer-widget.gform_widget input#gform_submit_button_1 {
	text-transform: uppercase;
	font-weight: 700;
}

.twt-account table.shop_table.wishlist_table.wishlist_view {
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.twt-account table.shop_table.wishlist_table thead th {
	box-shadow: none;
	background: #ffffff;
	color: #000;
	font-weight: 700;
	font-size: .85em;
	border: none;
}

.wishlist-title-container {
    display: none;
}

.woocommerce nav.woocommerce-pagination ul li,
.woocommerce nav.woocommerce-pagination ul {
	border: none !important;
}

/* WooCommerce pagination → chevrons */
:root{ --twt-red:#410099; --twt-text:#111; --twt-line:#e5e7eb; }

.woocommerce nav.woocommerce-pagination ul{
  display:flex; gap:6px; align-items:center;
}

/* buttons */
.woocommerce nav.woocommerce-pagination ul li a.page-numbers,
.woocommerce nav.woocommerce-pagination ul li span.page-numbers{
  display:inline-flex; align-items:center; justify-content:center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border: 1px solid var(--twt-line);
  border-radius: 8px;
  text-decoration:none;
  color: var(--twt-text);
  background:#fff;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}

/* current page */
.woocommerce nav.woocommerce-pagination ul li span.page-numbers.current{
  border-color: var(--twt-red);
  color: var(--twt-red);
  font-weight: 800;
}

.woocommerce nav.woocommerce-pagination ul {
	margin-top: 20px;
}

/* hover */
.woocommerce nav.woocommerce-pagination ul li a.page-numbers:hover{
  border-color: var(--twt-red);
  color: var(--twt-red);
}

/* draw chevrons (prev/next) */
.twt-chevron{
  width: 9px; height: 9px; display:inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.twt-chevron--right{ transform: rotate(-45deg); }
.twt-chevron--left { transform: rotate(135deg); }

/* hide the accessible labels visually, keep for screen readers */
.screen-reader-text{
  position:absolute !important;
  width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); border:0;
}

.woocommerce nav.woocommerce-pagination ul li a.next.page-numbers {
	border: none !important;
}