.why-choose-us {
    padding: 50px 0; /* Top and bottom padding */
    text-align: center; /* Center-align text */
    background-color: transparent; /* Remove background color */
}

.why-choose-us h2 {
    font-size: 36px; /* Title size */
    font-weight: bold; /* Bold title */
    color: #7A4B9B; /* Purple color for the title */
    margin-bottom: 30px; /* Space below title */
}

.why-choose-us .grid {
    display: flex; /* Flex layout */
    justify-content: center; /* Center the items */
    gap: 20px; /* Space between cards */
    flex-wrap: wrap; /* Allow wrapping */
}

.why-choose-us .feature-card {
    padding: 20px; /* Inner padding */
    width: calc(33.33% - 20px); /* 3 cards in the first row */
    text-align: center; /* Center-align text in cards */
    border: none; /* Remove border */
    background-color: transparent; /* No background color for cards */
    box-shadow: none; /* No shadow */
    transition: transform 0.3s; /* Smooth transitions */
}

.why-choose-us .feature-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.why-choose-us .icon {
    font-size: 36px; /* Icon size */
    color: #7A4B9B; /* Same purple color for icons */
    margin-bottom: 10px; /* Space below icon */
}

.why-choose-us .feature-card h4 {
    font-size: 20px; /* Title size */
    font-weight: bold; /* Bold title */
    color: #7A4B9B; /* Purple color for title */
    margin: 10px 0; /* Space above and below title */
}

.why-choose-us .feature-card p {
    color: #fff; /* White text for description */
    line-height: 1.5; /* Line height for readability */
    margin: 0; /* Remove margin for paragraph */
    text-align: center; /* Center-align the paragraph */
}
#stats {
    padding: 20px 0; /* Adjust padding to move it up */
    background: none; /* Remove any background */
    border: none; /* Remove any border */
}

#stats h2 {
    text-align: center; /* Center the title */
    margin: 0 0 20px 0; /* Adjust margin for spacing */
    font-size: 2.5rem; /* Adjust font size as needed */
    color: #fff; /* Set the desired color */
}

#stats .grid {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center the items */
    gap: 20px; /* Adjust spacing between items */
}

#stats .flex {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center align items */
    text-align: center; /* Center text */
}

#stats .text-5xl {
    font-size: 1.5rem; /* Adjust size for the stats */
    color: #ffffff; /* White text for stats */
}

#stats .text-t-primary {
    color: #7A4B9B; /* Match the color from reference */
}
#stats {
    padding: 10px 0; /* Decrease top padding to move the section up */
}

#stats h2 {
    margin-top: -20px; /* Move the title up */
    margin-bottom: 20px; /* Keep space below the title */
    font-size: 2.5rem; /* Adjust font size if necessary */
}
#stats h2 {
    font-size: 2.5rem; /* Adjust size to match */
    font-weight: bold; /* Make it bold */
    color: #7A4B9B; /* Match the purple color */
    text-align: center; /* Center align the title */
    margin-top: 0; /* Remove any top margin */
    margin-bottom: 20px; /* Keep some space below */
}

#stats .grid {
    display: flex; /* Flex layout for items */
    justify-content: center; /* Center items */
    gap: 20px; /* Space between items */
}

#stats .flex {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center align items */
    text-align: center; /* Center text */
}
#stats .flex p {
    color: #7A4B9B; /* Purple color for stats */
}

#stats .flex h4 {
    color: #7A4B9B; /* Purple color for titles */
}
#stats .flex p {
    color: #7A4B9B; /* Purple color for stats */
    font-size: 68px; /* Adjust font size for numbers */
}

#stats .flex h4 {
    color: #7A4B9B; /* Purple color for titles */
    font-size: 18px; /* Adjust font size for titles */
    margin-top: 8px; /* Space above titles */
}
#stats .flex {
    display: flex;
    justify-content: space-between; /* Spread out the stats evenly */
    margin-top: 40px; /* Adjust top margin for overall spacing */
}

#stats .flex p {
    color: #7A4B9B; /* Purple color for stats */
    font-size: 80px; /* Adjust the font size for the numbers */
    margin: 0; /* Remove any default margin */
}

#stats .flex h4 {
    color: #7A4B9B; /* Purple color for titles */
    font-size: 20px; /* Font size for titles */
    margin-top: 10px; /* Space above titles */
}

#stats .flex p:not(:nth-last-child(1)) {
    margin-right: 40px; /* Space between each stat */
}
.stat-title {
    color: #ffffff; /* White color */
}
#stats h2 {
    color: #7A4B9B; /* Set your desired purple color here */
}

#stats .flex .text-5xl {
    color: #7A4B9B; /* White color for the numbers */
}

#stats .flex h4 {
    color: #ffffff; /* White color for the titles */
}
h2 {
    margin-bottom: 1px; /* Set this to a very small value */
}

.why-choose-us {
    margin-top: 1px; /* Set this to a very small value */
}
/* Target the specific heading for Our Accomplishments */
h2 {
    margin-bottom: 8px; /* Set a smaller value for space below */
}

/* Target the specific class for the section that follows */
.why-choose-us {
    margin-top: 8px; /* Set a smaller value for space above */
}
#best-sellers {
    padding: 40px 0;
    background-color: #000; /* Background color */
}

.section-title {
    font-size: 36px; /* Title size */
    color: #6f4c7a; /* Purple color */
    text-align: center;
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px; /* Space between items */
}

.product-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid transparent; /* Optional border for style */
}

