/*Full Page Style*/
.page-container {
  width: 100%;
}

.content-wrapper {
  margin: auto;
  padding-left: 20px;
  padding-right: 2 0px;
}

/* Top Scrolling Styles */
.marquee-wrapper {
  display: flex;
  align-items: center;
  background: #e05da3;
  overflow: hidden;
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 15px;
  padding: 0 20px;
  color: white;
  flex-shrink: 0;
}

.social-icons a {
  color: white;
  font-size: 20px;
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.marquee {
  width: 100%;
  background: #e05da3;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 45s linear infinite;
}

.marquee-track span {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 60px;
  white-space: nowrap;
}

.marqueebelowlogo {
  display: flex;
  align-items: center;
  background: #000000;
  overflow: hidden;
  width: 100%;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Header Styles */
.header.desktop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-left: 100px;
  padding-right: 100px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a.active {
  color: #007bff;
}

.logo img {
  width: 20%;
  height: 10%;
  object-fit: contain;
}

.logo a {
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.bottomlogo img {
  width: 80%;
  object-fit: contain;
  margin-left: 5%;
}

.search-bar {
  display: flex;
  width: 60%;
  margin-left: -350px;
}

.search-bar input {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 5px 0 0 5px;
  font-weight: 500;
}

.search-bar button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: #e05da3;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.mobile-top-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mobile-logo img {
  width: 25%;
  height: 10%;
  object-fit: contain;
  margin-left: 10px;
}


.mobile-logo {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.mobile-logo a {
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.mobile-cart {
  position: relative;
  font-size: 20px;
  padding-right: 5px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 6px;
}

.bottom-nav.mobile-header {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  /* border-top: 1px solid #ddd; */
  border-top: 1px solid transparent;
  border-image: linear-gradient(135deg, #f10181, #008efa) 1;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 9999;
}

.bottom-nav a {
  text-decoration: none;
  font-size: 12px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width:768px) {
  .header.desktop-header {
    display: none;
  }

  .mobile-top-header {
    display: flex;
  }

  .bottom-nav.mobile-header {
    display: flex;
  }
}

.hero-container {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  margin-top: 10px;
  border-bottom: 0px solid transparent;
  border-image: linear-gradient(135deg, #f10181, #008efa) 0.5;
}

.hero-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: "#f5057c";
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: pink;
}

@media (max-width: 1024px) {
  .hero-container {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    height: 250px;
    /* Small mobile */
  }
}

/*Category List*/
.category-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 20px;
  /* background: #FFFFFF; */
  margin-top: 50px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-image {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-image img {
  width: 250px;
  height: 250px;
  object-fit: "strecth";
}

.category-name {
  font-size: 16px;
  font-weight: 600;
  color: #f5057c;
}

.category-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 20px;
  /* background: #FFFFFF; */
  margin-top: 30px;
}

@media (max-width: 768px) {
  .category-container {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
  }

  .category-item {
    width: 47.5%;
    flex: 0 0 auto;
  }

  .category-image {
    width: 130px;
    height: 130px;
  }

  .category-image img {
    width: 100%;
    height: 100%;
    object-fit: stretch;
  }

  .category-name {
    font-size: 14px;
  }
}

.category-container {
  scroll-behavior: smooth;
}

.category-container::-webkit-scrollbar {
  display: none;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding-top: 10px;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f5057c;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 3;
  text-transform: uppercase;
}

.product-card img {
  width: 100%;
}

.product-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 5px;
}

.product-card .price {
  display: flex;
  gap: 8px;
  align-items: center;
}

.product-card .discounted {
  font-weight: 600;
  color: #f5057c;
}

.product-card .mrp {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 2;
}

.product-card:hover .wishlist-icon {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .product-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .products-container {
    gap: 15px;
  }

  .product-card {
    width: calc(50% - 10px);
    padding: 8px;
  }

  .product-card h3 {
    font-size: 14px;
  }

  .product-card .mrp {
    font-size: 12px;
  }
}

.product-card {
  flex: 0 0 calc((100% - 40px) / 3);
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

.view-all-button {
  background-color: #f5057c;
  height: 60px;
  color: #fff;
  border: none;
  margin-top: 30px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.view-all-button:hover {
  background-color: #d00463;
}

.view-all-button svg {
  transition: transform 0.3s;
}

.view-all-button:hover svg {
  transform: translateX(5px);
}

@media(max-width:900px) {
  .product-card {
    width: 45%;
  }
}

@media(max-width:600px) {
  .product-card {
    width: 90%;
  }
}

.gradient-line {
  width: 120px;
  height: 4px;
  margin: 12px auto;
  background: linear-gradient(90deg, #ff6a00, #ffcc00);
  border-radius: 10px;
}

/*Testimonials Style*/
.testimonial-section {
  margin-top: 50px;
  padding: 60px 20px;
  /* background: #f9f9f9; */
}

.testimonial-title {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-title h2 {
  font-size: 28px;
  font-weight: 600;
}

.title-line {
  width: 80px;
  height: 4px;
  background: #ff6a00;
  margin: 10px auto;
  border-radius: 10px;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.testimonial-card {
  width: 300px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-review {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.stars {
  color: #ffc107;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .testimonial-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .testimonial-card {
    padding: 15px;
    width: 80%;
  }

  .testimonial-card img {
    width: 60px;
    height: 60px;
  }

  .testimonial-review {
    font-size: 13px;
  }
}

/* Footer.css */
.footer {
  /* background-color: #4a97d2; */
  color: #000000;
  margin-top: 60px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(135deg, #f10181, #008efa) 1;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3,
.footer-col h4 {
  color: #000000;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
  color: #000;
  font-weight: 600;
}

.footer-col ul li:hover {
  color: #FFF;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  /* border-top: 1px solid #333; */
  border-top: 1px solid transparent;
  border-image: linear-gradient(135deg, #f10181, #008efa) 1;
  font-size: 14px;
}

.instagram-feed {
  text-align: center;
  padding: 40px 20px;
  background-color: #fafafa;
}

.testimonial-title h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.title-line {
  width: 80px;
  height: 3px;
  margin: 0 auto 30px;
  background: linear-gradient(to right, #f5057c, #ff8a00);
  border-radius: 3px;
}

.instagram-embed {
  max-width: 540px;
  margin: 0 auto;
}

.instagram-feed iframe {
  .testimonial-title h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }

  .title-line {
    width: 80px;
    height: 3px;
    margin: 0 auto 30px;
    background: linear-gradient(to right, #f5057c, #ff8a00);
    border-radius: 3px;
  }

  .instagram-embed {
    max-width: 540px;
    margin: 0 auto;
  }
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ff6a00;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 8px;
}

.breadcrumb-container {
  background-color: #fff;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-family: 'Segoe UI', sans-serif;
  color: #555;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  margin-bottom: 20px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  margin-right: 5px;
}

.breadcrumb-list .separator {
  margin: 0 8px;
  color: #999;
  font-weight: 600;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.breadcrumb-current {
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 600;
}

.breadcrumb-icon {
  margin-right: 5px;
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .breadcrumb-container {
    font-size: 0.8rem;
    padding: 10px 15px;
  }

  .breadcrumb-icon {
    font-size: 0.8rem;
  }
}

.premium-product {
  font-family: system-ui, sans-serif;
  padding: 20px;
  background: #fafafa;
  color: #111;
  width: 90%;
  align-self: center;
}

.product-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.image-area {
  width: 100%;
}

.main-img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.main-img:hover {
  transform: scale(1.1);
}

.thumb-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 10px;
}

.thumb-row img {
  width: 60px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
}

.thumb-row img:hover {
  border-color: #000;
}

.info-area {
  width: 100%;
}

.info-area h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price-box {
  margin: 10px 0;
}

.price {
  font-size: 14px;
  font-weight: bold;
}

.old {
  font-size: 16px;
  text-decoration: line-through;
  margin-left: 10px;
  color: #888;
}

.discount {
  font-size: 16px;
  font-weight: 600;
  color: green;
  margin-left: 10px;
}

.color-options {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.color.active {
  border: 2px solid #000;
}

.black {
  background: black;
}

.red {
  background: red;
}

.blue {
  background: blue;
}

.qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.qty button {
  width: 32px;
  height: 32px;
  font-size: 18px;
}

.delivery {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.delivery input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.action {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cart,
.buy {
  flex: 1;
  padding: 14px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}

.cart {
  background: #000;
  color: #fff;
}

.buy {
  background: #ff4d4f;
  color: #fff;
}

.wish {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.tabs {
  margin-top: 60px;
}

.tab-header {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.tab-header button {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
}

.tab-header button:hover {
  background: #f0f0f0;
}

.tab-body p,
.tab-body ul {
  font-size: 14px;
  line-height: 1.6;
}

.related {
  margin-top: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.sticky-cart {
  position: fixed;
  bottom: 10;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.12);
  padding: 12px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 999;
}

.sticky-cart span {
  font-weight: 600;
  font-size: 18px;
}

.sticky-cart button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  background: #000;
  color: #fff;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product-layout {
    flex-direction: column;
    gap: 40px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-img:hover {
    transform: scale(1.05);
  }
}

@media (min-width: 1025px) {
  .product-layout {
    flex-direction: row;
    gap: 50px;
  }

  .grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .main-img:hover {
    transform: scale(1.15);
  }
}

.tab-header {
  display: flex;
  gap: 15px;
  position: relative;
  border-bottom: 2px solid #eee;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.tab-header button {
  background: none;
  border: none;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #555;
  position: relative;
  transition: color 0.3s ease;
}

.tab-header button.active {
  color: #000;
}

.tab-header button:hover {
  color: #000;
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: #000;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.tab-body {
  padding: 20px 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-content {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.4s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content ul {
  padding-left: 20px;
  margin: 0;
}

.tab-content li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .tab-header {
    gap: 8px;
  }

  .tab-header button {
    font-size: 14px;
    padding: 10px 12px;
    flex: 1;
    text-align: center;
  }

  .tab-body {
    padding: 15px 10px;
  }
}

.total-orders-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  /* background-color: #FFFFFF; */
  padding: 40px 20px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(135deg, #f10181, #008efa) 1;
}

.total-orders-box {
  text-align: center;
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.total-orders-box h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}

.total-orders-box .orders-count {
  font-size: 40px;
  font-weight: 700;
  color: #f5057c;
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  padding: 16px;
  z-index: 1000;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid transparent;
  border-image: linear-gradient(135deg, #f10181, #008efa) 1;
  padding: 8px 0;
  z-index: 1000;
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #555;
  text-decoration: none;
  font-size: 12px;
  position: relative;
}

.bottom-nav a.active {
  color: #f5057c;
}

.cart-icon-wrapper {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background-color: #f5057c;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 50%;
}

.info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 30px;
}

.info-card {
  background: linear-gradient(135deg, #e05da3, #4a97d2);
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* subtle overlay shine effect */
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: 0.5s;
}

.info-card:hover::before {
  left: 100%;
}

.info-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}

.info-card p {
  font-size: 14px;
  margin: 5px 0;
  color: #f9f9f9;
}

.info-card:nth-child(2) {
  background: linear-gradient(135deg, #4a97d2, #e05da3);
}

.info-card:nth-child(3) {
  background: linear-gradient(135deg, #e05da3 60%, #4a97d2);
}

.info-card:nth-child(4) {
  background: linear-gradient(135deg, #4a97d2 60%, #e05da3);
}

.footer-bottom a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
  color: #FFFFFF;
}

.total-orders-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  
}

.total-orders-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  text-align: center;
  padding: 5px 5px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s ease;
}

.total-orders-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.glow-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #f10181, #008efa);
}

.total-orders-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.orders-count-wrapper {
  margin: 15px 0;
}

.orders-count {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #f10181, #008efa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-text {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}