/* PROMO BANNER */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    background-size: 200% 100%;
    animation: promoBannerShimmer 3s ease-in-out infinite;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    height: 36px;
    box-shadow: 0 2px 12px rgba(245,158,11,0.5);
}

@keyframes promoBannerShimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.promo-banner-text {
    text-align: center;
    letter-spacing: 0.02em;
}

.promo-banner-btn {
    background: #1a1a1a;
    color: #fbbf24;
    padding: 5px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s;
}

.promo-banner-btn:hover {
    background: #333;
}

.promo-banner-close {
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.6;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.promo-banner-close:hover {
    opacity: 1;
}

/* ===============================
   STORE CONTROLS CONTAINER BOOST
================================ */

.store-controls {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;

  margin-top: 30px;
  padding: 22px;
}

/* ==============================
   MINI STORE HERO (PERSONALITY)
============================== */

.store-mini-hero {
  position: relative;

  height: 360px; /* small but impactful */

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 120px 20px 80px 20px;

  

  background-size: cover;
  background-position: center;
}

.mini-hero-content h1 {
  margin: 0;
  font-size: 44px;
  color: white;
  letter-spacing: 0.5px;
  text-shadow: 0 8px 30px rgba(0,0,0,0.7);
}

.mini-hero-content p {
  margin-top: 12px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.store-mini-hero::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 140px;

  background: linear-gradient(
    to bottom,
    rgba(15,18,24,0) 0%,
    rgba(15,18,24,0.4) 40%,
    #0f1218 100%
  );

  pointer-events: none;
}

@media (max-width: 768px) {

  .store-mini-hero {
    height: 260px;
    padding: 110px 20px 60px;
  }

  .mini-hero-content h1 {
    font-size: 28px;
  }

  .mini-hero-content p {
    font-size: 15px;
  }

}

@media (max-width: 768px) {
  .store-header {
    padding: 140px 20px 60px 20px;
  }

  .store-header-text h1 {
    font-size: 30px;
  }
}

.mini-hero-content {
  animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

html {
  -webkit-text-size-adjust: 100%;
}

/* ==============================
   STORE HEADER (Professional)
============================== */

.store-header {
  position: relative;
  padding: 100px 20px 80px 20px;
  background: linear-gradient(rgba(15,18,24,0.15), rgba(15,18,24,0.25));
  background-size: cover;
  background-position: center;
  border-bottom: none;
}

.store-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 140px;

  background: linear-gradient(
    to bottom,
    rgba(15,18,24,0) 0%,
    rgba(15,18,24,0.5) 40%,
    #0f1218 100%
  );

  pointer-events: none;
}

.store-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.store-header-text h1 {
  font-size: 42px;
  color: white;
  text-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.store-header-text p {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Controls Row */

.store-controls {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;

     
}

.store-filter,
.store-sort {
  padding: 16px 18px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);

  background: rgba(20, 25, 35, 0.85);
  backdrop-filter: blur(10px);

  color: white;
  font-size: 15px;
  font-family: inherit;

  min-width: 180px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition: all 0.2s ease;

  appearance: none;
}

.store-search:hover,
.store-filter:hover,
.store-sort:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.4);

  box-shadow:
    0 14px 40px rgba(0,0,0,0.55),
    0 0 10px rgba(59,130,246,0.25),
    inset 0 1px 0 rgba(255,255,255,0.12);
}


.store-search {
  flex: 1;
  min-width: 280px;

  padding: 16px 18px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);

  background: rgba(20, 25, 35, 0.85); /* darker solid feel */
  backdrop-filter: blur(10px);

  color: white;
  font-size: 15px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition: all 0.2s ease;
}

.store-search:focus,
.store-filter:focus,
.store-sort:focus {
  outline: none;
  border-color: #3b82f6;
}


/* =========================================
   ALPHA LOGIN MODAL
========================================= */

.modal {
  display: none;
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  z-index: 999999;

  justify-content: center;
  align-items: center;
}

.modal-content {
  background: rgba(15, 18, 24, 0.85);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  padding: 40px;
  border-radius: 18px;

  width: 90%;
  max-width: 420px;

  color: white;

  box-shadow:
    0 25px 70px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.1);

  animation: modalFade 0.3s ease;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 25px;
}

