/* File: public/css/he.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
:root{
    --bg-primary:#3c3434;
    --bg-secondary:#080a14;
    --bg-accent:#101530;
    --bg-muted:#141414;
    --foreground:#f7f7f8;
    --muted-foreground:#7f8296;
    --border-primary:#262626;
    --border-secondary:#101530;
    --gradient-1:linear-gradient(to top left, #0052D4,#4364f7,#6fb1fc);
    --gradient-2:linear-gradient(to top left, #0052D4,#ffb804,#6fb1fc);
    --primary:#0024d6;
    --primary-accent:#4364f7;
    --warning:#ffa500;
    --transition:all 400ms ease;
    --glow:radial-gradient(rgba(0,36,214,0.3) 0%, rgba(3,5,14,0.5));
}


/* General styles start */
*{
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}

html,body{
    color: var(--foreground);
    min-height: 100vh;
    background: var(--bg-primary);
    font-family: "Poppins",sans-serif;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
    overflow: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

body{
    max-width: 1800px;
    margin: auto;
}

p{
    font-size: 15px;
    line-height: 20px;
    
}

.product-description {
    color: #fff !important;               /* White color for product description */
}

a{
    color: var(--foreground);
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 500;
}
img{
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.heading-1{
    font-size: 60px;
    font-weight: 700;
    line-height: 65px;
    margin: 20px 0;
    text-align: center; /* Center the text */
    justify-content: center;
    padding-top: 10px;         /* moves image DOWN text*/
}
.sub-title{
    font-size: 20px;
}

.gradient-text{
    background: var(--gradient-1);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.stroke-text{
    -webkit-text-stroke: .5px var(--foreground);
    -webkit-text-fill-color: transparent;
}
.primary{
    color: var(--primary);
}
.muted{
    color: var(--muted-foreground);
}

.clamp-2{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.container{
    width: 100%;
    max-width: 1150px;
    margin: auto;
    padding: 20px 30px;        /* shoe container padding */
    
}

.section-header{
    margin: auto;
    width: 100%;
    max-width: 800px;
    
}

.flex{
    display: flex;
    gap: 20px;
}
.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.icon-wrapper{
    width: 2.7rem;
    height: 2.7rem;
    min-width: 2.7rem;
    min-height: 2.7rem;
    max-width: 2.7rem;
    max-height: 2.7rem;
    background: var(--bg-muted);
    font-size: 20px;
    border-radius: 100%;
    color: var(--muted-foreground);
    transition: var(--transition);
}
.icon-wrapper:hover{
    background: var(--bg-accent);
    color: var(--foreground);
    transform: scale(1.1);
}

.btn{
    padding: 15px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition);
}
.btn:hover{
    color: var(--primary);
    border-color: var(--primary);
    background: var(--bg-accent);
}
.btn.primary{
    background-image: var(--gradient-1);
    background-size: 200% auto;
}
.btn.primary:hover{
    background-position: right center;
    color: var(--foreground);
}
/* Reponsive code */
@media (max-width:900px){
    .container{
        padding: 15px 20px;  /* reduce padding on smaller screens and Gol Bros */
    }
    .heading-1{
        font-size: 45px;
        line-height: 50px;
    }
    .sub-title{
        font-size: 18px;
    }
}
@media (max-width:600px){
    .heading-1{
        font-size: 25px;
        line-height: 30px;
    }
    .sub-title{
        font-size: 14px;
    }
    p{
        font-size: 12px;
    }
}
/* General styles end */

/* ===============================
   Media Letters header  responsive
================================ */

@media (max-width: 768px) {
  #hero .heading-1 {
    font-size: clamp(2.0rem, 5vw, 5.8rem); /* bigger but controlled */
     line-height: 1.15;
    font-weight: 1000;
  }

  #hero .product-description {
    font-size: 1rem;              /* ~16px (ideal reading size) */
    line-height: 1.7;
    letter-spacing: 0.01em;
    text-align: center;

    max-width: 90%;
    margin: 0 auto;
  }
}


/* Hero start */
#hero .container{
    display: grid;
    grid-template-columns: auto 500px;
    gap: 30px;
    padding-top: 100px;
    align-items: flex-start;
    border-style: solid;
    border-width: .5px;
    border-color: transparent var(--border-primary) transparent var(--border-primary);
    background: #000000; /* keep your gray section ojo background #393737  */
}

#hero .buttons-wrapper{
    justify-content: flex-start;
    margin-top: 30px;
}
#hero .hero-image{
    position: relative;
    max-width: 500px;
    margin: auto;
}
#hero .rating-group{
    position: absolute;
    bottom: -50px;
    left: 0;
    background: var(--glow);
    padding: 30px;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    border-radius: 10px;
}
#hero .stars-container{
    color: var(--warning);
}

