/* #region FOR ALL FILES */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

html, body {
  overflow-x: hidden;
}

.content {
  min-width: 0;
  flex: 1;
}

/* Top Banner Styling */
.top-banner {
  width: 100%;
  background-color: #f2f2eb; /* LIght yellow background */
  text-align: center;
  padding: 10px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.top-banner {
  width: 100%;
  background-color: #f2f2eb;
  text-align: center;
  padding: 10px 15px;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden; /* CRITICAL: Prevents scrollbars during slide */
}

/* Base Text - Default Resting State */
#top-banner-text {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #111111;
  display: inline-block;
  
  /* Smooth easing curve */
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 1;
  transform: translateX(0);
}

/* State 1: Exit Left */
#top-banner-text.exit-left {
  opacity: 0;
  transform: translateX(-50px);
}

/* State 2: Prepare Off-screen Right (No Transition) */
#top-banner-text.enter-right {
  transition: none !important;
  opacity: 0;
  transform: translateX(50px);
}
/* Base styling for all links */
a {
  font-family: Arial, sans-serif;
  color: #333333;             /* Dark neutral color instead of default blue */
  text-decoration: none;      /* Removes the default underline */
  padding: 1px 0px;          /* Gives space around the text/icon for the highlight */
  border-radius: 1px;         /* Smooth rounded corners for the background */
  transition: background-color 0.2s ease, color 0.2s ease; /* Smooth hover transition */
  display: inline-flex;       /* Keeps text and icons aligned properly */
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-weight: 550;
}

/* Hover state: Gentle grey highlight */
a:hover {
  background-color: #e5e5e5;  /* Soft light grey highlight background */
  color: #000000;             /* Slightly darker text/icon on hover */
}

/* Optional: Subtle pressed effect when clicked */
a:active {
  background-color: #d0d0d0;  /* Slightly darker grey while being clicked */
}

/* Nav container: center all nav items vertically relative to each other */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 20px; /* Adds overall spacing from the left edge of the page */
  margin-top: 7px; /*Adds a bit of spacing from the top of the banner */
}

.page-wrapper {
  display: flex;
  justify-content: space-between;
  padding-right: 200px;
  box-sizing: border-box;
  padding-left: 10px;
  position: relative;   /* ADD THIS */
  min-height: 100vh;    /* ADD THIS */
}

@font-face {
  font-family: 'Hello Paris Sans Regular';
  src: url('fonts/Hello\ Paris\ Sans\ ExtraLight.ttf.ttf');
}

.side-logo {
  font-family: 'Hello Paris Sans Regular', serif;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-size: 63px;
  font-weight: bold;
  letter-spacing: 2px;
  white-space: nowrap;
  padding-right: 20px;
  position: absolute;   /* CHANGED from fixed */
  top: 52%;
  right: 0;
}

/* Narrow screens: horizontal logo at the top */
@media (max-width: 768px) {
  .side-logo {
    writing-mode: horizontal-tb;   /* back to normal left-to-right text */
    transform: none;                /* remove the rotate */
    position: static;               /* back into normal document flow, not floating */
    top: auto;
    right: auto;
    font-size: 36px;                /* smaller, since horizontal takes more width per letter */
    text-align: center;
    padding: 10px 0;
    white-space: normal;
  }
}

.search-icon {
  width: 20px;
  height: 20px;
  display: block;
}
/* #endregion */
/* #region FOR HOME PAGE */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;    
  margin-top: 20px;
}

.product-card {
  min-width: 0; 
}

.image-wrap {
  overflow  : hidden; /* Ensures the image doesn't overflow the card */
  display   : block;
}

.product-card img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease; /* combined with your existing filter transition */
}

.product-card:hover img {
  transform: scale(1.08); /* 8% zoom — adjust to taste, 1.05–1.15 is typical */
    filter: grayscale(50%);
}


.product-name,
.product-price {
  font-size: 11px;
  margin: 4px 0 0 0;
  line-height: 1.3;
  transition: font-style 0.3s ease;
}

