/*
 Theme Name: GeneratePress Child
 Description: Child theme for GeneratePress
 Author: Timothy
 Template: generatepress
 Version: 1.0
*/

/* =========================================
   SITE CSS (GPP MIGRATION)
   ========================================= */

/* Top red utility bar (do not modify) */

.wp-header-topbar {
  background: #dd3936;
  color: #fff;
  font-size: 14.5px;
}

.wp-header-topbar-inner {
  max-width: 1400px;
  max-height: 35px;
  margin: 0 auto;
  padding: 8px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-header-topbar .fa-phone {
  transform: scaleX(-1);
}

.wp-header-topbar a {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
}

.wp-header-topbar i {
  margin-right: 5px;
}

.wp-header-right img {
  max-height: 20px;
}

.wp-header-left {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .wp-header-topbar {
    display: none;
  }
}

/* Top red utility bar (do not modify) */

/* =========================================
   FORCE HEADER BACKGROUND TO BLACK
   ========================================= */

/* Entire header area */
.site-header,
.inside-header,
.main-navigation,
.inside-navigation,
.header-widget,
.header-bar {
    background-color: #000 !important;
}

/* Prevent bleed-through from body */
.site-header * {
    background-color: transparent;
}

.main-navigation,
.inside-navigation {
  background: #000 !important;
}

/* Logo size */
.site-logo img,
.custom-logo-link img {
  max-width: 220px; /* change this number */
  height: auto;
}

@media (max-width: 768px) {
  .site-logo img,
  .custom-logo-link img {
    max-width: 160px;
  }
}

/* Make the header widget container full-width */
.header-widget,
.header-widget .widget,
.header-widget .widget_block {
  width: 100% !important;
  max-width: none !important;
}

/* Make FiboSearch wrapper wider */
.header-widget .dgwt-wcas-search-wrapp {
  width: 100% !important;
  max-width: 600px !important;  /* <-- set your desired width here */
  margin: 0 auto !important;
}

/* Ensure inner pieces stretch */
.header-widget .dgwt-wcas-search-form,
.header-widget .dgwt-wcas-sf-wrapp,
.header-widget .dgwt-wcas-search-input {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}



/* ===============================
   UBERMENU – GENERATEPRESS SAFE CSS
   =============================== */

/* Center top-level items */
.ubermenu-item-level-0 {
  text-align: center;
}

/* ---------------------------------
   DESKTOP (match Divi behavior)
---------------------------------- */
@media (min-width: 960px) {

  /* Evenly distribute top-level menu items */
  ul.ubermenu-nav > li.ubermenu-item {
    width: 20%;
    text-align: center;
  }


  /* Hide submenu arrows on desktop */
  .ubermenu-sub-indicator {
    display: none !important;
  }
}

/* Force top-level menu links to fill their 20% column and center text */
.ubermenu-item-level-0 > .ubermenu-target {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}


/* ---------------------------------
   MOBILE
---------------------------------- */
@media (max-width: 959px) {

  /* Ensure menu drops cleanly under header */
  .ubermenu.ubermenu-main {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  /* Remove background images from submenus */
  .ubermenu-submenu {
    background-image: none !important;
  }
}

/* ---------------------------------
   MEGA MENU CLEANUP
---------------------------------- */

/* Hide column labels like Divi */
.ubermenu-column-label {
  display: none !important;
}

/* ---------------------------------
   MOBILE TOGGLE STABILITY
---------------------------------- */

.ubermenu-responsive-toggle {
  position: relative;
  z-index: 40;
}

.ubermenu-responsive-toggle-align-right {
  float: none !important;
}

/* =========================================
   UBERMENU – FORCE UNIFORM TOP-LEVEL STYLING
   ========================================= */

/* Normalize ALL top-level menu items */
.ubermenu-item-level-0 > .ubermenu-target {
  font-size: 15px !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  color: #ffffff !important;
  background: #000000 !important;
  letter-spacing: 0.5px;
}


/* Hover / active state */
.ubermenu-item-level-0 > .ubermenu-target:hover,
.ubermenu-item-level-0.ubermenu-active > .ubermenu-target {
  color: #f0dc0e !important;
  background-color: #111111 !important;
}

/* Remove ALL separators, gradients, borders */
.ubermenu,
.ubermenu-nav,
.ubermenu-item,
.ubermenu-item-level-0,
.ubermenu-target,
.ubermenu-column,
.ubermenu-row,
.ubermenu-submenu {
  border: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

/* Kill submenu arrows */
.ubermenu-sub-indicator {
  display: none !important;
}

/* Kill GeneratePress menu toggle (UberMenu handles mobile) */
.menu-toggle {
  display: none !important;
}

/* Kill GeneratePress Woo cart (exact match) */
.menu-bar-items .wc-menu-item {
  display: none !important;
}


/* Hide UberMenu toggle on desktop */
@media (min-width: 960px) {
  a.ubermenu-responsive-toggle {
    display: none !important;
  }
}


/* Center UberMenu mobile toggle */
.ubermenu-responsive-toggle {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}
.ubermenu-responsive-toggle .ubermenu-responsive-toggle-title,
.ubermenu-responsive-toggle .ubermenu-responsive-toggle-icon {
  display: inline-block !important;
  float: none !important;
  vertical-align: middle;
}

/* UberMenu mobile toggle – match menu styling */
.ubermenu-responsive-toggle {
  background: #000 !important;
  color: #f0dc0e !important;
  border: none !important;
  box-shadow: none !important;
  padding: 14px 0 !important;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Icon + text */
.ubermenu-responsive-toggle,
.ubermenu-responsive-toggle * {
  color: #f0dc0e !important;
}

/* ===============================
   UBERMENU MOBILE PANEL FIX
   =============================== */

@media (max-width: 959px) {

  /* Add side padding to the mobile menu panel */
  .ubermenu.ubermenu-main {
    padding-left: 30px !important;
    padding-right: 30px !important;
    box-sizing: border-box;
  }

  /* Center ALL mobile menu items */
  .ubermenu.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
    text-align: center !important;
    justify-content: center !important;
  }

  /* Ensure text itself is centered */
  .ubermenu.ubermenu-main .ubermenu-target-title {
    display: block;
    width: 100%;
    text-align: center !important;
  }
}

/* ===============================
   UBERMENU RESPONSIVE PANEL: CONTAIN + LEFT ALIGN SUBMENUS
   =============================== */
@media (max-width: 959px) {

  /* 1) Make the responsive "panel" (black area) the width reference */
  .ubermenu.ubermenu-main {
    max-width: 1200px;           /* set to whatever your black box width should be */
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
    position: relative !important;
  }

  /* Your existing padding is fine */
  .ubermenu.ubermenu-main {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  /* 2) Ensure the responsive menu panel itself doesn't overflow that width */
  .ubermenu.ubermenu-main .ubermenu-nav {
    width: 100% !important;
    box-sizing: border-box;
  }

  /* 3) Force ALL submenus inside the responsive panel to be 100% of the panel */
  .ubermenu.ubermenu-main .ubermenu-submenu {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
  }

  /* 4) Left align submenu content (your issue #2) */
  .ubermenu.ubermenu-main .ubermenu-submenu-content,
  .ubermenu.ubermenu-main .ubermenu-submenu .ubermenu-target,
  .ubermenu.ubermenu-main .ubermenu-submenu .ubermenu-target-title {
    text-align: left !important;
    justify-content: flex-start !important;
  }

  /* 5) OPTIONAL: keep top-level items centered, but ONLY top-level */
  .ubermenu.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
    text-align: center !important;
    justify-content: center !important;
  }
  .ubermenu.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target .ubermenu-target-title {
    text-align: center !important;
  }
}

/* ======================================
   RESPONSIVE TOGGLE: OVERLAY MODE
   ====================================== */
@media (max-width: 959px) {

  /* Make the menu float over content */
  .ubermenu.ubermenu-main {
    position: absolute !important;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #000;
  }

  /* Prevent page jump */
  body {
    position: relative;
  }
}

/* =========================================================
   REMOVE GPP CONTENT PADDING ABOVE FULL-WIDTH SLICK
   ========================================================= */

/* pull slider up over the theme padding */
.wpsisac-slick-carousal-wrp {
    margin-top: -40px;
}

/* desktop GPP padding is larger */
@media (min-width: 769px) {
    .wpsisac-slick-carousal-wrp {
        margin-top: -60px;
    }
}



/* =========================================================
   WILD PLANET — FULL WIDTH SLICK (EXACT 5 SLIDES)
   ========================================================= */

/* full-width black band */
.wpsisac-slick-carousal-wrp {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #000;
    padding: 32px 0;
    box-sizing: border-box;
}

/* DO NOT constrain slick width — let JS handle it */
.wpsisac-slick-carousal-wrp .wpsisac-slick-carousal {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

/* critical: no padding anywhere inside slick */
.wpsisac-slick-carousal-wrp .slick-list,
.wpsisac-slick-carousal-wrp .slick-track {
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
}

/* allow slick to calculate slide widths correctly */
.wpsisac-slick-carousal-wrp .slick-track {
    display: flex !important;
}

/* DO NOT force slide width — slick already knows 5 */
.wpsisac-slick-carousal-wrp .slick-slide {
    box-sizing: border-box;
}

/* clean images */
.wpsisac-slick-carousal-wrp .wpsisac-image-slide-wrap {
    background: transparent;
    padding: 0;
    border: none;
}

.wpsisac-slick-carousal-wrp img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* arrows */
.wpsisac-slick-carousal-wrp .slick-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.wpsisac-slick-carousal-wrp .slick-arrow svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.wpsisac-slick-carousal-wrp .slick-arrow:hover {
    background: #dd3936;
}

/* mobile */
@media (max-width: 768px) {
    .wpsisac-slick-carousal-wrp {
        padding: 20px 0;
    }
}

/* =========================================================
   ARROWS — DIVI-STYLE COMPACT DARK BUTTON
   ========================================================= */

.wpsisac-slick-carousal-wrp .slick-arrow {
    width: 40px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55) !important;
    border-radius: 2px; /* Divi is barely rounded */
    opacity: 1;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* left arrow */
.wpsisac-slick-carousal-wrp .slick-prev {
    left: 10px;
}

/* right arrow */
.wpsisac-slick-carousal-wrp .slick-next {
    right: 10px;
}

/* arrow icons */
.wpsisac-slick-carousal-wrp .slick-arrow svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

/* no hover animation — Divi style */
.wpsisac-slick-carousal-wrp .slick-arrow:hover,
.wpsisac-slick-carousal-wrp .slick-arrow:focus {
    background: rgba(0,0,0,0.55) !important;
}


/* =========================================
   HOMEPAGE — SINGLE RAIL SYSTEM
   ========================================= */

/* GLOBAL RAIL */
.home-rail {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.home-rail img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   INTRO
   ========================================= */

.home-intro {
  text-align: center;
}

.home-lead {
  font-size: 1.05rem;
  line-height: 1.6;
}

.home-intro h1 {
  font-size: 2rem;
  margin: 10px 0;
}

.home-intro h2 {
  font-size: 1.7rem;
  margin: 10px 0;
}

.home-policies {
  color: #d40000;
  font-size: 0.95rem;
  margin-top: 30px;
}

/* =========================================
   AUDIO BAR — EXACT RAIL WIDTH (PIXEL-PERFECT)
   ========================================= */

.home-audio-divi {
  margin: 80px 0;
}

/* Purple bar — NO padding */
.audio-rail {
  background: linear-gradient(135deg, #a300b2, #9c27b0);
  box-sizing: border-box;
}

/* Padding lives HERE */
.audio-inner {
  padding: 48px 0 36px; /* NO horizontal padding */
  text-align: center;
}

/* Title */
.audio-inner h3 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Meta */
.audio-inner span {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 18px;
}

/* Audio */
.audio-inner audio {
  width: 100%;
  max-width: 700px;
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 600px) {
  .home-audio-divi {
    margin: 60px 0;
  }

  .audio-inner {
    padding: 36px 0 28px;
  }

  .audio-inner h3 {
    font-size: 1.15rem;
  }
}



/* =========================================
   GALLERY
   ========================================= */

.home-gallery {
  margin: 0;
}

/* HERO */
.gallery-hero {
  margin-bottom: 40px;
}

/* 2 COLUMN */
.gallery-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* 3 COLUMN */
.gallery-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* 4 COLUMN */
.gallery-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .gallery-two {
    grid-template-columns: 1fr;
  }

  .gallery-three,
  .gallery-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-three,
  .gallery-four {
    grid-template-columns: 1fr;
  }
}









/* =====================================================
 * WPM – Band A–Z & Subcategory Link Styling
 * Divi + GeneratePress safe
 * ===================================================== */

/* Remove underline from band & alpha links */
.wooas .alphabets a,
.sub-categories a,
.subcategory-table a {
    text-decoration: none;
}

/* Optional hover underline */
.wooas .alphabets a:hover,
.sub-categories a:hover,
.subcategory-table a:hover {
    text-decoration: underline;
}

/* Disabled alpha letters */
.wooas .alphabets a.letter-disabled {
    text-decoration: none;
    opacity: 0.35;
    pointer-events: none;
}

/* Remove indentation but KEEP bullet dots */
.wpm-az-wrap ul.sub-categories {
    margin-left: 0;
    padding-left: 0;
    list-style-position: inside;
}

/* Prevent li from re-indenting */
.wpm-az-wrap ul.sub-categories li {
    margin-left: 0;
    padding-left: 0;
}

/* Band links – Divi blue */
.wpm-az-wrap ul.sub-categories a {
    color: #2ea3f2;
    text-decoration: none;
}

/* =====================================================
   WPM – Band Subcategories (Column-major, responsive)
   ===================================================== */

.band-subcategory-list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;

    column-count: 4;
    column-gap: 22px;
}

.band-subcategory-list li {
    break-inside: avoid;
    padding-bottom: 8px;
}

.band-subcategory-list a {
    color: #2ea3f2;
    text-decoration: none;
}

.band-subcategory-list a:hover {
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 1024px) {
    .band-subcategory-list {
        column-count: 2;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .band-subcategory-list {
        column-count: 1;
    }
}



/* Absolute safety net: no FiboSearch dropdowns or messages */
.dgwt-wcas-suggestions-wrapp,
.dgwt-wcas-autocomplete,
.dgwt-wcas-no-results {
    display: none !important;
}


/* =========================================================
   RESET: do NOT flex entry-content
   ========================================================= */

.woocommerce-archive-wrapper .entry-content {
  display: block;
}

/* =========================================================
   STRUCTURE wc-column-container WITH CSS GRID
   ========================================================= */

#wc-column-container {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "pagination pagination"
    "count sort"
    "alpha alpha"
    "products products";
}

/* ---------------------------------------------------------
   MAP ELEMENTS TO GRID AREAS
   --------------------------------------------------------- */

/* Top numeric pagination */
#wc-column-container > .woocommerce-pagination:first-of-type {
  grid-area: pagination;
  text-align: center;
  margin: 10px 0 6px;
}

/* Result count (left) */
#wc-column-container > .woocommerce-result-count {
  grid-area: count;
  margin: 0;
  align-self: center;
}

/* Sort dropdown (right) */
#wc-column-container > .woocommerce-ordering {
  grid-area: sort;
  margin: 0;
  justify-self: end;
}

/* Alphabet bar */
#wc-column-container > .wpm-alpha-wrap {
  grid-area: alpha;
  margin: 6px 0 14px;
}

