@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
  color: #393E46;
  line-height: 1.6;
  height: 100%; /* Ensures full-height */
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-size: 35px;
}

#loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #F4F3F2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 0, 0, 0.2);
  border-top-color: black;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#loader.fade-out {
  animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}


.logo img {
  height: 70px; /* Adjust as needed */
  width: auto;
  display: block;
  padding: 10px;
  transition: transform 0.3s ease;
}

.logo-main img {
  height: 175px;
  width: auto;
  padding: 10px;
}

/* Header container */
.main-header {
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}

.main-header.visible {
  transform: translateY(0);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.top-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #393E46;
  font-weight: 600;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

/* underline effect */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #393E46;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.arrow {
  display: none;
}

.menu-toggle {
  display: none;
}

/* Show on mobile */
@media (max-width: 768px) {
  header {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .menu-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    margin-right: 25px;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    right: -100%; /* Start hidden */
    width: 100%;
    height: 100vh;
    background-color: rgba(20, 20, 20, 0.95);
    z-index: 999;
    transition: right 0.5s ease-in-out, background-color 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  nav ul.open {
    right: 0; /* Slide in */
  }

  nav ul li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    list-style: none;
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
  }

  .nav-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 30px;
    font-size: 22px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    box-sizing: border-box;
  }

  .nav-links a:hover {
    background: none;
  }

  .arrow {
    display: inline-block;
    font-size: 22px;
    transition: transform 0.3s ease;
  }

  nav a:hover .arrow {
    transform: translateX(5px); /* subtle slide right */
  }
}

.hero {
  position: relative;
  height: 180vh;
  margin-top: -80px; /* adjust based on your header height */
  padding-top: 80px;

  /*background-image: url('media/img1.jpeg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  animation: zoomIn 10s ease-in-out infinite alternate;
}

@keyframes zoomIn {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
*/
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content-wrapper {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-content {
  text-align: center;
  padding: 20px;
}

.hero-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.hero-nav a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 2.0rem;
  transition: color 0.3s ease;
  display: inline-block;
  margin: 5px 0;
}

/* underline animation */
.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 4px;
  background-color: white;
  transition: width 0.3s ease;
}

.hero-nav a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .hero {
    height: 140vh; /* reduce height for mobile */
    background-position: center 20%; /* better framing on small screens */
  }

  .hero-content-wrapper {
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
  }

  .hero-content {
    flex-direction: column;
    padding: 10px;
  }

  .hero-nav a {
    font-size: 1.2rem;
  }

  .hero-nav {
    gap: 0px;
  }

  .logo-main img {
    height: 100px;
    padding: 0;
  }
}

/*
.shop-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #4c4c4c;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-family: Georgia, 'Times New Roman', Times, serif
}

.shop-button:hover {
  background-color: white;
  transform: scale(1.05);
}
*/

footer {
  background-color: #f5f5f5;
  color: #393E46;
  padding: 20px 20px;
  text-align: center;
  font-size: 14px;
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about {
  padding: 40px;
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
  color: #393E46;
  padding-bottom: 0px;
}
.about p {
  margin-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
}

.contact-form {
  width: 700px;
  margin: 100px auto; /* center and push down */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: #393E46;
  margin-bottom: 50px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  color: #393E46;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
}

.contact-form button {
  padding: 15px;
  background: #393E46;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.contact-form button:hover {
  background: #393e46bb;
}

@media (max-width: 768px) {
  .contact {
  padding-top: 30px;
  }
  .contact-form {
    width: 90%;
    margin: 50px auto;
    padding: 25px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 12px;
  }

  .contact-form button {
    font-size: 16px;
    padding: 12px;
  }
}


input, textarea {
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
}



.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px; /* adjust if header height changes */
}

.page-wrapper footer {
  margin-top: auto;
}

.contact-info {
  padding: 40px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
  color: #393E46;
  margin-bottom: 25px;
}

.contact-info a {
  color: #8a8686;
  text-decoration: underline;
  font-size: 18px;
}


@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  header {
    padding: 2px;
  }
}

.spacer {
  height: 100vh;
  background-color: #f4f4f4; /* or match your brand color */
}


.shop-container {
  margin: auto;
  padding: 40px 20px;
  text-align: center;
  color: #393E46;
}

.shop-title {
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 5px;
  padding: 0 20px;
}

.product-card img {
  max-width: 350px;
  width: 100%;
  margin: 25px auto;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  filter: saturate(1.2);
}

.product-card img:hover {
  transform: scale(1.03);
}

.product-card h3 {
  padding: 0 20px;
}

.product-card a {
  display: inline-block;
}

.out-of-stock img {
  filter: grayscale(100%);
}
.out-of-stock img:hover {
  transform: scale(1);
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    gap: 20px;
  }
  .product-card {
    font-size: 13px;
    max-width: 250px;
  }

  .shop-title {
    margin-bottom: 10px;
    font-size: 28px;
  }
}

.carousel-about {
  padding: 100px;
}

 /* the slides */
 .slick-slide {
  margin: 0 20px;
 }
/* Mobile fix for Slick carousel image sizing */
@media (max-width: 768px) {
  .slick-slider {
    padding: 20px;
    margin-top: 45px;
  }
}

/* Styling for Follow Us section */
.return-policy, .follow-us, .description, .size-guide {
  position: relative;
  bottom: 0;
  left: 20px;
  padding: 10px;
  padding-left: 20px;
  background-color: transparent; 
  color: #393E46;
  font-family: 'Open Sans', sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background-color: transparent; 
  max-width: 100%;
  margin-right: 20px;
  margin-left: -20px;
}
.description, .size-guide {
  padding-left: 5px;
}

