/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how to render a web page. You may delete these comments and get started with your customizations.

By default, your stylesheet will be loaded after the theme stylesheets, which means that your rules can take precedence and override the theme CSS rules. Just write here what you want to change, you don't need to copy all your theme's stylesheet content.
*/


/* checkout buttons: */
.checkoutbtn{ /*color:;*/ /*background-color:;*/ /*border-color:;*/ }
.checkoutbtn:hover{ /*color:;*/ /*background-color:;*/ /*border-color:;*/ }


/* fixed banners: */
#fixedpanelleft{  }
#fixedpanelright{  }
#fixedpanelbottom{  }


body {
  --bg-main: #0B0B0B;
  --bg-section: #161616;
  --bg-card: #1C1C1C;
  --border-dark: #2A2A2A;
  --green-main: #00FF3C;
  --green-dark: #00C32E;
  --text-main: #E5E5E5;
  --text-muted: #B0B0B0;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', Arial, sans-serif;
}

/* HEADER */
.header {
  background: #000;
  border-bottom: 2px solid var(--green-main);
}

.logo {
  color: var(--green-main);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 2px;
}

.nav-link {
  color: var(--text-muted) !important;
}
.nav-link:hover {
  color: var(--green-main) !important;
}

/* HERO */
.hero {
  background: radial-gradient(circle, #1a1a1a, #000);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-weight: 800;
  color: var(--green-main);
}
.hero p {
  color: var(--text-muted);
}

/* BUTTON */
.btn-green {
  background: var(--green-main);
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  padding: 12px 28px;
}
.btn-green:hover {
  background: var(--green-dark);
  color: #000;
}

/* PRODUCT CARD */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 20px;
  transition: transform .2s;
}
.product-card:hover {
  transform: translateY(-5px);
}

.product-title {
  font-weight: 600;
}
.product-price {
  color: var(--green-main);
  font-size: 20px;
  font-weight: 700;
}

/* FOOTER */
.footer {
  background: #000;
  border-top: 2px solid var(--green-main);
  color: var(--text-muted);
}


/*  enter page */

/* FULLSCREEN OVERLAY */
#divInitPageLayer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100dvh; /* modern mobile support */
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  font-family: Arial, Helvetica, sans-serif;

  /* center child */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FLEX OVERLAY WRAPPER */
.age-overlay {
  width: 100%;
  padding: 20px; /* prevents edge clipping on mobile */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MODAL */
.age-modal {
  background: radial-gradient(circle at top, #111 0%, #050505 70%);
  border: 2px solid #19ff00;
  box-shadow:
    0 0 40px rgba(25, 255, 0, 0.45),
    inset 0 0 20px rgba(25, 255, 0, 0.08);
  padding: 34px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  color: #eaeaea;
  border-radius: 10px;

  /* subtle entrance */
  animation: ageFadeIn 0.35s ease-out;
}

/* LOGO */
.age-logo img {
  max-width: 220px;
  width: 100%;
  margin-bottom: 18px;
}

/* HEADING */
.age-modal h2 {
  color: #19ff00;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* TEXT */
.age-modal p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  color: #cfcfcf;
}

/* BUTTONS WRAPPER */
.age-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 16px;
}

/* BUTTON BASE */
.age-actions a {
  flex: 1;
  padding: 13px 0;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* YES BUTTON */
.btn-yes {
  background: linear-gradient(180deg, #19ff00, #12c900);
  color: #000;
  box-shadow: 0 0 14px rgba(25, 255, 0, 0.6);
}

.btn-yes:hover {
  background: linear-gradient(180deg, #1fff00, #14cc00);
  box-shadow: 0 0 22px rgba(25, 255, 0, 0.85);
}

/* NO BUTTON */
.btn-no {
  background: #141414;
  color: #aaa;
  border: 1px solid #444;
}

.btn-no:hover {
  background: #000;
  color: #fff;
  border-color: #666;
}

/* LEGAL */
.age-legal {
  font-size: 11px;
  color: #777;
  line-height: 1.5;
}

.age-legal a {
  color: #19ff00;
  text-decoration: none;
}

.age-legal a:hover {
  text-decoration: underline;
}

/* ANIMATION */
@keyframes ageFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