/* Product grid */
#wc-column-container > ul.products {
  grid-area: products;
}

/* ---------------------------------------------------------
   HEADER + BREADCRUMBS (LEAVE THEM ALONE)
   --------------------------------------------------------- */

.woocommerce-breadcrumb {
  margin-bottom: 8px;
}

.woocommerce-products-header {
  margin-bottom: 10px;
}

/* ---------------------------------------------------------
   MOBILE STACKING
   --------------------------------------------------------- */

@media (max-width: 768px) {
  #wc-column-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "pagination"
      "count"
      "sort"
      "alpha"
      "products";
  }

  #wc-column-container > .woocommerce-ordering {
    justify-self: start;
  }
}




/* =================================================
   WOO SHOP – DIVI SPACING MATCH (GeneratePress)
   ================================================= */

/* ---- Content wrapper spacing ---- */
.site-content {
    padding-top: 0;
}

/* ---- Breadcrumbs ---- */
.woocommerce-breadcrumb {
    margin-bottom: 10px;
}

/* ---- Title block ---- */
.woocommerce-products-header {
    margin-bottom: 6px;
}

.woocommerce-products-header h1 {
    margin-bottom: 4px;
}

.woocommerce-products-header .term-description h2 {
    margin: 4px 0;
}

/* ---- Numeric pagination (top) ---- */
.woocommerce nav.woocommerce-pagination {
    margin: 6px 0 4px;
    text-align: center;
}