.return-policy-title:hover, 
.follow-us-title:hover, 
.description-title:hover,
.size-guide-title:hover {
  color: grey;
  cursor: pointer;
}

.return-policy-title,
.follow-us-title,
.description-title,
.size-guide-title {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
}

/* Plus/Minus Icon */
.toggle-icon {
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-right: 5px;
}

/* Links styling */
.return-policy-text,
.follow-us-links,
.description-text,
.size-guide-text {
  display: none; /* Hidden by default */
}

.return-policy-text p, .follow-us-links a, .description-text p {
  display: block;
  text-decoration: none;
  padding: 6px 0;
  font-size: 14px;
  transition: color 0.3s;
  color: #111111;
  cursor: auto;
}
.return-policy-text ul {
  padding: 6px 0;
  font-size: 14px;
  color: #111111;
  margin-left: 10px;
}

.follow-us-links a:hover {
  color: grey;
  text-decoration: underline;
  cursor: pointer;
}

.return-policy.active .return-policy-text, 
.follow-us.active .follow-us-links,
.description.active .description-text,
.size-guide.active .size-guide-text {
  display: block;
}

/* Toggle the icon when active */
.return-policy.active .toggle-icon,
.follow-us.active .toggle-icon,
.description.active .toggle-icon,
.size-guide.active .toggle-icon {
  transform: rotate(45deg);
}

.alt-products {
  display: flex;
  flex-direction: column;
  margin-top: 250px;
}

.main-row {
  display: flex;
  align-items: center;
  min-height: 60vh;
  margin-top: -250px;
  flex-wrap: wrap;
}

.main-row.left {
  flex-direction: row;
}

.main-row.right {
  flex-direction: row-reverse;
}

.image-container {
  width: 50vw;
  height: 100%;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text {
  width: 50vw;
  padding: 5vw;
  box-sizing: border-box;
  font-size: 2vw;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: #393E46;
}
.first {
  margin-bottom: 200px;
}

.text strong {
  font-size: 2.2vw;
  display: block;
  margin-bottom: 10px;
}

.final-cta {
  color: #393E46;
  text-align: center;
  padding: 100px 20px;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.buy-button {
  background: #393E46;
  color: white;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.buy-button:hover {
  background: #393e46bb;
  transform: scale(1.05);
}

[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  will-change: transform, opacity;
}

@media (max-width: 768px) {
  .alt-products {
    margin-top: 50px;
  }
  
  .main-row {
    margin-top: -50px;
    min-height: 0;
  }

  .first{
    margin-bottom: 50px;
  }

  .final-cta h2 {
    font-size: 1.5rem;
  }

  .final-cta p {
    font-size: 1rem;
  }

  .buy-button {
    padding: 14px 22px;
    font-size: 0.9rem;
  }
}


/* product page start */
.product-container {
  display: flex;
  min-height: 100vh;
  padding-bottom: 70px;
  margin-top: 80px;
  margin-bottom: 50px;
}

/*carousel*/
.product-slider {
  width: 100%;
  max-width: 500px;
  margin: auto 60px;
}

.product-main img {
  width: 100%;
  height: 600px; /* fixed height to enforce portrait shape */
  object-fit: contain;
  background-color: white;
}

.product-thumbs img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  background-color: white;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.2s;
  margin: 0;
}

/* Highlight the active/centered thumb */
.product-thumbs .slick-current {
  opacity: 1;
  transform: scale(1.1);
  z-index: 2;
}


.product-thumbs img:hover {
  opacity: 1;
}

.product-thumbs {
  margin-top: 15px;
}

/* Slick default arrows override */
.product-main .slick-prev,
.product-main .slick-next {
  z-index: 2;
  width: 30px;
  height: 20%;
  border: none;
  position: absolute;
  top: 300px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.product-main .slick-prev {
  left: -20px;
}
.product-main .slick-next {
  right: -20px;
}

@media (max-width: 768px) {
  .product-main .slick-prev {
    left: 0;
    top: 265px;
  }
  .product-main .slick-next {
    right: 0;
    top: 265px;
  }
  .product-main img {
    max-height: 500px;
  }
    .product-thumbs img {
    height: 40px;
  }
}

.product-main .slick-prev:before,
.product-main .slick-next:before {
  font-size: 30px;
  line-height: 1;
}

/**/

.product-info-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-info-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #393E46;
}

.product-info-section .price {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #393E46;
}

.back-link {
  color: #393E46;
  text-decoration: underline;
  font-size: 1rem;
  display: inline-block;
  margin-top: 25px;
  max-width: 130px;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #F4F3F2;
  backdrop-filter: blur(10px); 
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: right;
  z-index: 1000;
}

.cart-buttons-wrapper {
  position: relative;
  min-height: 90px;
}

.cart-button {
  top: 0;
  left: 0;
  width: 100%;
}

.size-selector {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
}

.size-selector label {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
  color: #111111;
}

#sizeSelect {
  width: 270px;
  padding: 5px 10px;
  font-size: 14px;
  background-color: #fff;
  color: #333;
  cursor: pointer;

  /* Custom arrow styling */
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
}



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

  .product-info-section, .product-image-section {
    max-width: 100%;
    text-align: left;
    padding: 15px;
  }

  .product-info-section h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .bottom-bar {
    height: 60px;
  }
  .cart-button {
    transform: translate(60px);
  }
}


/* product page end */


.size-chart {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

.size-chart th,
.size-chart td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.size-chart thead {
  font-weight: bold;
}


.socials-section {
  text-align: center;
  padding: 60px 20px;
  color: #393E46;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 80px;
}

.socials-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
}

.social-icons a {
  color: white;
  font-size: 32px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #999;
}


.clickable-image {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.image-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.95);
  justify-content: center;
  align-items: center;
}

.image-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
