/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Work Sans', sans-serif;
  color: #000;
}


.announcement-bar {
  width: 100%;
  background-color: #000000;
  color: #fff;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
}

.announcement-bar p {
  margin: 0;
}

body {
  padding-top: calc(50px + 8px); /* adjust if header height differs */
}



.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.logo {
  height: 40px;
}

.nav-container {
  flex: 1;
  text-align: center;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.icons img {
  width: 20px;
  margin-left: 20px;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
  min-width: 160px;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Work Sans', sans-serif;
}


.dropdown:hover .dropdown-menu {
  display: block;
}



}.hero-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  max-width: 400px;
}

/* NEW - Chunky, modern font, big & bold */
.hero-new {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 5rem;
  letter-spacing: 4px;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

/* SEASON - Condensed uppercase */
.hero-season {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  letter-spacing: 10px;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

/* ALLSAINTS STYLE - Smaller, spaced, 50% opacity */
.hero-style {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.8;
  margin: 1.2em 0 0;
}

/* SHOP NOW button - solid white background, black text */
.hero-btn {
  display: inline-block;
  padding: 14px 48px;
  margin-top: 2em;
  background: white;
  color: black;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.3s, color 0.3s;
}

.hero-btn:hover {
  background: black;
  color: white;
}
 

/* Marquee */
.marquee {
  background: #fff;
  color: black;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-text span {
  display: inline-block;
  padding: 15px 0;
  animation: scroll-left 15s linear infinite;
  font-size: 13px;
  letter-spacing: 1px;
}
@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}



/* Second Banner */
.second-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.second-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-text {
  position: absolute;
  top: 40%;
  left: 10%;
  color: white;
}
.banner-text h2 {
  font-size: 2.5rem;
}
.banner-text p {
  font-size: 1.1rem;
  margin-top: 5px;
}

/* Divider */
.text-divider {
  text-align: center;
  padding: 40px 20px;
  background-color: #000;
  color: white;
}
.text-divider h3 {
  font-size: 1.6rem;
  letter-spacing: 1px;
}

/* Grid */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  background-color: #000;
}
.category-box {
  position: relative;
  width: 50%;
  height: 500px;
}
.category-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
   
}
.overlay h3 {
  font-size: 2rem;
}
.overlay p {
  font-size: 1.1rem;
}

/* Shop CTA */
.shop-cta {
  text-align: center;
  margin: 20px 10;
  background-color: #000;
}

.shop-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 32px;
  border: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.shop-btn:hover {
  background: #eaeae6;
  color: #000;
}



/* Gallery */
.gallery-section {
  padding: 50px 40px;
  background-color: #eaeae6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Footer */
.footer {
  background: #fff;
  color: #000;
  padding: 50px 40px 20px;
}
.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-links div {
  flex: 1;
  margin: 20px;
}
.footer-links h4 {
  margin-bottom: 10px;
  font-size: 16px;
}
.footer-links ul {
  list-style: none;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}
.newsletter input {
  padding: 10px;
  width: 80%;
  margin-top: 10px;
  border: none;
}
.newsletter button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
}
.newsletter button:hover {
  background: #ddd;
}
.footer p {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #999;
}






/* COLLECTION PAGE STYLES */

.collection-header {
  text-align: center;
  padding: 50px 10px 30px;
  background: #fff;
}

.collection-header h1 {
  font-size: 2.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.collection-header p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #777;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 40px 5;
  background: #fff;
}


.collection-item {
  position: relative;
  text-align: center;
  background: #fff;
  transition: transform 0.3s;
}

.product-image {
  position: relative;
  overflow: hidden;
}

.collection-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.collection-item:hover img {
  transform: scale(1.03);
}

.wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.4rem;
  color: #000;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  z-index: 2;
  transition: background 0.2s;
}

.wishlist-icon:hover {
  background: white;
  color: red;
}

.quick-add {
  position: absolute;
  bottom: 12px;  /* Pushes it up from the bottom */
  left: 0;
  width: 100%;
  background: white;
  color: black;
  border: none;
  padding: 13px 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.5s;
  cursor: pointer;
  z-index: 2;
}