/* ---- Result count + sorting row ---- */
.wpm-shop-top-row {
    margin: 2px 0 6px;
    align-items: center;
}

.woocommerce-result-count {
    margin: 0;
    line-height: 1.2;
}

.woocommerce-ordering {
    margin: 0;
}

/* ---- A–Z bar ---- */
.wpm-alpha-wrap,
.wooas,
.wooas-container {
    margin-top: 4px;
    margin-bottom: 10px;
}

/* ---- Product grid pull-up ---- */
.woocommerce ul.products {
    margin-top: 0;
}

/* ---- Mobile sanity ---- */
@media (max-width: 768px) {
    .wpm-shop-top-row {
        margin: 6px 0 8px;
    }
}

/* Remove underline from WooCommerce breadcrumbs */
.woocommerce-breadcrumb a {
    text-decoration: none !important;
}

/* Optional: keep underline off on hover too */
.woocommerce-breadcrumb a:hover {
    text-decoration: none !important;
}

/* Reduce category (archive) title size */
.woocommerce-products-header__title,
.page-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* =========================================
   CATEGORY TOGGLE DESCRIPTION — SCOPED ONLY
   Applies ONLY to the specific toggle block
   ========================================= */

/* Category description text (ONLY inside toggle block) */
.woocommerce-products-header .term-description .wpm-toggle-desc,
.woocommerce-products-header .term-description .wpm-toggle-desc p,
.woocommerce-products-header .term-description .wpm-toggle-desc h2 {
    font-size: 26px;
    line-height: 1.35;
    margin-bottom: 6px;
}

