:root {
  --primary: #5a2ca0;   /* purple */
  --secondary: #f8f9fa; /* light background */
  --text-dark: #222;
  --text-light: #777;
  --accent: #e6d9ff;    /* soft purple */
}

/* Reset */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: #fff;
}

/* Section spacing */
.section {
  padding: 60px 0;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-secondary {
  background-color: rgb(246, 42, 42);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #4a2390;
}

.btn-secondary:hover {
  background-color: rgb(255, 0, 0);
  
}

/* Titles */
.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}


/* topbar */
/* =========================
   TOPBAR
========================= */

.topbar {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  padding: 8px 0;
}

/* Track */
.topbar-track {
  display: flex;
  width: max-content;
  animation: scrollText 20s linear infinite;
}

/* Content */
.topbar-content {
  display: flex;
  align-items: center;
}

/* Text */
.topbar-content span {
  margin: 0 20px;
}

/* Icon */
.topbar-content i {
  font-size: 18px;
  margin: 0 10px;
}

/* Animation */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Logo */
.navbar-brand {
  font-size: 24px;
  color: var(--primary);
}

.logo {
  height: 65px;
  width: auto;
  object-fit: contain;
}

/* Search Bar */
.search-bar {
  width: 50%;
}

.search-bar input {
  border-radius: 6px;
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* Wishlist Badge */
.wishlist-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* Nav links */
.nav-link {
  font-size: 15px;
  color: var(--text-dark);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .search-bar {
    width: 100%;
    margin: 10px 0;
  }

  .navbar-nav {
    align-items: flex-start !important;
  }
}

/* =========================
   CUSTOM MENU
========================= */

/* Icon */
.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  color: var(--text-dark);
  margin-top: 6px;
  margin-left: 30px;
}

/* Dropdown */
.menu-dropdown {
  position: absolute;
  top: 65px;
  right: -10;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  display: none;
  min-width: 150px;
  z-index: 999;
}

/* Links */
.menu-dropdown a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
}

.menu-dropdown a:hover {
  background: #f8f9fa;
  color: var(--primary);
}


/* hero section style */
.hero-section {
  /* background: #f8f9fa;
  padding: 60px 0; */
  /* background: #f8f9fa; */
  /* padding: 40px 0; */
  position: relative;
   background: url('../images/bg-light5.jfif') no-repeat center;
  background-size: cover;
  padding: 70px 0;
  z-index: 1;  
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25); /* light overlay */
  z-index: -1;
}

/* .hero-section {
  background: url('../images/bg-light5.jfif') no-repeat center;
  background-size: cover;
} */

.hero-title {
  font-size: 52px;
  /* font-size: 48px; */
  font-weight: 600;
  line-height: 1.2;
}

.hero-text {
  font-size: 16px;
  /* font-size: 18px; */
  margin-top: 10px;
  color: var(--text-light);
}

.hero-img {
  /* max-height: 400px; */
  max-height: 300px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-section {
    text-align: center;
  }

  .hero-img {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
 .menu-toggle {
  display: none;
 }
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;   /* reduce clickable area */
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev,
.carousel-control-next {
  pointer-events: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  pointer-events: auto;
}



/* category section */
/* Categories Section */
.categories {
  background: #fff;
}

.category-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

/* Image */
.category-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Text */
.category-card h6 {
  font-size: 15px;
  margin: 0;
}

/* Hover Effect */
.category-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}





/* product section */
/* Products Section */
.products {
  background: #f8f9fa;
}

/* Product Card */
.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  text-align: center;
  height: 100%;
}

/* Image */
.product-card img {
  max-height: 220px;
  /* object-fit: contain; */
  object-fit: cover;
}

/* Title */
.product-title {
  font-size: 16px;
  font-weight: 500;
}

/* Price */
.product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

/* Hover Effect */
.product-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

/* Wishlist Icon */
.wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Icon */
.wishlist-icon i {
  font-size: 18px;
  color: #555;
  transition: 0.3s;
}

/* Active */
.wishlist-icon.active i {
  color: red;
}




