/*
Theme Name: Twenty Thirteen Child
Theme URI: https://wordpress.org/themes/twentythirteen/
Template: twentythirteen
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Tags: blog,one-column,two-columns,right-sidebar,custom-header,custom-menu,editor-style,featured-images,footer-widgets,microformats,post-formats,rtl-language-support,sticky-post,translation-ready,accessibility-ready,block-patterns
Version: 4.5.1774601590
Updated: 2026-03-27 08:53:10

*/

/* ================================================
   GETGABS-STYLE HEADER – Custom CSS
   ================================================ */

/* ── CSS Variables ── */
:root {
  --gg-green-dark:   #1a6b4a;
  --gg-green-btn:    #0d3d29;
  --gg-green-hover:  #145c3e;
  --gg-nav-color:    #1a1a1a;   /* black nav links */
  --gg-nav-hover:    #000000;
  --gg-announce-bg:  #f0faf7;   /* mint/light teal */
  --gg-announce-txt: #1a1a1a;
  --gg-header-bg:    #ffffff;
  --gg-border:       #e0e0e0;
  --gg-font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Reset parent theme header styles ── */
#masthead.gg-site-header {
  background: var(--gg-header-bg) !important;
  padding: 0 !important;
  border-bottom: 1px solid var(--gg-border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

/* ================================================
   ANNOUNCEMENT BAR
   ================================================ */
.gg-announcement-bar {
  background-color: var(--gg-announce-bg);
  border-bottom: 1px solid #c8e8df;
  padding: 8px 0;
  font-family: var(--gg-font);
  font-size: 14px;
  color: var(--gg-announce-txt);
}

.gg-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 8px;
  flex-wrap: nowrap;
}

.gg-announcement-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--gg-announce-txt);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  text-align: center;
  justify-content: center;
}

.gg-social-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1;
}

.gg-announcement-btn {
  display: inline-block;
  background-color: var(--gg-green-dark);
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.gg-announcement-btn:hover {
  background-color: var(--gg-green-hover);
  color: #fff !important;
}

.gg-announcement-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 4px 6px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
}

.gg-announcement-close:hover {
  color: #222;
  background: rgba(0,0,0,0.06);
}

/* ================================================
   MAIN HEADER / NAVBAR
   ================================================ */
#masthead.gg-site-header .navbar {
  background: var(--gg-header-bg) !important;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 68px;
}

/* ── Logo ── */
.gg-logo {
  padding: 10px 0;
  margin-right: 24px;
  text-decoration: none !important;
}

.gg-logo img,
.gg-logo .custom-logo-link img,
.gg-logo .custom-logo,
a.custom-logo-link img,
img.custom-logo {
  height: 44px !important;
  width: auto !important;
  max-height: 44px !important;
  object-fit: contain !important;
  display: block !important;
}

.gg-logo .custom-logo-link,
a.custom-logo-link {
  display: flex !important;
  align-items: center !important;
  line-height: 1;
}

.gg-logo-svg {
  display: block;
  line-height: 1;
}