/* Toggle link styling (ONLY inside toggle block) */
.woocommerce-products-header .term-description .wpm-toggle-desc a {
    color: #000000 !important;
    text-decoration: none !important;
    background-color: #ffff00;
    padding: 2px 6px;
    display: inline-block;
}

/* Keep underline off on hover (ONLY inside toggle block) */
.woocommerce-products-header .term-description .wpm-toggle-desc a:hover {
    text-decoration: none !important;
}


/* Match result count color to breadcrumbs */
.woocommerce-result-count {
    color: inherit;
}

/* Explicit match to breadcrumb color (safer) */
.woocommerce-breadcrumb,
.woocommerce-breadcrumb a {
    color: #777777;
}

.woocommerce-result-count {
    color: #777777;
}

/* =========================================
   WOOCOMMERCE PAGINATION — EXACT DIVI MATCH
   ========================================= */

.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    margin: 0;
}

/* Base pagination buttons */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #2ea3f2; /* Divi blue */
	  padding: 16px 16px;
    font-size: 17px;
    line-height: 1;
    box-shadow: none;
    font-weight: bold;
}

/* Current page */
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #ededed;
    border-color: #d5d5d5;
    color: #777777;
}

/* Hover (very subtle like Divi) */
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #ededed;
    color: #777777;
}

