/** Shopify CDN: Minification failed

Line 204:0 All "@import" rules must come first

**/
@font-face {
  font-family: 'NDOT47inspiredbyNOTHING';
  src: url('/cdn/shop/files/NDOT47inspiredbyNOTHING.woff?v=1756451272') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* ================= HEADER ================= */

.cg-header {
  position: relative;
  padding: 0 20px;
  z-index: 50;
  height: 0;
}

.cg-header-inner {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(0); /* keep horizontally centered */
  z-index: 20;
  background-color: #D5D5D6;
  border-radius: 12px !important;
  padding: 12px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

  display: flex;
  align-items: center;
  justify-content: space-between;
  

  transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;
  opacity: 1;

  /* responsive width but always centered */
  width: min(558px, 93vw);
  margin: 0;
}

/* Scroll down → hide */
.cg-header-inner.hide-down {
  transform: translateX(-50%) translateY(-200%);
  opacity: 0;
}

/* Scroll up → show */
.cg-header-inner.show-up {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* When page is scrolled, background slightly changes */
.cg-header-inner.scrolled {
  background-color: rgba(213, 213, 214, 0.98);
}

.cg-btn-icon {
  border-radius: 8px;
  border: none;
  /* padding: 10px; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cg-logo img {
  /* height: 36px; */
  display: block;
}

.cg-header-search-login-cart-icon-wrapper {
  display:flex; 
  align-items:center; 
  gap:15px;
}

@media (max-width: 768px) {
 
.cg-menu-login-desktop {
  display: none;
}
}

.cg-site-title {
  font-weight: 700;
  letter-spacing: 1px;
}

/* cart count bubble */
.cg-cart-btn {
  position: relative;
}

.cg-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #000;
  color: #fff;
  font-size: 9px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display:flex;
  justify-content: center;
  align-items: center;
}

/* ================= OVERLAY BASE ================= */

.cg-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(0);
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
    backdrop-filter 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
    visibility 0s linear 0.6s;
}

/* When active → fade in smoothly */
.cg-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  backdrop-filter: blur(10px);
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
    backdrop-filter 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
    visibility 0s;
}

/* Fallback if aria-hidden stays true */
.cg-overlay.active[aria-hidden="true"] {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Panel */
.cg-overlay-panel {
  position: relative;
  width: min(500px, 92%);
  max-width: 860px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  color: #111;
  text-align: center;
}

/* Panel slide + fade for menu */
.cg-overlay-panel.cg-panel-menu {
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  box-shadow: none;
  padding: 0;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s ease;
}

/* Animate panel open smoothly */
.cg-overlay.active .cg-overlay-panel.cg-panel-menu {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cg-overlay-footer {
  margin-bottom: 10px;
}

/* Close button top-left */
.cg-overlay-close {
  /* position: absolute;
  left: 20px;
  top: 18px; */
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #222;
}

.cg-overlay-logo {
  /* intentionally empty, style as needed */
}

/* ================= MENU STYLES ================= */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

.cg-overlay-nav {
  margin-top: 5px;
}

.cg-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
    margin-block: auto;
    padding: 32px 0;
}

.cg-menu-item a {
  font-family: compadre-regular;
  font-size: 28px;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: #111;
  display: inline-block;
  padding: 8px 0;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {

.cg-menu-item a {
    font-size: 18px !important;
  }
  .cg-menu-list {
    gap: 15px !important;
  }
}

.cg-menu-item a:hover {
  opacity: 0.7;
}

/* ================= CART STYLES ================= */

.cg-cart-title {
  margin-top: 8px;
  font-size: 20px;
  letter-spacing: 2px;
}

.cg-cart-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.cg-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cg-cart-thumb {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
}

.cg-cart-item-meta {
  text-align: left;
  flex: 1;
}

.cg-cart-item-title {
  display: block;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.cg-cart-item-qty {
  color: #666;
  font-size: 14px;
  margin-top: 4px;
}

.cg-cart-remove {
  background: none;
  border: none;
  color: #a00;
  cursor: pointer;
}

/* Buttons */
.cg-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
}

.cg-checkout {
  margin-top: 12px;
  display: inline-block;
}

/* ================= SIDE MENU (Nothing style) ================= */

.side-menu {
  position: fixed;
  top: 0;
  left: -100%;  /* hide off-screen initially */
  width: 70%;
  max-width: 320px;
  height: 100%;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(12px);
  padding: 2rem;
  transition: left 0.4s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  left: 0;  /* slide in */
}

/* Close button */
.side-menu .close-menu {
  background: transparent;
  border: none;
  font-size: 2rem;
  margin-bottom: 2rem;
  cursor: pointer;
  align-self: flex-end;
}

/* Links */
.side-menu .menu-links a {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 2rem;
  margin: 1rem 0;
  text-decoration: none;
  color: #000;
  transition: opacity 0.2s;
}

.side-menu .menu-links a:hover {
  opacity: 0.6;
}

.cg-dotlogo {
  font-weight: 700;
}

/* ================= MEDIA QUERIES ================= */

@media (max-width: 680px) {
  .cg-overlay-panel {
    padding: 28px;
    width: 96%;
  }

  .cg-menu-item a {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .cg-logo {
    width: fit-content;
  }
}

/* Only adjust spacing/width, keep centering intact */
@media (max-width: 768px) {
  .cg-header-inner {
    gap: 85px;
    width: 93vw; /* slightly wider on small screens */
  }
}

@media (max-width: 375px) {
  .cg-header-inner {
    justify-content: space-between;
    gap: 48px;
  }
}

.cg-header-inner {


  /* GLASS EFFECT */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.12)
  );
  border-radius: 16px;
  /* border: 1px solid rgba(255, 255, 255, 0.4); */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px); /* Safari */

 

  
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  opacity: 1;
}



/* Slightly stronger glass when scrolled */
.cg-header-inner.scrolled {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.25)
  );
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}


/* Perfectly center logo on mobile */
@media (max-width: 768px) {
  /* keep header full width and icons at the sides */
  .cg-header-inner {
    width: 93vw;
    justify-content: space-between;
    gap: 0;
    padding-inline: 16px;
  }

  /* remove any extra margins Shopify adds on the cart icon */
  .cg-header-inner .cg-btn-icon,
  .cg-header-inner .header__icon {
    margin: 0;
  }

  /* absolutely center the logo, independent of icon sizes */
  .cg-logo {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
  }
}
.cg-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}