/* ===== Base Styles ===== */
:root {
  --primary: #9F7AEA;
  --primary-dark: #805AD5;
  --primary-light: #B794F4;
  --secondary: #F687B3;
  --secondary-dark: #ED64A6;
  --accent: #68D391;
  --accent-dark: #48BB78;
  --light: #F7FAFC;
  --dark: #2D3748;
  --gray: #718096;
  --light-gray: #E2E8F0;
  --white: #FFFFFF;
  --black: #1A202C;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-light { color: var(--light); }
.text-dark { color: var(--dark); }
.text-gray { color: var(--gray); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.section-title {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Navigation ===== */
.navbar {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  z-index: 1000;
}


.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.navbar-brand img {
  margin-right: 0.75rem;
  transition: transform 0.5s ease;
}

.navbar-brand:hover img {
  transform: rotate(15deg);
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: calc(100% - 2rem);
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--white);
  padding-left: 1.75rem;
}

.search-item .form-control {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  border-right: none;
}

.btn-search {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.btn-search:hover {
  background-color: var(--primary-dark);
}

/* ===== Hero Carousel ===== */
.hero-section {
  margin-top: 76px; /* Account for fixed navbar */
}

.carousel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.carousel-item {
  height: 80vh;
  min-height: 500px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  filter: brightness(0.7);
}

.carousel-caption {
  bottom: 30%;
  text-align: left;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-md);
  backdrop-filter: blur(5px);
  animation: fadeInUp 0.8s ease;
}

.carousel-caption h2 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  margin: 0 0.5rem;
  background-color: var(--white);
  opacity: 0.5;
  transition: var(--transition);
}

.carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
}

/* ===== Cards ===== */
.card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.card-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-container img {
  transform: scale(1.05);
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: bold;
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.features-list {
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.features-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

.card-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ===== Age Filter ===== */
.age-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-filter {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
  margin: 0 0.25rem;
}

.btn-filter.active,
.btn-filter:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== About Section ===== */
.about-section {
  background-color: var(--light);
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content {
  padding: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  background-color: var(--white);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 0.75rem;
}

/* ===== Team Section ===== */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-img-container {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.team-img-container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.1) 0%, transparent 100%);
  z-index: 1;
}

.team-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team-card:hover .team-img-container img {
  transform: scale(1.05);
}

.team-body {
  padding: 1.75rem;
}

.team-name {
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.team-card:hover .team-name {
  color: var(--primary);
}

.team-position {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-bio {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--light-gray);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== Testimonials ===== */
.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  color: var(--accent);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  z-index: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  margin-right: 1rem;
  object-fit: cover;
}

/* ===== Contact Section ===== */
.contact-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523438885200-e635ba2c371e');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.contact-info {
  padding: 2rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.form-title {
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(159, 122, 234, 0.25);
}

.social-media {
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 0 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-logo img {
  margin-right: 0.75rem;
}

.footer-about {
  color: var(--light-gray);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.widget-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  padding-bottom: 0.75rem;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light-gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.newsletter-form .form-control {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.btn-subscribe {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.btn-subscribe:hover {
  background-color: var(--primary-dark);
}

.payment-methods img {
  margin-right: 0.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: var(--transition);
}

.payment-methods img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.copyright {
  color: var(--light-gray);
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--light-gray);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 1199.98px) {
  .carousel-caption h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
  }
  
  .carousel-item {
    height: 60vh;
  }
  
  .carousel-caption {
    bottom: 20%;
    padding: 1.5rem;
  }
  
  .carousel-caption h2 {
    font-size: 2rem;
  }
  
  .team-img-container {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .carousel-item {
    height: 50vh;
    min-height: 400px;
  }
  
  .carousel-caption {
    bottom: 10%;
    padding: 1rem;
  }
  
  .carousel-caption h2 {
    font-size: 1.75rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
  
  .about-content {
    padding: 1rem 0;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .copyright {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .carousel-item {
    height: 60vh;
  }
  
  .carousel-caption {
    text-align: center;
  }
  
  .carousel-caption h2 {
    font-size: 1.5rem;
  }
  
  .card-actions {
    flex-direction: column;
  }
  
  .age-filter .btn-group {
    flex-wrap: wrap;
  }
  
  .btn-filter {
    margin: 0.25rem;
  }
}


/* gift */
.card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.card-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-container img {
  transform: scale(1.05);
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: bold;
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.features-list {
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.features-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

.card-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

  /* Messenger Widget */
.messenger-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Messenger Button */
.messenger-button {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.messenger-button:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #FF3B30;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

/* Messenger Box */
.messenger-box {
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.messenger-box.active {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    opacity: 1;
}

/* Header */
.messenger-header {
    background-color: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #128C7E;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.status {
    font-size: 12px;
}

.status.online {
    color: #25D366;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    opacity: 0.8;
    cursor: pointer;
}

.close-chat:hover {
    opacity: 1;
}

/* Body */
.messenger-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #ECE5DD;
    background-image: url('https://web.whatsapp.com/img/bg-chat-tile-light_a4be512e7195b6b733d9110b408f075d.png');
    background-repeat: repeat;
}

/* Messages */
.message {
    max-width: 80%;
    margin-bottom: 10px;
    position: relative;
}

.message-content {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.message-time {
    font-size: 11px;
    color: #666;
    margin-top: 3px;
    text-align: right;
}

.message.received {
    margin-right: auto;
}

.message.received .message-content {
    background-color: white;
    border-bottom-left-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.message.sent {
    margin-left: auto;
}

.message.sent .message-content {
    background-color: #DCF8C6;
    border-bottom-right-radius: 0;
}

/* Footer */
.messenger-footer {
    padding: 10px;
    background-color: #F0F0F0;
    border-top: 1px solid #DDD;
}

.input-group {
    border-radius: 20px;
    overflow: hidden;
    background-color: white;
}

.form-control {
    border: none;
    box-shadow: none;
}

.form-control:focus {
    box-shadow: none;
}

/* Scrollbar */
.messenger-body::-webkit-scrollbar {
    width: 6px;
}

.messenger-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.messenger-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 576px) {
    .messenger-widget {
        right: 15px;
        bottom: 15px;
    }
    
    .messenger-box {
        width: 300px;
        height: 400px;
        right: -15px;
    }
}