#hero .discount-wrapper{
    position: relative;
    max-width: 250px;
}
#hero svg{
    max-width: 100%;
}
#hero svg .text{
    fill: var(--muted-foreground);
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    font-variant-ligatures: none;
    letter-spacing: 6px;
    animation: rotate 25s linear infinite;
    transform-origin: 250px 250px;
}
@keyframes rotate {
    to{
        transform: rotate(360deg);
    }
}
#hero .textcircle{
    transition: transform 1s cubic-bezier(0.65, 0, 0.35,1);
    transform-origin: 250px 250px;
}
#hero .discount-wrapper:hover .textcircle{
    transform: scale(1.2) rotate(90deg);
}
#hero .discount-wrapper:hover .text{
    fill: var(--foreground);
}


#hero .discount{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 30px;
    transition: var(--transition);
    text-align: center;
    background: var(--gradient-2);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
#hero .discount-wrapper:hover .discount{
    scale: 1.1;
}

@media (max-width:1000px){
    #hero .container{
        grid-template-columns: auto 400px;
    }
}
@media (max-width:900px){
    #hero .container *{
        text-align: center;
    }
    #hero .container{
        grid-template-columns: 100%;
        border: none;
    }
    #hero .discount-wrapper{
        margin: auto;
    }
    #hero .buttons-wrapper{
        justify-content: center;
    }
}
/* Hero end */


/* Social handles start */
.social-handle-container{
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glow);
    padding: 20px 10px;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    border-radius: 10px;
    z-index: 90;
}
@media (max-width:1250px){
    .social-handle-container{
        display: none;
    }
}
/* Social handles end */


/* imagens animation  */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  overflow: visible;
}

/* Floating container */
.hero-shoe {
  width: 100%;
  max-width: 660px;
  transform-style: preserve-3d;

  /* Initial Nike-style angle */
  transform: rotate(34deg) translateY(0);

  /* Floating animation */
  animation: shoe-float 3s ease-in-out infinite;

  /* Visual polish */
  filter: drop-shadow(0 60px 60px rgba(0,0,0,0.45));
  will-change: transform;
}

/* FLOATING KEYFRAMES */
@keyframes shoe-float {
  0% {
    transform: rotate(34deg) translateY(0);
  }
  50% {
    transform: rotate(34deg) translateY(15px);
  }
  100% {
    transform: rotate(34deg) translateY(0);
  }
}


/* text start reference of the Zapatillas de alta gama */

.product-description {
    font-family: 'Inter', sans-serif; /* Una fuente limpia y moderna */
    line-height: 1.8;                /* Mayor espacio entre líneas para descansar la vista */
    color: #060000;                     /* Gris oscuro en lugar de negro puro para mayor elegancia */
    max-width: 600px;                /* Evita que el texto sea demasiado ancho */
    letter-spacing: 0.5px;           /* Un poco de aire entre letras */
}

.tech-highlight {
    color: #08e43f;                  /* Color azul profesional similar al de la zapatilla */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    
}

/* Sugerencias de Estilo Profesional */
  .gradient-blue-green-text {
    background: linear-gradient(90deg, #0046be, #99ff00); /* Azul Joma y Verde Neón */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
  }


/*==================
Media for the letter Discover 
*/

@media (max-width: 768px) {

  .hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* IMAGE */
  .hero-shoe-img {
    width: 105%;
    max-width: 520px;
  }

  /* SVG TEXT ON TOP OF IMAGE */
  .hero-text-circle {
    position: absolute;
    top: -1000px;              /* 👈 moves text above shoe */
    left: 50%;
    transform: translateX(-50%) scale(0.75);

    width: 260px;
    height: 260px;

    z-index: 3;
    pointer-events: none;
  }

  /* TEXT STYLE FOR MOBILE */
  .hero-text-circle .text {
    font-size: 26px;
    fill: #ffffff;
    letter-spacing: 4px;
    text-shadow: 0 6px 18px rgba(0,0,0,0.45);
  }
}


/* End of media for the letter Discover  */


.banks { line-height: 1.4; }
.flag{
    display:inline-block;
    margin-left:.35rem;
    font-size: 1.15em;
    transform-origin: 50% 60%;
    animation: wave 2.2s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.18));
}
.flag:nth-child(2){ animation-delay: .12s; }
.flag:nth-child(3){ animation-delay: .24s; }

@keyframes wave{
    0%,100%{ transform: rotate(-6deg) translateY(0); }
    50%    { transform: rotate(6deg) translateY(-1px); }
}