*{
margin:0;
padding:0;
box-sizing:border-box;
}




/* HIDE SCROLLBAR - KEEP SCROLL WORKING */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* IE / old Edge */
body {
  -ms-overflow-style: none;
}






/* SPINNER */
.spinner{
  position:relative;
  width:60px;
  height:60px;

  /* smoother rotation */
  animation: spin 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DOT BASE */
.spinner span{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;

  top:50%;
  left:50%;

  background:#e53935;

  /* smoother fade */
  animation: fade 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DEPTH (IMPORTANT 🔥) */
.spinner span:nth-child(1){ transform: translate(-50%, -50%) rotate(0deg) translateY(-20px) scale(1); }
.spinner span:nth-child(2){ transform: translate(-50%, -50%) rotate(45deg) translateY(-20px) scale(0.9); }
.spinner span:nth-child(3){ transform: translate(-50%, -50%) rotate(90deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(4){ transform: translate(-50%, -50%) rotate(135deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(5){ transform: translate(-50%, -50%) rotate(180deg) translateY(-20px) scale(0.6); }
.spinner span:nth-child(6){ transform: translate(-50%, -50%) rotate(225deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(7){ transform: translate(-50%, -50%) rotate(270deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(8){ transform: translate(-50%, -50%) rotate(315deg) translateY(-20px) scale(0.9); }

/* DELAYS */
.spinner span:nth-child(1){ animation-delay:-1.6s; }
.spinner span:nth-child(2){ animation-delay:-1.4s; }
.spinner span:nth-child(3){ animation-delay:-1.2s; }
.spinner span:nth-child(4){ animation-delay:-1.0s; }
.spinner span:nth-child(5){ animation-delay:-0.8s; }
.spinner span:nth-child(6){ animation-delay:-0.6s; }
.spinner span:nth-child(7){ animation-delay:-0.4s; }
.spinner span:nth-child(8){ animation-delay:-0.2s; }

/* ROTATION */
@keyframes spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* FADE */
@keyframes fade{
  0%{ opacity:1; }
  50%{ opacity:0.3; }
  100%{ opacity:1; }
}



#loader{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;

  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
}

#loader.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}











body{
background:#000;
color:white;
font-family:'Poppins',sans-serif;
line-height:1.5;
}


/* GLOBAL CONTAINER */

.container{
width:min(1200px,92%);
margin:auto;
}







/* ===============================
   PREMIUM HEADER REPLACE
=============================== */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;

  display: flex;
  justify-content: center;

  padding: 14px 0;

  transition: transform .35s ease, opacity .35s ease;
  will-change: transform;
}

.nav.hide{
  transform: translateY(-110%);
  opacity: .2;
}

.nav.show{
  transform: translateY(0);
  opacity: 1;
}

.nav-inner{
  width:min(1200px,92%);
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:14px 24px;
  border-radius:26px;

  /* LIGHT PREMIUM GLASS */
  background: linear-gradient(
    145deg,
    rgba(245,245,245,.95),
    rgba(220,220,220,.88)
  );

  border: 1px solid rgba(255,255,255,.7);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  position:relative;
  overflow:hidden;

  /* 3D DEPTH */
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,.9),
    inset 0 -6px 12px rgba(0,0,0,.08),
    0 10px 25px rgba(0,0,0,.18),
    0 18px 40px rgba(0,0,0,.12);
}





/* SHINY EFFECT */
.nav-inner::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:50%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );
  transform:skewX(-25deg);
  animation:navShine 6s linear infinite;
}

@keyframes navShine{
  100%{ left:140%; }
}

.logo img{
  height:42px;
  position:relative;
  z-index:2;
}

.menu{
  display:flex;
  gap:28px;
  position:relative;
  z-index:2;
}

.menu a{
  color:#000000;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:.3s;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#e53935;
  transition:.3s;
}

.menu a:hover{
  color:#e53935;
}

.menu a:hover::after{
  width:100%;
}

.menu-toggle{
  width:42px;
  height:42px;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  position:relative;
  z-index:2;
}

.menu-toggle span{
  width:24px;
  height:2px;
  background:#fff;
  margin:auto;
  transition:.35s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}


/* ===============================
   FINAL CREATIVE MOBILE PILLS
=============================== */
.mobile-menu{
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 99998;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;

  pointer-events: none;
}

.mobile-menu a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  max-width: 88vw;

  /* TIGHTER FIT */
  padding: 12px 20px;

  /* LESS ROUNDED */
  border-radius: 18px;

  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;

  /* SOLID PREMIUM RED */
  background: #9f1111;

  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 10px 22px rgba(0,0,0,.22),
    0 0 14px rgba(229,57,53,.12);

  opacity: 0;
  visibility: hidden;
  transform: translateX(40px) scale(.94);

  transition:
    opacity .4s ease,
    transform .4s cubic-bezier(.22,1,.36,1),
    visibility .4s ease;
}

/* ONLY SHOW WHEN ACTIVE */
.mobile-menu.active{
  pointer-events: auto;
}

.mobile-menu a.show{
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}





@media(max-width:900px){
  .menu{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .nav{
    padding:10px 0;
  }

  .nav-inner{
    width:94%;
    border-radius:18px;
    padding:12px 16px;
  }

  .logo img{
    height:36px;
  }

   /* STOP ALL SIDE MOVEMENT */
  .card-3d,
  .banner-3d,
  .flyer-paper{
    transform: none !important;
  }

  /* FIX BANNER WIDTH */
  .banner-3d{
    width: 100%;
    max-width: 100%;
  }

  /* PREVENT SOCIAL CARDS FROM OVERFLOW */
  .social-scene{
    overflow: hidden;
  }
  html, body{
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
}


@media(max-width:768px){

  /* REMOVE ALL 3D TRANSFORMS */
  .card-3d,
  .banner-3d,
  .flyer-paper,
  .tshirt-rotator,
  .social-card{
    transform: none !important;
    animation: none !important;
  }

  /* REMOVE PERSPECTIVE */
  .card-scene,
  .banner-scene,
  .flyer-scene,
  .tshirt-scene{
    perspective: none !important;
  }

  /* DISABLE HOVER EFFECTS */
  .card-3d:hover,
  .banner-3d:hover{
    transform: none !important;
  }

  .card-3d::before{
    display:none !important;
  }


}






.explore-hero{
  min-height:70vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px 20px;
}

.explore-hero h1{
  font-size:clamp(2.5rem,5vw,4rem);
  margin-bottom:25px;
}



/* SEARCH */
.search-box{
  position: relative;
  width: 100%;
  max-width: 500px;
}

.search-box input{
  width: 100%;
  padding: 14px 50px 14px 18px;

  border-radius: 40px;
  border: 1px solid #ddd;

  background: #fff;
  color: #111;

  outline: none;
  font-size: 15px;

  transition: .25s ease;
}

/* FOCUS EFFECT */
.search-box input:focus{
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,.1);
}

.search-box button{
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);

  width: 38px;
  height: 38px;

  border: none;
  background: #fff;

  border-radius: 50%;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: .25s ease;
}

/* HOVER */
.search-box button:hover{
  background: #f5f5f5;
}

/* ================= SECTIONS ================= */

.orbit-section{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding:80px 20px;
  width:100%;
  max-width:1200px;
  margin:auto;

  opacity:0;
  transform:translateY(60px);
  transition:0.8s ease;
}

.orbit-section.show{
  opacity:1;
  transform:translateY(0);
}

.orbit-section.reverse{
  flex-direction:row-reverse;
}

.orbit-left,
.orbit-right{
  flex:1;
}

.orbit-section h2{
  font-size:2.2rem;
  margin-bottom:15px;
}

.orbit-section p{
  color:#aaa;
  max-width:420px;
}




/* PREMIUM IMAGE FRAME */
.image-frame{
  max-width: 480px;   /* 🔥 control size */
  width: 100%;
  margin-left: auto;  /* align nicely */

  border-radius: 14px;
  overflow: hidden;

  background: #111;

  box-shadow:
    0 20px 40px rgba(0,0,0,.35),
    0 10px 20px rgba(0,0,0,.2);
}

/* IMAGE */
.image-frame img{
  width: 100%;
  height: auto;
  display: block;

  transform: scale(1.02);
  transition: transform .4s ease;
}

/* HOVER EFFECT */
.image-frame:hover img{
  transform: scale(1.05);
}


.image-frame:hover{
  transform: translateY(-6px);
  transition: .3s ease;
}







.logo-heading{
  font-size:clamp(2.8rem,5vw,4rem);
  font-weight:800;
  color:#000;
  line-height:1.1;
}

.logo-price{
  margin-top:10px;
  font-size:1.2rem;
  color:#e53935;
  font-weight:600;
}

.logo-desc{
  margin-top:20px;
  color:#444;
  max-width:420px;
  line-height:1.6;
}

/* BUTTON */
.logo-btn{
  margin-top:25px;
  background:#e53935;
  color:#fff;
  border:none;
  padding:14px 26px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.logo-btn:hover{
  transform:translateY(-2px);
  background:#ff3b3b;
}



/* ================= ANIMATIONS ================= */

/* LOGO DRAW */
.logo-draw-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:15px;
}

/* SVG */
.flower-svg{
  width:240px;
  height:240px;
  filter:drop-shadow(0 0 6px rgba(229,57,53,0.4));
}

/* ALL PATHS */
/* DEFAULT STATE (hidden) */
.flower-svg path,
.flower-svg circle{
  fill:none;
  stroke:#e53935;
  stroke-width:1.5;

  stroke-dasharray:200;
  stroke-dashoffset:200;
}

/* 🔥 TRIGGER ON SCROLL */
.orbit-section.show .flower-svg path,
.orbit-section.show .flower-svg circle{
  animation:drawFlower 2.5s ease forwards;
}

/* DELAYS */
.orbit-section.show .flower-svg path:nth-child(1){ animation-delay:0.2s; }
.orbit-section.show .flower-svg path:nth-child(2){ animation-delay:0.6s; }
.orbit-section.show .flower-svg path:nth-child(3){ animation-delay:1s; }
.orbit-section.show .flower-svg path:nth-child(4){ animation-delay:1.4s; }
.orbit-section.show .flower-svg circle{ animation-delay:1.8s; }

/* DRAW EFFECT */
@keyframes drawFlower{
  to{
    stroke-dashoffset:0;
  }
}

/* TEXT */
.logo-text{
  opacity:0;
  transform:translateY(10px);
  font-size:14px;
  letter-spacing:2px;
  color:#aaa;

  animation:fadeUp 1s ease forwards;
  animation-delay:2.2s;
}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}


.logo-points{
  margin-top:15px;
  color:#ccc;
  line-height:1.6;
}










/* SCENE (PERSPECTIVE) */
.card-scene{
  perspective: 1000px;
  display:flex;
  justify-content:center;
}

/* CARD BODY */
.card-3d{
  width:260px;
  height:150px;
  position:relative;
  transform-style:preserve-3d;
  transform:rotateY(90deg);
  transition: transform 0.15s ease-out;
}

/* SHOW ON SCROLL */
.orbit-section.show .card-3d{
  transform: none; /* 🔥 allow JS to control */
}





/* FACES */
.card-face{
  position:absolute;
  width:100%;
  height:100%;
  border-radius:12px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  backface-visibility:hidden;

  background:linear-gradient(145deg,#111,#1a1a1a);
  border:1px solid #444;

  color:#fff;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.6),
    inset 0 0 20px rgba(255,255,255,0.05);

  perspective:1000px;
  display:flex;
  justify-content:center;

  overflow:hidden; /* 🔥 THIS FIXES YOUR ISSUE */
}

/* FRONT */
.card-face.front h3{
  font-size:1.2rem;
  letter-spacing:2px;
}

.card-face.front p{
  font-size:0.8rem;
  color:#aaa;
}

/* BACK */
.card-face.back{
  transform:rotateY(180deg);
  font-size:0.8rem;
  color:#ccc;
}

/* 🔥 HOVER FLIP */
.card-3d:hover{
  transform:rotateY(180deg);
}

/* ✨ LIGHT SWEEP EFFECT */
.card-face::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:60%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );

  transform:skewX(-20deg);
}

/* ACTIVATE SWEEP ON SCROLL */
.orbit-section.show .card-face::after{
  animation:shine 2.5s ease forwards;
}

@keyframes shine{
  to{
    left:130%;
  }
}

/* FAKE THICK EDGE */
.card-3d::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:12px;

  background:#000;
  transform:translateZ(-4px);
  filter:blur(2px);
}


.card-light{
  position:absolute;
  inset:0;
  border-radius:12px;
  pointer-events:none;

  background: radial-gradient(
    circle at 50% 50%,
    rgba(255,255,255,0.15),
    transparent 60%
  );

  opacity:0;
  transition:opacity 0.3s;
}







/* ================= FLYER SECTION ================= */
/* SCENE */
.flyer-scene{
  perspective:1200px;
  display:flex;
  justify-content:center;
  overflow:hidden;
}

/* PAPER */
.flyer-paper{
  width:200px;
  height:260px;
  border-radius:8px;

  background:linear-gradient(180deg,#ffffff,#f1f1f1);

  color:#000;
  position:relative;

  transform-origin:top center;

  /* START STATE */
  transform:
    translateY(-300px)
    rotateX(60deg)
    rotateZ(-8deg)
    scale(0.95);

  opacity:0;

  box-shadow:
    0 40px 80px rgba(0,0,0,0.5);

  transition:0.3s ease;
}

/* 🔥 FALL ANIMATION */
.orbit-section.show .flyer-paper{
  animation:paperFall 1.6s cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes paperFall{

  0%{
    transform:
      translateY(-300px)
      rotateX(60deg)
      rotateZ(-8deg)
      scale(0.95);
    opacity:0;
  }

  40%{
    transform:
      translateY(30px)
      rotateX(-10deg)
      rotateZ(3deg);
    opacity:1;
  }

  70%{
    transform:
      translateY(-10px)
      rotateX(5deg)
      rotateZ(-2deg);
  }

  100%{
    transform:
      translateY(0)
      rotateX(0deg)
      rotateZ(0deg);
  }
}

/* ✨ CURVE EFFECT (IMPORTANT) */
.flyer-paper{
  transform-style:preserve-3d;
}

/* Fake paper bending using gradient + shadow */
.flyer-paper::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:8px;

  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.08),
    transparent 40%,
    rgba(0,0,0,0.05)
  );

  pointer-events:none;
}

