*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", sans-serif;
}

body{
  background:#0c0c0c;
  color:#fff;
  overflow-x:hidden;
}

/* ================= HEADER ================= */
.header{
  width:100%;
  height:80px;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
  position:relative;
  z-index:1000;
}

.logo img{
  height:150px;
  width:auto;
  object-fit:contain;
}

.nav{
  display:flex;
  gap:30px;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:#fff;
  font-weight:600;
  font-size:20px;
  transition:.3s;
}

.nav a:hover{
  color:#ff7a00;
}

.signup-btn{
  background:#ff7a00;
  border:none;
  padding:12px 26px;
  color:#000;
  font-size:18px;
  font-weight:bold;
  border-radius:30px;
  cursor:pointer;
  transition:.3s;
}

.signup-btn:hover{
  background:#ffa94d;
  transform:scale(1.05);
}

.menu-btn{
  width:32px;
  height:24px;
  display:none;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
}

.menu-btn span{
  width:100%;
  height:4px;
  background:#fff;
  border-radius:5px;
  transition:.3s;
}

.menu-btn.active span:nth-child(1){
  transform:rotate(45deg) translateY(10px);
}
.menu-btn.active span:nth-child(2){
  opacity:0;
}
.menu-btn.active span:nth-child(3){
  transform:rotate(-45deg) translateY(-10px);
}

/* ================= MOBILE MENU ================= */
@media(max-width:768px){

  .menu-btn{
    display:flex;
  }

  .nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#000;
    flex-direction:column;
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
  }

  .nav.show{
    max-height:1000px; /* FIX */
  }

  .nav a,
  .signup-btn{
    width:100%;
    padding:19px;
    text-align:center;
    border-bottom:1px solid #222;
    box-sizing:border-box;
    display:block; /* FIX */
  }
}


/* Banner Section */
.banner-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.banner-section .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%); 
}

.banner-section .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Section Title same style as existing */
.banner-section .section-title{
  font-size:35px;
  margin-bottom:10px;
  text-align:center;              
  font-weight:800;
  letter-spacing:2px;
  color:hsl(30, 100%, 96%);                  
  text-transform:uppercase;
  text-shadow: 0 0 20px #f77f0f, 0 0 0px #fffbf7;
}

.banner-section .section-title::after{
  content:"";
  width:120px;
  height:4px;
  background:#ff7a00;
  display:block;
  margin:10px auto 0;   
  border-radius:5px;
}

