/* ===== BODY ===== */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fdfdfd;
  color: #2c2c2c;
  overflow-x: hidden;

}



/* ===== Fullscreen Video ===== */
.hero-video-container {
  position: relative;
  width: 100%;
  height: 100vh;          /* Full screen height */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;          /* Maintain aspect ratio */
  transform: translate(-50%, -50%);
  object-fit: contain;    /* Show full video without cropping */
  z-index: -1;
  background: black;      /* In case of empty bars */
}



/* ===== Text Over Video ===== */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.shop-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #fff;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.shop-btn:hover {
  background: white;
  color: black;
}




/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 9%;
  position: relative;
  margin-top: 30px;
  background: transparent; /* default */
}

/* Hamburger */
.hamburger {
  width: 29px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 18px;
  color: #183544;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #183544;
  border-radius: 2px;
}

/* Logo */
.logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.logo img {
  height: 50px;
}

.header .icons {
  display: flex;
  align-items: center; /* center all icons vertically */
  gap: 15px;
}

.header .icons img {
  display: block;
  height: 19px; /* optional: uniform size */
  width: auto;
}

.cart-link {
  text-decoration: none;
  color: #183544;
  font-size: 17px;
}
.cart-icon {
  display: none;      /* hide icon by default */
}
a:has(> .cart-icon) {
  display: none; /* hides the <a> and icon */
}





/* Divider */
.divider1 {
  height: 0.5px;
  background: #b7cedb;
  margin: 0 124px;
  position: relative;
  top: 35px;
}


/* ===== SEARCH BAR ===== */
.search-bar-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.search-bar {
  width: 80%;
  max-width: 600px;
  padding: 10px 40px 10px 15px; /* right padding for icon */
  border-radius: 25px;
  border: 1px solid #2c2c2c;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}

.search-bar:focus {
  border-color: #183544;
  box-shadow: 0 0 5px rgba(24, 53, 68, 0.5);
}

 .close-icon {
  position: absolute;
  top: 50%;
  right: calc((100% - 43%) / 2 + 15px);
  transform: translateY(-50%);
  font-size: 18px;
  color: #2c2c2c;
cursor: pointer; /* make it clickable */
} 

/* Hidden by default */
.search-bar-wrapper.hidden {
  display: none;
}

/* ===== MENU (Dropdown) ===== */
.menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 20px 9%;
  text-align: left;
  position: relative;
  padding-top: 45px;
}

.menu.show {
  max-height: 500px;
}

.menu a {
  display: block;
  font-size: 16px;
  margin: 18px 0;
  text-decoration: none;
  color: #183544;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Close button */
.close-btn {
  font-size: 32px;
  position: absolute;
  padding-top: 5px;
  right: 123px;
  cursor: pointer;
  display: none;
  color: #183544;
}

/* Keep your existing styles intact and only style the results dropdown */
/* ===== SEARCH RESULTS DROPDOWN ===== */
.search-results {
  display: none;
  position: absolute; /* dropdown below input */
  top: 40px;          /* adjust according to your search-bar height */
  left: 31%;
  width: 80%;         /* match your input width */
  max-width: 500px;   /* match your input max-width */
  background: #fff;
  border: 1px solid #ccc;
  z-index: 999;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border-radius: 5px;
}

.search-results .search-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.search-results .search-item:hover {
  background: #f0f0f0;
}

.search-results .no-results {
  padding: 10px;
  text-align: center;
  color: red;
}




@media (max-width: 425px) {

  body {
  overflow-x: hidden;

}
  
  .header {
    padding: 20px 3%; /* reduce left/right padding */
    
  }

  .logo img {
  height: 28px;
}

.hamburger {
  padding: 0 7%;
}

  .icons {
  gap: 10px;  
  padding: 0 3.1%;         /* space between icons and cart */
}

.icon-img {
  width: 17px;         /* size of your icons */
  height: 20px;
  object-fit: contain;  /* keeps icons proportionate */
}

 .cart-link .cart-text {
    display: none; /* hide the text */
  }

   a:has(> .cart-icon) {
    display: inline; /* or block, depending on layout */
  }

  .cart-icon {
    display: inline;/* show the cart icon */
    width: 17px;        /* adjust size */
    height: 20px;
    object-fit: contain;
  }

/* Divider */
.divider {
  height: 0.5px;
  background: #b7cedb;
  margin: 0 9%;
  top: 10px;
}

.close-btn {
  top: 25px;
  right: 9%;

 }

 .search-bar {
  max-width: 380px;

}

.close-icon {
  right: calc((100% - 80%) / 2 + 15px);
  transform: translateY(-50%);
} 

}

/*================== End of Header ==================*/


/*================== Complete Order ==================*/

/* Popup Container */
.order-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.5s ease;
}

/* Popup Content */
.order-popup-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  max-width: 400px;
  width: 90%;
  position: relative;
  transform: scale(0.8);
  animation: popupScale 0.4s forwards;
}

.order-popup-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #333;
}

.order-popup-content p {
  font-size: 1rem;
  color: #555;
}

/* Close Button */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
  transition: color 0.3s;
}
.close-popup:hover { color: #333; }

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}
@keyframes popupScale {
  from {transform: scale(0.8);}
  to {transform: scale(1);}
}

/*================== End Complete Order ==================*/



/*================== Alert for header ==================*/

.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: flex-start; /* start from top */
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.custom-alert.show {
  opacity: 1;
  pointer-events: auto;
}