/* why choose section */
/* Why Choose Us */
.why-us {
  background: #fff;
}

/* Card */
.why-card {
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

/* Icon */
.why-card i {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Title */
.why-card h6 {
  font-size: 16px;
  font-weight: 600;
}

/* Text */
.why-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* Hover */
.why-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}





/* Best Selling Section */
.best-selling {
  background: #f8f9fa;
}

/* Product Card */
.best-selling .product-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

/* Product Image */
.best-selling .product-card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Title */
.best-selling .product-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

/* Price */
.best-selling .product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Hover Effect */
.best-selling .product-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.best-selling .product-card img {
  transition: 0.3s;
}

.best-selling .product-card:hover img {
  transform: scale(1.05);
}

/* Product Slider Arrows */
/* Product Slider Arrows ONLY */
/* .productSwiper .product-prev,
.productSwiper .product-next {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
} */

/* Position */
/* .productSwiper .product-prev {
  left: -15px;
}

.productSwiper .product-next {
  right: -15px;
} */

/* Default icon remove */
/* .productSwiper .product-prev::after,
.productSwiper .product-next::after {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary);
} */

/* Hover */
/* .productSwiper .product-prev:hover,
.productSwiper .product-next:hover {
  background: var(--primary);
}

.productSwiper .product-prev:hover::after,
.productSwiper .product-next:hover::after {
  color: #fff;
} */

/* Mobile fix */
/* @media (max-width: 768px) {
  .productSwiper .product-prev {
    left: 5px;
  }

  .productSwiper .product-next {
    right: 5px;
  }
} */






/* Testimonials */
.testimonials {
  background: #fff;
}

/* Card */
.testimonial-card {
  max-width: 900px;
  margin: auto;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
}

/* Text */
.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Name */
.testimonial-card h6 {
  font-weight: 600;
  margin: 0;
}

/* Role */
.testimonial-card span {
  font-size: 14px;
  color: var(--text-light);
}

/* Testimonial Rating */
.testimonial-rating i {
  color: #ffc107; /* gold color */
  font-size: 16px;
  margin: 0 2px;
}

/* Carousel Controls Fix */
/* .carousel-control-prev-icon,
.carousel-control-next-icon { */
  /* background-color: var(--primary); */
  /* border-radius: 50%;
  padding: 15px;
} */

/* Common Arrow Style */
/* .carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
} */

/* Position Left */
/* .carousel-control-prev {
  left: -20px;
} */

/* Position Right */
/* .carousel-control-next {
  right: -20px;
} */

/* Icon Styling */
/* .carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 15px;
  height: 15px;
} */

/* Indicators Container */
/* .carousel-indicators {
  position: relative;
  margin-top: 20px;
} */

/* Each Dot */
/* .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
  opacity: 1;
  transition: 0.3s;
} */

/* Active Dot */
/* .carousel-indicators .active {
  width: 25px;
  border-radius: 20px;
  background-color: var(--primary);
} */


/* =========================
   TESTIMONIAL CAROUSEL
========================= */

/* Arrows (Container) */
.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Position Fix */
.testimonials .carousel-control-prev {
  left: -20px;
}

.testimonials .carousel-control-next {
  right: -20px;
}

/* ICON FIX (VERY IMPORTANT 🔥) */
.testimonials .carousel-control-prev-icon,
.testimonials .carousel-control-next-icon {
  background-size: 60% 60%;
  filter: brightness(0); /* makes icon dark */
}

/* Hover Effect */
.testimonials .carousel-control-prev:hover,
.testimonials .carousel-control-next:hover {
  background: var(--primary);
}

.testimonials .carousel-control-prev:hover .carousel-control-prev-icon,
.testimonials .carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1); /* white icon */
}

/* =========================
   DOTS (INDICATORS)
========================= */

.testimonials .carousel-indicators {
  position: relative;
  margin-top: 20px;
}

.testimonials .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
  opacity: 1;
  transition: 0.3s;
}

