html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #ffffff;
    color: #1e1e1e;
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow-x: hidden;

    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

main {
    flex: 1 0 auto; /* 👈 ensures main grows and takes up available space */
    width: 100%;
    display: block;
    box-sizing: border-box;
}



/* Optional: add fade-in animation when the site loads */
body.loaded {
    animation: fadeInBody 1.2s ease-out;
}

@keyframes fadeInBody {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f0e6e0;
}

::-webkit-scrollbar-thumb {
    background: #73512B;
    border-radius: 6px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
    background: #b95c2e;
}

/* Anchor smooth hover effect */
a {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* All headings use Anton */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    font-weight: normal;
}



/* Header and Navbar */
header {
  background: linear-gradient(to right, #000000, #1a1a1a);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 999;
  animation: slideDownHeader 0.7s ease-out;
}

@keyframes slideDownHeader {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-img {
  height: 65px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(2px 2px 2px rgba(255, 255, 255, 0.1));
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px #b95c2e);
}

header.scrolled {
  box-shadow: 0 6px 20px rgba(185, 92, 46, 0.6);
  transition: box-shadow 0.4s ease;
}

nav .navbar {
  list-style: none;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

nav .navbar li {
  position: relative;
}

nav .navbar a {
  font-family: 'Anton', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 10px 0;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
  display: block;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav .navbar a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #b95c2e;
  transition: width 0.4s ease;
  border-radius: 2px;
  box-shadow: 0 0 8px #b95c2e;
}

nav .navbar a:hover {
  color: #ffffff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 15px #b95c2e,
    0 0 20px #b95c2e;
}

nav .navbar a:hover::after {
  width: 100%;
}

nav .navbar li:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #1a1a1a;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  min-width: 180px;
  top: 100%;
  left: 0;
  z-index: 10;
  overflow: hidden;
}

.dropdown-content li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a {
  color: #f5d4c3;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  text-transform: none;
  padding: 12px 18px;
  display: block;
  font-size: 1.1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #b95c2e;
  color: #fff;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    position: relative; /* ✅ Make header scrollable with page */
    top: auto;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 1001;
  }

  nav {
    width: 100%;
  }

  nav .navbar {
    flex-direction: column;
    width: 100%;
    gap: 0;
    display: none;
    margin-top: 15px;
    padding: 20px 0;
    background: linear-gradient(to bottom, #000000, #1a1a1a);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative; /* ✅ Part of normal page flow */
    z-index: 1000;
  }

  nav .navbar.active {
    display: flex;
  }

  nav .navbar li {
    width: 100%;
    text-align: center;
    margin: 12px 0;
  }

  nav .navbar a {
    font-size: 1.5rem;
  }

  .dropdown-content {
    position: static; /* ✅ No absolute/fixed positioning */
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding-left: 20px;
  }

  .dropdown-content a {
    font-size: 1rem;
    padding: 10px 0;
  }
}


/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #73512B, #ffffff);
  position: relative;
  overflow: hidden;
  animation: fadeInHero 1.5s ease-in-out;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-image {
  max-width: 90%;
  height: auto;
  display: inline-block;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
}

.brand-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px #b95c2e);
}

.hero h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #1e1e1e;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero h1:hover {
  color: #b95c2e;
  text-shadow:
    0 0 5px #b95c2e,
    0 0 10px #b95c2e;
}

.hero p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInText 2s ease;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Main Highlight Product Section */
.main-product {
  background: url('../images/image.png') center center / cover no-repeat;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.main-product::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  z-index: 0;
}

/* Content layout */
.main-product-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Jeans Image */
.main-product-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  padding: 15px;
  background-color: #000;
  border: 2px solid #73512B;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.main-product-img:hover {
  transform: scale(1.03) rotate(-1deg);
}

/* Text Box */
.main-product-text {
  background: rgba(0, 0, 0, 0.85);
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  color: #f5d4c3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: fadeInBox 1s ease forwards;
}

/* Text Entrance Animation */
@keyframes fadeInBox {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Headings */
.main-product-text h2 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #73512B;
  letter-spacing: 1px;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
  transition: transform 0.3s ease;
}

.main-product-text h2:hover {
  transform: scale(1.05);
}

.main-product-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 10px 0 25px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.main-product-text .desc {
  font-size: 1.25rem;
  color: #d8a35c;
  line-height: 1.8;
  margin: 1.5rem 0;
  transition: color 0.3s ease;
}

.main-product-text .desc:hover {
  color: #fff;
}

.main-product-text .length,
.main-product-text .waist {
  font-size: 1.4rem;
  margin-top: 1rem;
  color: #fff;
}

