:root {
  --primary-clr: #e3b910;
}

.form-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.form-title {
  text-align: center;
  margin-bottom: 30px;
}
.required-field::after {
  content: "*";
  color: red;
  margin-left: 4px;
}
.password-label-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shoping__cart__item img {
  width: 101px;
  height: 100px;
}

.featured__item__btn__hover {
  position: absolute;
  left: 0;
  bottom: 20px; /* Always visible at the bottom */
  width: 100%;
  text-align: center;
}

.btn-view-details {
  /* Positioning and Display */
  display: inline-block;

  /* Text and Font */
  color: #1c1c1c; /* Dark text color */
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;

  /* Box Model */
  padding: 10px 24px;
  border: 2px solid #e3b910; /* Primary color border */

  /* Appearance */
  background: #ffffff; /* White background */
  border-radius: 50px; /* Makes it a pill-shaped button */

  /* Animation */
  transition: all 0.3s ease;
}

.btn-view-details-stamps {
  margin-top: 15px;
  display: inline-block;
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 2px solid #e3b910; /* Primary color border */
  background: #ffffff; /* White background */
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-view-details:hover {
  background: #e3b910; /* Primary color background on hover */
  color: #ffffff; /* White text on hover */
  cursor: pointer;
}

.set-bg-img {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* --- Base Button Style (Common to both) --- */
.btn-adx {
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 24px;
  border: 2px solid #e3b910;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-primary-adx {
  background-color: #ffffff;
  color: #1c1c1c;
}

.btn-primary-adx:hover {
  background-color: #e3b910;
  color: #ffffff;
}

.btn-secondary-adx {
  background-color: #e3b910;
  color: #ffffff;
}

.btn-secondary-adx:hover {
  background-color: #ffffff;
  color: #e3b910;
}

.btn-adx-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* orders.php */
.order-block {
  border: 1px solid #ebebeb;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
  flex-wrap: wrap;
  /* For responsiveness */
}

.order-header h5 {
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 5px;
}

.order-header p {
  margin-bottom: 5px;
  color: #6f6f6f;
  font-size: 14px;
}

.order-status {
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
}

/* Status-specific colors */
.status-pending,
.status-processing {
  background-color: #fff2e6;
  color: #ff8c1a;
}

.status-manufacturing {
  background-color: #e6f7ff;
  color: #1a9cff;
}

.status-ready_for_delivery {
  background-color: #f0e6ff;
  color: #8e44ad;
}

.status-in_transit {
  background-color: #e6f2ff;
  color: #1a75ff;
}

.status-delivered {
  background-color: #e6ffe6;
  color: #009900;
}

.status-cancelled {
  background-color: #ffe6e6;
  color: #cc0000;
}

/* --- NEW STYLES FOR NAVBAR --- */

/* Style for the icon counters */
.header__cart ul li .icon-wrap {
  position: relative;
  display: inline-block;
}

.header__cart ul li .icon-wrap span {
  height: 20px;
  width: 20px;
  background: var(--primary-clr); /* Your primary green color */
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -8px; /* Adjust as needed */
  right: -12px; /* Adjust as needed */
}

/* User Dropdown Styling */
.user-dropdown {
  position: relative;
  cursor: pointer;
  margin-left: 20px; /* Space from the icons */
}

.user-dropdown > a {
  color: #252525;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.user-dropdown > a .fa-user-circle {
  font-size: 24px;
  margin-right: 8px;
  color: #555;
}

.user-dropdown > a > span:hover {
  color: black;
}

.user-dropdown .user-menu {
  position: absolute;
  right: 0;
  top: 40px; /* Position below the username */
  width: 180px;
  background: #ffffff;
  list-style: none;
  padding: 10px 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #ebebeb;
}

.user-dropdown:hover .user-menu {
  visibility: visible;
  color: #333;
  opacity: 1;
  top: 30px; /* Animate upwards slightly */
}

.user-dropdown .user-menu li a {
  font-size: 14px;
  color: #6f6f6f;
  padding: 8px 20px;
  display: block;
  transition: all 0.3s;
}

.user-dropdown .user-menu li a:hover {
  background: #f5f5f5;
  color: #1c1c1c;
}

.user-dropdown .user-menu li a i {
  margin-right: 10px;
  color: var(--primary-clr);
}

/* Login Button Styling */
.login-btn {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  background: var(--primary-clr);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
}

.login-btn:hover {
  color: #ffffff;
  text-decoration: none;
}

.header__phone-btn {
  display: flex; /* Use flexbox to align icon and text */
  align-items: center;
  background-color: #f5f5f5; /* A light background to stand out slightly */
  padding: 8px 15px;
  border-radius: 5px;
  margin-right: 15px; /* Space between this and the other icons */
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.header__phone-btn:hover {
  background-color: #e3b910; /* Use your primary color for hover */
  color: #ffffff;
}

.header__phone-btn:hover .phone-text {
  display: none;
  text-decoration: none !important;
}

.header__phone-btn:hover::after {
  width: 8em;
  text-decoration: none !important;
  font-weight: bold;
  content: "+91 94712 27978";
}

.header__phone-btn .fa-phone {
  font-size: 16px;
  color: #e3b910; /* Your primary green color */
  transition: all 0.3s ease;
}

.header__phone-btn:hover .fa-phone {
  color: #ffffff; /* Icon becomes white on hover */
}

.header__phone-btn .phone-text {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #252525;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header__phone-btn:hover .phone-text {
  color: #ffffff;
}

/* --- RESPONSIVE STYLES FOR MOBILE --- */
/* On tablets and phones (screens smaller than 992px), hide the text */
@media only screen and (max-width: 991px) {
  .header__phone-btn .phone-text {
    display: none; /* Hide the phone number text */
  }

  /* Make the button circular and icon-only */
  .header__phone-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    justify-content: center; /* Center the icon horizontally */
    background-color: #f5f5f5;
    margin-right: 10px;
  }

  .header__phone-btn .fa-phone {
    font-size: 18px; /* Slightly larger icon for mobile */
  }
}

.features-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  color: #333;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #e3b910;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.feature-divider {
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
  margin: 0 auto 20px;
}

/* Vertical separator for desktop */
@media (min-width: 992px) {
  .feature-col:not(:last-child) .feature-card::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
  }
}