/* DESIGN */
.flyer-design{
  padding:20px;
  text-align:center;
}

.flyer-design h3{
  font-size:1rem;
  letter-spacing:2px;
  color:#111;
}

.flyer-design p{
  margin:12px 0;
  font-size:1.3rem;
  color:#e53935;
  font-weight:700;
}

.flyer-design span{
  font-size:0.8rem;
  color:#555;
}

/* ✨ LIGHT SWEEP */
.flyer-shine{
  position:absolute;
  inset:0;
  border-radius:8px;
  pointer-events:none;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );

  transform:translateX(-120%) skewX(-20deg);
}

/* TRIGGER SHINE */
.orbit-section.show .flyer-shine{
  animation:shineFlyer 1.5s ease forwards;
  animation-delay:0.8s;
}

@keyframes shineFlyer{
  to{
    transform:translateX(130%) skewX(-20deg);
  }
}

/* 🖱️ HOVER (SUBTLE PAPER LIFT) */
.flyer-paper:hover{
  transform:translateY(-8px) rotateX(5deg) rotateZ(-1deg);
}






/* SCENE */
.social-scene{
  position:relative;
  width:260px;
  height:260px;
  margin:auto;
}

/* CARDS */
.social-card{
  position:absolute;
  width:160px;
  height:160px;
  border-radius:12px;
  overflow:hidden;

  box-shadow:
    0 25px 50px rgba(0,0,0,0.5),
    0 10px 25px rgba(0,0,0,0.3);

  transition:0.5s ease;
  transform:scale(0.8);
  opacity:0;
}

