:root {
    --font-primary: "Boots And Spurs", "Segoe UI", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --color-primary:#1b1b1b;
  --color-secondary: #fcfcfc; 
  --color-button-bg: #fcfcfc;
  --border-radius: 0.3em;
 --width:100%;
  --max-width: 1920px;
}

@import url('https://fonts.googleapis.com/css2?family=Boots+And+Spurs&display=swap');

html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
    box-sizing: border-box;
}


body {
   color: var(--color-primary);
  background-color: var(--color-secondary);
  font-family: var(--font-primary);
  padding: min(50px, 7%);
  width: 100%;
  height: 100%;
  margin: 0;
   box-sizing: border-box;
  overflow-x: hidden;
}


header{
max-width: 1780px;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
gap:50px;
padding: 0 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}



.nav-left ul {
display: flex;
align-items: center;
gap: 20px;
list-style: none;
margin: 0;
padding: 0;
height: 100%;
}

.cta-button {
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-left a {
text-decoration: none;
color: #333;

}



.logo img  {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}



.nav-right ul{
display: flex;
align-items: center;
gap: 20px;
list-style: none;
margin: 0;
padding: 0;
}

.nav-right li {
  margin: 0;
   text-decoration: none;
  color: #1b1b1b;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  
}

.nav-left li a:hover {
  color: #0056b3; 
  text-decoration: underline;
}

.nav-right a{
  text-decoration: none;
color: #333;
font-weight: bold;
}


.nav-right li a:hover {
  color: #0056b3; 
  text-decoration: underline;
}


.search-input {
padding: 8px 12px;
 border-radius: 20px;
 border: 1px solid #ccc;

}

.search-input:hover{
color: #ffffff;
  border-color: green;

}

.profile-img {
width: 40px;
 height: 40px;
 border-radius: 50%;
 object-fit: cover;
}


.about-link {
 text-decoration: none;
 color: #333;
font-weight: bold;
}


/* new container */
.regroup {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 10px;
    position: relative; /* Ajout pour positionner le badge du panier. */
}


/*new content*/
.scroll-wrapper{
    padding-top: 20px;
    font-size: 20px;      
    cursor: pointer;      
    transition: color 0.3s ease, transform 0.3s ease; 
    user-select: none;  
}

.scroll-arrow:hover {
  color: #007BFF;           
    transform: translateY(-2px);  
}



.breadcrumb {
  font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
  color: #555;
}

.breadcrumb a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #000;
  text-decoration: underline;
}

.breadcrumb .current {
  font-weight: bold;
  color: #000;
  cursor: default;
}

.breadcrumb a[href="women.html"]:hover {
  color: #555; 
  text-decoration: none; 
  cursor: default; 
}

.button-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
  margin: 20px 5px;
  width: 90%;
   font-size: 1.2em;
}


.button-container button {
  border: none;
  width: 150px;
  height: 40px;
  border-radius: 10px;
  font-size: 16px;
  background-color: white;
  color: #1b1b1b;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
  background-color: #007BFF; 
  color: white;
  transform: translateY(-2px);
}


.dropdown-btn {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background-color: #f5f5f5;
  color: #333;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.dropdown-btn::after {
  content: " ▼"; 
  font-size: 0.8em;
  color: #333;
  margin-left: 10px;
 }




.button a.cta{
  display: inline-block;
  color: #1b1b1b;
  text-align: center;
  font-size: 0.9em;
  width: 150px;
  padding: 10px 30px;
  border-radius: 15px;
  overflow: hidden;          
  text-decoration: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  margin: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}


.button a.cta:hover{
   background-color: #007BFF; 
  color: white
}

.top {
  display: flex; 
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  align-items: center;
}

.picture {
  flex: 0 0 220px; 
}

.picture img {
   display: flex;
  width: 100%;
  padding-top: 200px;
 padding-bottom: 200px;
  object-fit: contain;
   border-radius: 15px;
  align-items: center;
}

.information {
  flex: 1;
  max-width: 500px;
  padding: 16px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.information h3{
  font-size: 18px;
  margin: 0;
  text-decoration: none;
}

.information h2{
  font-size: 25px;
  margin: 10px 0;
  text-decoration: none;
}


.information p{
 text-decoration: none;
}
.price {
  font-size: 18px;
  color: #333; 
}

.size-options button{
  margin: 5px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  cursor: pointer;

}

.description{
  margin: 5px 0;

}


.may-also{
  text-align: center;
} 


.container-card {
 display: flex;
 flex-direction: row;
 justify-content: center;
 gap: 20px;
 padding-bottom: 10px;
 margin: 0 auto;
 width: 280px;
 padding-top: 40px;
 padding-bottom: 40px;

}


.card{
 flex: 0 0 auto;
  height: 390px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 10px;
  max-width: 320px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);



}

.card img{
width: 300px;
height: 200px;
object-fit: contain;
 background-color: white;
 border-radius: 10px;
}

.card-content p,
.card-content h3 {
  margin: 0;
  margin: 5px 0;
}

.card-content a.cta {
  display: inline-block;
 color: #1b1b1b;
 text-align: center;
 font-size: 0.9em;
  padding: 10px 30px;
  border-radius: 15px;
  overflow: hidden;          
  text-decoration: none;
  width: 50px;
  height: 20px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
   margin: 5px;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.2s ease;
}

.card-content a.cta:hover{
   background-color: #007BFF; 
  color: white
}

.card h3,
.card p,
.card a {
text-align: left;
margin: 5px 0;
}

/*footer*/
.bottom{
  background-color: #657C6A;
  max-width: 100%;
  min-height: 270px;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 20px;
}

.shop, .support, .about-us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: #fcfcfc;
  text-align: center;
   font-weight: bold;
}

.support{
  align-self: flex-start;
  padding-top: 40px;
}

.shop{
  align-self: flex-start;
  padding-top: 40px
}


.shop h3:hover, p:hover,
.support h3:hover, p:hover,
.about-us h3:hover, p:hover {
  text-decoration: underline;
}


.title-media h3{
  text-align: center;
}

.logo-media {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  gap: 20px; 
  align-items: center;
  margin-top: 20px;
}

.logo-media img{
  width: auto;
  height: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
    padding-bottom: 40px;


}

.logo-media img:hover {
  transform: scale(1.2);
}

/*new content*/
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f5f5f5;
}

.info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.logo-botton {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo-botton img{
  width: 150px;
}

.logo-botton p {
  margin: 0 15px 0 0;
  font-size: 14px;
  cursor: pointer;
}


.language {
  margin-left: 100px;
  display: flex;
justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
}

.language h3 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.language img {
  width: 24px;
  height: auto;
}


/* Footer - bottom bar */
.footer-bar {
  background: transparent;
  padding: 20px 0 0;
}

.footer-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: justify;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Left side: logo + legal links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.logo-bottom img {
  height: 44px;
  width: auto;
  display: block;
}

/* Legal links as inline list */
.legal-links ul {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.legal-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.legal-links a:hover { text-decoration: underline; }

/* FOOTER BAR */
.footer-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  background-color: #fcfcfc;
}

.footer-bar-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* separates left and right */
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* LEFT SIDE */
.footer-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 45px;
  width: auto;
}

.legal-links ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: #007bff;
  text-decoration: underline;
}

/* RIGHT SIDE */
.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
}

.lang-btn[aria-pressed="true"] {
  background: #1b1b1b;
  color: #fff;
  border-color: #1b1b1b;
}

.flag {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
}

.copyright {
  margin: 0;
  font-size: 13px;
  color: #666;
}