.product-image:hover .quick-add {
  opacity: 1;
}

.collection-item h3 {
  font-size: 1rem;
  margin-top: 12px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.collection-item p {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 10px;
}






.wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.4rem;
  color: #000;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
}

.product-image:hover .wishlist-icon {
  opacity: 1;
}







.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 80px 5%;
  background: #fff;
  font-family: 'Oswald', sans-serif;
}

.product-gallery img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: cover;
}

.product-info {
  flex: 1;
  min-width: 300px;
}

.product-info h1 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.product-info label {
  display: block;
  font-size: 0.9rem;
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.product-info select,
.product-info input[type="number"] {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.add-wishlist-row {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}

.add-to-bag {
  flex: 1;
  padding: 14px 0;
  background: black;
  color: white;
  border: none;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}

.add-to-bag:hover {
  background: #333;
}

.wishlist-icon {
  width: 45px;
  height: 45px;
  border: 1px solid #aaa;
  background: transparent;
  color: black;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border 0.3s;
}

.wishlist-icon:hover {
  border-color: black;
}

.product-description {
  margin-top: 40px;
}

.product-description h3 {
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
}

.product-description p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}






.hero-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
  display: block;
}



.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  z-index: 2;
}

.hero-new {
  font-family: 'Oswald', sans-serif;
  font-size: 3.8rem;
  line-height: 1;
}

.hero-season {
  font-family: 'Oswald', sans-serif;
  font-size: 3.8rem;
  margin-bottom: 10px;
}

.hero-style {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-btn {
  background-color: #fff;
  color: #000;
  padding: 12px 30px;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  border: none;
}

.hero-btn:hover {
  background-color: #000;
  color: #fff;
}



/* ========== MOBILE RESPONSIVE STYLES ========== */
@media (max-width: 768px) {

  /* Header mobile */
  .main-header {
    padding: 15px 20px;
  }

  .nav-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    z-index: 1000;
  }

  .nav-container.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
  }

  .icons {
    display: flex;
    align-items: center;
  }

  /* Hide regular nav and show toggle */
  .main-header .nav-container,
  .main-header .icons {
    flex: unset;
  }

  .main-header .nav-container {
    text-align: left;
  }

  /* Hero banner height adjust */
  .hero-banner {
    height: 70vh;
  }

  .hero-new,
  .hero-season {
    font-size: 2.5rem;
  }

  .hero-style {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
  }

  /* Category grid stack */
  .category-box {
    width: 100%;
    height: 350px;
  }

  /* Gallery grid adjust */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  
    .footer {
      background: #fff;
      color: #000;
      padding: 50px 40px 20px;
    }

    .footer-links {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .footer-links div { flex: 1; margin: 20px; }

    .footer-links h4 { margin-bottom: 10px; font-size: 16px; }

    .footer-links ul { list-style: none; }

    .footer-links ul li { margin-bottom: 8px; }

    .footer-links ul li a {
      color: #000;
      text-decoration: none;
      font-size: 14px;
    }

    .newsletter input {
      padding: 10px;
      width: 80%;
      margin-top: 10px;
      border: none;
    }

    .newsletter button {
      margin-top: 10px;
      padding: 10px 20px;
      border: none;
      background: black;
      color: white;
      cursor: pointer;
    }

    .newsletter button:hover { background: #ddd; }

    .footer p {
      text-align: center;
      margin-top: 30px;
      font-size: 12px;
      color: #999;
    }

  /* Collection grid for mobile */
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Announcement bar */
  .announcement-bar {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

}


/* === FIX: Ensure toggle menu appears correctly on mobile === */
@media (max-width: 768px) {
  .main-header {
    position: relative;
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    z-index: 1201;
  }

  .nav-container {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 1200;
    padding: 20px 0;
  }

  .nav-container.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .dropdown-menu {
    position: static;
    border: none;
    padding-left: 0;
    box-shadow: none;
    background: none;
    display: block;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .icons {
    margin-top: 10px;
  }
}