.product-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    border-color: #6f4c7a; /* Change border color on hover */
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px; /* Rounded corners for images */
}

.product-title {
    font-size: 20px;
    color: #fff; /* White text */
    margin: 10px 0;
}

.product-price {
    font-size: 18px;
    color: #fff; /* White text */
}

.buy-button {
    background-color: #6f4c7a; /* Purple button color */
    color: #fff; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #a57cbb; /* Lighter purple on hover */
}
.best-sellers-section {
    position: relative;
    padding: 50px 0; /* Adjust padding as needed */
    background-image: url('https://example.com/background-image.jpg'); /* Replace with your background image URL */
    background-size: cover;
    background-position: center;
}

.best-sellers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1; /* Keep it behind the content */
}

.container {
    position: relative; /* To ensure content is above the overlay */
    z-index: 2; /* Bring content above the overlay */
}

.section-title {
    color: #fff; /* Title color */
    text-align: center; /* Center the title */
    margin-bottom: 30px; /* Space below the title */
}

.product-card {
    position: relative; /* To ensure buttons are positioned correctly */
    z-index: 2; /* Bring card above the overlay */
}

/* Additional styles for product images, titles, and buttons can be added here */
.faq-section {
    padding: 50px 0;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

.faq-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: #7A4B9B; /* Purple color */
}

.faq-items {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #444; /* Divider */
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer; /* Pointer on hover */
}

.faq-answer {
    display: none; /* jooo */
    padding: 10px 0;
    line-height: 1.5;
}

.toggle-icon {
    font-size: 20px; /* Icon size */
    transition: transform 0.3s; /* Smooth rotation */
}

.faq-question.open .toggle-icon {
    transform: rotate(45deg); /* Rotate icon when open */
}
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto; /* Center the container */
    max-width: 600px; /* Maximum width */
}

.search-input {
    flex: 1; /* Takes up available space */
    padding: 10px 15px; /* Padding inside the input */
    font-size: 16px; /* Font size */
    border: 2px solid #7A4B9B; /* Purple border */
    border-radius: 5px 0 0 5px; /* Rounded corners */
    outline: none; /* Remove outline */
    transition: border-color 0.3s; /* Smooth transition */
}

.search-input::placeholder {
    color: #aaa; /* Placeholder color */
}

.search-input:focus {
    border-color: #5A3E7E; /* Darker purple on focus */
}

.search-button {
    padding: 10px 20px; /* Padding for the button */
    background-color: #7A4B9B; /* Purple background */
    color: white; /* White text */
    border: none; /* No border */
    border-radius: 0 5px 5px 0; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s; /* Smooth transition */
}
.browse-categories-title {
    font-size: 24px; /* Adjust this value to make the text smaller or larger */
}
/* Custom CSS to change text color to purple */
.category-title {
    color: purple;
  .navbar-nav .nav-link:hover {
    color: #FFFF00;
    text-decoration: underline;
      text-underline-offset: 5px;
  }
  

  .navbar-nav .nav-link.active {
    text-decoration: underline;
      text-underline-offset: 5px;
    color: #cd08df;
  }
}
/* Example style for the Stripe button */
#stripe-button {
    background-color: #6772e5; /* Stripe color */
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

/* Add any other style adjustments you need here */
/* Section title */
h2.section-title {
  text-align: center;
  font-size: 3rem;
  color: #f7f7f7;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid container */
.products {
  width: 100%;
  padding: 0 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 50px;
  justify-content: center;
}

/* Product card styling */
.product-card {
  position: relative;
  background-color: #000000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

/* Product Image */
.product-image {
  width: 70%;
  height: 70%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-bottom: 5px solid #eee;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

/* Product Info overlay */
.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  border-top: 5px solid #fff;
}

.product-card:hover .product-info {
  transform: translateY(0);
}

.product-name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.product-description {
  font-size: 1.1rem;
  opacity: 0.8;
}

.product-info a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #00aaff;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.product-info a:hover {
  background-color: #0088cc;
}
.btn-17,
.btn-17 *,
.btn-17 :after,
.btn-17 :before,
.btn-17:after,
.btn-17:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-17 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
}

.btn-17:disabled {
  cursor: default;
}

.btn-17:-moz-focusring {
  outline: auto;
}

.btn-17 svg {
  display: block;
  vertical-align: middle;
}

.btn-17 [hidden] {
  display: none;
}

.btn-17 {
  border-radius: 99rem;
  border-width: 2px;
  padding: 0.8rem 3rem;
  z-index: 0;
}

.btn-17,
.btn-17 .text-container {
  overflow: hidden;
  position: relative;
}

.btn-17 .text-container {
  display: block;
  mix-blend-mode: difference;
}

.btn-17 .text {
  display: block;
  position: relative;
}

.btn-17:hover .text {
  -webkit-animation: move-up-alternate 0.3s forwards;
  animation: move-up-alternate 0.3s forwards;
}

@-webkit-keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

.btn-17:after,
.btn-17:before {
  --skew: 0.2;
  background: #fff;
  content: "";
  display: block;
  height: 102%;
  left: calc(-50% - 50% * var(--skew));
  pointer-events: none;
  position: absolute;
  top: -104%;
  transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
  transition: transform 0.2s ease;
  width: 100%;
}

.btn-17:after {
  --progress: 0%;
  left: calc(50% + 50% * var(--skew));
  top: 102%;
  z-index: -1;
}

.btn-17:hover:before {
  --progress: 100%;
}

.btn-17:hover:after {
  --progress: -102%;
}