.alert-content {
  background: #fff;
  margin-top: 50px;
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  font-family: 'Montserrat', sans-serif;

  /* Animation */
  transform: translateY(-50px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.custom-alert.show .alert-content {
  transform: translateY(0);
  opacity: 1;
}

.alert-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.alert-content button {
  padding: 10px 25px;
  background: #1e1e1e;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.alert-content button:hover {
  background: #333;
}

/*==================End Alert for header ==================*/



/* ================== OUR STORY SECTION ============ */
.our-story {
  padding: 80px 40px;
  background-color: #fdfdfd; /* or any subtle background */
  color: #2c2c2c;
  font-family: 'Montserrat', sans-serif;
}

.our-story .container {
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.2;
}

.our-story h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.our-story p {
  font-size: 17px;
  margin-bottom: 15px;
  text-align: justify;
  color: #183544;
  
}

/* ===== Unique OUR STORY Title ===== */
.story-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px; /* space below the title */
}

.story-title h1 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  color: #183544;
}

.story-title .bar {
  flex: 1;
  max-width: 250px;   /* adjust bar width */
  height: 1px;        /* thickness of bar */
  background: #183544; /* color of bar */
  border-radius: 2px;
}


/* Initial hidden state for our story elements */
.our-story h2,
.our-story p,
.story-title {
  opacity: 0;
  transform: translateY(30px); /* start slightly below */
  transition: all 0.6s ease-out;
}

/* When in view */
.our-story.visible h2,
.our-story.visible p,
.our-story.visible .story-title {
  opacity: 1;
  transform: translateY(0); /* move to original position */
}



/**================== End of Our Story Section ==================*/





/* ===== Main Collection Title ===== */

.main-collection-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 20px;
  font-family: 'Montserrat', sans-serif;

}

.main-collection-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #183544;
  margin: 0;
}

.main-collection-title .bar {
  flex: 1;
  height: 1px;
  max-width: 300px; /* control length of bars */
  background: #183544;
  border-radius: 2px;
}

/* Main Collection Title Animation */
.main-collection-title {
  opacity: 0;
  transform: translateY(30px); /* start slightly below */
  transition: all 0.6s ease-out;
}

/* When visible */
.main-collection-title.visible {
  opacity: 1;
  transform: translateY(0);
}




@media screen and (max-width: 425px) {
  
  .main-collection-title h2 {
  font-size: 22px;
  font-weight: 700;
}

.main-collection-title .bar {
  height: 1px;
  max-width: 13%; /* control length of bars */
}

.main-collection-title {
  gap: 2%;
}

}

/*================== End of Main Collection Title ==================*/



/* ====================== PRODUCT GRID SECTION ===================== */


.collection {
  padding: 30px 20px;
  text-align: center;
  color: #183544;
  font-family: 'Montserrat', sans-serif;

}

.collection h2 {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  
}

.collection .view-all {
  background: none;
  border: 1px solid #183544;
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 13px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Montserrat', sans-serif;
  color: #183544;

}
.collection .view-all:hover {
  background: #2c3e50;
  color: #fff;
}

.items {
  display: grid; 
  visibility: visible; 
  opacity: 1;
  /* margin-top: 40px !important; */
  
}

.item {
  opacity: 1 !important; /* Force visibility */
}

/* Grid layout */
.items {
  /* margin-top: 40px !important; */

  display: grid;
  grid-template-columns: repeat(auto-fit, 252px); 
  gap: 30px;
  /* max-width: 1100px; */
  margin: auto;
  justify-content: center;
}

/* Card image box */
.item .img-box {
  border: 1px solid #183544;
  height: 300px;
  position: relative;
  background: #f8f9fa;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.item .img-box:hover {
  transform: translateY(-5px);
}

/* Image inside the box */
.item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Active border */
.item.active .img-box {
  border-color: #dbe1e8;
}

/* Heart */
.heart {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #7f8c8d;
  cursor: pointer;
  user-select: none;
}
.item.active .heart {
  color: #183544;
}

