* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #4a6cf7;
  --primary-dark: #3a5ce5;
  --secondary: #6a7c92;
  --dark: #1d2144;
  --light: #f5f8ff;
  --accent: #ff6b6b;
  --success: #2ecc71;
  --warning: #f39c12;
  --gray: #e2e8f0;
  --gray-dark: #a0aec0;
  --white: #ffffff;
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  background-color: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 5px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  font-size: 28px;
  color: var(--primary);
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.mobile-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
}

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

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

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

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

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #f5f8ff 0%, #e6ecff 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hero-text p {
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-img {
  width: 300px;
  height: 500px;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  border-radius: 40px;
  box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  animation: float 3s ease-in-out infinite, fadeUp 1s ease 0.9s forwards;
}

.phone-screen {
  width: 270px;
  height: 470px;
  background-color: var(--dark);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.phone-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(74, 108, 247, 0.3),
    rgba(255, 107, 107, 0.3)
  );
  z-index: 1;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-icons i {
  position: absolute;
  font-size: 24px;
  color: var(--primary);
  opacity: 0.7;
}

.floating-icons i:nth-child(1) {
  top: 10%;
  left: 20%;
  animation: floatIcon 5s ease-in-out infinite;
}

.floating-icons i:nth-child(2) {
  top: 30%;
  right: 15%;
  animation: floatIcon 6s ease-in-out infinite 1s;
}

.floating-icons i:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation: floatIcon 7s ease-in-out infinite 2s;
}

.floating-icons i:nth-child(4) {
  bottom: 40%;
  right: 20%;
  animation: floatIcon 8s ease-in-out infinite 3s;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.section-title p {
  color: var(--secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--primary), #6c8aff);
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  color: var(--white);
}

.service-card:hover .service-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.service-card:hover h3,
.service-card:hover p {
  color: var(--white);
}

.service-card:hover .service-link {
  color: var(--white);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--primary);
  transition: var(--transition);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-card p {
  color: var(--secondary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
}

/* Products Section */
.products {
  padding: 100px 0;
  background-color: var(--light);
}

.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.product-img {
  height: 200px;
  background-color: #f5f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img img {
  max-width: 80%;
  max-height: 80%;
  transition: var(--transition);
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-info p {
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 15px;
  flex-grow: 1;
  line-height: 1.4;
}

.product-price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  position: relative;
  min-height: 60px;
}

.price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--primary);
  font-size: 20px;
  line-height: 1;
}

.old-price {
  text-decoration: line-through;
  color: var(--gray-dark);
  font-size: 14px;
  line-height: 1;
}

.buttons-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.add-to-cart {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.add-to-cart:hover {
  background-color: var(--primary);
  color: var(--white);
}

.whatsapp-quick-order {
  background: #25d366;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
  white-space: nowrap;
}

.whatsapp-quick-order:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.load-more-container {
  text-align: center;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
}

.image-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--secondary);
}

.stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat p {
  font-size: 14px;
  color: var(--secondary);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--light);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content p {
  font-style: italic;
  color: var(--secondary);
}

.testimonial-content::before {
  content: '"';
  font-size: 60px;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
}

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

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--secondary);
  font-size: 14px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.info-text h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.info-text p {
  color: var(--secondary);
}

.map-container {
  margin-top: 40px;
}

.map-container h3 {
  margin-bottom: 15px;
  color: var(--dark);
  font-size: 20px;
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.map-actions {
  text-align: center;
}

.map-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 10px 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--gray);
  border-radius: 10px;
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.form-actions .btn {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-success {
  background-color: #25d366;
  color: white;
}

.btn-success:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Enhanced Contact Form */
.contact-form .form-group {
  position: relative;
}

.contact-form .form-control {
  padding-left: 45px;
}

.contact-form .form-group::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  z-index: 2;
}

.contact-form .form-group:nth-child(1)::before {
  content: "\f007";
}
.contact-form .form-group:nth-child(2)::before {
  content: "\f0e0";
}
.contact-form .form-group:nth-child(3)::before {
  content: "\f095";
}
.contact-form .form-group:nth-child(4)::before {
  content: "\f015";
}
.contact-form .form-group:nth-child(5)::before {
  content: "\f27a";
  top: 25px;
  transform: translateY(0);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 22px;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.footer-col p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

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

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--gray-dark);
  text-decoration: none;
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-dark);
  font-size: 14px;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background-color: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--gray);
}

.cart-header h3 {
  margin: 0;
}

.close-cart {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--secondary);
  transition: var(--transition);
}

.close-cart:hover {
  color: var(--accent);
}

.cart-items {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  background-color: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-img img {
  max-width: 80%;
  max-height: 80%;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  align-self: flex-start;
}

.cart-item-remove:hover {
  color: #ff4757;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--gray);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 18px;
}

.checkout-btn {
  width: 100%;
}

.checkout-btn:disabled {
  background-color: var(--gray);
  cursor: not-allowed;
  transform: none !important;
}

.checkout-btn:disabled:hover {
  background-color: var(--gray);
  box-shadow: none;
  transform: none !important;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

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

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

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  animation: pulse 2s infinite;
}

.whatsapp-link:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-link i {
  font-size: 28px;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 20px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--dark) transparent transparent transparent;
}

.whatsapp-link:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background-color: var(--success);
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1200;
  transition: var(--transition);
  max-width: 300px;
  font-weight: 500;
}

.notification.error {
  background-color: var(--accent);
}

/* Empty Cart Message */
.empty-cart {
  text-align: center;
  color: var(--secondary);
  padding: 40px 20px;
  font-style: italic;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Loading States */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Enhanced Footer */
.footer-col .social-links a:hover {
  transform: translateY(-3px);
}

.footer-col .social-links a[href*="whatsapp"]:hover {
  background-color: #25d366;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 50px;
  }

  .contact-content {
    flex-direction: column;
  }

  .about-content {
    flex-direction: column;
  }

  .stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-text h2 {
    font-size: 36px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-link {
    width: 50px;
    height: 50px;
  }

  .whatsapp-link i {
    font-size: 24px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    min-width: 100%;
  }

  .map-wrapper iframe {
    height: 250px;
  }

  .product-price-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .buttons-container {
    width: 100%;
    justify-content: space-between;
  }

  .whatsapp-quick-order {
    padding: 6px 12px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .hero-text h2 {
    font-size: 28px;
  }

  .btn {
    padding: 12px 25px;
  }

  .service-card,
  .product-card {
    padding: 30px 20px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .product-info {
    min-height: 180px;
  }

  .whatsapp-quick-order {
    padding: 5px 10px;
    font-size: 10px;
  }

  .product-price-container {
    min-height: 70px;
  }
}
