@font-face {
  font-family: 'SackersGothic';
  src: url("../fonts/Sackers\ Gothic\ Medium\ AT\ Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'SackersGothic', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* button font */
button {
  font-family: 'SackersGothic', Arial, sans-serif;
}

/* Header Section */
.wadha_logo {
  width: clamp(90px, 12vw, 150px);
  /* Reduced logo width */
  height: auto;
  max-width: 100%;
  /* Ensure the logo does not overflow its container */
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(12px, 4vh, 25px);
  margin-bottom: clamp(18px, 6vh, 50px);
}

/* Media Query for Tablets and Larger Screens */
@media (min-width: 600px) {
  .wadha_logo {
    width: 150px;
    /* Increase logo size slightly on larger screens */
  }
}

/* Media Query for Small Mobile Devices */
@media (max-width: 400px) {
  .wadha_logo {
    width: 100px;
    /* Make logo smaller on very small screens */
  }
}

/* Products list */
.product-list-container {
  max-width: 600px;
  /* Set a max width for the container */
  margin: 0 auto;
  /* Center it horizontally */
  padding: 20px;
  /* Add some padding around the container */

}

/* HOMEPAGE SECTION  */

/* Ensure section takes at least viewport height, with padding */
.homepage {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 40px 0;
}

/* Product List Container */
.homepage .product-list-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
}

.homepage .list-box {
  list-style: none;
  margin: 0;
  padding: 0;
}

.homepage .list-box li {
  margin: 0 0 18px 0;
}

.homepage .list-items {
  display: block;
  width: 100%;
  padding: 18px 0;
  background: #f4f4f4;
  color: #333;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  /* subtle shadow for clickable look */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  letter-spacing: 1px;
}

.homepage .list-items:hover,
.homepage .list-items:focus {
  background: #333;
  color: #fff;
  text-decoration: none;
  outline: none;
}

/* Responsive Video Container */
.homepage .video-flex-container {
  width: 100%;
  max-width: 800px;
  margin: 10px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.homepage video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  max-height: 400px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .homepage .list-items {
    font-size: 15px;
    padding: 13px 0;
  }

  .homepage .product-list-container {
    padding: 0 4px;
  }

  .homepage video {
    max-height: 220px;
    border-radius: 8px;
  }
}

@media (max-width: 400px) {
  .homepage .list-items {
    font-size: 13px;
    padding: 10px 0;
  }
}


.list-box {
  text-align: center;
  list-style: none;
  padding: 0;
}

.list-items {
  display: block;
  margin: 20px 0;
  /* Vertical spacing between items */
  padding: 15px 0;
  font-size: 18px;
  /* Default font size */
  font-weight: bold;
  background-color: #f4f4f4;
  color: #333;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
.list-items:hover {
  background-color: #333;
  color: #fff;
}

div>ul>a {
  text-decoration: none;
  display: block;
}

/* Hover effect for the anchor tag */
div>ul>a:hover {
  text-decoration: none;
}

/* Media Query for Tablets and Larger Screens */
@media (min-width: 600px) {
  .list-items {
    font-size: 20px;
    /* Increase font size on larger screens */
    margin: 30px 0;
    /* Larger margin for spacing on bigger screens */
    padding: 20px 0;
    /* Larger padding on bigger screens */
  }
}

/* Media Query for Mobile Devices */
@media (max-width: 600px) {
  .product-list-container {
    padding: 10px;
    /* Reduce padding on mobile */
  }

  .list-items {
    font-size: 16px;
    /* Smaller font size on mobile */
    padding: 12px 0;
    /* Reduce padding */
    margin: 10px 0;
    /* Reduce vertical margin */
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 400px) {
  .list-items {
    font-size: 14px;
    /* Even smaller font size on very small devices */
    padding: 10px 0;
    /* Adjust padding further for smaller screens */
  }
}

/* COLLECTIONS SECTION */
/* Row Product List Container */
.product-row-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  overflow-x: auto;
}

/* Flex Row Styling */
.row-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  list-style: none;
}

/* Row Item Style */
.row-item {
  display: block;
  padding: 15px 25px;
  background-color: #f4f4f4;
  color: #333;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  text-align: center;
  white-space: nowrap;
  /* Prevents line break in item */
}

/* Hover Effect */
.row-item:hover {
  background-color: #333;
  color: #fff;
}

/* Tablet and Larger */
@media (min-width: 768px) {
  .row-item {
    font-size: 20px;
    padding: 18px 30px;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .row-box {
    flex-direction: column;
    align-items: center;
  }

  .row-item {
    width: 100%;
    font-size: 14px;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .row-item {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* BACK BUTTON */

.back-button {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1000;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  transform-origin: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

.back-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ffffff, #fffdf9);
  z-index: -1;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.back-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ffffff, #ffffff);
  z-index: -2;
  border-radius: 50%;
  transform: scale(0.9);
  opacity: 0.8;
}

.back-button i,
.back-button svg {
  font-size: 24px;
  color: #c1a162;
  /* gold for luxury */
  transition: all 0.3s ease;
}

.back-button:hover {
  transform: translateX(-5px) scale(1.05);
}

.back-button:hover i,
.back-button:hover svg {
  color: #886016;
  transform: scale(1.2);
}

.back-button:hover::before {
  transform: rotate(10deg) scale(1.1);
}

.back-button:active {
  transform: translateX(-5px) scale(0.95);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 3, 3, 0.08);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(210, 195, 170, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(210, 195, 170, 0);
  }
}

@media (max-width: 600px) {
  .back-button {
    top: calc(10px + env(safe-area-inset-top));
    left: calc(10px + env(safe-area-inset-left));
    width: 50px;
    height: 50px;
  }

  .back-button i,
  .back-button svg {
    font-size: 20px;
    width: 20px;
    height: 20px;
  }
}

/* footer */
/* Remove default margin and border */
footer,
.footer-section {
  margin: 0;
  border: none;
  box-sizing: border-box;
}

/* Footer Styles */
footer {
  width: 100vw;
  min-height: 48px;
  padding: 0;
  color: #000000;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Footer content styling */
.footer-section {
  font-size: clamp(10px, 3vw, 12px);
  /* Responsive font size */
  font-weight: 200;
  letter-spacing: 0.03em;
  margin: 0;
  /* Make sure no margin is used */
  border: none;
  /* Remove border if any */
}

/* opacity */
.preview h3 {
  opacity: 0.8;
  /* Makes the bag title slightly transparent */
}

.fabric-list button span {
  opacity: 0.8;
  /* Makes the color name slightly transparent */
}

/* ...back button arrow color... */
 .back-button i {
     color: rgba(0, 0, 0, 0.85);
     /* matte black with fixed opacity */
     font-size: 1.4rem;
     pointer-events: none;
     /* prevents hover highlight on icon itself */
 }

 /* Remove hover color changes */
 .back-button:hover i,
 .back-button i:hover {
     color: rgba(0, 0, 0, 0.85);
     /* stays fixed */
 }