/* Product details under the box */
.item h3 {
  font-size: 13px;
  font-weight: normal;
  margin: 12px 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price {
  background: none;
  border: 1px solid #183544;
  border-radius: 20px;
  padding: 4px 15px;
  font-size: 13px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  color: #183544;
}

.price:hover {
  background: #2c3e50;
  color: #fff;
}

/* Initial state for all items */
.item {
  opacity: 0;
  transform: translateY(30px); /* start slightly below */
  transition: all 0.6s ease-out;
}

/* When item comes into view */
.item.visible {
  opacity: 1;
  transform: translateY(0); /* move to original position */
}


/* Responsive */
@media (max-width: 600px) {
  .items {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .item .img-box {
    height: 220px;
  }
}


/* Responsive */
@media (max-width: 425px) {
   .items {
    grid-template-columns: repeat(auto-fit, 155px);
    justify-content: center;
  }
  .item .img-box {
    height: 220px;
  }
}


/* Responsive */
@media (max-width: 377px) {
  .items {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .item .img-box {
    height: 220px;
  }

  .collection {
  padding: 30px 25px;

}
}



/* ================== BACKLAIN JOURNEY SECTION ================== */

.backlain-journey {
  position: relative;
  color: #183544;
  font-family: 'Montserrat', sans-serif;
  padding: 60px 20px;
}

.journey-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.journey-image {
  width: 48%;
  height: 400px;          /* keep your container height */
  border: 2px solid #183544;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  overflow: hidden;       /* prevents overflow */
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* ❤️ PERFECT FIT — NO CUT */
}

.journey-image span {
  font-size: 14px;
  color: #666;
}

.journey-text {
  width: 48%;
  margin-top: -20px;
}

.journey-title {
  font-size: 20px;
  font-weight: 700;
  color: #183544;
  margin-bottom: 5px;
}

.journey-subtitle {
  font-size: 18px;
  color: #183544;
  margin-bottom: 40px;
}

.journey-heading {
  font-size: 20px;
  font-weight: 700;
  color: #183544;
  margin-bottom: 10px;
}

.journey-paragraph {
  font-size: 18px;
  line-height: 1.1;
  color: #183544;
  margin-bottom: 45px;
  text-align: justify;
  margin-top: 10px;
}

.journey-tagline {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  margin-top: 15px;
}

.journey-icon-logo {
  position: absolute;
  right: -25%;
  bottom: -37%;
  width: 400px; /* adjust icon size */
  height: 400px;
}

.journey-icon-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* Initial hidden state */
.journey-image,
.journey-text {
  opacity: 0;
  transform: translateY(30px); /* start slightly lower */
  transition: all 0.6s ease-out;
}

/* When in view */
.journey-image.visible,
.journey-text.visible {
  opacity: 1;
  transform: translateY(0); /* move to original position */
}


/* Responsive */
@media (max-width: 768px) {
  .journey-container {
    flex-direction: column;
    align-items: center;
  }

  .journey-image,
  .journey-text {
    width: 100%;
  }

  .journey-circle-logo {
    position: static;
    margin: 40px auto 0;
  }
}


@media (max-width: 425px) {

  .journey-title {
  font-size: 18px;
  padding-top: 20px;
}

.journey-subtitle {
  font-size: 14px;
  color: #183544;
  margin-bottom: 40px;
}

.journey-tagline {
  font-size: 18px;
  margin-top: 15px;
}

.journey-icon-logo {
  position: absolute;
  left: 59%;
  bottom: -20.5%;
  width: 57%; /* adjust icon size */
  height: 60%;
}

.journey-icon-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.journey-paragraph {
  font-size: 14px;
    line-height: 1.3;

}

.journey-heading {
  font-size: 18px;
  margin-bottom: 10px;
}
  
}



/*================== End of Backlain Journey Section ==================*/


/* ================== OUR Sales SECTION ================== */

/* Sale Badge Style */
.sale-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #183544; /* same dark blue as screenshot */
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 16px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 17px;
}
.img-box {
  position: relative;
  width: 100%;
  height: 250px; /* adjust as needed */
  border: 1px solid #ddd;
}
.heart {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #183544;
}

.sales-title .bar {
  max-width: 300px; /* ðŸ‘ˆ adjust bar width here */
  height: 1px;      /* ðŸ‘ˆ adjust thickness/height */
  background: #183544; /* example: dark red for sales */
}

.price-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px; /* space between old and new price */
  margin-top: 5px;
}

.old-price {
  text-decoration: line-through;
  color: #183544;
  font-size: 14px;
  border: 1px solid #183544;
  border-radius: 15px;
  padding: 2px 8px;
}

.new-price {
  color: #183544;
  font-size: 14px;
  font-weight: bold;
}

.discount {
  display: block;
  margin-top: 7px;
  text-align: center;
  color: red;
  font-size: 14px;
  font-weight: bold;
}


/* ================== End OUR Sales SECTION ================= */





/* ================== UNIQUE FAQ SECTION ================== */

 /* ===== UNIQUE FAQ WRAPPER ===== */
  
  .faq-wrapper-unique {
    padding: 30px 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ===== FAQ TITLE WITH BARS ===== */


  .main-collection-title h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: #183544;
    text-align: center;
  }

  /* ===== FAQ SECTIONS ===== */
  .faq-section-unique {
    margin-bottom: 25px;
  }

  .faq-section-unique h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #183544;
  }

  .faq-section-unique p {
    font-size: 17px;
    margin: 0;
    font-weight: 200;
    text-align: justify;
    color: #183544;
  }

  a {
    color: #183544;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  .faq-title .bar {
  max-width: 300px;  /* ðŸ‘ˆ adjust FAQ bar width */
  height: 1px;       /* ðŸ‘ˆ adjust FAQ bar thickness */
  background: #183544; /* ðŸ‘ˆ custom FAQ color */
}
.faq-title {
  margin-bottom: 50px;
}

