/* Greedy Pigs Neon — Desktop overrides (>= 881px) */
@media (min-width: 881px) {
  /* Hide mobile-only UI */
  .gp-float,
  .gp-mobile-menu-overlay,
  .gp-mobile-submenu,
  .gp-mobile-submenu-list { display: none !important; }

  /* Basic desktop header layout */
  .gp-desktop-header { position: sticky; top: 0; z-index: 1000; background: var(--gp-bg); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gp-desktop-header-inner { max-width: 1200px; margin: 0 auto; padding: 12px 20px 0 20px; }
  .gp-desktop-topbar { display: grid; grid-template-columns: 240px 1fr; align-items: center; gap: 20px; padding-bottom: 10px; }
  .gp-desktop-logo img { max-height: 50px; height: auto; width: auto; }
  .gp-desktop-menu { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
  .gp-desktop-menu > li > a { display: inline-block; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: #fff; }
  .gp-desktop-menu > li:hover > a { box-shadow: 0 0 14px rgba(255,151,205,.35); border: 1px solid rgba(255,255,255,0.12); background: #15151c; }

  /* Mega menu row below topbar */
  .gp-mega { border-top: 1px solid rgba(255,255,255,0.08); }
  .gp-mega-menu { display: flex; gap: 16px; list-style: none; margin: 0; padding: 10px 20px; max-width: 1200px; margin-inline: auto; }
  .gp-mega-menu > li { position: relative; }
  .gp-mega-menu > li > a { display: inline-block; padding: 10px 12px; color: #fff; text-decoration: none; border-radius: 10px; }
  .gp-mega-menu > li:hover > a { background: #1b1e27; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 0 14px rgba(255,151,205,.35); }

  /* Dropdown panel */
  .gp-mega-menu > li .sub-menu {
    position: absolute; left: 0; top: calc(100% + 8px);
    background: #0f1016; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 16px; min-width: 520px;
    display: none; box-shadow: 0 10px 40px rgba(0,0,0,.5);
  }
  .gp-mega-menu > li:hover > .sub-menu { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }

  .gp-mega-menu .sub-menu li a { display: block; padding: 8px 10px; border-radius: 8px; color: #fff; text-decoration: none; }
  .gp-mega-menu .sub-menu li a:hover { background: #171923; box-shadow: 0 0 10px rgba(255,151,205,.25); }

  /* Content max-width */
  .site, .site-main, .content-area, .woocommerce, .gp-container, .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  /* Product archive: grid instead of list */
  ul.products { display: grid !important; grid-template-columns: repeat(3, minmax(0,1fr)) !important; gap: 20px !important; }
  ul.products li.product.gp-list-item { width: auto !important; margin: 0 !important; }
  .gp-list-card { height: 100%; display: grid; grid-template-rows: auto 1fr auto; }
  .gp-item-top { display: grid; grid-template-columns: 120px 1fr; gap: 14px; align-items: start; }
  .gp-item-title { font-size: clamp(16px, 1.6vw, 20px); }
  .price { color: var(--gp-pink); font-size: clamp(16px, 1.8vw, 22px); font-weight: 800; }

  /* Single product: stop using vw widths and center to 1100px */
  body.single-product div.product,
  body.single-product div.product .woocommerce-product-gallery,
  body.single-product div.product .woocommerce-product-gallery__wrapper,
  body.single-product div.product .flex-viewport {
    max-width: 1100px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Hide "mobile" chips on desktop if needed, or keep them as a filter bar */
  .gp-chipbar { position: static; top: auto; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; margin: 16px 0; }

  /* Footer spacing */
  footer { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
}

/* Safety: optional hard cap for ultrawide monitors */
@media (min-width: 1600px) {
  .gp-desktop-header-inner, .gp-mega-menu, .site, .site-main, .woocommerce { max-width: 1320px; }
}


/* === Hide mobile UI completely on desktop === */
@media (min-width: 881px) {
  #gp-mobile-panel,
  #gp-mobile-overlay,
  .gp-mobile-panel,
  .gp-mobile-overlay,
  .gp-mobile-header,
  .gp-mobile-body,
  .gp-float,
  .gp-menu-trigger {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  html.gp-mobile-open,
  body.gp-mobile-open {
    overflow: auto !important;
  }
}



/* === Kill stray mobile logo + header image on desktop === */
@media (min-width: 881px) {
  .gp-float,
  .gp-titlewrap,
  .gp-titlewrap img.custom-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* Force desktop logo sizing */
  .gp-desktop-logo img.custom-logo {
    height: 60px !important;
    width: auto !important;
    max-height: 60px !important;
    object-fit: contain !important;
  }
}



/* === Fix oversized desktop logo === */
.gp-desktop-logo img.custom-logo {
  height: 60px !important;
  width: auto !important;
  max-height: 60px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Optional: tighten spacing if the header looks tall */
.gp-desktop-topbar {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}


/* === Remove duplicate logo block from desktop header === */
.gp-desktop-logo,
.gp-desktop-logo img.custom-logo {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}


/* === Center desktop logo === */
.gp-desktop-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
}

.gp-desktop-logo-center {
  text-align: center;
}

.gp-desktop-logo-center img.custom-logo {
  height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
}

.gp-desktop-left,
.gp-desktop-right-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-desktop-left {
  justify-content: flex-start;
}


/* === Desktop-only: allow header logo to scale === */
@media (min-width: 881px) {
  /* If you're using the Site Logo (Customizer) in our desktop header */
  .gp-desktop-logo-center img.custom-logo {
    height: auto !important;       /* remove the hard 60px cap */
    max-height: 100px !important;  /* adjust to taste */
    width: auto !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
  }

  /* If you're using WordPress "Header Image" instead of Site Logo */
  .custom-header img,
  .wp-custom-header img {
    width: 100% !important;
    height: auto !important;
    max-height: 320px !important;  /* adjust this if using header image */
    object-fit: cover;
    object-position: center;
    display: block;
  }
}


/* === Hide the desktop header on mobile viewports === */
@media (max-width: 880px) {
  .gp-desktop-header {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}


/* Desktop Mega Menu Bar in Sticky Header */
@media (min-width: 881px) {

  /* Sticky header container now wraps two rows */
  .gp-desktop-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--gp-bg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* Make sure inner wrapper stacks rows */
  .gp-desktop-header-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Mega bar ALWAYS visible under top bar */
  .gp-mega {
    display: block !important;
    background: #0c0c10;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .gp-mega-menu {
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    list-style: none;
    margin: 0 auto;
    max-width: 1200px;
  }

  /* Mega menu items */
  .gp-mega-menu > li > a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    font-weight: 600;
    border-radius: 8px;
  }

  .gp-mega-menu > li:hover > a {
    background: #1b1e27;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 0 10px rgba(255,151,205,.4);
  }

  /* Dropdown panel */
  .gp-mega-menu > li .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    background: #0c0c10;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
    z-index: 99999;
  }

  .gp-mega-menu > li:hover .sub-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}


/* Hide the desktop header on mobile */
@media (max-width: 880px) {
  .gp-desktop-header { display: none !important; visibility: hidden !important; opacity: 0 !important; height: 0 !important; overflow: hidden !important; }
}

/* Desktop-only rules */
@media (min-width: 881px) {
  /* Hide mobile UI on desktop */
  .gp-float,
  .gp-mobile-overlay,
  .gp-mobile-panel,
  .gp-mobile-submenu,
  .gp-menu-trigger,
  .gp-titlewrap { display: none !important; }

  /* Sticky two-row header */
  .gp-desktop-header { position: sticky; top: 0; z-index: 9999; background: var(--gp-bg); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gp-desktop-header-inner { display: flex; flex-direction: column; gap: 0; }

  .gp-desktop-topbar { 
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; 
    padding: 10px 20px; max-width: 1200px; margin: 0 auto;
  }

  .gp-desktop-logo-center img.custom-logo {
    height: auto !important; max-height: 120px !important; width: auto !important;
    display: block !important; margin: 0 auto !important; object-fit: contain !important;
  }

  .gp-desktop-menu { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
  .gp-desktop-menu > li > a { display: inline-block; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: #fff; }
  .gp-desktop-menu > li:hover > a { box-shadow: 0 0 14px rgba(255,151,205,.35); border: 1px solid rgba(255,255,255,0.12); background: #15151c; }

  /* Mega bar visible as the second row */
  .gp-mega { background: #0c0c10; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gp-mega-menu { display: flex; gap: 16px; list-style: none; margin: 0 auto; padding: 10px 20px; max-width: 1200px; }
  .gp-mega-menu > li { position: relative; }
  .gp-mega-menu > li > a { display: inline-block; padding: 10px 12px; color: #fff; text-decoration: none; border-radius: 10px; font-weight: 600; }
  .gp-mega-menu > li:hover > a { background: #1b1e27; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 0 10px rgba(255,151,205,.4); }

  /* Dropdown panel */
  .gp-mega-menu > li .sub-menu {
    position: absolute; left: 0; top: calc(100% + 2px);
    background: #0c0c10; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 16px; display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.5); z-index: 99999;
  }
  .gp-mega-menu > li:hover .sub-menu {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
  }

  /* Content width cap */
  .site, .site-main, .woocommerce, .gp-container, .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
}


/* === Fix Mega Menu Hover Stability === */
.gp-mega-menu,
.gp-mega-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Parent list items */
.gp-mega-menu > li {
  position: relative;
  display: inline-block;
  padding: 0 15px;
}

/* Dropdown containers */
.gp-mega-menu li ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 151, 205, 0.25);
  box-shadow: 0 0 20px rgba(255, 151, 205, 0.2);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 9999;
}

/* Show submenu on hover */
.gp-mega-menu li:hover > ul,
.gp-mega-menu li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Add small invisible buffer so submenu doesn’t close too early */
.gp-mega-menu > li > ul::before {
  content: "";
  position: absolute;
  top: -12px; /* expand hover zone upward */
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

/* Dropdown links */
.gp-mega-menu li ul li a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.gp-mega-menu li ul li a:hover {
  color: #ff97cd;
}

/* Ensure dropdown stays above everything */
.gp-mega-menu li ul {
  z-index: 99999;
}


/* === Mega Menu desktop styling === */
@media (min-width: 881px) {

  /* Container layout */
  .gp-mega-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    background: #080808;
    border-top: 1px solid rgba(255,151,205,0.15);
    border-bottom: 1px solid rgba(255,151,205,0.15);
    padding: 10px 0;
  }

  /* Each menu item takes equal space */
  .gp-mega-menu > li {
    flex: 1;
    text-align: center;
    list-style: none;
    position: relative;
  }

  /* Link text */
  .gp-mega-menu > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.2s ease;
    padding: 6px 4px;
  }

  .gp-mega-menu > li > a:hover {
    color: #ff97cd;
    text-shadow: 0 0 10px rgba(255,151,205,0.6);
  }

  /* Icons above text */
  .gp-mega-menu > li > a::before {
    content: attr(data-icon);
    display: block;
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 2px;
  }

  /* Optional: slight glow when active */
  .gp-mega-menu > li.current-menu-item > a {
    color: #ff97cd;
    text-shadow: 0 0 12px rgba(255,151,205,0.5);
  }
}


@media (min-width: 881px) {
  .gp-mega-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    width: 100%;
    padding: 10px 0;
    background: #080808;
    border-top: 1px solid rgba(255,151,205,0.15);
    border-bottom: 1px solid rgba(255,151,205,0.15);
  }

  .gp-mega-menu > li {
    flex: 1;
    text-align: center;
    list-style: none;
  }

  .gp-mega-menu > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: capitalize;
    transition: all 0.2s ease;
  }

  .gp-mega-menu > li > a:hover {
    color: #ff97cd;
    text-shadow: 0 0 10px rgba(255,151,205,0.6);
  }

  /* The uploaded icon */
  .gp-mega-menu .gp-mega-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255,151,205,0.3));
    transition: transform 0.2s ease, filter 0.2s ease;
  }

  .gp-mega-menu > li > a:hover .gp-mega-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255,151,205,0.6));
  }

  /* Ensure text stays below icon */
  .gp-mega-text {
    display: block;
    line-height: 1.2;
  }
}

/* --- Clean up header + mega menu borders --- */
.gp-desktop-header,
.gp-desktop-header-inner,
.gp-mega,
.gp-mega-menu {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Keep only one bottom border under full header */
.gp-desktop-header {
  border-bottom: 1px solid rgba(255, 151, 205, 0.25); /* faint neon pink line */
}

/* Remove stray top/bottom separators from nav lists */
.gp-mega-menu li,
.gp-desktop-menu li {
  border: none !important;
}

/* Match mega menu background to site body */
.gp-mega {
  background-color: #0b0b0b !important; /* same as rest of site background */
}

/* Optional: small glow separation at bottom */
.gp-desktop-header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,151,205,0.4), transparent);
}


/* --- Keep header as is, only fix mega menu background --- */
.gp-desktop-header {
  background-color: inherit !important;
}

/* Target only the actual dropdown / mega panel area */
.gp-mega {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Sometimes the UL itself holds the black fill */
.gp-mega > ul.gp-mega-menu {
  background: transparent !important;
  background-color: transparent !important;
}

/* Menu links - keep centered white text */
.gp-mega-menu a {
  color: #ffffff !important;
  text-align: center;
  display: block;
  font-weight: 600;
}

/* Hover color for the neon effect */
.gp-mega-menu a:hover {
  color: #ff97cd !important;
}

/* Keep subtle bottom line only */
.gp-desktop-header {
  border-bottom: 1px solid rgba(255,151,205,0.3) !important;
}


/* === Desktop Mega Menu Alignment & Spacing === */
@media (min-width: 900px) {

  /* Center everything and remove weird floats */
  .gp-mega {
    display: flex;
    justify-content: center;
    background: transparent !important;
  }

  /* The UL wrapper fills the available space evenly */
  .gp-mega-menu {
    display: flex !important;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1400px; /* keeps things nicely contained */
    margin: 0 auto;
    padding: 0 20px;
    background: transparent !important;
  }

  /* Each menu item shares equal space */
  .gp-mega-menu > li {
    flex: 1;
    text-align: center;
    list-style: none;
  }

  /* Keep menu text neat and uniform */
  .gp-mega-menu a {
    display: inline-block;
    text-align: center;
    color: #fff !important;
    font-weight: 600;
    text-transform: none;
    padding: 10px 0;
    transition: color 0.2s ease;
  }

  .gp-mega-menu a:hover {
    color: #ff97cd !important; /* Neon pink hover */
  }
}

/* === Desktop Mega Menu: Top-Aligned Layout for Icons === */
@media (min-width: 900px) {
  .gp-mega {
    display: flex;
    justify-content: center;
    background: transparent !important;
  }

  .gp-mega-menu {
    display: flex !important;
    justify-content: space-evenly;
    align-items: flex-start; /* 🔥 Top align items */
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 6px; /* small bottom padding for balance */
    background: transparent !important;
  }

  .gp-mega-menu > li {
    flex: 1;
    text-align: center;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Links below icons */
  .gp-mega-menu > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* aligns text below icon */
    color: #fff !important;
    font-weight: 600;
    padding-top: 4px;
    transition: color 0.2s ease;
  }

  .gp-mega-menu > li > a:hover {
    color: #ff97cd !important;
  }

  /* Placeholder for your upcoming icons */
  .gp-mega-menu > li > a img,
  .gp-mega-menu > li > a .gp-mega-icon {
    display: block;
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
    object-fit: contain;
  }
}


@media (min-width: 900px) {
  .gp-mega-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch; /* ensures equal height */
  }

  .gp-mega-menu > li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 80px; /* 👈 sets consistent menu item height */
  }

  .gp-mega-menu > li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px; /* 👈 fixed consistent line height */
    width: 1px;
    background: rgba(255, 151, 205, 0.3);
  }

  .gp-mega-menu > li:hover::after {
    background: rgba(255, 151, 205, 0.5);
  }
}


@media (min-width: 900px) {
  .gp-desktop-cartbox {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
  }

  .gp-desktop-cart-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 151, 205, 0.1);
    border: 1px solid rgba(255, 151, 205, 0.3);
    border-radius: 10px;
    padding: 6px 14px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .gp-desktop-cart-link:hover {
    background: rgba(255, 151, 205, 0.25);
    border-color: #ff97cd;
    box-shadow: 0 0 12px #ff97cd;
  }

  .gp-cart-icon {
    font-size: 20px;
  }

  .gp-cart-count {
    color: #ff97cd;
    font-weight: 700;
  }

  .gp-cart-subtotal {
    opacity: 0.8;
    font-size: 0.9em;
  }
}

@media (min-width: 900px) {
  .gp-product-desktop {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .gp-product-gallery {
    flex: 0 0 45%;
    background: rgba(255,151,205,0.05);
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(255,151,205,0.1);
    padding: 20px;
  }

  .gp-product-summary {
    flex: 0 0 50%;
    background: rgba(255,151,205,0.05);
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(255,151,205,0.1);
    padding: 30px;
  }

  .gp-product-summary .price {
    color: #ff97cd;
    font-size: 1.6rem;
    font-weight: 700;
  }

  .gp-product-summary .single_add_to_cart_button {
    width: 100%;
    background: #ff97cd;
    color: #111;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 12px;
    transition: all .2s ease;
  }

  .gp-product-summary .single_add_to_cart_button:hover {
    background: #ffaee0;
    box-shadow: 0 0 15px #ff97cd;
  }
}


/* === GREEDY PIGS ORIGINAL BLUE RESTORE === */

:root {
  --gp-pink: #ff97cd;
  --gp-bg: #0b0b0d;
}

/* MAIN BACKGROUND */
body, html, #page, #content, .site {
  background: var(--gp-bg) !important;
  color: #ececf1 !important;
}

/* HEADER + FOOTER */
header.site-header,
.gp-desktop-header,
.gp-float,
.site-footer {
  background: var(--gp-bg) !important;
  border-color: rgba(255,151,205,0.2) !important;
  box-shadow: 0 0 20px rgba(255,151,205,0.1);
}

/* PRODUCT CARDS / PANELS */
.gp-list-item,
.gp-list-card,
.products .product,
.gp-panel,
.gp-order-box,
.gp-hours-box {
  background: #101013 !important;
  border: 1px solid rgba(255,151,205,0.1);
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(255,151,205,0.1);
  color: #ececf1 !important;
}

/* TEXT + TITLES */
h1, h2, h3, h4, .gp-section-title {
  color: var(--gp-pink) !important;
  text-shadow: 0 0 8px rgba(255,151,205,0.6);
}

/* BUTTONS */
button, .button, .gp-btn, .wp-element-button {
  background: var(--gp-pink) !important;
  color: #000 !important;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 0 15px var(--gp-pink);
  transition: all 0.25s ease;
}
button:hover, .button:hover, .gp-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* MENU LINKS */
.gp-desktop-menu a, .gp-mega-menu a {
  color: #ececf1 !important;
}
.gp-desktop-menu a:hover, .gp-mega-menu a:hover {
  color: var(--gp-pink) !important;
  text-shadow: 0 0 10px var(--gp-pink);
}
