/* Custom CSS for Yuvathi Health Screening */

/* Font Import */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.navbar {
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  padding: 0 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.logo {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-item {
  margin: 0 0.5rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.auth-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn {
  /*padding: 0.5rem 1.5rem;*/
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-login {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-login:hover {
  background: white;
  color: #ff6b9d;
  transform: translateY(-2px);
}

.btn-signup {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-signup:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.language-btn {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: 0.5rem;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.user-account {
  display: none;
  align-items: center;
  gap: 1rem;
}

.user-account.active {
  display: flex;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon {
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
}

.nav-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.user-profile {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid white;
  object-fit: cover;
}

.user-profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  min-width: 200px;
  display: none;
  margin-top: 10px;
}

.user-dropdown.active {
  display: block;
}

.dropdown-item {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  border-bottom: 1px solid #eee;
}

.dropdown-item:hover {
  color: #ff6b9d;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.demo-section {
  text-align: center;
  padding: 2rem;
  background: white;
  margin: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.demo-btn {
  background: #ff6b9d;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  margin: 0.5rem;
  transition: all 0.3s ease;
}

.demo-btn:hover {
  background: #ff8fab;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;

  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 0.5rem 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .auth-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .user-account {
    position: relative;
  }

  .nav-icons {
    gap: 0.5rem;
  }

  .user-profile {
    width: 30px;
    height: 30px;
  }

  .user-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
  }
}

/* footer */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  padding: 2rem;
  text-align: center;
}

.footer {
  background: #4a0033;
  color: white;
  padding: 1rem 0 1rem;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
}

.footer-links a:hover {
  color: #ff6b9d;
  transform: translateX(5px);
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-info i {
  color: #ff6b9d;
  margin-top: 0.2rem;
  min-width: 16px;
}

.contact-info span,
.contact-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-info a:hover {
  color: #ff6b9d;
}

.location-section {
  position: relative;
}

.map-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
  position: relative;
  height: 150px;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-pin {
  color: #ff6b9d;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.social-media {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.social-icon:hover::before {
  transform: translateX(0);
}

.facebook {
  background: #1877f2;
  color: white;
}

.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
}

.twitter {
  background: #000000;
  color: white;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top {
  position: absolute;
  top: -25px;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  color: #8b1538;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top:hover {
  background: #ff6b9d;
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .scroll-top {
    right: 1rem;
  }

  .social-media {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .map-container {
    height: 120px;
  }
}

/* Main Container */
.health-container {
  background: linear-gradient(135deg, #fef7f0 0%, #fff0f5 50%, #f8f9fa 100%);
  min-height: 100vh;
  position: relative;
}

/* Content Section */
.content-section {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  max-width: 500px;
  animation: slideInLeft 1s ease-out;
}

/* Typography */
.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e91e63;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.brand-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
}

/* Medical Icons */
.medical-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.icon-item {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.icon-item:nth-child(2) {
  animation-delay: -1s;
}

.icon-item:nth-child(3) {
  animation-delay: -2s;
}

/* Stethoscope Icon */
.stethoscope-icon i {
  font-size: 3rem;
  color: #9c27b0;
  transform: rotate(-15deg);
}

/* Ribbon Icon */
.ribbon-wrapper {
  width: 60px;
  height: 80px;
  position: relative;
}

.ribbon-fold {
  width: 60px;
  height: 20px;
  background: linear-gradient(135deg, #e91e63, #ad1457);
  border-radius: 10px 10px 0 0;
}

.ribbon-body {
  width: 50px;
  height: 40px;
  background: linear-gradient(135deg, #e91e63, #c2185b);
  margin: 0 5px;
  border-radius: 25px;
}

.ribbon-tail {
  width: 50px;
  height: 20px;
  background: linear-gradient(135deg, #c2185b, #ad1457);
  margin: 0 5px;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%);
}

/* Target Icon */
.target-circles {
  width: 60px;
  height: 60px;
  position: relative;
}

.circle {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.outer {
  width: 60px;
  height: 60px;
  border: 3px solid #e91e63;
}

.middle {
  width: 40px;
  height: 40px;
  border: 3px solid #f48fb1;
}

.inner {
  width: 20px;
  height: 20px;
  background: #e91e63;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(135deg, #e91e63, #ad1457);
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
  background: linear-gradient(135deg, #ad1457, #880e4f);
}

/* Illustration Section */
.illustration-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  animation: slideInRight 1s ease-out;
}

/* Background Circle */
.bg-circle {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #fce4ec, #f8bbd9);
  border-radius: 50%;
  position: relative;
  margin: 50px auto;
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.1);
}

/* Decorative Elements */
.deco-element {
  position: absolute;
  font-size: 1.5rem;
  color: #e91e63;
  animation: sparkle 2s ease-in-out infinite;
}

.deco-1 {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.deco-2 {
  top: 20%;
  left: 10%;
  animation-delay: 0.5s;
}

.deco-3 {
  bottom: 20%;
  right: 10%;
  animation-delay: 1s;
}

.deco-4 {
  bottom: 15%;
  left: 20%;
  animation-delay: 1.5s;
}

/* Floral Design */
.floral-design {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

/* Main Flower */
.main-flower {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.flower-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #ff6b9d;
  border-radius: 50%;
  z-index: 10;
}

.petal {
  position: absolute;
  width: 25px;
  height: 40px;
  background: linear-gradient(45deg, #e91e63, #f48fb1);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  top: 50%;
  left: 50%;
  transform-origin: center bottom;
}

.petal-1 {
  transform: translate(-50%, -100%) rotate(0deg);
}
.petal-2 {
  transform: translate(-50%, -100%) rotate(60deg);
}
.petal-3 {
  transform: translate(-50%, -100%) rotate(120deg);
}
.petal-4 {
  transform: translate(-50%, -100%) rotate(180deg);
}
.petal-5 {
  transform: translate(-50%, -100%) rotate(240deg);
}
.petal-6 {
  transform: translate(-50%, -100%) rotate(300deg);
}

/* Side Flowers */
.side-flower {
  position: absolute;
  width: 40px;
  height: 40px;
}

.left-flower {
  top: 30%;
  left: 20%;
}

.right-flower {
  top: 30%;
  right: 20%;
}

.small-flower-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #ad1457;
  border-radius: 50%;
  z-index: 5;
}

.small-petal {
  position: absolute;
  width: 12px;
  height: 20px;
  background: linear-gradient(45deg, #c2185b, #f48fb1);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  top: 50%;
  left: 50%;
  transform-origin: center bottom;
}

.sp-1 {
  transform: translate(-50%, -100%) rotate(0deg);
}
.sp-2 {
  transform: translate(-50%, -100%) rotate(90deg);
}
.sp-3 {
  transform: translate(-50%, -100%) rotate(180deg);
}
.sp-4 {
  transform: translate(-50%, -100%) rotate(270deg);
}

/* Leaves */
.leaf {
  position: absolute;
  width: 30px;
  height: 15px;
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  border-radius: 0 100% 0 100%;
}

.left-leaf {
  bottom: 30%;
  left: 25%;
  transform: rotate(-30deg);
}

.right-leaf {
  bottom: 30%;
  right: 25%;
  transform: rotate(30deg);
}

.bottom-leaf {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

/* Floating Dots */
.floating-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #e91e63;
  border-radius: 50%;
  animation: floatDot 4s ease-in-out infinite;
}

.dot-1 {
  top: 15%;
  left: 25%;
  animation-delay: 0s;
}

.dot-2 {
  top: 25%;
  right: 20%;
  animation-delay: 1s;
}

.dot-3 {
  bottom: 25%;
  left: 15%;
  animation-delay: 2s;
}

.dot-4 {
  bottom: 35%;
  right: 30%;
  animation-delay: 3s;
}

.dot-5 {
  top: 40%;
  left: 10%;
  animation-delay: 0.5s;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

@keyframes floatDot {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-15px);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }

  .medical-icons {
    gap: 1rem;
  }

  .bg-circle {
    width: 300px;
    height: 300px;
  }

  .content-section,
  .illustration-section {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .medical-icons {
    flex-direction: column;
    gap: 1rem;
  }

  .bg-circle {
    width: 250px;
    height: 250px;
  }
}

.section-titlee {
  font-size: 28px;
  font-weight: 600;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 5px;
}

.about-box {
  background: #fff;
  border: 2px solid #f542a7;
  border-radius: 10px;
  color: #333;
}

.highlight {
  color: #00a0df;
  font-weight: bold;
}

.text-pink {
  color: #e91e63;
}

.bg-light-pink {
  background-color: #ffeef4;
}

.btn-pink {
  background-color: #f542a7;
  color: white;
  border: none;
}

.btn-pink:hover {
  background-color: #d83294;
}

.text-pink {
  color: #e91e63;
}

.feature-card {
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-img {
  width: 48px;
  margin: 20px auto 0;
}

/* // product page */
body {
  background-color: #ffeef3;
  font-family: "Segoe UI", sans-serif;
}
.btn-pink {
  background-color: #ff4d88;
  color: #fff;
}
.btn-pink:hover {
  background-color: #e43c72;
}
.img-thumbnail {
  border: 2px solid #ddd;
}
.rating-stars {
  color: #ffc107;
  font-size: 1.2rem;
}
.delivery-box {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  background-color: #fff;
}
.icon-image {
  width: 80px;
}

.text {
  background-color: #fff;
  padding-left: 22%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.bg-light-pink {
  background-color: #ffeef3;
}

.btn-pink {
  background-color: #ff4081;
  color: white;
  border: none;
}

.btn-pink:hover {
  background-color: #e91e63;
}

/* FAQs */

/* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #ffffff;
            color: #333333;
            line-height: 1.5;
        } */

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  margin-bottom: 40px;
}

.header h1 {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-question {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.faq-question:hover {
  background-color: #f8f9fa;
  border-color: #d0d7de;
}

.faq-question.active {
  background-color: #f6f8fa;
  border-color: #d0d7de;
}

.question-text {
  font-size: 15px;
  font-weight: 400;
  color: #24292f;
  flex: 1;
  margin-right: 15px;
  line-height: 1.4;
}

.toggle-button {
  width: 24px;
  height: 24px;
  border: 1.5px solid #656d76;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.toggle-button::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #656d76;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.faq-question.active .toggle-button {
  border-color: #0969da;
}

.faq-question.active .toggle-button::after {
  background: #0969da;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f6f8fa;
  border: 1px solid #d0d7de;
  border-top: none;
  border-radius: 0 0 8px 8px;
  margin-top: -1px;
}

.faq-answer.active {
  max-height: 300px;
}

.answer-content {
  padding: 20px;
  font-size: 14px;
  color: #656d76;
  line-height: 1.6;
}

.contact-section {
  text-align: center;
  margin: 60px 0 40px 0;
}

.contact-label {
  font-size: 16px;
  color: #656d76;
  margin-bottom: 8px;
}

.phone-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-icon {
  font-size: 18px;
}

.phone-number {
  font-size: 18px;
  font-weight: 600;
  color: #24292f;
  text-decoration: none;
}

.promo-section {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.promo-illustration {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iNDAiIGN5PSI0MCIgcj0iNDAiIGZpbGw9IiNmMzY4YTciLz4KPHN2ZyB4PSIyMCIgeT0iMjAiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTEyIDJMMTMuMDkgOC4yNkwyMCA5TDEzLjA5IDE1Ljc0TDEyIDIyTDEwLjkxIDE1Ljc0TDQgOUwxMC45MSA4LjI2TDEyIDJaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4KPC9zdmc+")
    center/contain no-repeat;
}

.promo-content {
  flex: 1;
}

.promo-title {
  font-size: 20px;
  font-weight: 600;
  color: #ec4899;
  margin-bottom: 6px;
}

.promo-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.brand-highlight {
  font-weight: 700;
  color: #ec4899;
}

@media (max-width: 768px) {
  .container {
    padding: 30px 16px;
  }

  .header h1 {
    font-size: 28px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .question-text {
    font-size: 14px;
  }

  .answer-content {
    padding: 18px;
    font-size: 13px;
  }

  .promo-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .promo-illustration {
    width: 60px;
    height: 60px;
  }

  .promo-title {
    font-size: 18px;
  }
}

/* Gallery */
/* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #FFC0CB 0%,hsl(327, 81.30%, 74.90%) 100%);
            min-height: 100vh;
        } */

.achievements-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.achievements-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(102, 126, 234, 0.05),
    transparent
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.title {
  font-size: 2.5em;
  font-weight: 700;
  background: #ff5c9e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.recognition-badge {
  margin-left: 30%;
  background: linear-gradient(
    135deg,
    rgb(238, 175, 185) 0%,
    hsl(327, 81.3%, 74.9%) 100%
  );
  color: black;
  width: 30%;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.award-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700, #ffb347);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.achievements-list {
  list-style: none;
  position: relative;
  z-index: 2;
}

.achievement-item {
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05),
    rgba(118, 75, 162, 0.05)
  );
  border-radius: 15px;
  background: #ffeef1;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievement-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.achievement-item::before {
  content: counter(achievement-counter);
  counter-increment: achievement-counter;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(240, 206, 212);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8em;
}

.achievements-list {
  counter-reset: achievement-counter;
}

.achievement-title {
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  font-size: 1.1em;
}

.achievement-description {
  color: #666;
  line-height: 1.6;
}

.gallery-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.gallery-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  background: #ff5c9e;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(45deg, rgba(250, 107, 207, 0.8), rgba(118, 75, 162, 0.8)); */
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 2em;
  z-index: 2;
  transition: all 0.3s ease;
}

.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .title {
    font-size: 2em;
  }

  .gallery-title {
    font-size: 2em;
  }

  .achievement-item {
    margin-left: 15px;
  }

  .container {
    padding: 20px 10px;
  }

  .achievements-section,
  .gallery-section {
    padding: 20px;
  }
}

/* Floating animation for decorative elements */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.breadcrumb {
  font-size: 14px;
  color: #333;
  margin: 10px 0 20px 10px;
}

.title {
  font-size: 32px;
  font-weight: bold;
  margin: 20px 10px;
}

.recognition-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  padding-left: 30%;
}

/* .recognition-text .highlight-box {
    background-color: black;
    color: white;
    padding: 10px 20px;
    position: relative;
    font-size: 24px;
    font-weight: 500;
    border-radius: 2px solid color gold;
}

.recognition-text .highlight-box::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: yellow;
    z-index: -1;
} */

.cup img {
  width: 100px;
  height: auto;
}

.achievements-list {
  margin: 30px 10px;
  font-size: 18px;
}

/* Porfile */

.profile-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}

.profile-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: none;
  margin-bottom: 40px;
}

.profile-left {
  flex-shrink: 0;
}

.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  /* background: linear-gradient(135deg, #ffd700, #ffb347); */
  padding: 8px;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.edit-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.profile-right {
  flex: 1;
  max-width: 500px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #ff69b4;
}

.input-group {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.country-select {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  min-width: 80px;
}

.btn-change {
  background: #ff69b4;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.btn-change:hover {
  background: #ff1493;
}

.notifications-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 16px;
  color: #333;
}

.notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.notification-label {
  font-size: 14px;
  color: #666;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 20px;
  background: #ddd;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #ff69b4;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/*.toggle-switch.active .toggle-slider {*/
/*  transform: translateX(20px);*/
/*}*/

.delete-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.delete-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.delete-option:hover {
  color: #dc3545;
}

.decorative-flower {
  position: absolute;
  top: 40px;
  right: 100px;
  width: 280px;
  height: 70%;
  /* background: radial-gradient(circle, rgba(255, 192, 203, 0.3) 0%, rgba(255, 182, 193, 0.2) 50%, rgba(255, 192, 203, 0.1) 100%); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: rgba(255, 105, 180, 0.4);
  z-index: 1;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.delete-modal {
  background: white;
  border-radius: 16px;
  padding: 0;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  padding: 20px;
  text-align: center;
  color: white;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.modal-body {
  padding: 30px 20px;
  text-align: center;
}

.warning-icon {
  font-size: 48px;
  color: #ff9800;
  margin-bottom: 20px;
}

.modal-question {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.modal-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 30px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-cancel {
  background: #ff69b4;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-cancel:hover {
  background: #ff1493;
}

.btn-delete {
  background: transparent;
  color: #666;
  border: 2px solid #ddd;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-delete:hover {
  border-color: #dc3545;
  color: #dc3545;
  background: #fff5f5;
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .profile-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .profile-right {
    max-width: 100%;
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .input-group {
    flex-wrap: wrap;
  }

  .decorative-flower {
    display: none;
  }

  .delete-modal {
    margin: 20px;
  }
}

@media (max-width: 900px) {
  .decorative-flower {
    display: none;
  }
}

/* transaction */

.container10 {
  max-width: 1200px;
  margin: 0 100px;
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
}

.header {
  padding: 20px 30px;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breadcrumb {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 5px;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.add-btn {
  background: #ff6b9d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-btn:hover {
  background: #e5577d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.add-btn::before {
  content: "+";
  font-size: 1.2rem;
  font-weight: bold;
}

.content {
  padding: 30px;
}

.transaction-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.transaction-card:hover {
  transform: translateY(-2px);
}

.transaction-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.transaction-info {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: #64748b;
}

.transaction-id {
  font-weight: 500;
}

.order-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.order-details {
  display: flex;
  gap: 30px;
  font-size: 0.9rem;
  color: #64748b;
}

.total-amount {
  font-weight: 600;
  font-size: 1rem;
  color: #1e293b;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
}

.status-invoice {
  color: #ef4444;
}

.status-pending {
  color: #f59e0b;
}

.status-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-invoice .status-icon {
  background: #ef4444;
}

.status-pending .status-icon {
  background: #f59e0b;
}

.product-name {
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 8px;
}

.kit-details {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 15px;
}

.kit-id {
  color: #ef4444;
  font-weight: 500;
}

.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-more {
  color: #3b82f6;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.view-more:hover {
  color: #2563eb;
  text-decoration: underline;
}

.see-result-btn {
  background: white;
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.see-result-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .container {
    margin: 0 10px;
  }

  .header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .content {
    padding: 20px;
  }

  .transaction-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .transaction-info {
    flex-wrap: wrap;
    gap: 10px;
  }

  .order-details {
    flex-wrap: wrap;
    gap: 15px;
  }

  .actions {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* Rating.php */

.container201 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.reviews-section {
  flex: 3;
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reviews-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.review-card {
  background: #2a2a2a;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  color: white;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.user-info {
  flex: 1;
}

.user-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.star {
  color: #ffd700;
  font-size: 14px;
}

.review-date {
  font-size: 12px;
  color: #aaa;
}

.review-text {
  line-height: 1.6;
  color: #ddd;
  font-size: 14px;
}

.sidebar {
  flex: 1;
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  height: 65vh;
  width: 270px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.product-image {
  width: 100%;
  max-width: 200px;
  height: 150px;
  background: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.product-title {
  font-weight: 600;
  margin-bottom: 12px;
}

.price-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.price-label {
  font-size: 12px;
  color: #666;
}

.buy-button {
  background: #ff69b4;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.buy-button:hover {
  background: #e55a9f;
}

/* .delivery-info {
            font-size: 12px;
            color: #666;
            margin-bottom: 16px;
        }

        .app-promo {
            background: linear-gradient(45deg, #4ecdc4, #44a08d);
            border-radius: 8px;
            padding: 20px;
            color: white;
            text-align: center;
        }

        .app-promo img {
            width: 60px;
            height: 60px;
            margin-bottom: 12px;
        } */

/* {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background: #f4f4f4;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    } */

.app-promo {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  text-align: center;
}

.app-promo img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.delivery-info {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

.delivery-info span {
  font-weight: bold;
  color: green;
}

.load-more {
  text-align: center;
  margin-top: 20px;
}

.load-more-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.load-more-btn:hover {
  background: #0056b3;
}

/* rating */
.sidebar {
  padding: 15px;
  /* background: #f9f9f9; */
  max-width: 300px;
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
}

.product-image img {
  width: 100%;
  height: auto;
}

.product-title {
  font-weight: bold;
  margin-top: 10px;
}

.price-section {
  margin-top: 10px;
}

.price {
  color: #e91e63;
  font-size: 18px;
  font-weight: bold;
}

.buy-button {
  margin-top: 10px;
  padding: 8px 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.app-promo {
  text-align: center;
}

.delivery-info {
  margin-top: 10px;
  font-size: 14px;
}
/* dlivery address */

.delivery-address {
  max-width: 1200px;
  margin: 30px 100px;
  font-family: sans-serif;
}

.delivery-address h2 {
  margin-bottom: 15px;
}

form {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 35px;
}

.form-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select {
  flex: 1 1 150px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.wide {
  flex: 2 1 300px;
}

.phone-container select {
  padding: 15px;
}

.country-row {
  align-items: center;
}

.country-row .highlight {
  color: #ff5c9e;
  font-weight: bold;
}

button {
  background: #ff5c9e;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

.center {
  justify-content: center;
}

/* Terms & conditions */
:root {
  --primary-color: #ff69b4;
  --secondary-color: #4a1a3d;
  --accent-color: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --border-color: #dee2e6;
}

/* Breadcrumb Styles */
.breadcrumb-section {
  background-color: white;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-light);
}

/* Main Content Styles */
.main-content {
  padding: 3rem 0;
  background-color: white;
  min-height: 70vh;
}

.terms-header {
  text-align: center;
  margin-bottom: 3rem;
}

.terms-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.terms-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Terms Content Styles */
.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 15px;
  font-size: 0.9rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.section-content {
  color: var(--text-light);
  line-height: 1.7;
  margin-left: 50px;
}

.section-content p {
  margin-bottom: 1rem;
}

.section-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.section-content li {
  margin-bottom: 0.5rem;
}

.highlight-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffeef3 100%);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box .bi {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-title {
    font-size: 2rem;
  }

  .section-content {
    margin-left: 0;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .section-number {
    margin-bottom: 10px;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-item {
    margin: 0;
  }
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  background: #ff1493;
  transform: translateY(-2px);
}

.scroll-top.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* send kit.php */

.info-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 24px;
  height: 100%;
  position: relative;
  width: 100%;
}

.icon-bullet {
  margin-right: 8px;
}
h5 {
  text-align: center;
  width: 100%;
}

.highlight-tag {
  background-color: #ff5ca2;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  margin-left: 6px;
}

.security-section {
  background-color: white;
  padding: 32px 20px;
  border-top: 2px solid #eee;
  text-align: center;
}

.security-section h5 {
  color: #e91e63;
  font-weight: 600;
}

.emoji-icon {
  font-size: 1.1rem;
  margin-right: 8px;
}

.left-image,
.right-image {
  max-height: 150px;
  max-width: 590px;
  margin-left: 20px;
}

.img-container {
  display: flex;
  align-items: center; /* Vertically center */
  gap: 30px;
}

@media (max-width: 767px) {
  .img-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .left-image,
  .right-image {
    margin-top: 1rem;
    margin-left: 0;
  }
}
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 2rem 2rem;
}

.breadcrumb {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.page-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
}

.form-container {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #333;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control {
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #ff6b9d;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ff6b9d;
}

.pickup-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.pickup-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
}

.address-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.submit-btn {
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 2rem auto 0;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

/* login */
/* OTP Styles */
.otp-section {
  display: none;
}

.otp-info {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.otp-input-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 8px;
}

.otp-input {
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.otp-input:focus {
  border-color: #ff5ca8;
}

.otp-input.filled {
  border-color: #ff5ca8;
  background-color: #fff5f9;
}

.resend-section {
  text-align: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.resend-link {
  color: #ff5ca8;
  text-decoration: none;
  cursor: pointer;
}

.resend-link:hover {
  text-decoration: underline;
}

.back-btn {
  background-color: transparent;
  border: 1px solid #ccc;
  color: #666;
  padding: 10px 15px;
  width: 100%;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #f5f5f5;
}

.timer {
  color: #ff5ca8;
  font-weight: bold;
}

/* login */

/* .input-group {
            display: flex;
            align-items: center;
            border: 1px solid #ccc;
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .input-group select, */
/* .input-group input {
            border: none;
            padding: 10px;
            font-size: 14px;
            flex: 1;
        }

        .input-group select {
            width: 70px;
            background: #eee;
        } */

.input-group {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 350px;
  margin-bottom: 15px;
}

.input-group select {
  padding: 10px;
  font-size: 14px;
  background-color: white;
  outline: none;
  cursor: pointer;
  width: 70px;
  appearance: none;
  /* background-image: url("data:image/svg+xml,%3Csvg width='10' height='5' viewBox='0 0 10 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L5 5L10 0H0Z' fill='black'/%3E%3C/svg%3E"); */
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-right: 10px; /* Adds space between select and input */
}

.input-group input {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

/* .btn {
            background-color: #ff5ca8;
            border: none;
            color: white;
            padding: 10px 15px;
            width: 100%;
            font-size: 15px;
            border-radius: 6px;
            cursor: pointer;
        } */

.btn:hover {
  background-color: #ff3d95;
}

.google-btn {
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.google-btn img {
  width: 20px;
  margin-right: 10px;
}

.separator {
  text-align: center;
  margin: 15px 0;
  color: #888;
}

.signup-link {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.signup-link a {
  color: #ff5ca8;
  text-decoration: none;
}
/* OTP Styles */
.otp-section {
  display: none;
}

.otp-info {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.otp-input-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 8px;
}

.otp-input {
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.otp-input:focus {
  border-color: #ff5ca8;
}

.otp-input.filled {
  border-color: #ff5ca8;
  background-color: #fff5f9;
}

.resend-section {
  text-align: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.resend-link {
  color: #ff5ca8;
  text-decoration: none;
  cursor: pointer;
}

.resend-link:hover {
  text-decoration: underline;
}

.back-btn {
  background-color: transparent;
  border: 1px solid #ccc;
  color: #666;
  padding: 10px 15px;
  width: 100%;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #f5f5f5;
}

.timer {
  color: #ff5ca8;
  font-weight: bold;
}

/* cart */

.order-box {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.order-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.order-meta span {
  margin-right: 20px;
  font-size: 14px;
  color: #555;
}

.invoice-link {
  color: #ff1493;
  font-weight: 500;
  text-decoration: none;
}

.kit-id {
  color: #ff1493;
  font-weight: 500;
}

.result-btn,
.send-btn {
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 14px;
}

.result-btn {
  background-color: #ff1493;
  color: white;
  border: none;
}

.send-btn {
  background-color: white;
  border: 1px solid #aaa;
}

/* .product-card {
      border: 1px solid #ddd;
      border-radius: 12px;
      overflow: hidden;
    }

    .product-card img {
      width: 100%;
      height: 60%;
    } */

.price {
  font-weight: bold;
  color: #000;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 8px;
  font-size: 14px;
}

.reorder-btn {
  background-color: #ff1493;
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.pick-date-btn {
  background-color: #ff1493;
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.highlight-link {
  color: #3366cc;
  font-size: 14px;
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  height: 65vh;
  width: 270px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.product-image {
  width: 100%;
  max-width: 200px;
  height: 150px;
  /* background: #f0f0f0; */
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.product-title {
  font-weight: 600;
  margin-bottom: 12px;
}

.price-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.price-label {
  font-size: 12px;
  color: #666;
}

.buy-button {
  background: #ff69b4;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.buy-button:hover {
  background: #e55a9f;
}

.product-info-section {
  font-family: sans-serif;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.tabs {
  display: flex;
  gap: 20px;
  font-weight: bold;
}

.active-tab {
  color: #ff5c9e;
  font-size: 1.5rem;
}

.inactive-tab {
  color: #ccc;
  font-size: 1.5rem;
}

.description-text {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
}

.subtitle {
  font-weight: bold;
  margin-top: 10px;
}

.subtitle-small {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 20px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.step {
  background: #fff;
  border-radius: 6px;
  padding: 10px;
}

.step img {
  max-width: 100px;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9em;
  color: #333;
}

/* products */

.container-product {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff0f5;
  width: 100%;
}

.info-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 24px;
  height: 100%;
  position: relative;
  width: 100%;
}

.icon-bullet {
  margin-right: 8px;
}
h5 {
  text-align: center;
  width: 100%;
}

.highlight-tag {
  background-color: #ff5ca2;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  margin-left: 6px;
}

.security-section {
  padding: 32px 20px;
  border-top: 2px solid #eee;
  text-align: center;
}

.security-section h5 {
  color: #e91e63;
  font-weight: 600;
}

.emoji-icon {
  font-size: 1.1rem;
  margin-right: 8px;
}

.left-image,
.right-image {
  max-height: 150px;
  max-width: 590px;
  margin-left: 20px;
}

.img-container {
  display: flex;
  align-items: center; /* Vertically center */
  gap: 30px;
}

@media (max-width: 767px) {
  .img-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .left-image,
  .right-image {
    margin-top: 1rem;
    margin-left: 0;
  }
}

.product-info-section {
  font-family: sans-serif;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.tabs {
  display: flex;
  gap: 20px;
  font-weight: bold;
}

.active-tab {
  color: #ff5c9e;
  font-size: 1.5rem;
  text-decoration: underline;
}

.inactive-tab {
  color: #ccc;
  font-size: 1.5rem;
}

.description-text {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
}

.subtitle {
  font-weight: bold;
  margin-top: 10px;
}

.subtitle-small {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 20px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.step {
  background: #fff;
  border-radius: 6px;
  padding: 10px;
}

.step img {
  max-width: 100px;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9em;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.header {
  padding: 20px;
  border-bottom: 1px solid #e0e6ed;
}

.header h1 {
  color: #2d3748;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 10px;
  padding: 30px;
}

/* Column 1: Main Image */
.main-image {
  position: relative;
}

.main-image img {
  width: 80%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Column 2: Thumbnails */
.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.thumbnail {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.thumbnail:hover {
  transform: scale(1.05);
}

.thumbnail.active {
  border-color: rgb(202, 157, 171);
  box-shadow: 0 4px 12px rgb(252, 115, 179);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgb(248, 168, 237);
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

/* Column 3: Product Description */
.product-info {
  padding-left: 20px;
}

.product-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 15px;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: rgb(247, 25, 180);
}

.original-price {
  font-size: 16px;
  color: #718096;
  text-decoration: line-through;
}

.discount-badge {
  background: #10b981;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.stars {
  color: #f59e0b;
  font-size: 16px;
}

.rating-text {
  color: #718096;
  font-size: 14px;
}

.info-links {
  margin-bottom: 20px;
}

.info-link {
  display: block;
  color: #4f46e5;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: #3730a3;
  text-decoration: underline;
}

.features {
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #4a5568;
}

.feature-icon {
  width: 20px;
  height: 20px;
  background: #e0e7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgb(247, 114, 169);
}

.cta-section {
  margin-bottom: 20px;
}

.buy-button {
  width: 100%;
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3);
}

.share-link {
  color: #ff5c9e;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.delivery-section {
  background: #f7fafc;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.delivery-title {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.pincode-section {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pincode-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
}

.check-button {
  background: #ff5c9e;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.check-button:hover {
  background: #3730a3;
}

.trust-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .thumbnails {
    flex-direction: row;
    justify-content: center;
    order: -1;
  }

  .product-info {
    padding-left: 0;
  }
}

/* notification */

.notification-container {
  padding-left: 65px;
  width: 900px;
  margin: 0;
  background: white;
  min-height: 100vh;
}

.notification-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-title {
  font-size: 24px;
  font-weight: 600;
  color: #212529;
}

.pick-date-btn {
  background: #ff69b4;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pick-date-btn:hover {
  background: #e555a0;
}

.notification-list {
  padding: 0;
}

.notification-item {
  padding: 20px 24px;
  border-bottom: 1px solid black;
  transition: background-color 0.2s;
  position: relative;
  min-height: 80px;
  /* margin-bottom: 1 */
}

.notification-item:hover {
  background-color: #f8f9fa;
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-type {
  font-weight: 600;
  font-size: 16px;
  color: #212529;
  margin-bottom: 8px;
  padding-right: 120px;
}

.notification-message {
  color: #495057;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-right: 120px;
}

.notification-link {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}

.notification-link:hover {
  text-decoration: underline;
}

.notification-timestamp {
  position: absolute;
  display: flex;
  gap: 10px;
  bottom: 12px;
  right: 24px;
  font-size: 12px;
  color: #6c757d;
  text-align: right;
  line-height: 1.3;
}

.notification-timestamp span {
  display: block;
}

@media (max-width: 768px) {
  .notification-container {
    margin: 0 10px;
  }

  .notification-header {
    padding: 16px 20px;
  }

  .notification-item {
    padding: 16px 20px;
  }

  .notification-type {
    padding-right: 100px;
  }

  .notification-message {
    padding-right: 100px;
  }

  .notification-timestamp {
    display: flex;
    right: 20px;
    font-size: 11px;
  }
}
.get-start-section {
  background: #f7fafc;
  height: 250px;
}
.groupby-img img {
  margin-top: 30px;
  width: 70%;
  margin-left: 100px;
}
.step-by-step {
  background-color: white;
  height: 100vh;
}
.step-txt {
  margin-left: 50px;
}
.cancel-btn {
  background-color: rgb(223, 223, 223);
}

.order-txt {
  border: 1px solid gray;
}