.testimonials .carousel-indicators .active {
  width: 25px;
  border-radius: 20px;
  background-color: var(--primary);
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {
  .testimonials .carousel-control-prev {
    left: 10px;
  }

  .testimonials .carousel-control-next {
    right: 10px;
  }
}




/* footer */

/* =========================
   FOOTER
========================= */

.footer {
  background: #222;
  color: #fff;
  padding: 50px 0 20px;
}

/* Logo */
.footer-logo {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

/* Text */
.footer-text {
  font-size: 14px;
  color: #ccc;
  margin-top: 10px;
}

/* Titles */
.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

/* Contact */
.footer-contact {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 8px;
  color: var(--primary);
}

/* Divider */
.footer hr {
  border-color: #444;
  margin: 20px 0;
}

/* Bottom */
.footer-bottom p {
  font-size: 14px;
  color: #aaa;
  margin: 0;
}






/* about us page strat */
/* =========================
   ABOUT HERO
========================= */

.about-hero {
  background: linear-gradient(to right, #ffffff, #f3f0ff);
  padding: 100px 0;
  text-align: center;
}

/* Title */
.about-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Subtitle */
.about-subtitle {
  font-size: 18px;
  color: var(--text-light);
}

.about-hero {
  position: relative;
  background: url('../images/about-bg.jpg') no-repeat center;
  background-size: cover;
  padding: 100px 0;
  z-index: 1;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  z-index: -1;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 70px 0;
  }

  .about-title {
    font-size: 32px;
  }

  .about-subtitle {
    font-size: 16px;
  }
}


/* our story section */
/* =========================
   OUR STORY
========================= */

.our-story {
  background: #fff;
}

/* Image */
.story-img img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

/* Content */
.story-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}



/* mission and vision section */
/* =========================
   MISSION & VISION
========================= */


/* Why choose us section in about us page */
.content p {
  color: var(--text-light);
  line-height: 1.7;
}

.why-list {
  padding: 0;
  list-style: none;
}

.why-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* about us page CTA section */
/* =========================
   CTA SECTION
========================= */

.cta {
  background: linear-gradient(to right, #ffffff, #f3f0ff);
}

/* Box */
.cta-box {
  padding: 50px 20px;
  border-radius: 12px;
}

/* Title */
.cta-title {
  font-size: 36px;
  font-weight: 600;
}

/* Text */
.cta-text {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 10px;
}

.cta-box {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 26px;
  }

  .cta-text {
    font-size: 14px;
  }
}



/* contactus page start here */
/* =========================
   CONTACT INFO
========================= */

.contact-info {
  background: #fff;
}

/* Card */
.contact-card {
  background: #f8f9fa;
  padding: 25px 15px;
  border-radius: 10px;
  transition: 0.3s;
}

/* Icon */
.contact-card i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Title */
.contact-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

/* Text */
.contact-card p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Hover */
.contact-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}


/* form and map */
/* =========================
   CONTACT FORM SECTION
========================= */

.contact-form-section {
  background: #f8f9fa;
}

/* Form Box */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

/* Inputs */
.contact-form .form-control {
  border-radius: 6px;
  font-size: 14px;
}

/* Map */
.contact-map {
  height: 100%;
  min-height: 350px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-form h3 {
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-map {
    min-height: 250px;
  }
}


/* FAQ Section */
/* =========================
   FAQ SECTION
========================= */

.faq {
  background: #fff;
}

/* Accordion Item */
.accordion-item {
  border: none;
  border-bottom: 1px solid #eee;
}

/* Button */
.accordion-button {
  font-weight: 500;
  font-size: 15px;
  box-shadow: none;
}

/* Active */
.accordion-button:not(.collapsed) {
  background-color: var(--accent);
  color: var(--primary);
}

/* Body */
.accordion-body {
  font-size: 14px;
  color: var(--text-light);
}






/* shop page start */
/* =========================
   SHOP PAGE
========================= */

.shop {
  background: #fff;
}

/* Sidebar */
.shop-sidebar {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
}

/* Filter List */
.shop-filter {
  list-style: none;
  padding: 0;
}

.shop-filter li {
  margin-bottom: 10px;
}

.shop-filter a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  transition: 0.3s;
}