.modal-content input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);

  background: rgba(255,255,255,0.05);
  color: white;
}

.modal-content button {
  width: 100%;
  padding: 14px;

  border-radius: 10px;
  border: none;

  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;

  font-weight: 600;
  cursor: pointer;

  transition: 0.2s ease;
}

.modal-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,99,235,0.5);
}

#closeModal {
  position: absolute;
  top: 15px;
  right: 20px;

  font-size: 24px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
}

#closeModal:hover {
  color: white;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



.account-icon {
  position: absolute;
  top: 20px;
  left: 20px;

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  box-shadow: 0 0 18px rgba(37,99,235,0.5);

  cursor: pointer;
  transition: all 0.2s ease;
}

.account-icon:hover {
  background: rgba(59,130,246,0.8);
  transform: scale(1.08);
}

.account-icon svg {
  width: 22px;
  height: 22px;
}
/* ------------------- TOP LOGO ------------------- */
/*---------------------------------------------------------------------------------------------Top Logo-----------------------*/
.sitelogo {
  position: fixed;

  top: 8px;     
  right: 16px;   

  transform: none;

  padding: 6px 10px;

  border-radius: 8px;
  z-index: 999999;

  transition: transform 0.25s ease;
}

.sitelogo:hover {

   /* Floating effect */
  transform: translateY(-8px) scale(1.04);
}

.sitelogo img {
  height: 70px;
  display: block;
}


/*---------------------------------------------------------------------------------------------MAIN------------------------*/

/* so this the font and stuff but it dont wrk on others laptops for sum reason*/
body {
  margin: 0;
  font-family: 'Poppins', sans-serif; 
  font-weight: 800;
  position: relative;
  overflow-x: hidden;

  background: #0f1218;

}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
}

/*---------------------------------------------------------------------------------------------SIDENAV------------------------*/
body.nav-open .sitelogo {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.sitelogo {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.nav-open{
  overflow: hidden;
}

/*--------------SIDE NAV LAYER?*/

.sidenav {
  position: fixed;
  top: 0;
  left: 0;

  width: 0;
  height: 100vh;

  z-index: 100000;

  overflow-x: hidden;

  /* REAL glass effect */
  background: rgba(15, 18, 24, 0.45);

  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);

  border-right: 1px solid rgba(255,255,255,0.12);

  box-shadow: 6px 0 30px rgba(0,0,0,0.6);

  padding-top: 110px;

  transition: width 0.35s ease;

  display: flex;
  flex-direction: column;
}


.sidenav ul,
.sidenav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*clean nav links*/
.sidenav a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;

  padding: 10px 16px;
  border-radius: 5px;

  transition: background 0.2s ease;
}

/*hover*/
.sidenav a:hover {
  background: rgba(255,255,255,0.12);
}

/*active item*/
.sidenav a.active {
  background: #3b82f6;
  border-radius: 0px;
}

.sidenav a.active2 {
  background: #23529d;
  border-radius: 0px;
}

.sidenav .closebtn {
  position: absolute;
  top: 16px;
  right: 16px;

  font-size: 50px;          /* normal size */
  line-height: 1;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgb(255, 255, 255);
  text-decoration: none;

  border-radius: 2px;

  background: rgba(255,255,255,0.08);

  transition: 
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;

  z-index: 10001;
}


.sidenav .closebtn:hover {
  background: rgba(255,255,255,0.15);
  color: white;

  transform: scale(1.05); /* subtle */
}


#main {
  transition: margin-left .5s;
  padding: 0;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

#overlay {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.35);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease;

  z-index: 9000;
}

body.nav-open #overlay {
  opacity: 1;
  pointer-events: auto;
}


.menuBtn {
  position: fixed;  
  top: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 9999;  
  margin-right: 55px;   

  padding: 10px;
  border-radius: 5px;
  backdrop-filter: blur(30px);

  transition: 
    transform 0.2s ease-out,
    background-color 0.2s ease-out;
}

.menuBtn.scrolled {
  background: rgba(0,0,0,0.5);
}

.menuBtn:hover {
  transform: translateY(-4px);
}

.menuBtn svg {
  transition: transform 0.2s ease-out;
}