/* Initial hidden state for FAQ sections and title */
/* FAQ sections */
/* FAQ sections */
.faq-section-unique {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

/* When visible */
.faq-wrapper-unique.visible .faq-section-unique {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ main title */
.faq-wrapper-unique .faq-title {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

/* When visible */
.faq-wrapper-unique.visible .faq-title {
  opacity: 1;
  transform: translateY(0);
}





@media (max-width: 425px) {

  .main-collection-title h1 {
    font-size: 26px;
  }

    .faq-title .bar {
  max-width: 133px;  /* ðŸ‘ˆ adjust FAQ bar width */
}

.faq-wrapper-unique {
    padding: 5px 37px;
  }
}

  /*================== End of Unique FAQ Section ==================*/



/* ================== POLICY SECTION ================== */

.policy-wrapper {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ==== Special Policy Title Style ==== */
  .policy-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
  }

  .policy-title h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    color: #183544;
  }

  .policy-title .bar {
    flex: 1;
    height: 1px;
    max-width: 160px; /* shorter bars for policy */
    background: #183544; /* special dark blue */
    border-radius: 2px;
  }

  /* ==== Policy Sections ==== */
  .policy-section {
    margin-bottom: 25px;
  }

  .policy-section h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #183544;
  }

  .policy-section p {
    font-size: 16px;
    margin: 0;
    text-align: justify;
    color: #183544;
    font-weight: 200;
  }

  a {
    color: #183544;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }


  /* Initial hidden state for FAQ sections and title */
/* Initial hidden state for policy sections and title */
.policy-section,
.policy-title {
  opacity: 0;
  transform: translateY(30px); /* start slightly below */
  transition: all 0.6s ease-out;
}

/* When in view */
.policy-wrapper.visible .policy-section,
.policy-wrapper.visible .policy-title {
  opacity: 1;
  transform: translateY(0);
}




  @media (max-width: 4250px) {

  .policy-title h1 {
    font-size: 18px;
  }
  .policy-title .bar {
    max-width: 190px; /* shorter bars for policy */
  }
  .policy-wrapper {
    padding: 80px 35px;
  }


}
/*================== End of Policy Section ==================*/



/* ================== CONTACT SECTION ================== */

 .unique-contact-wrapper {
      max-width: 1100px;
      margin: 10px auto;
      padding: 40px;
      text-align: center;
      border-radius: 10px;
    }

.unique-contact-wrapper h2 {
      font-size: 23px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .unique-contact-wrapper p {
      font-size: 19px;
      color: #333;
      margin-bottom: 40px;
    }

    /* Email link styled like text */
    .unique-contact-wrapper p a.unique-email-link {
      color: inherit;
      text-decoration: none;
    }

    .unique-contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: left;
    }

    .unique-form-row {
      display: flex;
      gap: 20px;
    }

    .unique-form-row input {
      flex: 1;
    }

    .unique-form-input, 
    .unique-form-textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #333;
      font-size: 14px;
      outline: none;
      box-sizing: border-box;
      border-radius: 5px;
    }

    .unique-form-textarea {
      min-height: 120px;
      resize: none;
    }

    .unique-submit-button {
      background: #0e2431;
      color: #fff;
      border: none;
      padding: 14px;
      text-transform: uppercase;
      cursor: pointer;
      width: 200px;
      margin: 20px auto 0;
      font-size: 14px;
      font-weight: bold;
      border-radius: 5px;
      transition: background 0.3s;
    }

    .unique-submit-button:hover {
      background: #1c3a4a;
    }

    /* ===== Unique Contact Title ===== */
.unique-contact-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;           /* space between bars and text */
  margin-bottom: 40px; /* space below the title */
}

.unique-contact-title h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  color: #1a2a33;
}

.unique-contact-title .bar {
  flex: 1;
  max-width: 300px;       /* adjust bar width */
  height: 1px;            /* thickness of bar */
  background: #1a2a33;    /* same color as title */
  border-radius: 2px;
}


/* Initial hidden state for contact section */
.unique-contact-wrapper,
.unique-contact-title,
.unique-contact-form {
  opacity: 0;
  transform: translateY(30px); /* start slightly below */
  transition: all 0.6s ease-out;
}

/* When visible in viewport */
.unique-contact-wrapper.visible,
.unique-contact-wrapper.visible .unique-contact-title,
.unique-contact-wrapper.visible .unique-contact-form {
  opacity: 1;
  transform: translateY(0);
}


    /* Responsive */
    @media (max-width: 768px) {
      .unique-form-row {
        flex-direction: column;
      }
    }


     @media (max-width: 425px) {
      
          .unique-contact-title h2 {
        font-size: 28px;
          }

    }

 /*================== End of Contact Section ==================*/



/* ==================Chart ================== */



 /* Jacket Size Chart Styles */
    .size-chart-wrapper {
      max-width: 800px;
      margin: 80px auto;
      text-align: center;
      padding: 10px;
      border-radius: 10px;
    }

    .size-chart-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-bottom: 50px;
    }

    .size-chart-title h2 {
      font-size: 28px;
      font-weight: bold;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #183544;
    }

    .size-chart-title .bar {
      flex: 1;
      height: 1px;
      max-width: 160px;
      background: #183544;
      border-radius: 2px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      background: #f4f8fb;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    th, td {
      padding: 16px;
      text-align: center;
    }

    th {
      font-weight: bold;
      font-size: 1.2rem;
      color: #333;
      border-bottom: 1px solid #183544; /* Line under headers */
      color: #183544;
    }

    tr + tr {
      border-top: 1px solid #183544;
    }

    td {
      font-size: 1.1rem;
      color: #183544;
    }


    /* Initial hidden state for size chart */
.size-chart-wrapper,
.size-chart-title,
.size-chart-wrapper table {
  opacity: 0;
  transform: translateY(30px); /* start slightly below */
  transition: all 0.6s ease-out;
}

/* When visible in viewport */
.size-chart-wrapper.visible,
.size-chart-wrapper.visible .size-chart-title,
.size-chart-wrapper.visible table {
  opacity: 1;
  transform: translateY(0);
}



    @media (max-width: 425px) {

  .size-chart-title h2 {
      font-size: 22px;
    }

    .size-chart-title .bar {
      max-width: 35px;
    }

    .size-chart-wrapper {
      max-width: 600px;
    }

}


/* ==================End Chart ================== */