/* Mobile responsiveness */
@media (max-width: 767.98px) {
  .feature-col {
    margin-bottom: 20px;
  }

  .feature-icon {
    font-size: 2rem;
  }
}

/* Hero Carousel */
.hero-carousel-container {
  background-size: cover; /* The light gray pattern background */
  background-position: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* Override Owl Carousel defaults for a seamless look */
.hero-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-carousel .owl-dots .owl-dot span {
  background: rgba(0, 0, 0, 0.3);
}
.hero-carousel .owl-dots .owl-dot.active span {
  background: #e3b910; /* Your primary theme color */
}

/* A single slide item */
.hero-carousel .hero__item__slide {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px 60px;
  min-height: 431px;
}

/* --- ANIMATION STYLES --- */
/* Select all children of the text and the image */
.hero__text > *,
.hero__item__image img {
  opacity: 0; /* Start invisible */
  transform: translateY(30px); /* Start slightly lower */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When a slide is ACTIVE, animate its children in */
.owl-item.active .hero__text > * {
  opacity: 1;
  transform: translateY(0);
}
.owl-item.active .hero__item__image img {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger the animation for a cooler effect */
.owl-item.active .hero__text span {
  transition-delay: 0.2s;
}
.owl-item.active .hero__text h2 {
  transition-delay: 0.3s;
}
.owl-item.active .hero__text p {
  transition-delay: 0.4s;
}
.owl-item.active .hero__text .primary-btn {
  transition-delay: 0.5s;
}
.owl-item.active .hero__item__image img {
  transition-delay: 0.4s;
}

/* --- RESPONSIVE ADJUSTMENTS (Copied from previous step) --- */
@media only screen and (max-width: 991px) {
  .hero-carousel .hero__item__slide {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .hero__text {
    padding-right: 0;
    margin-bottom: 30px;
  }
  /* (Other mobile styles for text/image size can go here) */
}

.hero-carousel .owl-nav {
  /* Remove default margins that might misalign the buttons */
  margin: 0;
}

/* Style for the individual prev/next buttons */
.hero-carousel .owl-nav button {
  /* Positioning */
  position: absolute;
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Precise vertical centering */

  /* Appearance */
  background: rgba(255, 255, 255, 0.5); /* Semi-transparent white background */
  color: #1c1c1c; /* Dark icon color */
  height: 50px;
  width: 50px;
  border-radius: 50%; /* Make them circular */
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); /* Add a subtle shadow */

  /* Font/Icon Styling */
  font-size: 22px;
  line-height: 50px; /* Vertically center the icon inside the button */

  /* Smooth transition for hover effect */
  transition: all 0.3s ease;
}

.hero-carousel .owl-nav button:hover {
  background: #e3b910; /* Your primary theme color on hover */
  color: #ffffff; /* White icon on hover */
}

/* Position the "Previous" button on the left */
.hero-carousel .owl-nav button.owl-prev {
  left: 20px; /* Adjust this value for desired distance from the edge */
}

/* Position the "Next" button on the right */
.hero-carousel .owl-nav button.owl-next {
  right: 20px; /* Adjust this value for desired distance from the edge */
}

/* --- Responsive adjustments for mobile --- */
@media only screen and (max-width: 767px) {
  .hero-carousel .owl-nav button {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 18px;
  }

  .hero-carousel .owl-nav button.owl-prev {
    left: 10px;
  }

  .hero-carousel .owl-nav button.owl-next {
    right: 10px;
  }
}

.password-wrapper {
  position: relative;
}

.password-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d; /* A neutral gray color */
  z-index: 5;
}

.password-wrapper .toggle-password:hover {
  color: #1c1c1c; /* Darken on hover */
}

/* BLOG */