.menuBtn:hover svg {
  transform: translateY(-2px);
}




/*---------------------------------------------------------------------------------------------BACK TO TOP------------------------*/

html{
  scroll-behavior: smooth;
}

.back-to-top{
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(100px);
  background: rgba(255,255,255,0.25);
  padding: 14px 20px;
  border-radius: 14px; 
  text-decoration: none;
  transition: 0.2s ease-out;
}

.back-to-top span{
  transition: 0.2s ease-out;
}

.back-to-top:hover{
  background-color: rgba(0, 0, 0, 0.349);
}

.back-to-top:hover span{
  transform: translateY(-4px);
}


@media (max-width: 768px){
   .container {
    flex-direction: column;
    padding: 0 16px;
   }

    .panel {
    min-height: auto;
    padding: 24px;
  }

  /* Fix logo position */
  .sitelogo {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Right stack should be vertical */
  .rightstack {
    flex-direction: column;
  }

  /* Cards should use full width */
  .newcards {
    width: 100%;
    padding: 24px;
  }

  /* Reduce font sizes */
  h1 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1rem;
  }

  /* Hide fixed quick nav on mobile */
  .quick-nav {
    display: none;
  }
}

/*-----------------------------------------------------STORE-------------------*/

/* ---------------- STORE HERO (SHORT VERSION) ---------------- */

/* ---------------- MOBILE HERO ---------------- */


@media (max-width: 768px){

  .store-hero{
    min-height: 240px;
    padding: 120px 16px 40px 16px;
  }

  .store-title{
    font-size: 26px;
    line-height: 1.2;
  }

  .store-subtitle{
    font-size: 14px;
    margin-top: 6px;
  }

}


.store-hero {
  position: relative;

  width: 100%;
  margin-left: 0;

  min-height: 420px;

  padding: 160px 20px 120px 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  overflow: hidden;

  background:
  linear-gradient(rgba(15,18,24,0.15), rgba(15,18,24,0.25)),
  url("images/liamspicerhomeimage.webp");

  background-size: cover;
  background-position: center;
}

.store-hero::after{
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 160px;

  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(15,18,24,0) 0%,
    rgba(15,18,24,0.25) 40%,
    rgba(15,18,24,0.6) 70%,
    #0f1218 100%
  );
}

.store-hero .store-title{
  color: #ffffff;
  text-shadow: 0 6px 25px rgba(0,0,0,0.7);
}

.store-hero .store-subtitle{
  color: rgba(255,255,255,0.9);
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.card-content h2{
  color: #ffffff;
}

.card-content p{
  color: rgba(255,255,255,0.75);
}

.store-title{
  margin: 0 0 10px 0;
  font-size: 52px;
}

.store-subtitle{
  margin: 0;
  font-size: 20px;
}


.store-grid {
  max-width: 1200px;
  margin: 30px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 20px 80px;
}

.store-card {
  position: relative;
  overflow: visible;

  background: #171b22;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: none;
  border-radius: 8px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}

.store-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.28);
  z-index: 10;
}

.card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.store-card:hover .card-img img {
  transform: scale(1.05);
}

.store-card:hover .card-img {
  opacity: 1;
}

.card-content {
  padding: 22px;
}

.card-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}


.card-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card-content p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

.explore-btn{
  display: block;
  padding: 12px 22px;
  border-radius: 10px;
  text-align: center;
  margin-top: 16px;

  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  background: #2f5cc8;   /* blue from screenshot */
  color: #ffffff;

  border: none;

  transition: all 0.25s ease;
}

.explore-btn:hover{
  background: #3b6fe0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59,111,224,0.35);
}

/*---------------------------------------------------------------------------------------------QUICK NAV------------------------*/

.quick-nav {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: center;
  gap: 24px;

  padding: 14px 20px;

background: transparent;

  z-index: 8000;
}

.quick-btn {
  color: white;
  text-decoration: none;
  font-weight: 600;
  

  padding: 12px 18px;
  border-radius: 8px;

  transition: all 0.2s ease;
}

.quick-btn.active {
  color: #60a5fa;
}

.quick-btn:hover {
  transform: translateY(-2px);
}

/*-------------------------------SCROLLLL-----------------------*/

.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;

  transform: translateX(-50%); /* THIS centers it perfectly */

  z-index: 10;
}