/* ================== BACKLAIN PRODUCT DETAIL PAGE ================== */


  .bp_container {
    padding: 20px;
    display: flex;
    gap: 40px;
    max-width: 1093px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .bp_price-wrapper{
    display: flex !important;
    align-items: center;
  }
  /* Left column (placeholder cards) */
  .bp_gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .bp_thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  @media(max-width: 550px){
    .bp_thumbnails {
      display: flex;
      flex-direction: row;
      gap: 15px;
    }
    .bp_gallery{
      justify-content: center;
    }
  }

  .bp_thumb {
    width: 70px;
    height: 118.2px;
    border: 1px solid #183544;
    background: #f9f9f9;
  }

  .bp_main-box {
    width: 450px;
    height: 640px;
    border: none;
    background: #f9f9f9;
  }

  .bp_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp_main-box img {
  width: 450px;
  height: 658px;
  object-fit: cover;
  border: 1px solid #183544;;
  /* Smooth fade transition */
  transition: opacity 0.5s ease;
  opacity: 1;
}




  /* Right column (product info) */
  .bp_details {
    flex: 1;
    padding: 0 2px;
  }

  .bp_details h1 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: -3px;
    text-transform: uppercase;
    color: #183544;
  }

  .bp_price-wrapper {
    margin-bottom: 20px;
    gap: 8px;
  }

  .bp_price {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #183544;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
    color: #183544;
  }

  .bp_price-bar {
    width: 100%;
    height: 1px;
    background: #183544;
    margin-bottom: 20px;
  }

  .bp_sizes {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: #183544;
  }
  
  

  .bp_sizes button {
    border: 1px solid #183544;
    background: none;
    padding: 6px 12px;
    font-size: 14px;
    width: 40px;
    height: 35px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 10px;
    color: #183544;
  }
  
  
  /* Target only the XXL → 7XL buttons */
.bp_sizes button:nth-child(n+5) {
    text-indent: -5px; /* moves the text 2px to the left */
    /* OR use padding-left if needed */
    /* padding-left: 2px; */
}

  .bp_sizes button:hover {
    background: #183544;
    color: #fff;
  }

  .bp_sizes-bar {
    width: 100%;
    height: 1px;
    background: #183544;
    margin-bottom: 20px;
  }

  /* Selected size */
.bp_sizes button.active {
  border: 2px solid #183544;
  background-color: #183544;
  color: #fff;
}

/* Selected color */
.bp_color_circle.active {
  border: 2px solid #183544;
  transform: scale(1.1);
  box-shadow: 0 0 5px rgba(24,53,68,0.5);
}


  .bp_btn {
    display: block;
    width: 100%;
    margin: 20px 0;
    padding: 10px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid #183544;
    background: none;
    transition: 0.3s;
    color: #183544;
  }

  .bp_details .bp_btn {
    margin-left: -2px;
  }

  .bp_btn:hover {
    background: #183544;
    color: #fff;
  }

  .bp_intro {
    font-style: italic;
    font-size: 13px;
    margin: 20px 0;
    color: #183544;
  }

  .bp_section-title {
    font-weight: bold;
    margin-top: 20px;
    color: #183544;
  }

  .bp_desc {
    font-size: 14px;
    margin: 5px 0 15px;
    line-height: 1.3;
    color: #183544;
  }

  /* Care instructions dropdown */
  .bp_details details {
    margin-top: 37px;
    font-size: 14px;
    position: relative;
    margin-left: -2px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #183544;
  }

  .bp_details summary {
    padding: 10px 40px 10px 15px;
    border: 1px solid #183544;
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    position: relative;
    list-style: none;
    text-align: center;
    font-weight: 500;
    background: #fff;
    transition: all 0.3s ease;
    color: #183544;
  }

  .bp_details summary::after {
    content: "";
    position: absolute;
    right: 55px;
    top: 42%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #2c3e50;
    border-bottom: 2px solid #2c3e50;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s;
  }

  .bp_details details[open] summary::after {
    transform: translateY(-1%) rotate(225deg);
  }

  .bp_details details[open] {
    border: 1px solid #2c3e50;
    border-radius: 8px;
  }

  .bp_details details[open] summary {
    border: none;
    border-bottom: 1px solid #2c3e50;
    border-radius: 0;
    background: #f9f9f9;
  }

  .bp_care-content {
    padding: 15px;
    background: #fff;
  }

  .bp_care-content p {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.6;
  }

  .bp_care-content strong {
    display: block;
    margin-bottom: 4px;
  }


 .bp_thumbnails-wrapper,
.mobile-thumbs,
.thumb-dots,
.thumb-modal {
  display: none;
}


/* Colors container */
.bp_colors {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 15px;
}



/* Color circle */
.bp_color_circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: 0.25s;
}

.bp_color_circle:hover {
  border-color: #183544;
  transform: scale(1.1);
}

.bp_no-color {
  font-size: 15px;
  opacity: 0.8;
  color: #183544;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 30px;
}