/* ===============================
   WOOCOMMERCE SORT DROPDOWN – DIVI STYLE (NO MARKUP)
   =============================== */

.woocommerce-ordering {
    position: relative;
}

.woocommerce-ordering select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background: #ededed;
    border: none;
    padding: 6px 22px 6px 15px;
    font-size: 12px;
    font-weight: normal;
    color: #777777;
    cursor: pointer;
}

/* Caret arrow using CSS only */
.woocommerce-ordering::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 33%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #777777;
    border-bottom: 2px solid #777777;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

/* Remove focus styles */
.woocommerce-ordering select:focus {
    outline: none;
    box-shadow: none;
}

/* Dropdown option text color */
.woocommerce-ordering select option {
    color: #777777;
}





/* Make ONLY the content area white */
.site-content {
    background: #ffffff;
}

/* Page background */
.site {
    background-color: #ffffff;
}

/* White page canvas */
body {
    background-color: #ffffff;
}

/* Keep header styling intact */
.site-header {
    background-color: inherit;
}



/* Reserved for Product Image Tweaking */





/* Product title – match size list styling */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-weight: 700;
    color: #111;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin: 8px 0 4px;
}


/* Product price */
.woocommerce ul.products li.product .price {
color: #777;
font-weight: 450;
}

/* Normalize price spacing in product grid */
.woocommerce ul.products li.product .price {
    margin-bottom: 6px !important;
}