/* Smooth transition for hover effects */
.product-card img,
.product-card .product-name {
  transition: all 0.3s ease;
}

/* 1. Make the image gray on hover */
.product-card:hover img {
  filter: grayscale(50%); /* Adjust from 0% to 100% depending on desired grayness */
}

/* 2. Italicize ONLY the product name on hover */
.product-card:hover .product-name {
  font-style: italic;
}
/* #endregion */
/* #region FOR SEARCH */
.cancel-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.3px;
  margin-top: 20px;
}

.search-box-wrapper {
  margin-top: 150px;
  max-width: 500px;
}

.search-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000000;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: #ef9644;
  padding: 8px 0;
  outline: none;
  background: transparent;
}
/* #endregion */
/* #region FOR ABOUT */
.about-wrapper {
  display: flex;
  gap: 60px;
  padding-top: 30px;
  justify-content: space-between;
  width: 100%;
  padding: 30px 5vw 0 5vw; /* Adds 5% breathing room on both left and right */
  box-sizing: border-box;
}

.about-heading {
  flex: 0 0 200px; /* fixed-width left column, doesn't grow or shrink */
}

.about-heading h1 {
  font-size: 20px;
  font-weight: normal;
  margin: 0;
}

.about-text {
  flex: 0 0 auto;      
  max-width: 500px;    
  margin-left: auto;
  font-size: 18px;
  line-height: 1.5;
}
/* #endregion */
/* #region FOR REGISTER PAGE */
.signup-form {
      width: 100%;
    }

    .form-group {
      margin-bottom: 32px;
      position: relative;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .input-label {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #444;
      display: block;
      margin-bottom: 8px;
    }

    /* Clean Underline Input Fields */
    .text-input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid #121212;
      padding: 10px 0;
      font-size: 15px;
      color: #000;
      font-family: inherit;
      outline: none;
      border-radius: 0;
      transition: border-color 0.2s ease;
    }

    .text-input:focus {
      border-bottom-color: #777;
    }

    /* Custom Checkbox Option */
    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .custom-checkbox {
      appearance: none;
      width: 16px;
      height: 16px;
      border: 1px solid #121212;
      background: transparent;
      cursor: pointer;
      position: relative;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .custom-checkbox:checked {
      background-color: #121212;
    }

    .checkbox-label {
      font-size: 12px;
      color: #555;
      line-height: 1.6;
    }

    .checkbox-label a {
      color: #000;
      text-decoration: underline;
    }

    /* Submit Button */
    .submit-btn {
      width: 100%;
      background-color: #121212;
      color: #fff;
      border: none;
      padding: 18px 24px;
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }

    .submit-btn:hover {
      opacity: 0.85;
    }

    /* Micro-copy footer */
    .form-footer-note {
      font-size: 11px;
      color: #888;
      margin-top: 24px;
      text-align: center;
      letter-spacing: 0.5px;
    }
/* #endregion */
.site-footer {
  display: flex;
  gap: 60px;
  padding: 40px 200px 20px 20px;
  background-color: #1a1a1a; /* dark charcoal — adjust to taste */
  margin-top: 60px;
  box-sizing: border-box;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
}

.footer-column a {
  font-size: 12px;
  padding: 3px 0;
  display: block;
  font-weight: 400;
}

.footer-copyright {
  font-size: 11px;
  color: #777777;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.footer-column h4 {
  color: #ffffff;
}

.footer-column a {
  color: #cccccc;
}

.footer-column a:hover {
  color: #ffffff;
  font-style: italic;
  background-color: transparent;
}

.footer-copyright {
  color: #999999;
}
.faq-heading {
  font-size: 20px;
  font-weight: normal;
  margin-top: 30px;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 700px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.faq-answer {
  font-size: 14px;
  line-height: 1.6;
  color: #444444;
  margin: 0;
}

.fashion-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #1a1a1a;
  color: #fff;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.fashion-popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.about-video-wrapper {
  margin-top: 20px;
  width: 300%;
  max-width: 600px; /* Optional: limit the maximum width */
  overflow: hidden; /* Ensures the video doesn't overflow the wrapper */
}