.scroll-arrow {
  width: 40px;
  height: 40px;

  border-right: 3px solid rgba(255,255,255,0.85);
  border-bottom: 3px solid rgba(255,255,255,0.85);

  transform: rotate(45deg);

  animation: arrowScroll 1.8s infinite;
}

@keyframes arrowScroll {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(45deg);
  }

  40% {
    opacity: 1;
  }

  70% {
    opacity: 0;
    transform: translateY(14px) rotate(45deg);
  }

  100% {
    opacity: 0;
  }
}

/* ---------------- HIDE QUICK NAV ON MOBILE (FINAL OVERRIDE) ---------------- */

@media (max-width: 768px) {

  .quick-nav {
    display: none !important;
  }

}

/*--------another scroll bar, i rlly needa break*/

.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;

  background: linear-gradient(90deg, #3b82f6, #60a5fa);

  z-index: 999999;
}




/* =========================================
   PRIMARY CTA — UNIVERSAL (Nav + Hero)
   ========================================= */

.primary-cta {

  position: relative;

  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white !important;

  font-weight: 700;
  letter-spacing: 0.4px;

  border-radius: 10px;

  box-shadow:
    0 0 18px rgba(59,130,246,0.55),
    0 8px 25px rgba(0,0,0,0.45);

  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    background 0.18s ease-out;

  animation: ctaPulse 2.6s infinite;

}

/* hover */
.primary-cta:hover {

  background: linear-gradient(135deg, #60a5fa, #3b82f6);

  box-shadow:
    0 0 35px rgba(96,165,250,0.95),
    0 15px 40px rgba(0,0,0,0.6);

}

/* pulse */
@keyframes ctaPulse {

  0% {
    box-shadow:
      0 0 15px rgba(59,130,246,0.45),
      0 8px 25px rgba(0,0,0,0.45);
  }

  50% {
    box-shadow:
      0 0 35px rgba(59,130,246,0.85),
      0 12px 35px rgba(0,0,0,0.6);
  }

  100% {
    box-shadow:
      0 0 15px rgba(59,130,246,0.45),
      0 8px 25px rgba(0,0,0,0.45);
  }

}



/* Fix CTA buttons overriding .btn */

.btn.primary-cta {

  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;

  color: white !important;

  text-decoration: none !important;

  border: none;

}

.store-card {
  display: flex;
  flex-direction: column;

  background: #171b22;
  border: 1px solid rgba(255,255,255,0.05);

  box-shadow: 0 20px 40px rgba(0,0,0,0.25);

  transition: all 0.35s ease;

  opacity: 0;
  transform: translateY(40px);
}

.card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content p {
  flex-grow: 1;
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;

  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;

  border-radius: 20px;

  letter-spacing: 0.4px;
  z-index: 20;
}

.badge.featured {
  background: #2563eb;
  color: white;
}

.badge.new {
  background: #16a34a;
  color: white;
}

.store-card.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px){

  .store-grid {
    justify-items: center; /* centers cards horizontally */
  }

  .store-card {
    width: 100%;
    max-width: 380px; /* prevents it from stretching too wide */
  }

}