/* IMAGES */
.social-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* POSITIONS */
.card1{
  top:0;
  left:40px;
  z-index:3;
}

.card2{
  top:40px;
  left:0;
  z-index:2;
}

.card3{
  top:40px;
  left:80px;
  z-index:1;
}

/* SHOW ON SCROLL */
.orbit-section.show .social-card{
  transform:scale(1);
  opacity:1;
}

/* STAGGER EFFECT */
.orbit-section.show .card1{ transition-delay:0.2s; }
.orbit-section.show .card2{ transition-delay:0.4s; }
.orbit-section.show .card3{ transition-delay:0.6s; }

/* 🖱️ HOVER EFFECT */
.social-scene:hover .card1{
  transform:translateY(-10px) scale(1.05);
}

.social-scene:hover .card2{
  transform:translateX(-10px) scale(1.05);
}

.social-scene:hover .card3{
  transform:translateX(10px) scale(1.05);
}





/* ================= RESPONSIVE ================= */

@media (max-width:900px){

  .orbit-section{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .orbit-section.reverse{
    flex-direction:column;
  }

  .orbit-section p{
    margin:auto;
  }
}






/* SCENE */
.banner-scene{
  perspective:1200px;
  display:flex;
  justify-content:center;
  overflow:hidden;
}

/* 3D CONTAINER */
.banner-3d{
  width:420px;
  height:180px;

  transform-style:preserve-3d;

  transform:translateX(200px) rotateY(-25deg) scale(0.95);
  opacity:0;

  transition:1s cubic-bezier(.2,.8,.2,1);

  position:relative;
}

/* SHOW ON SCROLL */
.orbit-section.show .banner-3d{
  transform:translateX(0) rotateY(0deg) scale(1);
  opacity:1;
}

/* FACE */
.banner-face{
  position:absolute;
  inset:0;
  border-radius:10px;
  overflow:hidden;

}

/* IMAGE */
.banner-face img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* LIGHT */
.banner-light{
  position:absolute;
  inset:0;
  border-radius:10px;
  pointer-events:none;

  background: radial-gradient(
    circle at 50% 50%,
    rgba(255,255,255,0.25),
    transparent 60%
  );

  opacity:0;
  transition:0.3s;
}

/* HOVER */
.banner-3d:hover{
  transform:rotateY(5deg) scale(1.03);
}

.banner-3d:hover .banner-light{
  opacity:1;
}

.banner-3d::after{
  content:"";
  position:absolute;
  bottom:-30px;
  left:50%;
  transform:translateX(-50%);

  width:80%;
  height:40px;

  background:radial-gradient(
    ellipse,
    rgba(0,0,0,0.35),
    transparent 70%
  );

  filter:blur(8px);
  z-index:-1;
}


.banner-face::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:10px;

  background:linear-gradient(
    to bottom,
    rgba(255,255,255,0.15),
    transparent 40%
  );

  pointer-events:none;
}




