/* ===========================
   ULTRA PREMIUM UPGRADE PACK
   Cozmetz Studio 2025
=========================== */

/* Soft neon breathing background */
.skintech-showcase::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 70% 30%, rgba(0,200,255,0.18), transparent 70%);
  animation: ambientFloat 10s ease-in-out infinite;
  filter: blur(8px);
  z-index: -1;
}

@keyframes ambientFloat {
  0%   { transform: translate(0,0) scale(1); opacity: .5; }
  50%  { transform: translate(12px,-8px) scale(1.05); opacity: .85; }
  100% { transform: translate(0,0) scale(1); opacity: .5; }
}


/* 
/* ===========================
   Header Glow Enhancement
=========================== */
.skintech-header h2 {
  font-size: 3.4rem;  /*  3.4rem Cozmetz Studio nope! zak  */
  letter-spacing: 2px;
  background: linear-gradient(90deg, #4de1ff, #e8fdff, #4de1ff);
  background-size: 250% auto;
  animation: textGlowShift 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(120,240,255,0.4);
}
*/


/*
/* shimmering underline (top glow bar) */
.skintech-divider-top {
  width: 40%;   /**** no effect on length   *****/
  height: 2px;
  margin: 35px auto 40px;
  background: linear-gradient(90deg, rgba(100,255,255,0), rgba(150,255,255,0.9), rgba(100,255,255,0));
  animation: glideShimmer 5s linear infinite;
  box-shadow: 0 0 12px rgba(120,220,255,0.3);
}
*/


@keyframes glideShimmer {
  0%   { background-position: 0% }
  100% { background-position: 200% }
}

/* ===========================
   Product Cards Ultra Glow
=========================== */

.product-card {
  background: linear-gradient(145deg, #0c0c0c, #151515);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  width: 300px;
  transition: all .4s ease;
  border: 1px solid rgba(120,240,255,0.15);
  box-shadow: 0 0 14px rgba(80,200,255,0.1);
  overflow: hidden;
}

/* Neon edge reflection */
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(120deg, transparent 0%, rgba(77,225,255,0.25) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .4s ease;
}

.product-card:hover::before {
  opacity: 1;
}

/* Card hover bloom */
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(120,240,255,0.7);
  box-shadow: 0 0 28px rgba(120,240,255,0.35),
              0 0 50px rgba(150,255,255,0.18);
}

/* ===========================
   Buttons – Gloss + Pulse
=========================== */
.buy-btn {
  background: linear-gradient(90deg, #00b3ff, #4de1ff);
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  color: #000;
  letter-spacing: .7px;
  transition: all .3s ease;
  box-shadow: 0 0 10px rgba(120,240,255,0.3);
  position: relative;
  overflow: hidden;
}

/* glossy swipe */
.buy-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: 0.4s;
}

.buy-btn:hover::before {
  left: 120%;
}

.buy-btn:hover {
  transform: scale(1.06);
  background: linear-gradient(90deg, #4de1ff, #b2f7ff);
  box-shadow: 0 0 20px rgba(120,240,255,0.6);
}

/* ===========================
   Footer Glow Optimization
=========================== */
.skintech-footer {
  text-align: center;
  padding: 40px 20px 40px;  /*  nothing zak */
  margin-top: auto;
  position: relative;
  color: #cceeff;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(40,100,140,0.06), rgba(0,0,0,0.4));
  box-shadow: 0 -4px 18px rgba(120,200,255,0.1);
}

/* footer glow bar */
.skintech-footer::before {
  content: "";
  width: 40%;  /***** bottom glow bar lenght zak  *****/
  height: 2px;
  display: block;
  margin: 0 auto 1.3rem;
  background: linear-gradient(90deg, rgba(100,255,255,0), rgba(150,255,255,0.9), rgba(100,255,255,0));
  animation: glideShimmer 6s linear infinite;
  box-shadow: 0 0 12px rgba(120,220,255,0.4);
}

/* footer text glow */
.skintech-footer p {
  font-size: 1.3rem;
  background: linear-gradient(90deg, #b3f2ff, #e5fcff, #b3f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: footerPulse 5s ease-in-out infinite;
}

@keyframes footerPulse {
  0%,100% { opacity:.8; text-shadow:0 0 8px rgba(120,240,255,.4); }
  50%     { opacity:1; text-shadow:0 0 16px rgba(180,255,255,.7); }
}





/* ===========================
   Cozmetz — FIXED + CLEAN MOBILE CSS
   (FULLY REPAIRED RESPONSIVE GRID)
=========================== */

/* RESET + GLOBAL ------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #0c0c0c 0%, #1a1a1a 100%);
  color: #ccc;
  overflow-x: hidden;
}

/* ===========================
   SkinTech Showcase
=========================== */
.skintech-showcase {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ===========================
  Top Glow Bar
=========================== */

/* Top Glow bar BETWEEN header and product grid */
.skintech-header {
  position: relative;
   margin-bottom: 40px; /***** 60px space between top glow bar & cards zak****/
  text-align: center;
  padding-bottom: 10px;  /**** 40px header up, space for the top glow bar zak ****/
}

/* Top Glow bar UNDER the header */
.skintech-header::after {
  content: "";
  position: absolute;
  bottom: -10px;     /* -25px keeps top glow bar BELOW the header zak */
  left: 50%;
  transform: translateX(-50%);
  width: 40%;  /*****  75%  length  glow bar yes zak ***/
  height: 4px;
  background: linear-gradient(90deg, transparent, #73d6ff, transparent);
  animation: glowbar 3s infinite ease-in-out;
  opacity: 0.7;
  border-radius: 3px;
}

/* ===========================
     Cozmetz Studio (Header)
   =========================== */
.skintech-header h2 {
  font-family: 'Playfair Display', serif; 
  font-size: 2.8rem;  /***    3.4rem  yes zak but not mobile ***/
  text-transform: uppercase;
  background: linear-gradient(90deg, #4de1ff, #b2f7ff, #4de1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   text-align: center;
  margin-bottom: 0.5rem;
  animation: shimmerText 6s linear infinite;
  position: relative;
  z-index: 1;
}



.skintech-header p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;  /**********  Sub Header  Fav cos ***********************/
  line-height: 1.6;
  color: #c8f8ff;
}

/***************shimmer cards pulse *****/
@keyframes shimmerPulse {
  0% {
    box-shadow: 0 0 10px rgba(100,200,255,0.15);
  }
  50% {
    box-shadow: 0 0 25px rgba(120,240,255,0.45),
                0 0 45px rgba(150,255,255,0.25);
  }
  100% {
    box-shadow: 0 0 10px rgba(100,200,255,0.15);
  }
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(120,240,255,0.7);
  animation: shimmerPulse 2.2s infinite ease-in-out;
}
/*****************************************/



/* ===========================
   PRODUCT GRID — FULLY FIXED
=========================== */
.product-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;  /** 30px gap between cards zak  **/
  padding: 0 10px;
}

/* ===========================
   PRODUCT CARD
=========================== */
.product-card {
  background: linear-gradient(145deg, #0c0c0c, #141414);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(120,240,255,0.15);
  box-shadow: 0 0 10px rgba(100,200,255,0.12);
  transition: all 0.3s ease;
}

.product-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 18px;
}
.product-card h3 {
  font-size: 1.3rem;   /***** 1.3rem  text size on card yes zak   *****/
  color: #9ee7ff;
  margin-bottom: 10px;
}
.product-card p {
  color: #bbb;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* BUTTON */
.buy-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00b3ff, #4de1ff);
  color: black;
  font-weight: 600;
  text-decoration: none;
}

/* ===========================
   MOBILE FIXES THAT GUARANTEE VISIBILITY
=========================== */
@media (max-width: 768px) {
  .skintech-header h2 {
    font-size: 2.1rem;   /*  nope  */
  }
  .skintech-header p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .skintech-showcase {
    padding: 60px 10px;
  }

  /* GRID becomes simple vertical list */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 5px;
  }

  .product-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 22px;
  }

@media (max-width: 400px) {
  .product-card {
    padding: 18px;
  }
 

  .skintech-header h2 {
    font-size: 2rem;   /* 2rem flash */
  }
  


  .skintech-header p {
    font-size: 1rem;
  }
}

/****************btn and hover glow*************************************/
  .buy-btn {
    padding: 9px 14px;
    font-size: 0.9rem;
  }
}

.buy-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  background: #0d1a1f;
  color: #FFC0C0;  /*** #9ee7ff  light blue  *****/
  text-decoration: none;
  border: 1px solid rgba(120,240,255,0.3);
  transition: 0.3s ease;
}

.buy-btn:hover {
  background: #122a30;
  border-color: rgba(150,255,255,0.8);
  box-shadow: 0 0 12px rgba(120,240,255,0.5);
  transform: translateY(-2px);
}



/***************************************************************/



.skintech-showcase {
  position: relative;  /* required for placing the bottom glow */
  /*  padding: 80px 20px; */
  padding-bottom: 60px; /* space so bottom glow bar doesn’t overlap footer */
}



/***************extra glow bar below cards removed **********/
/* .skintech-showcase::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;                      /* stick to bottom of section */
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #73d6ff, transparent);
  animation: glowbar 3s infinite ease-in-out;
  opacity: 0.7;
  border-radius: 3px;
  pointer-events: none;
}
*/