.main-product-text .length span {
  background-color: #73512B;
  color: #fff;
  padding: 4px 10px;
  font-size: 1.2rem;
  border-radius: 5px;
  margin: 0 5px;
  font-weight: bold;
}

/* Buy Button */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.buy-btn {
  display: inline-block;
  padding: 18px 42px;
  margin-top: 30px;
  font-size: 1.6rem;
  font-family: 'Bebas Neue', sans-serif;  /* Sleek, readable uppercase font */
  color: #fff;
  background: linear-gradient(135deg, #b95c2e, #9c5d30); /* Tan gradient */
  border: none;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 4px;
  text-align: center;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; /* Black outline for clarity */
  box-shadow: 0 6px 20px rgba(185, 92, 46, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.buy-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 80%);
  transition: transform 0.6s ease;
  transform: scale(0);
  border-radius: 50%;
  z-index: 0;
}

.buy-btn:hover::before {
  transform: scale(2.5);
}

.buy-btn:hover {
  background: linear-gradient(135deg, #9c5d30, #73512b);
  transform: scale(1.08);
  letter-spacing: 5px;
  box-shadow: 0 0 40px rgba(156, 93, 48, 0.6);
  color: #fff;
}

.buy-btn span, .buy-btn strong {
  position: relative;
  z-index: 1;
}



/* Separator Line */
.separator-line {
  height: 12px;
  background:
    linear-gradient(
      to bottom,
      black 0,
      black 4px,
      white 4px,
      white 8px,
      black 8px,
      black 12px
    );
  width: 100%;
}




/* Featured Products Section */
.featured-products {
  background: url('../images/image.png') center center / cover no-repeat;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.featured-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  z-index: -1;
}

.product-desc {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  margin: 10px 0;
  color: #f5d4c3;
  text-align: center;
}


.featured-products .section-title {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: #73512B;
  margin-bottom: 50px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  cursor: default;

  /* Simulated white text border */
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff,
     0    0   8px #73512B; /* soft orange glow */
}

/* Glow effect on hover */
.featured-products .section-title:hover {
  box-shadow:
    0 0 10px #73512B,
    0 0 20px #73512B,
    0 0 30px #73512B,
    0 0 40px #73512B;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff,
     0 0 10px #fff,
     0 0 20px #73512B,
     0 0 30px #73512B;
  transform: scale(1.05);
}



/* Product Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100vw;
  margin: auto;
}

.product-item {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.product-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: auto; /* Let the image resize proportionally */
  display: block;
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 1;
  object-fit: contain; /* Optional: ensures the image scales properly inside */
}

.product-img .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.product-item:hover .hover-img {
  opacity: 1;
}

.product-item:hover .product-img img:first-child {
  opacity: 0;
}

/* Buy Now Button */
.product-item .buy-now {
  margin-top: 15px;
  background: #b95c2e;
  color: #fff;
  font-family: 'Anton', sans-serif;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.product-item .buy-now:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 12px #b95c2e;
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .main-product-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }

  .main-product-img {
    max-width: 90%;
    margin-bottom: 20px;
  }

  .main-product-text {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
  }
}

/* Footer */
footer {
    background-color: #000;
    color: #f5d4c3;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    border-top: 1px solid #9c5d30;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    color: #f5d4c3;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.footer-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #b95c2e;
    transition: width 0.3s;
    margin-top: 5px;
}

.footer-links a:hover {
    color: #b95c2e;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 1.4rem;
    margin: 0 12px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    color: #b95c2e;
    transform: scale(1.2);
}

.footer-bottom {
    font-size: 0.9rem;
    color: #999;
    border-top: 1px solid #222;
    padding-top: 10px;
}