/* SIZES SHOP PAGE */
.cust-listview-sizescontainer {
    text-align: center;
    display: block;
    margin-top: 0;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.4;
}


.cust-listview-sizescontainer .size-in-stock,
.belt-size-block .size-in-stock {
    font-weight: 700 !important;
    color: #000;
    display: inline;
}

.cust-listview-sizescontainer .size-out-stock,
.belt-size-block .size-out-stock {
	  color: #000 !important;
    opacity: 0.4;
    display: inline;
}

.cust-listview-sizescontainer .size-separator,
.belt-size-block .size-separator {
    padding: 0 5px;
    color: #666;
}

.belt-size-block {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 4px;
    white-space: normal;
}

.cust-detail-sizes {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.size-detail-label {
    font-weight: bold;
    color: #000;
}

.size-detail-note {
    font-weight: normal;
    color: #666;
}

/* Hide Select Options button */
.woocommerce ul.products li.product a.button {
    display: none !important;
}

/* VIEW PLUS SIZES – match title & size list */
.wpm-plus-available {
    margin-top: 6px;
}

.wpm-plus-link {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #111;
    text-decoration: none;
    display: inline-block;
}

.wpm-plus-link:hover {
    color: #777777;
}

/* ===============================
   PRODUCT TITLE – SINGLE PRODUCT
   =============================== */

.single-product .summary .product_title {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 0px;
}

.single-product .summary .price .amount {
    font-size: 28px;
	  font-weight: 400;
    color: #2ea3f2;
	  margin-bottom: 0px;
}



/* ==========================================
   WOOCOMMERCE VARIATIONS DROPDOWN – DIVI STYLE
   (GeneratePress compatible, no markup hacks)
   ========================================== */

.woocommerce div.product form.cart .variations select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #ededed;
    background-image:
        linear-gradient(45deg, transparent 50%, #777 50%),
        linear-gradient(135deg, #777 50%, transparent 50%);
    background-position:
        calc(100% - 14px) 50%,
        calc(100% - 9px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;

    padding: 6px 28px 6px 15px;
    border: none;
    font-size: 12px;
    color: #777;
}

/* =====================================================
   Single Product – Category links (Divi blue, no decoration)
   ===================================================== */

.single-product .product_meta a {
    color: #2ea3f2;
    text-decoration: none;
}

.single-product .product_meta a:hover {
    text-decoration: none;
}



/* ===============================
   BACK TO TOP – DIVI STYLE (snug)
   =============================== */

#wpm-back-to-top {
    position: fixed;
    right: px; /* snug to scrollbar edge */
    bottom: 120px; /* above floating cart */
    width: 40px;
    height: 40px;
    background: #999999;
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10001;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* iOS / safe-area friendly */
@supports (right: env(safe-area-inset-right)) {
    #wpm-back-to-top {
        right: calc(8px + env(safe-area-inset-right));
    }
}

/* Show button */
#wpm-back-to-top.show {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   XOO WOO SLIDING CART — FINAL FINAL DIVI MATCH
   ========================================= */

/* Product title link + Remove link — Divi blue, no hover, no underline */
.xoo-wsc-product a,
.xoo-wsc-remove {
    color: #2ea3f2 !important;
    text-decoration: none !important;
}

.xoo-wsc-product a:hover,
.xoo-wsc-remove:hover {
    color: #2ea3f2 !important;
    text-decoration: none !important;
}

/* "Your Cart", quantity line, price line, shipping text — breadcrumb grey */
.xoo-wsc-ctxt,
.xoo-wsc-price,
.xoo-wsc-shiptxt,
.xoo-wsc-price span,
.xoo-wsc-price bdi {
    color: #999;
}

/* Size / variation text — breadcrumb grey */
.xoo-wsc-product dl.variation,
.xoo-wsc-product dl.variation dt,
.xoo-wsc-product dl.variation dd {
    color: #999;
    font-weight: normal;
}

/* Subtotal — darker grey, not black */
.xoo-wsc-subtotal,
.xoo-wsc-subtotal span,
.xoo-wsc-subtotal .amount,
.xoo-wsc-subtotal bdi {
    color: #666;
    font-weight: 600;
}

/* Buttons — EXACT single product Add to Cart blue */
.xoo-wsc-footer-b {
    display: grid;
    gap: 10px;
}

/* Base button */
.xoo-wsc-footer-b .button {
    background-color: #1e73be;
    color: #ffffff;
    padding: 14px 18px;
    text-align: center;
    border-radius: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

/* Hover — slightly faded blue */
.xoo-wsc-footer-b .button:hover {
    background-color: rgba(30, 115, 190, 0.85);
    color: #ffffff;
}





/* Contact Page */
.contact-us h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.contact-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.contact-block h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.contact-block h3 i {
  color: inherit;   /* BLACK, matches text */
  font-size: 1.05em;
}

.contact-block a {
  text-decoration: none;
	color: inherit;
}

/* Mobile stack */
@media (max-width: 768px) {
  .contact-columns {
    grid-template-columns: 1fr;
  }
}

/* Privacy Policy contact info – plain text links */
.entry-content p a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

.entry-content p a:hover,
.entry-content p a:focus {
    text-decoration: none;
}

/* ==============================
   WILD PLANET – GPP FOOTER
   ============================== */

.wpm-footer {
    background: #000;
    color: #b1b1b1;
    padding: 60px 20px 30px;
    text-align: center;
}

.wpm-footer a {
    color: #ffffff;
    text-decoration: none;
}

.wpm-footer a:hover {
    text-decoration: underline;
}

/* Logo */
.wpm-footer-logo img {
    max-width: 200px;
    margin-bottom: 25px;
}

/* Social Icons */
.wpm-footer-social {
    margin-bottom: 40px;
}

.wpm-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 8px;
    border: 1px solid #444;
    border-radius: 50%;
    font-size: 18px;
}

.wpm-footer-social a {
    background-color: #f1de0c; /* yellow */
    color: #000000;           /* black icon */
    border: none;
}

.wpm-footer-social a i {
    color: #000000;
}

.wpm-footer-social a,
.wpm-footer-social a:hover,
.wpm-footer-social a:focus {
    text-decoration: none !important;
}

/* Main Grid */
.wpm-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: left;
}

.wpm-footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
}

.wpm-footer-location {
    margin-top: 30px;
}

/* WPM FOOTER – TEXT LINKS (CONTACT / HOURS / LOCATION) */
.wpm-footer-col a {
    color: inherit;
    text-decoration: none;
}

.wpm-footer-col a:hover,
.wpm-footer-col a:focus {
    text-decoration: none;
}


/* Map */
.wpm-footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
}

/* Payments */
.wpm-footer-payments img {
    max-height: 50px;
    margin: 30px auto;
    display: block;
}

/* Legal */
.wpm-footer-legal {
    font-size: 14px;
}

.wpm-footer-legal p {
    margin: 8px 0;
}

/* Footer legal links */
.wpm-footer-legal a {
    color: #f1de0c; /* Wild Planet yellow */
    text-decoration: none;
}

.wpm-footer-legal a:hover,
.wpm-footer-legal a:focus {
    text-decoration: none;
}


/* Responsive */
@media (max-width: 900px) {
    .wpm-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wpm-footer-map iframe {
        min-height: 220px;
    }
}