/* SCENE */
.tshirt-scene{
  display:flex;
  justify-content:center;
  align-items:center;
}

/* ROTATOR */
.tshirt-rotator{
  width:260px;
  height:300px;
  position:relative;
}

/* FRAMES */
.tshirt-frame{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;
  object-fit:contain;

  opacity:0;
  transition:0.2s ease;
}

/* SHOW FIRST */
.tshirt-frame:nth-child(1){
  opacity:1;
}

/* 🔥 ANIMATION */
.orbit-section.show .tshirt-rotator{
  animation:shirtSpin 4s infinite steps(4);
}

@keyframes shirtSpin{
  0%   { transform:translateX(0); }
  100% { transform:translateX(0); }
}

/* FRAME SWITCHING */
.tshirt-rotator{
  animation:frameSwitch 4s infinite;
}

@keyframes frameSwitch{
  0%   { }
}

/* MANUAL FRAME TIMING */
.tshirt-frame:nth-child(1){ animation:frame1 4s infinite; }
.tshirt-frame:nth-child(2){ animation:frame2 4s infinite; }
.tshirt-frame:nth-child(3){ animation:frame3 4s infinite; }
.tshirt-frame:nth-child(4){ animation:frame4 4s infinite; }

@keyframes frame1{
  0%, 25%{ opacity:1 }
  26%,100%{ opacity:0 }
}