.jeans-page {
  background: url('../images/image.png') center center / cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.jeans-title {
  font-family: 'Anton', sans-serif;
  font-size: 4.5rem;
  color: #73512B;
  padding: 25px 50px;
  background: rgba(0, 0, 0, 0.5); /* slightly transparent background for contrast */
  border: 3px solid #fff;
  border-radius: 16px;
  box-shadow:
    0 0 10px #fff,
    0 0 20px #b95c2e,
    0 0 30px #fff,
    inset 0 0 10px #b95c2e;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: inline-block;
  cursor: default;
}

.jeans-title:hover {
  transform: scale(1.07);
  box-shadow:
    0 0 15px #fff,
    0 0 35px #b95c2e,
    0 0 50px #fff,
    inset 0 0 20px #b95c2e;
}


.jeans-product {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.jeans-box {
  display: flex;
  background: rgba(0, 0, 0, 0.85);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 
    0 0 25px rgba(255, 255, 255, 0.1),
    0 0 80px rgba(185, 92, 46, 0.15);
  flex-wrap: wrap;
  max-width: 1200px;
  align-items: center;
  gap: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.jeans-box:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.2),
    0 0 90px rgba(185, 92, 46, 0.3);
}

.jeans-img {
  flex: 1;
  max-width: 480px;
  width: 100%;
  border-radius: 10px;
  background-color: #9c5d30;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.jeans-img:hover {
  transform: scale(1.03);
}

.jeans-details {
  flex: 1;
  padding-left: 20px;
  color: #f5d4c3;
  min-width: 300px;
}

.jeans-details h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: #73512B;
  margin-bottom: 20px;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

.jeans-details p {
  font-size: 1.25rem;
  color: #f5d4c3;
  line-height: 1.8;
  margin-bottom: 25px;
  font-family: 'Roboto Condensed', sans-serif;
}

.buy-btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #b95c2e;
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.buy-btn:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 15px #b95c2e;
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .jeans-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .jeans-details {
    padding-left: 0;
  }

  .jeans-details h2 {
    font-size: 2.5rem;
  }

  .jeans-details p {
    font-size: 1.1rem;
  }

  .buy-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

.outerwear-nav-container {
  background-color: #000;
  padding: 15px 0;
  text-align: center;
  border-top: 2px solid #b95c2e;
  border-bottom: 2px solid #b95c2e;
  box-shadow: 0 2px 10px rgba(185, 92, 46, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.outerwear-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.outerwear-nav a {
  color: #f5d4c3;
  text-decoration: none;
  font-size: 1.4rem;
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}

.outerwear-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background-color: #b95c2e;
  transition: width 0.3s ease;
  box-shadow: 0 0 6px #b95c2e;
  border-radius: 2px;
}

.outerwear-nav a:hover {
  color: #fff;
  text-shadow: 0 0 5px #fff, 0 0 10px #b95c2e;
}

.outerwear-nav a:hover::after {
  width: 100%;
}

.outerwear-page {
  background: url('../images/image.png') center center / cover no-repeat;
  padding: 80px 20px;
  min-height: 100vh;
}




/* Outerwear Section */
.outerwear-section {
  padding: 80px 20px;
  max-width: 1300px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.outerwear-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 50px;
  text-shadow:
    0 0 10px #b95c2e,
    0 0 20px #b95c2e,
    0 0 30px #fff;
  padding: 15px 30px;
  border: 2px solid #fff;
  display: inline-block;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease-in-out;
}

.outerwear-section h2:hover {
  box-shadow:
    0 0 20px #b95c2e,
    0 0 40px #fff;
  transform: scale(1.05);
}

.outerwear-product-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.outerwear-card {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(185, 92, 46, 0.4);
  max-width: 320px;
  text-align: center;
  color: #f5d4c3;
  flex: 0 0 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(6px);
}

.outerwear-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.outerwear-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background-color: #b95c2e;
  padding: 10px;
  border-radius: 8px;
  margin: 0 auto 20px auto;
  box-sizing: border-box;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.08);
}

.outerwear-desc {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.6;
  font-family: 'Roboto Condensed', sans-serif;
}

.buy-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  color: #ffffff;
  background: transparent;
  border: 2px solid #b95c2e;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.buy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #b95c2e;
  z-index: -1;
  transition: all 0.4s ease;
}

.buy-btn:hover::before {
  left: 0;
}

.buy-btn:hover {
  color: #000;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 20px rgba(185, 92, 46, 0.4);
}


/* Responsive Styling */
@media (max-width: 768px) {
  .outerwear-product-row {
    flex-direction: column;
    align-items: center;
  }

  .outerwear-nav a {
    display: block;
    margin: 12px 0;
  }

  .outerwear-section h2 {
    font-size: 2.5rem;
    padding: 12px 24px;
  }
}


/* Responsive Layout */
@media (max-width: 768px) {
  .jeans-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .jeans-details {
    padding-left: 0;
  }

  .jeans-title {
    font-size: 3rem;
  }

  .jeans-details h2 {
    font-size: 2rem;
  }
}



/* Responsive fallback */
@media (max-width: 1024px) {
  .slider-window {
    max-width: 100%;
  }

  .product-card {
    flex: 0 0 80%;
    margin: 0 10px;
  }
}