.bp_no-color p{
  font-size: 15px;
  opacity: 0.8;
  color: #183544;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Selected state if needed */
.bp_color_circle.selected {
  border-color: #183544;
  box-shadow: 0 0 0 2px #18354433;
}

/* Selected color */
.bp_color_circle.active {
  border: 2px solid #183544;
  transform: scale(1.1);
  box-shadow: 0 0 5px rgba(24,53,68,0.5);
}

@media(max-width: 1150px){
  .bp_container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 425px) {

   .bp_thumbnails-wrapper,
  .mobile-thumbs,
  .thumb-dots {
    display: block;
  }

  .bp_price-bar{
    display: none;
  }

  .bp_sizes-bar{
    display: none;
  }

  .bp_container {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    padding: 0 36px;
  }

  /* Gallery */
  .bp_gallery {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .bp_thumbnails {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .bp_thumb {
    width: 60px;
    height: 90px;
  }

  .bp_main-box {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 3 / 4; /* keeps proportion */
  }

  /* Details */
  .bp_details {
    text-align: left; /* keep everything else left */
  }

  .bp_price-wrapper {
  display: flex !important;
  align-items: center;         /* vertical alignment */
  justify-content: center;     /* horizontal alignment */
  gap: 8px;
  margin-bottom: 15px;                  /* optional: space between price & discount */
}


  .bp_details .bp_price {
    display: block;       /* make it a block so it can center */
    width: fit-content;   /* shrink to its text */
    margin: 0;
  }

  .bp_details h1 {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;        /* make it a block */
    width: fit-content;    /* shrink to text width */
    margin: 0 auto 10px;   /* center horizontally, keep bottom margin */
  }

  .bp_price {
    font-size: 13px;
    text-align: center;
    padding: 4px 12px;
  }

  .bp_sizes {
    justify-content: center;
    gap: 8px;
  }

  .bp_sizes button {
    width: 43px;
    height: 34px;
    font-size: 13px;
  }

  .bp_btn {
    width: 100%;
    font-size: 13px;
    padding: 9px;
    margin: 12px 0;
  }

  .bp_intro {
    font-size: 12px;
    margin: 15px 0;
  }

  .bp_desc {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Care dropdown */
  .bp_details details {
    margin-top: 25px;
  }

  .bp_details summary {
    font-size: 13px;
    padding: 9px 20px;
  }

  .bp_details summary::after {
    right: 20px;
  }

  .bp_care-content {
    text-align: left;
    font-size: 12px;
  }

  /* Remove Recently Viewed / You Might Also Like */
  .related-products,
  .you-might-also-like {
    display: none !important;
  }

  /* Hide Gallery for mobile */
  .bp_gallery {
    display: none;
  }
  
  /* Show mobile thumbnails wrapper */
  .bp_thumbnails-wrapper {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }




  /*  ======================= slider  ===========================*/

/* ================= Thumbnails ================= */


.bp_thumbnails-wrapper {
  overflow: hidden; /* hide overflow */
  width: 100%;
}

.mobile-thumbs {
  display: flex;
  gap: 15px;
  transition: transform 0.3s ease-in-out;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}

.mobile-thumbs .bp_thumb {
  flex: 0 0 120px; /* fixed width for each thumb */
  height: 150px;
  background: #f9f9f9;
  border: 1px solid #183544;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-thumbs .bp_thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(24, 53, 68, 0.2);
}

.mobile-thumbs .bp_thumb.active {
  border: 2px solid #183544;
  box-shadow: 0 0 8px rgba(24, 53, 68, 0.3);
}

.mobile-thumbs .bp_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* ================= Dots ================= */
.thumb-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.thumb-dots span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumb-dots span:hover {
  background: #999;
  transform: scale(1.2);
}

.thumb-dots span.active {
  background: #183544;
  transform: scale(1.3);
  box-shadow: 0 0 6px rgba(24, 53, 68, 0.4);
}


/* Modal */
.thumb-modal {
  display: none;
  position: fixed;
  top:0; left:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.thumb-modal-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  background: #222;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.close-modal {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}



.modal-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
}

.modal-slider {
  display: flex;
  gap: 15px; /* spacing between thumbs */
  transition: transform 0.3s ease;
}

.modal-slider .bp_thumb {
  flex: 0 0 100%; /* show only one thumb at a time */
  height: 140px;
  background: #eee;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.modal-slider .bp_thumb.active {
  border-color: #fff;
  transform: scale(1.05);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 4px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  z-index: 5;
}
.arrow.prev { left: -15px; }
.arrow.next { right: -15px; }

.modal-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 6px;
}
.modal-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}
.modal-dots span.active {
  background: #fff;
}


}


@media (max-width: 390px) {

  .bp_details h1 {
    font-size: 14px;
  }

}

@media (max-width: 377px) {

  .bp_details h1 {
    font-size: 13px;
  }

}






/* ============================= Profile Page =================================*/




/* === NAMESPACE: acc- === */
.acc-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  background-color: #fff;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;

}

.acc-wrapper .acc-container {
  display: flex;
  border: 1px solid #1835446c;
  width: 1104px;
  min-height: 350px;
  box-sizing: border-box;
}

/* LEFT SIDE */
.acc-wrapper .acc-left {
  width: 35%;
  border-right: 1px solid #1835446c;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}

/* Title */
.acc-wrapper .acc-left h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #183544;
}

/* Row layout */
.acc-wrapper .acc-profile-row {
  display: flex;
  align-items: flex-start;
}

/* ❌ REMOVE PROFILE BOX SECTION */
.acc-wrapper .acc-profile-box-container {
  display: none;
}

/* Menu container */
.acc-wrapper .acc-menu-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Menu items */
.acc-wrapper .acc-menu-container span {
  display: block;
  font-size: 14px;
  color: #183544;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover effect */
.acc-wrapper .acc-menu-container span:hover {
  opacity: 0.7;
}

/* Active tab */
.acc-wrapper .acc-menu-container .active-tab {
  font-weight: 600;
  border-left: 3px solid #183544;
  padding-left: 10px;
}


/* RIGHT SIDE */
.acc-wrapper .acc-right {
  flex: 1;
  padding: 35px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

/* FORMS */
.acc-wrapper .acc-form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 20px;
  overflow: hidden;

  max-height: 270px;
  opacity: 1;
  transition: opacity 0.4s ease, max-height 0.4s ease, transform 0.4s ease;
  transform: translateY(0);
}

.acc-wrapper .acc-form.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

.acc-wrapper .acc-password-form {
  grid-template-columns: 1fr;
}

/* INPUTS */
.acc-wrapper .acc-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #183544;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  border-radius: 2px;
  color: #183544;
  box-sizing: border-box; /* ensures edges display correctly */
  font-family: 'Montserrat', sans-serif;

}

/* FORM BUTTONS */
.acc-wrapper .acc-form-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 50px;
  grid-column: 1 / -1;
}

.acc-wrapper .acc-button {
  flex: 1;
  border: 1px solid #183544;
  background: transparent;
  padding: 8px 76px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 2px;
  color: #183544;
  font-family: 'Montserrat', sans-serif;

}