.shop-filter a:hover {
  color: var(--primary);
}

.shop-filter a.active {
  color: #fff;
  background: var(--primary);
  /* background: #a065f8; */
  padding: 5px 10px;
  border-radius: 5px;
}

.shop-filter a {
  display: inline-block;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
}



/* cart page start */
/* =========================
   CART PAGE
========================= */

.cart {
  background: #fff;
}

/* Cart Item */
.cart-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  gap: 15px;
}

/* Image */
.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* Details */
.cart-details {
  flex: 1;
}

/* Quantity */
.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: #ddd;
  cursor: pointer;
}

/* Price */
.cart-price {
  width: 80px;
  text-align: right;
  font-weight: 600;
}

/* Remove */
.remove-btn {
  border: none;
  background: transparent;
  font-size: 20px;
  color: red;
  cursor: pointer;
}

/* Summary */
.cart-summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-price {
    text-align: left;
  }
}

.cart-empty h5 {
  font-weight: 600;
}

.cart-empty p {
  font-size: 14px;
}




/* product page start */
/* =========================
   PRODUCT PAGE
========================= */

.product-page {
  background: #fff;
}

/* Image */
/* .product-image img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
} */

/* Gallery */
.main-image img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
}

.thumb-images {
  display: flex;
  gap: 10px;
}

.thumb-images img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
}

.thumb-images img:hover {
  border-color: var(--primary);
}

/* Details */
.product-details h2 {
  font-weight: 600;
}

.product-desc {
  color: var(--text-light);
  margin: 10px 0;
}

/* Quantity */
.product-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-qty span {
  font-size: 16px;
}

/* Extra */
.product-extra {
  background: #f8f9fa;
}

.product-image img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* related products */
.related-products {
  background: #f8f9fa;
}







/* checkout page start */
/* =========================
   CHECKOUT PAGE
========================= */

.checkout {
  background: #fff;
}

/* Form */
.checkout-form {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
}

.checkout-form input {
  /* background: #f8f9fa; */
  padding: 15px;
  /* border-radius: 10px; */
}

/* Inputs */
.checkout-form .form-control {
  border-radius: 6px;
  font-size: 14px;
}

/* Summary */
.checkout-summary {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
}



/* first banner (two banner in row) */
/* =========================
   HOME BANNERS
========================= */

.home-banners {
  background: #fff;
}

/* Banner Box */
.banner-box {
  border-radius: 10px;
  overflow: hidden;
}

/* Image */
.banner-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s;
}

/* Hover Effect */
/* .banner-box:hover img {
  transform: scale(1.05);
} */


/* full second banner */
/* =========================
   FULL WIDTH BANNER
========================= */

.full-banner {
  background: #fff;
}

/* Banner Box */
.banner-full-box {
  border-radius: 12px;
  overflow: hidden;
}

/* Image */
.banner-full-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s;
}

/* Hover Effect */
.banner-full-box:hover img {
  transform: scale(1.03);
}




/* wishlist page */
/* =========================
   WISHLIST
========================= */

.wishlist {
  background: #fff;
}

/* Item */
.wishlist-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  gap: 15px;
}

/* Image */
.wishlist-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* Details */
.wishlist-details h6 {
  margin: 0;
}

/* Remove */
.remove-btn {
  border: none;
  background: transparent;
  font-size: 20px;
  color: red;
  cursor: pointer;
}




/* login and register  */
/* =========================
   AUTH PAGES
========================= */

.auth {
  background: #f8f9fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Card */
.auth-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Inputs */
.auth-card .form-control {
  border-radius: 6px;
  font-size: 14px;
}

/* Links */
.auth-card a {
  color: var(--primary);
  text-decoration: none;
}




/* Notification */
/* Toast Notification */
.toast-msg {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.3s;
  z-index: 9999;
}

/* Show */
.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
}


























.product-card img {
  width: 100%;
  height: 100% !important;        /* fixed height */
  object-fit: contain !IMPORTANT;    /* fill properly */
  border-radius: 8px;
}