@font-face {
font-family: 'Kiona';
src: url('fonts/Kiona-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Kiona';
src: url('fonts/Kiona-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

:root {
  --animate-duration: 800ms;
 
}

body {
  margin: 0;
  background-color: #0d0d0d;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  border-bottom: 1px solid #333;
  position: fixed; 
  background-color: black;
      z-index: 1001;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 300;
  letter-spacing: 1px;
}

 

.logo {
  font-size: 24px;
  font-weight: bold;
}

.center-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.neon-box {
  margin-top: 15%;
  font-weight: bold;
  font-family: 'Arial Black', sans-serif;
  text-shadow: 0 0 10px #ffc107, 0 0 20px #ffc107, 0 0 40px #ffc107;
  width: 55%;
}

.subtitle {
  color: #FFF;
  font-family: Kiona;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.subtitle span {
  font-weight: bold;
  color: #fff;
}
.card-r-pure{
  margin-bottom: 5%;
}
.Tableau footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #333;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #aaa;
}
.LOG footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #333;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #aaa;
}
.HomeController footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #333;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #aaa;
}
.ContactController footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #333;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #aaa;
}
footer {

  width: 100%;
  border-top: 1px solid #333;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #aaa;
  background-color: black;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #fff;
  margin: 5px;
  font-size: 16px;
}
.pure-logo{
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.link-h{
  color: #FFF;
font-family: 'Kiona', sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.link-h:hover{
  opacity:1;
}
.no-active{
  opacity:0.4;
}
.panier-img{
      width: 50px;
}
img.pure-home {
width: 100%;
}
.sub-sub-title{
font-size: 14px;
}
.bold-kiona{
color: #FFF;
font-family: Kiona;
font-size: 11px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.l-footer{
text-decoration: none;
color:white;
color: #FFF;
font-family: Kiona;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.social-icons{
margin-bottom:10px;
}
body{
background: url('../img/fond-home.png') lightgray 50% / cover no-repeat;
}
.pres-prod{
color: #FFF;
font-family: Kiona;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 93%;
text-align: left;
opacity: 0.7;
margin-top: 5%;
}
.product-card {
  padding-right: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  font-family: Kiona;
}
.product-card:hover {
  transform: scale(1.03);
}
.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.product-title {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 2px;
}
.product-subtitle {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 15px;
}
.product-price {
  font-weight: bold;
  font-size: 1.2rem;
}
.flip-card {
background-color: transparent;
width: 220px;
height: 220px;
perspective: 1000px;
margin: auto;
}

.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
transition: transform 0.8s;
transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
border-radius: 8px;
overflow: hidden;
}

.flip-card-front img {
width: 100%;
height: 100%;
object-fit: cover;
}

.flip-card-back {
background-color: #1a1a1a;
color: white;
display: flex;
align-items: center;
justify-content: center;
transform: rotateY(180deg);
flex-direction: column;
}

.flip-card-back i {
font-size: 24px;
margin: 10px;
color: #fff;
transition: color 0.3s;
}

.flip-card-back i.fa-soundcloud:hover {
color: #f46242;
} 
.flip-card-back i.fa-spotify:hover {
color: #119218;
} 
.flip-card-back i.fa-instagram:hover {
color: #e66ad9;
} 

.flip-card {
  background-color: transparent;
  width: 220px;
  height: 220px;
  perspective: 1000px;
  margin: auto;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back {
  background-color: #1a1a1a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
  flex-direction: column;
}

.flip-card-back i {
  font-size: 24px;
  margin: 10px;
  color: #fff;
  transition: color 0.3s;
}

.flip-card-back i:hover {
  color: #f46242;
}
.admin-section{
  margin-left: 15%;
      margin-top: 12%;
}
.t-admin{
     color: white !important;
    border: 1px solid white;
    padding-left: 5%;
   
}
.admin-section input{
  margin-bottom: 30px;
  margin-left: 30px;
}
.admin-section textarea{
  
  margin-left: 30px;
}
.actu-box{
  width: 80%;
  margin: 10%;
}
.actu-content{
  margin-top: 5%;
}
.img-actu{
  width: 100%;
}
.mention-section{
  margin-top: 5%;
}
.MentionController p{
        color: #FFF;
    font-family: 'Kiona', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  opacity: 0.6;
}
.PolitiqueController p{
        color: #FFF;
    font-family: 'Kiona', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  opacity: 0.6;
}
.MentionController .container{
  padding-top: 85px;
}
.PolitiqueController .container{
  padding-top: 85px;
}
.border-actu{
      border-top: 1px solid #333;
      border-bottom: 1px solid #333;
         padding-top: 2%!important;
         padding-bottom: 2%!important;
}
.actu-txt{
      color: #FFF;
    font-family: 'Kiona', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  opacity: 0.6;
}
.actu-t{
      color: #FFF;
    font-family: 'Kiona', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
 
    
}
.actu-st{
      color: #FFF;
    font-family: 'Kiona', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.actu-a{
  text-align: left!important;
}
.link-actu{

}
.block-shop{
  margin-top: 10%;
  margin-bottom: 10%;
}
.tee-name{
    color: #FFF;
    font-family: 'Kiona', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.tee-price{
   color: #FFF;
    font-family: 'Kiona', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
a {
  text-decoration: none!important;
}
.container-produit{
  color: white;
  padding-top: 5%;
}
.LOG .container{
  color: white;
  padding-top: 5%;
}
.size-button {
     border: 1px solid white;
     color: white;
     background-color: transparent;
     margin-right: 5px;
     border-radius: 50px;
     width: 40px;
     height: 40px;
   }

   .size-button.active, .size-button:hover {
     background-color: white;
     color: black;
   }

   .quantity-selector {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 20px;
   }

   .quantity-selector button {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     border: 1px solid white;
     background-color: transparent;
     color: white;
   }

   .quantity-selector button:hover {
     background-color: white;
     color: black;
   }

   .thumbnail {
     width: 70px;
     height: 100%;
     margin-right: 10px;
     cursor: pointer;
   }

   .other-products img {
     width: 100%;
     max-width: 200px;
   }

   .badge-note {
     color: #fff;
     display: inline-block;
     margin-bottom: 10px;
     font-family: Kiona;
   }
   .container-produit{
     margin-top: 5%;
     margin-bottom: 5%;
     font-family: Kiona;
   }
.pres-prod-admin {
    color: #FFF;
    font-family: 'Kiona', sans-serif;

    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    opacity: 0.7;
    margin-top: 5%;
}
.pres-prod-admin-link a{
  color: #FFF;
    font-family: 'Kiona', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    opacity: 0.7;
    margin-top: 5%;
}
.btn-ajout{
  margin-top:3%;
  margin-bottom:3%;
}
.container-produit form div{
  display:none;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -400px; /* décalé hors écran */
    width: 350px;
    height: 100%;
    background: #dcdcdc;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    transition: right 0.3s ease;
    z-index: 1000;
}

/* Quand on ajoute la classe "active" */
.cart-panel.active {
    right: 0; /* visible */
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #aaa;
    font-weight: bold;
}

.cart-body {
    font-size: 14px;
    text-align: center;
}
.t-panier{
  color: #000;
font-family: Kiona;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.t-cart-n{
color: #000;

font-family: sans-serif;
font-size: 22px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.t-cart-sn{
  color: #000;


font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.t-cart-taille{
  color: #000;


font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;

opacity: 0.5;
}
.center-content{
  margin-top: 87px;
}

.container{
    margin-top: 87px;
}
.btn-p-mg{
  margin-top: 10%;
}
.card-r-pure.animate__animated.animate__fadeIn {
  --animate-duration: 4s;
}
.ContactController .container{
  padding-top: 5%;
}
.ActuController .container{
  padding-top: 5%;
}
@media  (max-width: 600px) {
  .actu-a {

        padding-bottom: 25px!important;
  }
    .mobile{
            display: block!important;

    }
    .pc{
      display: none!important;
    }
    .logo{
      display: none;
    }
    .cart-panel.active {
    right: 0;
    width: 100%;
}
.product-card {
    padding-right: 0px;
}
.neon-box {
    margin-top: 60%;
    width: 90%;
}
}
@media  (min-width: 600px) {
    .mobile{
      display: none!important;
    }
    .pc{
    }
}
.div-image-shop{

    float: left;
    width: 48%;
    margin: 2%;
}
.img-p-shop{
  width: 100%;
}
li{
      list-style-type: none;
}
.cart-body ul{
  padding-left: 0;
  text-align: left;
 
}
button{
  background: transparent;
    border: none;
}
.div-txt-shop{
    float: left;
    width: 46%;
    margin-left: 2%;
    text-align: left;
    height: 100%;
}
.div-paid-shop{
position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #333;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #aaa;
}
.shop-prod-item{
  float: left;
  width: 100%;
}
.shop-c-l{
  opacity: 0.6;
}
.shop-c-l:hover{
  opacity: 1;
} 
.pres-prod-center{
  text-align: center;
}
.cart-panel-v{
      right: 0;
}
.checkout-btn{
      font-family:'Kiona';
    font-style: normal;
    font-weight: 700;
    line-height: normal;
} 
.contact-form {
    max-width: 500px;
    margin: 50px auto;
    padding: 25px;
    background: rgba(0, 0, 0, 0.7); /* semi-transparent */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    color: #fff;
     font-family: Kiona;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #f1f1f1;
    letter-spacing: 1px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    color: #ccc;
    display: block;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #222;
    color: #f1f1f1;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #333;
    border: 1px solid #ff9800; /* orange accent */
    box-shadow: 0 0 8px rgba(255,152,0,0.6);
}

.textarea {
    min-height: 120px;
    resize: vertical;
        height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #ff5722, #e64a19);
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.menu-btn {
  font-size: 30px;
  cursor: pointer;
  color: white;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

/* Overlay */
.menu-overlay {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.95);
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 1000;
}

/* Contenu du menu */
.menu-content {
  position: relative;
  top: 25%;
  text-align: center;
}

.menu-content ul {
  list-style: none;
  padding: 0;
}

.menu-content ul li {
  margin: 20px 0;
}

.menu-content ul li a {
  font-size: 28px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.menu-content ul li a:hover {
  color: #f39c12;
}

/* Bouton fermer */
.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 50px;
  cursor: pointer;
  color: white;
}
.burger {
  width: 30px;
  height: 22px;
  right: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  top: 35px;
  margin-right: 33px;
}

.burger span {
  height: 4px;
  width: 100%;
  background: white;
  border-radius: 5px;
  transition: 0.4s;
}

/* Animation croix */
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.img-full-css{
  width: 100%;
}
.success-section p{
      color: #FFF;
    font-family: 'Kiona', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.success-section{
  margin-top: 15%;
}
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0; /* top:0;left:0;right:0;bottom:0 */
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

/* Image agrandie */
.lightbox img {
      width: 40%;
    max-width: 90vw;   /* 90% de la largeur écran */
    max-height: 90vh;  /* 90% de la hauteur écran */
    object-fit: contain; /* adapte l’image sans la déformer */
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
    animation: zoomIn 0.3s ease;
}

/* Animation zoom */
@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.Tableau .container {
  margin-top: 200px!important;
}
.Tableau form {
  width: 50%;
}
.thumbnail{



  }
  .l-a{
  border: solid 1px white;
    padding: 6px;
    font-size: 20px;
}