.acc-wrapper .acc-button:hover {
  background-color: #f5f5f5;
}


/* === RESPONSIVE FOR 425PX WIDTH (left-aligned layout like screenshot) === */
@media (max-width: 425px) {
  .acc-wrapper {
    padding: 0 22.5px;
  }


.acc-wrapper .acc-form {

  max-height: 470px;
}

  .acc-wrapper .acc-container {
    flex-direction: column;
    width: 100%;
    border: none;
    padding: 0 15px;
  }

  .acc-wrapper .acc-left {
    width: 100%;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* align everything to the left */
    text-align: left;
  }

  .acc-wrapper .acc-left h3 {
    font-size: 15.5px;
    margin-bottom: 15px;
  }

  /* PROFILE BOX + MENU (stay side by side under heading) */
  .acc-wrapper .acc-profile-row {
    flex-direction: row;
    justify-content: flex-start; /* shift everything left */
    align-items: flex-start;
    gap: 16%;
    width: 100%;
  }

    .acc-wrapper .acc-profile-box-container {
  display: none;   /* keep hidden on mobile too */
}


  .acc-wrapper .acc-profile-box {
    width: 150px;
    height: 120px;
    font-size: 13px;
    border: 1px solid #183544;
  }

  .acc-wrapper .acc-profile-name {
    font-size: 12px;
    margin-top: 6px;
  }

  .acc-wrapper .acc-menu-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: right;
    gap: 6px;
    margin-top: 5px;
  }

  .acc-wrapper .acc-menu-container span {
    font-size: 12px;
    text-align: left;
  }

  /* RIGHT SIDE FORM */
  .acc-wrapper .acc-right {
    padding: 25px 0;
    width: 100%;
  }

  .acc-wrapper .acc-form {
    grid-template-columns: 1fr;
    row-gap: 15px;
    margin-top: 25px;
  }

  .acc-wrapper .acc-form-buttons {
    flex-direction: row;
    align-items: center;
    margin-top: 25px;
  }

  .acc-wrapper .acc-button {
    width: 100%;
    padding: 10px 0;
  }
}


@media (max-width: 390px) {

.acc-wrapper .acc-menu-container span {
    font-size: 10px;
    text-align: left;
  }
}


@media (max-width: 375px) {

.acc-wrapper .acc-menu-container span {
    font-size: 9px;
    text-align: left;
  }
}


/* =============================End Profile Page =================================*/




/* ============================= Checkout Page =================================*/

.uniq-wrapper {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  color: #1e3a4c;
  font-family: "Poppins", sans-serif;
}

.uniq-checkout-container {
  display: flex;
  max-width: 1100px;
  width: 100%;
  min-height: 100vh;
  padding: 60px 0;
}

.uniq-form-section {
  flex: 1.1;
  padding: 20px 40px 0 0; /* top, right, bottom, left */
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}

.uniq-email-display {
  width: 100%;
  border-bottom: 1px solid #cfcfcf;
  padding: 10px 0;
  font-size: 22px;
  color: #183544;
  margin-bottom: 10px;
}

.uniq-checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-top: 5px;
}

.uniq-form-group { margin-bottom: 30px; }

.uniq-input-text, .uniq-input-tel, .uniq-select, .uniq-shipping-box-input {
  width: 100%;
  padding: 16px 14px;
  font-size: 14px;
  border: 1px solid #cfcfcf;
  outline: none;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box; /* ensures padding + border don't break alignment */
}

.uniq-form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.uniq-form-row input,
.uniq-form-row select {
  flex: 1; /* makes all fields same width inside row */
}

/* Special adjustment for 3-field row (city/governorate/postal) */
.uniq-form-row input:nth-child(1),
.uniq-form-row input:nth-child(3) {
  flex: 1;
}

.uniq-form-row select {
  flex: 1; /* ensures the select aligns perfectly with text inputs */
}

.uniq-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%231e3a4c" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  cursor: pointer;
}

.uniq-shipping-box-container {
  position: relative;
  margin-bottom: 30px;
}

.uniq-shipping-box-input {
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1.4;
  color: #999;
  background: #fff;
  outline: none;
  min-height: 30px;
  box-sizing: border-box;
  padding-right: 80px;
  resize: none;
}

.uniq-shipping-box-free {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  line-height: 1;
}

.uniq-shipping-box-free .free-word,
.uniq-shipping-box-free .delivery-word {
  font-size: 12px;
  font-weight: bold;
  color: #1e3a4c;
  margin: 0;
}

.uniq-payment-dropdown {
  position: relative;
  margin-top: 20px;
}