@keyframes frame2{
  25%, 50%{ opacity:1 }
  0%,24%,51%,100%{ opacity:0 }
}

@keyframes frame3{
  50%, 75%{ opacity:1 }
  0%,49%,76%,100%{ opacity:0 }
}

@keyframes frame4{
  75%, 100%{ opacity:1 }
  0%,74%{ opacity:0 }
}


.tshirt-rotator::after{
  content:"";
  position:absolute;
  bottom:-25px;
  left:50%;
  transform:translateX(-50%);

  width:60%;
  height:30px;

  background:radial-gradient(
    ellipse,
    rgba(0,0,0,0.4),
    transparent 70%
  );

  filter:blur(8px);
}

.tshirt-rotator:hover .tshirt-frame{
  animation-play-state:paused;
}












.site-footer{
  background:#000;
  color:#fff;
  padding:clamp(4rem,8vw,6rem) 0 2rem;
}

/* CONTAINER */
.footer-container{
  width:min(1100px,92%);
  margin:auto;

  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:2rem;
}

/* LOGO */
.footer-logo{
  font-size:1.8rem;
  font-weight:800;
  margin-bottom:1rem;
}

/* TEXT */
.footer-brand p{
  color:#aaa;
  max-width:300px;
  line-height:1.6;
}

/* LINKS */
.footer-links h4,
.footer-contact h4{
  margin-bottom:1rem;
}