/* ── Primary Nav Links ── */
.gg-nav-menu {
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gg-nav-menu .nav-item {
  position: relative;
}

.gg-nav-link {
  color: var(--gg-nav-color) !important;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none !important;
  white-space: nowrap;
}

.gg-nav-link:hover,
.gg-nav-link:focus {
  color: var(--gg-nav-hover) !important;
  background-color: rgba(0, 0, 0, 0.05);
}

.gg-nav-link.active {
  color: var(--gg-nav-hover) !important;
  font-weight: 600;
}

/* ── Dropdown Menu ── */
.gg-dropdown {
  border: 1px solid var(--gg-border);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 6px 0;
  margin-top: 4px !important;
  min-width: 180px;
}

.gg-dropdown-item {
  font-size: 14px;
  color: #333 !important;
  padding: 8px 16px;
  transition: background 0.15s;
}

.gg-dropdown-item:hover {
  background-color: var(--gg-announce-bg);
  color: var(--gg-green-dark) !important;
}

/* ── Header Buttons ── */
.gg-header-btns {
  flex-shrink: 0;
  margin-left: auto;
}

.gg-btn-outline {
  color: #333 !important;
  background: #fff;
  border: 1.5px solid #ccc !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.gg-btn-outline:hover {
  border-color: var(--gg-green-dark) !important;
  color: var(--gg-green-dark) !important;
  background: var(--gg-announce-bg);
}

.gg-btn-primary {
  color: #fff !important;
  background-color: var(--gg-green-btn) !important;
  border: 1.5px solid var(--gg-green-btn) !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.gg-btn-primary:hover {
  background-color: var(--gg-green-hover) !important;
  border-color: var(--gg-green-hover) !important;
  box-shadow: 0 2px 8px rgba(26,107,74,0.25);
  color: #fff !important;
}

/* ── Mobile Toggler ── */
.gg-toggler {
  padding: 6px 10px;
}

.gg-toggler:focus {
  box-shadow: 0 0 0 2px rgba(26,107,74,0.25);
}

.gg-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231a6b4a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ================================================
   RESPONSIVE – MOBILE (max 991px)
   ================================================ */
@media (max-width: 991.98px) {

  .gg-announcement-text {
    font-size: 12px;
  }

  .gg-announcement-btn {
    font-size: 11px;
    padding: 4px 10px;
  }

  #masthead.gg-site-header .navbar {
    min-height: 58px;
    padding: 6px 0;
  }

  #ggMainNav {
    background: #fff;
    border-top: 1px solid var(--gg-border);
    padding: 10px 0;
    margin-top: 4px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  }

  .gg-nav-menu {
    flex-direction: column;
    gap: 0;
  }

  .gg-nav-link {
    padding: 10px 16px !important;
    border-radius: 0;
    font-size: 15px;
  }

  .gg-header-btns {
    flex-direction: column;
    padding: 10px 16px;
    gap: 8px !important;
    align-items: stretch !important;
    margin-left: 0;
  }

  .gg-btn-outline,
  .gg-btn-primary {
    text-align: center;
    width: 100%;
    padding: 10px 18px;
  }

  .gg-dropdown {
    position: static !important;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--gg-announce-bg);
    border-radius: 0;
    margin: 0 0 0 12px !important;
  }
}

/* ================================================
   RESPONSIVE – TABLET (max 767px)
   ================================================ */
@media (max-width: 767.98px) {

  .gg-announcement-inner {
    padding: 0 32px 0 8px;
  }

  .gg-announcement-text {
    font-size: 12px;
    text-align: left;
    justify-content: flex-start;
  }

  .gg-social-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ================================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ================================================ */
@media (max-width: 480px) {

  .gg-announcement-bar {
    padding: 6px 0;
  }

  .gg-announcement-text {
    font-size: 11px;
  }

  .gg-announcement-btn {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 4px;
  }

  .gg-logo img,
  .gg-logo .custom-logo-link img,
  .gg-logo .custom-logo,
  a.custom-logo-link img,
  img.custom-logo,
  .gg-logo-svg svg {
    height: 32px !important;
    max-height: 32px !important;
    width: auto !important;
  }
}

/* ================================================
   STICKY HEADER SHADOW (when scrolled)
   ================================================ */
.sticky-top {
  z-index: 1030;
}

.gg-site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.12) !important;
}