.uniq-payment-select {
  width: 100%;
  padding: 16px 14px;
  font-size: 14px;
  border: 1px solid #cfcfcf;
  outline: none;
  border-radius: 0;
  background: #fff url('data:image/svg+xml;utf8,<svg fill="%231e3a4c" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 14px center;
  background-size: 30px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.uniq-complete-btn {
  width: 100%;
  background: #1e3a4c;
  color: #fff;
  padding: 18px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 30px;
}

.uniq-complete-btn:hover { background: #254b62; }

.uniq-summary-section {
  font-family: 'Montserrat', sans-serif;
  flex: 1;
  background: #f6f9fc;
  padding: 50px 30px;
}

.uniq-item { display: flex; align-items: flex-start; margin-bottom: 20px; }

.uniq-item-image {
  width: 100px;
  height: 130px;
  background: #edf2f5;
  border: 1px solid #d8dee3;
  margin-right: 15px;
  position: relative;
}

.uniq-item-qty {
  position: absolute;
  top: -8px;
  left: -8px;
  background: #1e3a4c;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 50%;
}

.uniq-item-info { flex: 1; }

.uniq-item-name { font-size: 13px; font-weight: 600; color: #1e3a4c; }

.uniq-item-size { font-size: 13px; margin-top: 4px; }

.uniq-item-price { font-weight: 600; font-size: 14px; }

.uniq-item-color {
  font-size: 13px;
  color: #183544;
  margin: 2px 0 0 0; /* small margin, prevents large gaps */
}


.uniq-order-total {
  border-top: 1px solid #d8dee3;
  padding-top: 15px;
  margin-top: 20px;
}

.uniq-order-total .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.uniq-order-total .total span:last-child {
  font-weight: 600;
  font-size: 16px;
}

.uniq-secure-text {
  font-size: 12px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.visa-wrapper {
  position: relative;
}

/* Blur and disable interaction */
.visa-wrapper .uniq-payment-dropdown {
  filter: blur(3px);
  pointer-events: none; /* prevents clicks */
  user-select: none; /* prevents text selection */
  opacity: 0.6;
}

/* Overlay text */
.coming-soon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  background: rgba(255,255,255,0.8);
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  pointer-events: none; /* overlay itself doesn't block scrolling */
}


@media (max-width: 900px) {
  .uniq-checkout-container { flex-direction: column; }
  .uniq-form-section {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
}


@media (max-width: 425px) {
 .uniq-form-section {
  flex: 1.1;
  padding: 20px 40px 0 40px; /* top, right, bottom, left */
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}
}





/* ================== End of Checkout Page ================== */



/* ================== FOOTER ================== */


 footer {
      padding: 40px 40px 0px 57px; 
      color: #183544;
      position: relative;
    }

    /* Top icons row */
    .footer-top {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 123px; 
      align-items: center;
      text-align: center;
      margin-bottom: 50px;
      justify-content: center; 
    }

    .footer-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: #183544;
    }

    .footer-icon img {
      width: 50px;
      height: 40px;
      margin-bottom: 12px;
      color: #183544;
    }

    /* Content aligned left, shifted right */
    .footer-content {
      text-align: left; 
      max-width: 400px; 
      margin-left: 60px; /* <-- shift content right */
      margin-bottom: 20px;
    }

    /* Newsletter */
    .newsletter {
      margin-bottom: 15px;
    }

    .newsletter input[type="email"] {
      padding: 8px 15px;
      border: 1px solid #183544;
      border-radius: 20px;
      width: 260px;
      outline: none;
      font-size: 12px;
    }

    .newsletter button {
      padding: 8px 18px;
      margin-left: 5px;
      border: 1px solid #183544;
      border-radius: 20px;
      background: #fff;
      cursor: pointer;
      font-size: 12px;
      text-transform: uppercase;
      color: #183544;
    }

    /* Links stacked vertically */
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 15px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.6px;
    }

    .footer-links a {
      text-decoration: none;
      color: #183544;
    }

    /* Social Icons */
    .socials {
      display: flex;
      gap: 18px;
      margin-bottom: 10px;
      justify-content: flex-start; 
    }

    .socials img {
      width: 28px;
      height: 28px;
      color: #183544;
    }

    /* Bottom footer */
    .footer-bottom {
      font-size: 11px;
      color: #183544;
      line-height: 1.4;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      text-align: center; 
      position: relative;
      top: -54px; 
      pointer-events: none; 
    }


    /* Initial hidden state for footer sections */
.footer-top,
.footer-content,
.footer-links,
.socials,
.footer-bottom {
  opacity: 0;
  transform: translateY(30px); /* start slightly lower */
  transition: all 0.6s ease-out;
}

/* When in view */
.footer-top.visible,
.footer-content.visible,
.footer-links.visible,
.socials.visible,
.footer-bottom.visible {
  opacity: 1;
  transform: translateY(0); /* move to original position */
}


    /* Responsive */
    @media (max-width: 768px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .footer-content {
        max-width: 100%;
        margin-left: 0; /* reset on small screens */
      }
      .socials {
        justify-content: flex-start;
      }
    }

    @media (max-width: 425px){
      .socials {
        justify-content: center;
      }
        }


    @media (max-width: 425px) {

    footer {
      padding: 40px 40px 0px 23px; 
    }  
    
      .newsletter button {
      padding: 8px 10%;
      margin-left: 0;
      font-size: 14;
    }

    .footer-bottom {
      top: -15px; 
      margin-bottom: 10px;
      left: -1%;
    }

    .newsletter input[type="email"] {
      margin-bottom: 10px;
      width: 80%;

    }

    .footer-content {
      text-align: center; 
      max-width: 400px; 
      margin-left: 0; /* <-- shift content right */
      margin-bottom: 20px;
    }

    .footer-links {
      font-size: 13px;
    }
  }

       @media (max-width: 390px) {
      

    .footer-bottom {
      left: 33.7%;
    }

    .newsletter input[type="email"] {
      margin-bottom: 10px;
      width: 80%;

    }
  }

     @media (max-width: 390px) {
    
    .newsletter input[type="email"] {
      margin-bottom: 10px;
      width: 80%;
    }

    .footer-bottom {
      top: -15px; 
      margin-bottom: 10px;
      left: 5%;
    }
  }
  
     @media (max-width: 375px) {
    
    .footer-bottom {
      top: -15px; 
      margin-bottom: 10px;
      left: 0%;
    }
  }

    /*================== End of Footer ==================*/

/* 
      .items{
        margin-top: 40px !important;
      } */
      .items{
        padding-bottom: 50px !important;  
      }

      .bp_details .bp_price {
        display: block;       /* make it a block so it can center */
        width: fit-content;   /* shrink to its text */
        margin: 0;
      }