/* /*   top glow bar   */
.skintech-showcase::before {
  top: 0;   /* 0 puts top bar on the very top  */
}
*/   



.skintech-showcase::after {
  bottom: 0;
}

@keyframes glowbar {
  0% { opacity: 0.2; }
  50% { opacity: 0.8; }
  100% { opacity: 0.2; }
}



/**********************************
          Skintech Footer
 *********************************/
body.skin-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.skintech-footer {
  margin-top: auto;   /* pushes it to the bottom */
  text-align: center;
  padding: 40px 0;
  color: #bbb;
  font-size: 1rem;
}

.skintech-footer .accent {
  color: #9ee7ff;
}

.override-link {
  width: 50px;
  height: 18px;
}

/* --- Mobile Card Visibility Fix --- */
@media (max-width: 600px) {
  .product-card {
    background: linear-gradient(145deg, #141414, #1c1c1c);  /* slightly lighter */
    box-shadow: 0 0 12px rgba(120, 240, 255, 0.18), 
                0 0 26px rgba(80, 200, 255, 0.08);          /* soft neon outline */
    border-color: rgba(120,240,255,0.35);                   /* stronger border */
  }
}


.product-card {
  margin-left: auto;
  margin-right: auto;
}


/*
@media (max-width: 600px) {
  .skintech-header h2 {
    font-size: 1.2rem !important;   /* smaller on mobile */
    line-height: 1.2 !important;
    letter-spacing: 1px;
  }
}

*/

/*
/* media query for mobile devices */
@media (max-width: 768px) {
  .skintech-header h2 {
    font-size: 12px; /* smaller font size for mobile devices */
  }
}
*/