/* Responsive Layout */
@media (max-width: 768px) {
    nav .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .main-product-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .main-product-text {
        padding-left: 0;
    }

    .main-product-img {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .main-product-wrapper {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .main-product-text {
        max-width: 400px;
        padding-left: 40px;
    }

    .main-product-img {
        width: 50%;
    }
}
/* ------------------ Contact Section Styling ------------------ */
.contact-section {
  background: url('../images/image.png') center center / cover no-repeat;
  padding: 80px 20px;
  min-height: 100vh;
  font-family: 'Roboto Condensed', sans-serif;
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Background Box for Hero Text */
.contact-hero {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.contact-section h1.contact-title {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 3px #000, 0 0 10px #b95c2e;
}

.contact-section p.contact-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f5d4c3;
  margin-bottom: 20px;
}

.contact-form-section {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 40px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto 60px auto;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
}

.contact-form-section h2 {
  font-family: 'Anton', sans-serif;
  color: #73512B;
  margin-bottom: 30px;
  font-size: 2rem;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 6px;
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto Condensed', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

.contact-form textarea {
  height: 180px;
  resize: none;
}

.contact-form .submit-btn {
  display: block;
  margin: 30px auto 10px;
  padding: 14px 36px;
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  background-color: #b95c2e;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.1);
}

.contact-form .submit-btn:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 16px #b95c2e;
}

.or-separator {
  font-size: 1.1rem;
  margin: 30px auto;
  font-weight: bold;
  color: #f5d4c3;
}

.email-direct-button {
  margin-top: 20px;
}

.direct-email-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid #b95c2e;
  color: #fff;
  background-color: transparent;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Anton', sans-serif;
}

.direct-email-btn:hover {
  background-color: #b95c2e;
  color: #000;
  box-shadow: 0 0 12px #b95c2e;
}

/* Background box for contact info */
.contact-info {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 40px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto 60px auto;
  color: #f5d4c3;
  font-size: 1.1rem;
  line-height: 1.7;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.contact-info h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #73512B;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-section h1.contact-title {
    font-size: 2.5rem;
  }

  .contact-section p.contact-subtitle {
    font-size: 1rem;
  }
}

/* ------------------ Coming Soon Page Styling ------------------ */
.coming-soon-page {
  background: url('../images/image.png') center center / cover no-repeat fixed;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  min-height: 100vh;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-content {
  max-width: 850px;
  margin: auto;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.92), rgba(20, 20, 20, 0.85));
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.05),
    0 0 60px rgba(185, 92, 46, 0.3);
  animation: fadeInUp 1.2s ease-out both;
}

.coming-soon-content h1 {
  font-family: 'Anton', sans-serif;
  font-size: 3.8rem;
  color: #b95c2e;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.2),
    0 0 30px #b95c2e;
  margin-bottom: 25px;
  animation: glowText 2.5s infinite alternate ease-in-out;
}

.coming-soon-content p {
  font-size: 1.3rem;
  color: #f5d4c3;
  margin-bottom: 35px;
  line-height: 1.7;
}

.back-home-btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 1.05rem;
  font-weight: bold;
  font-family: 'Anton', sans-serif;
  background: linear-gradient(to right, #b95c2e, #9c5d30);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.back-home-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 18px #b95c2e, 0 0 5px #fff inset;
  letter-spacing: 1px;
}

/* Glowing Heading Animation */
@keyframes glowText {
  0% {
    text-shadow: 0 0 10px #b95c2e, 0 0 20px #b95c2e;
  }
  100% {
    text-shadow: 0 0 20px #fff, 0 0 40px #b95c2e;
  }
}

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-content h1 {
    font-size: 2.6rem;
  }

  .coming-soon-content p {
    font-size: 1.1rem;
  }

  .back-home-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
.thank-you-section {
  background: url('../images/image.png') center center / cover no-repeat fixed;
  padding: 100px 20px;
  min-height: 100vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.thank-you-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(30, 20, 10, 0.6));
  z-index: 1;
}

.thank-you-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.08),
    0 0 40px rgba(185, 92, 46, 0.2),
    inset 0 0 15px rgba(255, 255, 255, 0.05);
  max-width: 800px;
  width: 100%;
  color: #f5d4c3;
  text-align: center;
  backdrop-filter: blur(5px);
}

.thank-you-content h1 {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  color: #b95c2e;
  margin-bottom: 20px;
  text-shadow:
    0 0 6px #fff,
    0 0 10px #b95c2e,
    0 0 14px #fff;
}

.thank-you-content p {
  font-size: 1.3rem;
  color: #f5d4c3;
  margin-bottom: 35px;
  line-height: 1.7;
  font-family: 'Roboto Condensed', sans-serif;
}

.back-home-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: 'Anton', sans-serif;
  background-color: #b95c2e;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

.back-home-btn:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #b95c2e;
  box-shadow:
    0 0 10px #b95c2e,
    0 0 20px #b95c2e;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .thank-you-content h1 {
    font-size: 2.5rem;
  }

  .thank-you-content p {
    font-size: 1.1rem;
  }

  .back-home-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}


