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

body {
  font-family: "Arial", sans-serif;
  color: #5c4033; /* Dark Brown */
  background-color: #ffffff; /* White */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}


/* General Header Styling */
/* Transparent Navbar */

.transparent-navbar {
  background: transparent !important;
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Semi-transparent white border */
}


/* Header Border as a Pseudo-Element */
.transparent-navbar::after {
  content: "";
  position: absolute;
  bottom: -1px; /* Position the border below the header */
  left: 0;
  width: 100%;
  height: 1px; /* Border thickness */
  background-color: #ffffff; /* White border color */
  z-index: 5; /* Ensure it is above the video */
  pointer-events: none; /* Prevent interaction */
}


/* Logo Styling */


/* Navigation Styling */
.navbar-nav {
  display: flex;
  gap: 20px; /* Space between nav links */
  justify-content: center; /* Center nav items */
}

.nav-link {
  color: #f2e8df !important; /* Off-white text */
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-link:hover {
  color: #b98b82 !important; /* Muted Mauve on hover */
  text-decoration: none;
}

/* Social Media Icons Styling */
.header-social {
  display: flex;
  gap: 20px; /* Space between icons */
}
.fix-menu-social .social-icon{
  color: #333;
  border: 1px solid #333;
}

/* Hero Section with Video */
.hero {
  position: relative;
  height: 100vh; /* Full viewport height */
  width: 100%; /* Full width */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.video-container {
  position: absolute;
  top: 0; /* Align video with the very top of the hero section */
  left: 0;
  width: 100%;
  height: 100%; /* Full height of the hero section */
  z-index: 1; /* Ensure video is below the overlay */
}

.small-video-container {
  position: absolute;
  top: 0; /* Align video with the very top of the hero section */
  left: 0;
  width: 100%;
  height: 30%; /* Full height of the hero section */
  z-index: 1; /* Ensure video is below the overlay */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire hero section */
}

/* Text Overlay */
.video-overlay {
  position: relative; /* Keeps the overlay above the video */
  z-index: 100; /* Ensures the text overlay is above the video */
  width: 100%;
  height: 100%; /* Full height of the hero section */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for readability */
  color: #f2e8df !important; /* Off-White text */
  padding: 0 15px; /* Prevent content from touching edges */
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  margin-top: 10px;
}

.btn-primary {
  background-color: #b98b82 !important; /* Muted Mauve */
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #8c7c70 !important; /* Taupe */
}

/* Fly-In and Hover Effects */

/* Shared Fly-In Styling */
.fly-in {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to original position */
}

.transition-effect {
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Start below the viewport */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Smooth transition */
}

/* Fly-In for Collection Title */
.collection-title {
  opacity: 0; /* Initially hidden */
  position: relative;
  z-index: 15;
  transform: translateY(50px); /* Start below the viewport */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.collection-title.fly-in {
  opacity: 1; /* Become visible */
  transform: translateY(0); /* Move to original position */
}

/* Fly-In for Product Cards */
.product-card {
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Start below the viewport */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Smooth transition */

}
/* Product Cards */

.product-card img {
  width: 100%;
  height: 325px; /* Fixed height */
  object-fit: cover;
}

/* Text Container with Background */
.text-container .card-text {
  font-size: 1rem;
  color: #8c7c70; /* Taupe */
  margin: 0;
}


.text-container {
  background-color: #ffffff;
  height: 200px;
  border-top: 2px solid #8c7c70; /* Taupe */
  padding: 15px;
  text-align: center;
  position: relative;
}

.text-container .card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5c4033;
  margin-bottom: 8px;
}

.text-container .card-text {
  color: #8c7c70; /* Taupe */
}


.product-card.fly-in {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to original position */
}

/* Product Card Hover Effects */
.image-container {
  position: relative;
  width: 100%;
  height: 325px; /* Ensure consistent height */
  overflow: hidden; /* Prevent overflow */
}

.image-container .card-img-top {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure proper scaling */
  transition: opacity 0.3s ease-in-out; /* Smooth transition for hover */
}

.image-container .default-image {
  opacity: 1; /* Default image is visible initially */
}

.image-container .hover-image {
  opacity: 0; /* Hover image is hidden initially */
}

.image-container:hover .default-image {
  opacity: 0; /* Hide default image on hover */
}

.image-container:hover .hover-image {
  opacity: 1; /* Show hover image on hover */
}


/* About Section */
.about-overlay {
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
  padding: 20px;
  border-radius: 8px; /* Add rounded edges to overlay */
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-button {
  background-color: #b98b82 !important; /* Muted Mauve Button */
  border: none !important;
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #f2e8df !important; /* Off-white text */
  text-decoration: none;
}

.about-button:hover {
  background-color: #8c7c70 !important; /* Taupe Button Hover */
}

.about-section {
  transform: scale(1); /* Default scale */
  transition: transform 1.5s ease-in-out; /* Smooth zoom effect */
}

.about-section.zoomed {
  transform: scale(1.1); /* Zoomed-in scale */
}

/* Footer Styling */
/* Off-White Section Above Footer */
.footer-above {
  height: 10em;
}

.footer-above h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-above p {
  font-size: 1rem;
  margin-bottom: 0;
}

.footer {
  background-color: #001f3f; /* Navy Blue */
  color: #f2e8df; /* Off-white */
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Ensure responsiveness */
  gap: 20px; /* Space between flex items */
}

/* Navigation Links (Left) */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: #f2e8df; /* Off-white text */
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
}

.footer-nav ul li a:hover {
  color: #b98b82; /* Muted Mauve on hover */
  text-decoration: underline;
}

/* Logo and Copyright (Center) */
.footer-center {
  text-align: center;
}

.footer-logo {
  width: 150px; /* Adjust logo size */
  height: auto;
  margin-bottom: 10px;
}

.footer-center p {
  font-size: 0.875rem;
  margin: 0;
  color: #eae3db; /* Slightly lighter off-white */
}

/* Footer2 Links Styling */
.footer2 ul li a {
    font-family: Poppins-Medium;
    font-size: 14px;
    padding: 5px 0px;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    text-decoration: none;  /* Removes underline */
    color: #b2b2b2;  /* Default color */
    transition: color 0.3s ease-in-out;  /* Smooth transition */
}

.footer2 ul li a:hover {
  color: #b98b82;  /* Changes color on hover */
}
/* Social Media Icons (Footer and Header) */
.social-icon {
  color: #f2e8df; /* Off-white for social icons */
  font-size: 1.2rem; /* Icon size */
  width: 40px;
  height: 40px;
  border: 1px solid #f2e8df; /* Thin circle border */
  border-radius: 50%; /* Make the border circular */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-icon:hover {
  color: #b98b82; /* Muted Mauve on hover */
  border-color: #b98b82; /* Border changes color on hover */
  transform: rotateY(180deg); /* Rotate 180 degrees */
}

/* Adjust spacing between social icons */
.footer-social {
  display: flex;
  gap: 15px; /* Space between icons */
}

.image-container .card-img-top {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure proper scaling */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition */
}

.image-container .default-image {
  opacity: 1; /* Default image visible initially */
}

.image-container .hover-image {
  opacity: 0; /* Hover image hidden initially */
}

.image-container:hover .default-image {
  opacity: 0; /* Hide default image on hover */
}

.image-container:hover .hover-image {
  opacity: 1; /* Show hover image on hover */
}


.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f2e8df !important; /* Off-white */
}

.nav-link {
  color: #f2e8df !important;
  text-transform: uppercase;
  margin: 0 15px;
}

.nav-link:hover {
  color: #b98b82 !important; /* Muted Mauve */
  text-decoration: none;
}


/* Signup Section */
.signup {
  background-color: #f2e8df !important; /* Off-White Background */
  color: #5c4033; /* Dark Brown Text */
}

.signup h2 {
  color: #5c4033 !important; /* Dark Brown Heading */
  font-size: 2rem;
  margin-bottom: 20px;
}
#signup-anchor, #about{

  position: relative;
  z-index: 15;
}

.signup-form {
  max-width: 600px;
  margin: 0 auto;
}

.signup-form .form-control {
  border: 1px solid #8c7c70;
  border-radius: 4px;
  padding: 10px;
}

.signup-form .form-control:focus {
  border-color: #b98b82; /* Muted Mauve Focus */
  outline: none;
  box-shadow: 0 0 5px rgba(185, 139, 130, 0.5); /* Muted Mauve Glow */
}

.signup-form .btn-primary {
  background-color: #b98b82 !important; /* Muted Mauve Button */
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: uppercase;
}
.signup-form .btn-primary:hover {
  background-color: #8c7c70;
}

/* Footer Styling */
.footer {
  background-color: #001f3f; /* Navy Blue */
  color: #f2e8df; /* Off-white */
  padding: 30px 15px;
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-nav ul li a {
  color: #f2e8df;
  text-decoration: none;
}

.footer-nav ul li a:hover {
  color: #b98b82;
}

.footer-social {
  margin-top: 20px;
}

.footer-social .social-icon {
  font-size: 1.5rem;
  color: #f2e8df;
  margin: 0 10px;
}

.footer-social .social-icon:hover {
  color: #b98b82;
}


/* Heart Icon Styling */
.like-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px; /* Small circular size */
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem; /* Font size for the heart icon */
  color: #8c7c70; /* Taupe color for the heart */
  background-color: transparent; /* Transparent background */
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.like-icon:hover {
  transform: scale(1.2); /* Slight zoom effect on hover */
  border-color: #b98b82; /* Mauve border on hover */
}

.like-icon .fa-heart {
  color: #b98b82; /* Filled mauve heart when liked */
}

.like-icon .fa-heart:hover {
  color: #8c7c70; /* Taupe heart on hover */
}


/* Blur overlay */
/* Make the entire page blurred by default */
.page-content {
    position: relative;
    filter: blur(8px); /* Applies blur to the whole page */
    pointer-events: none; /* Prevents interaction */
}

/* Add an overlay to block user interaction on the blurred page */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.7); /* Light transparent overlay */
    z-index: 1000;
}
@media (max-width: 991px){
  .blur-overlay{top:79px !important;}
}
.blur-overlay.fix-menu-desktop
{
  top:0 !important;
  height: 110vh !important;
}
/* Focus section */
/* Base Styling for Focus Section */
.focus-section {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1010;
  pointer-events: auto;
  text-align: center;

  /* Default width for large screens */
  width: 50%;
  max-width: 600px;
  min-width: 300px;
}

/* Responsive Design Adjustments */
@media (max-width: 1024px) {
  .focus-section {
      width: 70%; /* Wider on tablets */
  }
}

@media (max-width: 768px) {
  .focus-section {
      width: 85%; /* Almost full width on smaller tablets */
  }
}

@media (max-width: 480px) {
  .focus-section {
      width: 95%; /* Nearly full width on mobile */
      padding: 15px; /* Adjust padding for smaller screens */
  }
}


.margin-top-30 {
  margin-top: 30px;
}


.product-img-size {
  width: 257px;
  height: 349px;
  object-fit: cover;
}

/* Limit main image size */
.product-gallery .image-gallery-slide img {
  max-height: 450px;
  object-fit: contain;
  width: 100%;
}

/* Optional: limit thumbnail size */
.product-gallery .image-gallery-thumbnail img {
  max-height: 75px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .full-page-section {
    padding: 0 20px 20px 40px !important;
  }
}


/* spinner for shipping info page while fetching rates*/
.fullscreen-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85); /* semi-transparent white */
  backdrop-filter: blur(2px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