.footer-links a{
  display:block;
  color:#aaa;
  text-decoration:none;
  margin-bottom:0.5rem;
  transition:0.3s;
}

.footer-links a:hover{
  color:#fff;
}

/* CONTACT */
.footer-contact p{
  color:#aaa;
  margin-bottom:0.5rem;
}

/* SOCIAL */
.footer-social{
  margin-top:1rem;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:35px;
  height:35px;
  border:1px solid #333;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.footer-social a:hover{
  background:#c62828;
  border-color:#c62828;
}

/* CTA */
.footer-cta{
  text-align:center;
  margin-top:4rem;
}

.footer-cta h3{
  font-size:2rem;
  margin-bottom:1rem;
}

.footer-btn{
  display:inline-block;
  padding:12px 28px;
  background:#c62828;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.footer-btn:hover{
  background:#e53935;
  transform:translateY(-2px);
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:3rem;
  color:#666;
  font-size:0.9rem;
}


@media (max-width:768px){

  .footer-container{
    grid-template-columns:1fr;
    text-align:left;
  }

  .footer-cta h3{
    font-size:1.5rem;
  }

}



/* OVERLAY */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);

  opacity:0;
  visibility:hidden;

  transition:0.3s;
  z-index:1000;
}

.popup-overlay.active{
  opacity:1;
  visibility:visible;
}

/* POPUP BASE */
.logo-popup{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(0.9);

  width:90%;
  max-width:420px;

  max-height:85vh;
  overflow-y:auto;

  background:#f5f5f5;
  color:#000;

  padding:25px;
  border-radius:10px;

  opacity:0;
  visibility:hidden;

  transition:0.3s ease;

  z-index:1001;

  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE/Edge */
}

/* ACTIVE STATE */
.logo-popup.active{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,-50%) scale(1);
}

/* INPUTS */
.logo-popup input,
.logo-popup select,
.logo-popup textarea{
  width:100%;
  margin:8px 0;
  padding:10px;

  background:#fff !important;
  color:#000;
  border:1px solid #ccc;
}

/* FILE BUTTON */
.logo-popup .upload-btn{
  display:inline-block;
  background:#e53935;
  color:#fff;
  padding:8px 12px;
  cursor:pointer;
  margin-top:8px;
}

.logo-popup .file-name{
  display:block;
  margin-top:5px;
  color:#333;
  font-size:12px;
}

/* SUBMIT BUTTON */
.submit-btn{
  width:100%;
  padding:12px;
  background:#e53935;
  color:#fff;
  border:none;
  cursor:pointer;
  font-weight:600;
}

.submit-btn:hover{
  background:#ff3b3b;
}