@media (max-width: 768px){

  .store-card:hover {
    transform: translateY(-6px); /* remove scale on mobile */
  }

  .store-card {
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 768px){

  .store-grid{
    display: flex;
    flex-direction: column;
    align-items: center;   /* centers cards horizontally */
    justify-content: center;
    
    width: 100%;
    max-width: 100%;
    
    margin-left: auto;
    margin-right: auto;
    
    padding-left: 16px;
    padding-right: 16px;
  }

  .store-card{
    width: 100%;
    max-width: 380px;
    
    margin-left: auto;
    margin-right: auto;
  }

}

/* =========================================
   BOTTOM LEFT CORNER LOGO
   ========================================= */

.corner-logo {

  position: fixed;
   bottom: -7px;
  left: -10px;

  z-index: 9999;

  padding: 8px;

  border-radius: 10px;

  transition: all 0.25s ease;
}

.corner-logo img {

  height: 100px;
  width: auto;

  opacity: 0.85;

  display: block;

  transition: all 0.25s ease;
}


.corner-logo:hover img {

  opacity: 1;
  transform: scale(1.08);
}

/* =========================================
   🔥 GLOBAL MOBILE HARD OVERRIDE FIX
   Prevents zoomed-in / horizontal push issues
   ========================================= */

@media (max-width: 768px) {

  /* Lock layout to viewport width */
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  /* Prevent any element from exceeding screen width */
  * {
    max-width: 100vw;
    box-sizing: border-box;
  }

  /* Remove any accidental horizontal transforms */
  body {
    transform: none !important;
  }

  /* Make sure fixed elements don't push layout */
  .sitelogo,
  .menuBtn,
  .quick-nav,
  .corner-logo,
  .back-to-top {
    max-width: 100vw;
  }

  /* Fix hero padding causing side overflow */
  .store-hero {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Force store grid into safe vertical stack */
  .store-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .store-card {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Disable large hover scaling on mobile */
  .store-card:hover {
    transform: translateY(-6px) !important;
  }

  /* Prevent image scaling from causing width expansion */
  .store-card:hover .card-img img {
    transform: none !important;
  }

  /* Make sure images never overflow */
  img {
    max-width: 100%;
    height: auto;
  }

}


/* =========================================
   PREMIUM MINIMAL CTA
========================================= */

.primary-cta {
  background: #2563eb; /* single solid brand color */
  color: #ffffff !important;

  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;

  padding: 12px 22px;   /* tighter = cleaner */
  border-radius: 8px;   /* less bubbly */
  border: none;

  box-shadow: 0 6px 18px rgba(0,0,0,0.35);

  transition: all 0.18s ease;
}

/* Hover */
.primary-cta:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

/* Click */
.primary-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* pulse */
@keyframes ctaPulse {

  0% {
    box-shadow:
      0 0 15px rgba(59,130,246,0.45),
      0 8px 25px rgba(0,0,0,0.45);
  }

  50% {
    box-shadow:
      0 0 35px rgba(59,130,246,0.85),
      0 12px 35px rgba(0,0,0,0.6);
  }

  100% {
    box-shadow:
      0 0 15px rgba(59,130,246,0.45),
      0 8px 25px rgba(0,0,0,0.45);
  }

}



/* Fix CTA buttons overriding .btn */

.btn.primary-cta {

  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;

  color: white !important;

  text-decoration: none !important;

  border: none;

}

@media (max-width: 768px){

  .store-controls{
    flex-wrap: nowrap;
    gap: 6px;

    margin-top: 18px;

    padding: 10px;
    border-radius: 14px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  }

  .store-search{
    flex: 1;

    min-width: 0;
    padding: 10px 10px;

    font-size: 13px;
  }

    .store-filter,
  .store-sort{
    display:none;
  }

  .store-search{
    width:100%;
  }

}


.account-glass-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0,0,0,0.75);
border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.account-glass-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.acct-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.acct-dot.logged-in  { background: #3ecf6e; box-shadow: 0 0 6px rgba(62,207,110,0.8); }
.acct-dot.logged-out { background: #888; } 

.desktop-account-btn {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 99999;
}

@media (min-width: 769px) {
  #mySidenav { display: none !important; }
  #menuBtn   { display: none !important; }
  .menuBtn   { display: none !important; }
}

@media (max-width: 768px) {
  .desktop-account-btn { display: none !important; }
  #mySidenav { display: flex !important; }
  #menuBtn   { display: block !important; }
}

.account-glass-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.account-glass-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.acct-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.acct-dot.logged-in  { background: #3ecf6e; box-shadow: 0 0 6px rgba(62,207,110,0.8); }
.acct-dot.logged-out { background: #888; }


/* ── PROMO BANNER MOBILE ── */
@media (max-width: 768px) {

    .promo-banner {
        height: auto;
        min-height: 36px;
        padding: 8px 36px 8px 12px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .promo-banner-text {
        font-size: 11px;
        line-height: 1.4;
        text-align: center;
        width: 100%;
    }

    .promo-banner-btn {
        font-size: 11px;
        padding: 4px 10px;
    }

    .promo-banner-close {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .menuBtn {
        top: 80px !important;
    }

    .sitelogo {
        top: 80px !important;
    }

    .account-icon {
        top: 52px !important;
    }

}