: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;

}

a.current{
    font-weight: bold;
}

a.current:hover{
     color: #333;
  text-decoration: none;
  cursor: default;
}



.logo img  {
width: 200px;
 height: 80px;
display:flex;
align-items: center;
margin: auto;
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;
  transition: background-color 0.3s ease, color 0.3s ease;

}

.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;
}


.regroup{
 display:flex;
  justify-content: flex-end;
align-items: center;
  gap: 20px;                  
  padding: 10px;  
}


/*other 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 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: #d4d4d4;
  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;
 
}



.container {
 display: flex;
 justify-content: center;
 gap: 20px;
 padding-bottom: 10px;
 margin: 0 auto;
 width: 100%;
 padding-top: 40px;
 padding-bottom: 40px;

}


.card{
 flex: 0 0 auto;
 max-width: 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 10px;
  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: 100%;
height: 100%;
    max-height: 400px;
object-fit: contain;
}

.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: 1em;
  padding: 10px 40px;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  width: 50px;
  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;
}


.bottom{
  background-color: #657C6A;
  max-width: 100%;
  height: 270px;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 20px;
  margin-top: 20px;
}

.shop, .support, .about-us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: #fcfcfc;
  text-align: center;
}

.support,
.about-us,
.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);
}


/* Footer - bottom bar */
.footer-bar {
  background: transparent;
  padding: 20px 0 0;
}

.footer-bar-inner {
  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 {
  margin: 0 auto;
  display: flex;
  justify-content: space-between; 
  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;
}




/* Responsive layout: stack rows to columns on small screens */
@media (max-width: 900px) {

  /* Header: stack nav-left, logo, and regroup vertically */
  header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 15px;
    padding: 10px;
  }

  /* Left navigation menu: vertical list centered */
  nav.nav-left ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 10px;
  }
  nav.nav-left ul li {
    margin: 0;
  }

  /* Logo centered and resized */
  .logo {
    width: 100%;
    text-align: center;
  }
  .logo img {
    max-width: 180px;
    height: auto;
  }

  /* Regroup section (search, profile, heart, nav-right) stacked */
  .regroup {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .search-input {
    width: 90%;
    max-width: 300px;
  }
  .profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  nav.nav-right ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
  }
  nav.nav-right ul li {
    margin: 0;
  }

  /* Breadcrumb center aligned */
  .breadcrumb {
    text-align: center;
    margin: 20px 0;
    font-size: 0.9rem;
  }

  /* Button container stack vertically and center */
  .button-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    width: 90%;
    max-width: 320px;
    margin: 20px auto;
  }
  .button-container button {
    width: 100%;
    padding: 12px 0;
  }

  /* Cards container stack vertically */
  .container {
    display: flex !important;
    flex-direction: column !important;
     align-items: center;
    gap: 25px;
    margin: 20px 10px;
  }
  .card {
    width: 100% !important;
  }
  .card img {
    width: 100% !important;
    height: auto !important;
  }

  /* Footer sections stack vertically and center */
  
  footer .social-media,
  footer .footer-bar .info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 15px;
  }

  .bottom{
     display: flex ;
    flex-direction: row; 
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  footer .bottom > div,
  footer .footer-bar .info > div {
    margin: 10px 0 !important;
  }

  /* Social media icons smaller and centered */
  .logo-media img.media {
    width: 40px !important;
    margin: 0 8px !important;
  }

  /* Language section centered */
  .language {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
  }
  .language img {
    width: 30px !important;
  }
}




