/* ── Accessibility: Skip Link ── */
.skip-link {
  position: absolute;
  top: -999px;
  left: -999px;
}
.skip-link:focus {
  top: 6px;
  left: 6px;
  z-index: 9999;
  background: var(--gg-green-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
}

/* ================================================
   FOOTER
   ================================================ */

:root {
  --gg-footer-bg:        #0d3d29;
  --gg-footer-bg-light:  #145235;
  --gg-footer-text:      #c8e6dc;
  --gg-footer-link:      #7ec8aa;
  --gg-footer-link-hover:#ffffff;
  --gg-footer-border:    rgba(255,255,255,0.1);
}

.gg-footer {
  background-color: var(--gg-footer-bg);
  color: var(--gg-footer-text);
  font-family: var(--gg-font);
  margin-top: 0;
}

/* ── Footer Top ── */
.gg-footer-top {
  padding: 56px 0 40px;
}

/* ── Brand / Logo ── */
.gg-footer-logo img,
.gg-footer-logo .custom-logo-link img,
.gg-footer-logo .custom-logo,
.gg-footer-logo-img {
  height: 44px !important;
  width: auto !important;
  object-fit: contain;
}

.gg-footer-tagline {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--gg-footer-text);
  margin-bottom: 20px;
  max-width: 300px;
}

/* ── Newsletter Box ── */
.gg-newsletter-box {
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px 14px;
  max-width: 300px;
}

.gg-newsletter-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.gg-country-select {
  width: 130px;
  min-width: 110px;
  flex-shrink: 0;
  font-size: 13px;
  padding: 7px 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
}

.gg-phone-input {
  flex: 1;
  font-size: 13px;
  padding: 7px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #333;
}

.gg-phone-input:focus,
.gg-country-select:focus {
  border-color: var(--gg-green-dark);
  box-shadow: 0 0 0 2px rgba(26,107,74,0.15);
  outline: none;
}

.gg-newsletter-btn {
  background-color: var(--gg-green-dark);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  display: block;
}

.gg-newsletter-btn:hover {
  background-color: var(--gg-green-hover);
}

.gg-newsletter-brand small {
  font-size: 11px;
  color: #aaa;
  font-style: italic;
}

/* ── Footer Column Headings ── */
.gg-footer-heading {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* ── Footer Links ── */
.gg-footer-links {
  margin: 0;
  padding: 0;
}

.gg-footer-links li {
  margin-bottom: 10px;
  list-style: none;
}

.gg-footer-links li a {
  color: var(--gg-footer-link);
  font-size: 13.5px;
  text-decoration: none !important;
  transition: color 0.2s;
  line-height: 1.5;
}

.gg-footer-links li a:hover {
  color: var(--gg-footer-link-hover);
}

/* ── Shopify Button ── */
.gg-shopify-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff !important;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.gg-shopify-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ── Meta Badge ── */
.gg-meta-badge {
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.gg-meta-badge img {
  max-height: 60px;
  width: auto;
}

.gg-meta-badge-default {
  display: flex;
  align-items: center;
}

/* ── Divider ── */
.gg-footer-divider {
  border-top: 1px solid var(--gg-footer-border);
  margin: 0 24px;
}

/* ── Footer Bottom Bar ── */
.gg-footer-bottom {
  padding: 18px 0;
}

.gg-copyright {
  font-size: 13.5px;
  color: var(--gg-footer-text);
}

.gg-copyright a {
  color: var(--gg-footer-link);
  text-decoration: none;
}

.gg-copyright a:hover {
  color: #fff;
}

/* ── Social Icons ── */
.gg-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--gg-footer-text) !important;
  text-decoration: none !important;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.gg-social-link:hover {
  border-color: #fff;
  color: #fff !important;
  background: rgba(255,255,255,0.1);
}

/* ================================================
   FOOTER RESPONSIVE
   ================================================ */

@media (max-width: 991.98px) {
  .gg-footer-top {
    padding: 40px 0 28px;
  }
  .gg-newsletter-box {
    max-width: 100%;
  }
  .gg-footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .gg-footer-top {
    padding: 32px 0 24px;
  }
  .gg-footer-bottom .d-flex {
    justify-content: center !important;
  }
  .gg-copyright {
    text-align: center;
  }
  .gg-meta-badge {
    min-width: unset;
  }
  .gg-newsletter-inputs {
    flex-direction: column;
  }
  .gg-country-select {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .gg-footer-heading {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .gg-footer-links li a {
    font-size: 13px;
  }
  .gg-shopify-btn {
    width: 100%;
    justify-content: center;
  }
}