.banner-section p {
  font-size:30px;
  margin-top:15px;
  color: #fff;
  font-style: italic;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.product-container{
  display:flex;
  gap:70px;
  padding:70px 90px;
  justify-content:center;
  align-items:flex-start;
}

.image-section{
  display:flex;
  align-items:flex-start;
}

.thumbnails{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.thumbnails img{
  width:95px;
  max-width:100%;
  border:2px solid #222;
  padding:6px;
  border-radius:14px;
  cursor:pointer;
  transition:0.3s;
  background:#111;
}

.thumbnails img:hover{
  border-color:#ff7a00;
  transform:scale(1.1);
  box-shadow:0 0 15px rgba(255,122,0,0.6);
}

.main-image img{
  width:520px;
  max-width:100%;
  height:auto;
  margin-left:35px;
  border-radius:30px;
  box-shadow:0 0 40px rgba(255,122,0,0.45);
  transition:0.4s;
}

.main-image img:hover{
  transform:scale(1.04);
}

.details-section{
  max-width:550px;
  text-align:left;
}

.product-title{
  font-size:36px;
  color:#fff;
  margin-bottom:12px;
  letter-spacing:2px;
  text-shadow:
    0 0 10px rgb(255, 94, 0);
  animation:titleGlow 2s infinite alternate;
}

.price{
  font-size:30px;
  color:rgb(255, 81, 0);
  margin-bottom:12px;
  font-weight:700;
}

.desc{
  font-size:16px;
  color:#ddd;
  line-height:1.9;
  margin-bottom:25px;
}

.action-buttons{
  display:flex;
  gap:25px;
}

.btn{
  text-decoration:none;
  padding:15px 42px;
  border-radius:40px;
  font-weight:bold;
  transition:0.3s;
}

.btn.buy{
  background:linear-gradient(100deg,#ff7a00,rgb(255, 81, 0));
  color:#000;
  box-shadow:0 0 10px rgb(255, 81, 0);
}

.btn.play{
  background:#0c0c0c;
  border:2px solid rgb(255, 81, 0);
  color:rgb(255, 81, 0);
  box-shadow:0 0 10px rgb(255, 81, 0);
}

.btn:hover{
  transform:scale(1.1);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:1024px){
  .product-container{
    padding:50px 30px;
    gap:40px;
  }

  .main-image img{
    width:420px;
  }

  .thumbnails img{
    width:80px;
  }

  .product-title{
    font-size:30px;
  }
}

/* Mobile */
@media(max-width:768px){
  .product-container{
    flex-direction:column;
    align-items:center;
    padding:30px 15px;
  }

  .image-section{
    flex-direction:column;
    align-items:center;
  }

  .thumbnails{
    flex-direction:row;
    margin-bottom:15px;
  }

  .main-image img{
    margin-left:0;
    width:100%;
  }

  .details-section{
    text-align:center;
  }

  .action-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }
}

/* Small phones */
@media(max-width:480px){
  .thumbnails img{
    width:60px;
  }

  .product-title{
    font-size:24px;
  }

  .price{
    font-size:22px;
  }

  .btn{
    padding:12px 30px;
    font-size:14px;
  }
}

/* FOOTER */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, sans-serif;
}

.footer-overlay{
  background:linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
  padding:47px 44px 25px;
}

/* GRID */
.footer-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
}

/* TITLES */
.footer-box h3{
  margin-bottom:18px;
  font-size:18px;
  color:#ff7a18;
  text-transform:uppercase;
  letter-spacing:1px;
  position:relative;
}

.footer-box h3::after{
  content:"";
  width:40px;
  height:3px;
  background:#ff7a18;
  position:absolute;
  left:0;
  bottom:-6px;
}

/* TEXT & LINKS */
.footer-box p,
.footer-box a{
  color:#ccc;
  font-size:14px;
  text-decoration:none;
  line-height:1.8;
  transition:0.3s;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:10px;
}

.footer-box a:hover{
  color:#ff7a18;
  padding-left:6px;
}

/* NEWSLETTER */
.newsletter{
  display:flex;
  margin-top:12px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 0 12px rgba(255,122,24,0.4);
}

.newsletter input{
  flex:1;
  padding:10px 15px;
  border:none;
  outline:none;
  font-size:14px;
}

.newsletter button{
  background:#ff7a18;
  border:none;
  padding:0 18px;
  cursor:pointer;
  color:#000;
  font-size:16px;
  transition:.3s;
}

.newsletter button:hover{
  background:#ffa14a;
}

/* SOCIAL */
.social-icons{
  margin-top:18px;
}

.social-icons a{
  display:inline-block;
  width:36px;
  height:36px;
  line-height:36px;
  text-align:center;
  background:#222;
  border-radius:50%;
  margin-right:5px;
  color:#fff;
  font-size:15px;
  transition:.3s;
}

.social-icons a:hover{
  background:#ff7a18;
  transform:translateY(-5px);
  box-shadow:0 0 10px rgba(255,122,24,0.6);
}

/* BOTTOM BAR */
.footer-bottom{
  border-top:1px solid #333;
  margin-top:45px;
  padding-top:18px;
  display:flex;
  justify-content:center;   /* CENTER */
  align-items:center;       /* CENTER */
  text-align:center;
  flex-wrap:wrap;
}

.footer-bottom p{
  font-size:15px;
  color:#aaa;
}


.payments img{
  height:26px;
  margin-left:10px;
  filter:brightness(0) invert(1);
  opacity:0.8;
  transition:.3s;
}

.payments img:hover{
  opacity:1;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    gap:12px;
    text-align:center;
  }
}
