/* ========================================
   SVASTHA ONLINE - CUSTOM STYLES
   ======================================== */

/* ========================================
   1. GLOBAL STYLES & RESETS
   ======================================== */
:root {
  --color-teal-500: #14b8a6;
  --color-teal-600: #0d9488;
  --color-teal-700: #0f766e;
  --color-emerald-500: #10b981;
  --color-emerald-600: #059669;
  --color-purple-500: #a855f7;
  --color-pink-500: #ec4899;
  --color-orange-500: #f97316;
  --color-red-500: #ef4444;
  --color-red-600: #dc2626;
  --color-blue-500: #3b82f6;
  --color-blue-600: #2563eb;
  --color-blue-800: #1e3a8a;
  --color-indigo-500: #6366f1;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-white: #ffffff;
  --color-black: #000000;
}

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

html {
  overflow-x: clip;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: var(--color-gray-900);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 114px;
}

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

a {
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ========================================
   2. HEADER STYLES
   ======================================== */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.box {
  display: flex;
  gap: 14px;
}

/* .navbar {
  padding: 1rem 0;
} */

.logo-img {
  height: 88px;
  width: auto;
}

.nav-link {
  color: var(--color-gray-700);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--color-teal-600);
}

.auth-btn-login {
  color: var(--color-gray-700);
  font-weight: 500;
}

.cart-link {
  color: var(--color-teal-600);
}

.cart-link:hover {
  color: var(--color-emerald-600);
  transform: translateY(-1px);
}

.badge-cart {
  position: absolute;
  top: -12px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-600)
  );
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
  pointer-events: none;
}

.auth-btn-login:hover {
  color: var(--color-teal-600);
}

.auth-btn-register {
  padding: 0.625rem 1.5rem;
  background: linear-gradient(
    to right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 500;
  transition: all 0.2s ease;
}

.auth-btn-register:hover {
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  transform: translateY(-1px);
}

/* ========================================
   3. HERO SECTION STYLES
   ======================================== */
.hero-section {
  /* position: relative; */
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn-hero-primary {
  padding: 1rem 2rem;
  background: linear-gradient(
    to right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.btn-hero-primary:hover {
  color: white;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

.btn-hero-secondary {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--color-gray-800);
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator-border {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: white;
  border-radius: 50%;
  animation: scroll-dot 2s infinite;
}

/* Animations */
@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 0.8s ease-out 0.4s both;
}

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

/* ========================================
   4. SERVICES SECTION STYLES
   ======================================== */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, white, var(--color-gray-50));
}

.section-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-600);
  max-width: 42rem;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-link {
  color: var(--color-teal-600);
  gap: 0.75rem;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
}

.service-card:hover .service-icon {
  transform: translateY(-8px) scale(1.1);
}

.service-card:hover .service-icon {
  animation: shake 0.6s ease-in-out;
}

@keyframes shake {
  0% {
    transform: translateY(-8px) scale(1.1) translateX(0);
  }
  20% {
    transform: translateY(-10px) scale(1.1) translateX(-2px);
  }
  40% {
    transform: translateY(-6px) scale(1.1) translateX(2px);
  }
  60% {
    transform: translateY(-10px) scale(1.1) translateX(-2px);
  }
  80% {
    transform: translateY(-6px) scale(1.1) translateX(2px);
  }
  100% {
    transform: translateY(-8px) scale(1.1) translateX(0);
  }
}

.service-icon-teal {
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
}

.service-icon-purple {
  background: linear-gradient(
    135deg,
    var(--color-purple-500),
    var(--color-pink-500)
  );
}

.service-icon-orange {
  background: linear-gradient(
    135deg,
    var(--color-orange-500),
    var(--color-red-500)
  );
}

.service-icon-blue {
  background: linear-gradient(
    135deg,
    var(--color-blue-500),
    var(--color-indigo-500)
  );
}

.service-icon-emerald {
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-500)
  );
}

.service-icon-indigo {
  background: linear-gradient(
    135deg,
    var(--color-purple-500),
    var(--color-indigo-500)
  );
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
}

.service-description {
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-teal-600);
  font-weight: 500;
  transition: all 0.2s ease;
}

.service-link:hover {
  color: var(--color-teal-600);
  gap: 0.75rem;
}

/* ========================================
   5. VALUE PROPOSITION SECTION
   ======================================== */
.value-section {
  padding: 5rem 0;
  background: white;
}

.values-list {
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.value-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(
    to bottom right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon i {
  color: white;
  font-size: 1.5rem;
}

.value-content {
  flex: 1;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-gray-900);
}

.value-description {
  color: var(--color-gray-600);
  margin: 0;
}

.value-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  /* overflow: hidden; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-image {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
}

.value-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 148, 136, 0.2), transparent);
  border-radius: 1.5rem;
}

.value-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

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

.value-badge-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(
    to bottom right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-badge-icon i {
  color: white;
  font-size: 1.5rem;
}

.value-badge-number {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-gray-900);
}

.value-badge-text {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

/* ========================================
   6. TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--color-gray-50), white);
}

.carousel-inner {
  padding: 20px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 2%,
      black 94%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      black 2%,
      black 98%,
      transparent 100%
    );
  mask-composite: intersect;
}

.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(20, 184, 166, 0.1);
  font-size: 4rem;
}

.testimonial-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.testimonial-profile {
  flex-shrink: 0;
}

.testimonial-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(20, 184, 166, 0.1);
}

.testimonial-content {
  flex: 1;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.25rem;
  color: var(--color-gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: var(--color-gray-600);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-control-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.testimonial-control-btn:hover {
  background: var(--color-gray-50);
}

.testimonial-control-btn i {
  color: var(--color-gray-700);
  font-size: 1.5rem;
}

.carousel-indicators [data-bs-target] {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-gray-600);
  border: none;
  transition: all 0.3s ease;
  opacity: 1;
}

.carousel-indicators button.active {
  width: 2rem;
  border-radius: 0.25rem;
  background: var(--color-teal-600);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.trust-badge {
  text-align: center;
}

.trust-badge-number {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
}

.trust-badge-text {
  color: var(--color-gray-600);
}

/* ========================================
   7. COURSES SECTION
   ======================================== */
.courses-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--color-gray-50), white);
}

.course-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-image-wrapper {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-image {
  transform: scale(1.1);
}

.course-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--color-gray-800);
}

.course-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-gray-900);
}

.course-description {
  color: var(--color-gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-gray-600);
}

.course-enroll-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    to right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.course-card:hover .course-enroll-btn {
  color: white;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  gap: 0.75rem;
}

/* ========================================
   8. NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500),
    var(--color-teal-600)
  );
  position: relative;
  overflow: hidden;
}

.newsletter-decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-circle-1 {
  width: 16rem;
  height: 16rem;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.newsletter-circle-2 {
  width: 24rem;
  height: 24rem;
  bottom: 0;
  right: 0;
  transform: translate(33%, 33%);
}

.newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.newsletter-icon i {
  color: white;
  font-size: 2rem;
}

.newsletter-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.newsletter-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 28rem;
  margin: 0 auto;
}

.newsletter-form-group {
  display: flex;
  /* flex-direction: column; */
  gap: 0.75rem;
  justify-content: center;
}

.newsletter-input {
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: white;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-input:focus {
  outline: none;
  border-color: white;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.newsletter-submit-btn {
  padding: 1rem 2rem;
  background: white;
  color: var(--color-teal-600);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.newsletter-submit-btn:hover {
  background: white;
  color: var(--color-teal-600);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.newsletter-privacy {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* ========================================
   9. FOOTER STYLES
   ======================================== */
.logo-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-main {
  background: var(--color-gray-900);
  color: white;
  padding: 4rem 0;
}

.footer-logo {
  height: 8rem;
  width: auto;
  align-self: center;
}

.footer-description {
  color: var(--color-gray-400);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: var(--color-teal-600);
  color: white;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

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

.footer-links a {
  color: var(--color-gray-400);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-teal-400);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--color-teal-400);
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--color-gray-400);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--color-teal-400);
}

.footer-contact span {
  color: var(--color-gray-400);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-copyright {
  color: var(--color-gray-400);
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--color-gray-400);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--color-teal-400);
}

/* ========================================
   10. RESPONSIVE STYLES
   ======================================== */
@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .newsletter-form-group {
    flex-direction: row;
  }

  .newsletter-input {
    flex: 1;
  }

  .newsletter-submit-btn {
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .testimonial-content-wrapper {
    flex-direction: row;
  }

  .testimonial-content {
    text-align: left;
  }

  .testimonial-stars {
    justify-content: flex-start;
  }

  .footer-legal-links {
    justify-content: flex-end;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
  }

  .navbar-nav {
    margin-bottom: 1rem;
  }

  .nav-link {
    padding: 0.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2.25rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-subtitle {
    font-size: 1rem;
  }
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* ========================================
   1. BREADCRUMBS SECTION
   ======================================== */
.breadcrumbs {
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.page-header {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 0.95rem;
  font-weight: 500;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: white;
}

.breadcrumb-item.active {
  color: white;
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  padding: 0 0.5rem;
  line-height: 0.9;
}

@media (max-width: 766px){
  .breadcrumbs {
    margin-top: 34px;
  }
}

/* ========================================
   2. OUR STORY SECTION
   ======================================== */
.our-story-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, white, var(--color-gray-50));
  position: relative;
  overflow: hidden;
}

.our-story-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.05),
    rgba(16, 185, 129, 0.05)
  );
  border-radius: 50%;
  z-index: 0;
}

.our-story-section .container {
  position: relative;
  z-index: 1;
}

.story-image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}

.story-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.image-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.3), transparent 70%);
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}

.image-glow-reverse {
  top: -20%;
  right: -20%;
  left: auto;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent 70%);
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.story-image,
.why-choose-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2rem;
  transition: transform 0.5s ease;
}

.story-image-wrapper:hover .story-image,
.why-choose-image-wrapper:hover .why-choose-image {
  transform: scale(1.05);
}

/* .story-content,
.why-choose-content {
  padding: 2rem 0;
} */

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  color: var(--color-teal-600);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-gray-900);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.title-accent {
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-accent::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 2px;
  opacity: 0.3;
}

.story-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-gray-700);
  margin-bottom: 2rem;
}

.story-text p {
  margin-bottom: 1.25rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text strong {
  color: var(--color-gray-900);
  font-weight: 600;
}

.story-text ul,
.story-text ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.story-text li {
  margin-bottom: 0.75rem;
  position: relative;
}

.story-text ul li::marker {
  color: var(--color-teal-600);
}

.btn-box {
  margin-top: 2rem;
}

.green-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.green-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-600)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.green-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
  color: white;
}

.green-btn:hover::before {
  opacity: 1;
}

.green-btn i {
  transition: transform 0.3s ease;
}

.green-btn:hover i {
  transform: translateX(5px);
}

/* ========================================
   3. WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
  padding: 6rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.why-choose-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(20, 184, 166, 0.05)
  );
  border-radius: 50%;
  z-index: 0;
}

.why-choose-image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}

.why-choose-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* ========================================
   4. FEATURES/HIGHLIGHTS (Optional Enhancement)
   ======================================== */
.feature-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: white;
  border-radius: 1rem;
  border-left: 4px solid var(--color-teal-600);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.feature-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  margin: 0;
}

/* ========================================
   5. STATISTICS/NUMBERS SECTION (Optional)
   ======================================== */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
  background-size: cover;
  opacity: 0.3;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ========================================
   6. RESPONSIVE STYLES
   ======================================== */
@media (max-width: 991.98px) {
  .our-story-section,
  .why-choose-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .story-image-wrapper,
  .why-choose-image-wrapper {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .our-story-section,
  .why-choose-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .story-text {
    font-size: 1rem;
  }

  .green-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .breadcrumbs {
    padding: 0.75rem 0;
  }

  .section-title {
    font-size: 1.625rem;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }

  .btn-box {
    margin-top: 1.5rem;
  }

  .green-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   7. ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease-out;
}

/* Scroll reveal animations - CSS-only version */
.story-content,
.why-choose-content {
  animation: fadeInUp 0.8s ease-out;
}

.story-image-wrapper,
.why-choose-image-wrapper {
  animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* If JavaScript is available, these classes will be added */
.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-scale {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* ========================================
   CONTACT US PAGE STYLES
   ======================================== */

/* ========================================
   1. CONTACT HERO SECTION
   ======================================== */
.contact-hero-section {
  padding: 4rem 0 3rem;
  background: linear-gradient(to bottom, var(--color-gray-50), white);
  position: relative;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gray-900);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.contact-hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ========================================
   2. CONTACT INFO CARDS
   ======================================== */
.contact-info-section {
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.contact-info-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
  animation: fadeInUp 0.8s ease-out;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(20, 184, 166, 0.2);
}

.contact-info-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: white;
  position: relative;
}

.contact-info-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 1.25rem;
  background: inherit;
  opacity: 0.2;
  z-index: -1;
}

.contact-icon-phone {
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-teal-600)
  );
}

.contact-icon-email {
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-500)
  );
}

.contact-icon-location {
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.contact-info-text {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.contact-info-link {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-teal-600);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-info-link:hover {
  color: var(--color-teal-600);
  transform: translateX(5px);
}

/* ========================================
   3. CONTACT FORM SECTION
   ======================================== */
.contact-form-section {
  padding: 4rem 0 3rem;
  background: linear-gradient(to bottom, var(--color-gray-50), white);
}

.contact-form-wrapper {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: fadeInLeft 0.8s ease-out;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-input,
.contact-textarea {
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--color-gray-50);
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--color-teal-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
  background: white;
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--color-gray-400);
}

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

.btn-contact-submit {
  padding: 1rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  border: none;
  border-radius: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-contact-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-600)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
  color: white;
}

.btn-contact-submit:hover::before {
  opacity: 1;
}

.btn-contact-submit:active {
  transform: translateY(-1px);
}

.btn-contact-submit i {
  transition: transform 0.3s ease;
}

.btn-contact-submit:hover i {
  transform: translateX(5px);
}

/* Custom Alert */
.alert-custom {
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  border: none;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(20, 184, 166, 0.1)
  );
  color: var(--color-teal-600);
  border-left: 4px solid var(--color-teal-600);
  animation: slideInDown 0.5s ease-out;
}

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

/* ========================================
   4. CONTACT SIDEBAR
   ======================================== */
.contact-sidebar {
  animation: fadeInRight 0.8s ease-out;
}

.contact-sidebar-card {
  background: linear-gradient(135deg, var(--color-gray-50), white);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--color-gray-100);
  transition: all 0.3s ease;
}

.contact-sidebar-card:hover {
  border-color: rgba(20, 184, 166, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.sidebar-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.sidebar-card-title i {
  color: var(--color-teal-600);
}

.sidebar-card-text {
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Sidebar Links List */
.sidebar-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.sidebar-links-list a {
  color: var(--color-gray-700);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.sidebar-links-list a:hover {
  background: rgba(20, 184, 166, 0.05);
  color: var(--color-teal-600);
  padding-left: 1rem;
}

.sidebar-links-list a i {
  color: var(--color-teal-600);
  font-size: 0.875rem;
}

/* Working Hours */
.working-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.working-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid var(--color-gray-200);
}

.working-hours-item .day {
  font-weight: 600;
  color: var(--color-gray-800);
}

.working-hours-item .time {
  color: var(--color-teal-600);
  font-weight: 500;
}

/* Social Links */
.contact-social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-600)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
  color: white;
}

.contact-social-link:hover::before {
  opacity: 1;
}

.contact-social-link i {
  position: relative;
  z-index: 1;
}

/* ========================================
   5. MAP SECTION
   ======================================== */
.contact-map-section {
  margin-top: 3rem;
}

.map-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
}

.map-wrapper iframe {
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0%);
}

/* ========================================
   6. FORM VALIDATION STYLES
   ======================================== */
.contact-input.is-invalid,
.contact-textarea.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.contact-input.is-valid,
.contact-textarea.is-valid {
  border-color: var(--color-teal-600);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2314b8a6' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.text-danger {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ========================================
   7. LOADING STATE
   ======================================== */
.btn-contact-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-contact-submit.loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  border: 2px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

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

/* ========================================
   8. RESPONSIVE STYLES
   ======================================== */
@media (max-width: 991.98px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .contact-sidebar {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .contact-hero-section {
    padding: 3rem 0 2rem;
  }

  .contact-hero-title {
    font-size: 2rem;
  }

  .contact-hero-subtitle {
    font-size: 1.125rem;
  }

  .contact-info-card {
    padding: 2rem 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .btn-contact-submit {
    width: 100%;
    justify-content: center;
  }

  .contact-social-links {
    justify-content: center;
  }

  .map-wrapper {
    border-radius: 1rem;
  }
}

@media (max-width: 575.98px) {
  .contact-info-section {
    padding: 2rem 0;
  }

  .contact-form-section {
    padding: 3rem 0;
  }

  .sidebar-card-title {
    font-size: 1.125rem;
  }

  .working-hours-item {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
}

/* ========================================
   9. ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ========================================
   10. ACCESSIBILITY
   ======================================== */
.contact-input:focus-visible,
.contact-textarea:focus-visible,
.btn-contact-submit:focus-visible {
  outline: 2px solid var(--color-teal-600);
  outline-offset: 2px;
}

.contact-social-link:focus-visible {
  outline: 2px solid var(--color-teal-600);
  outline-offset: 4px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   SIGN IN PAGE STYLES
   ======================================== */

/* ========================================
   1. SIGN IN SECTION
   ======================================== */
.sign-in {
  background: linear-gradient(to bottom, var(--color-gray-50), white);
  min-height: calc(100vh - 300px);
  padding: 4rem 0 !important;
  position: relative;
  overflow: hidden;
}

.sign-in::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.05),
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.sign-in::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.05),
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.sign-in-section {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   2. FORM CONTAINER
   ======================================== */
.sign-in form {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
}

.sign-in form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 1.5rem 1.5rem 0 0;
}

/* ========================================
   3. FORM LABELS & INPUTS
   ======================================== */
.sign-in .form-label {
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.sign-in .form-control {
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--color-gray-50);
}

.sign-in .form-control:focus {
  border-color: var(--color-teal-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
  background: white;
  outline: none;
}

.sign-in .form-control::placeholder {
  color: var(--color-gray-400);
}

.sign-in .form-outline {
  margin-bottom: 1.5rem;
}

/* ========================================
   4. CHECKBOX STYLES
   ======================================== */
.sign-in .form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sign-in .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--color-gray-400);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sign-in .form-check-input:checked {
  background-color: var(--color-teal-600);
  border-color: var(--color-teal-600);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.sign-in .form-check-input:focus {
  border-color: var(--color-teal-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
  outline: none;
}

.sign-in .form-check-label {
  color: var(--color-gray-700);
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none;
}

/* ========================================
   5. LINKS
   ======================================== */
.sign-in .link {
  color: var(--color-teal-600);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.sign-in .link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  transition: width 0.3s ease;
}

.sign-in .link:hover {
  color: var(--color-teal-600);
}

.sign-in .link:hover::after {
  width: 100%;
}

/* ========================================
   6. SIGN IN BUTTON
   ======================================== */
.sign-in-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  border: none;
  border-radius: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sign-in-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-600)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.sign-in-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
  color: white;
}

.sign-in-btn:hover::before {
  opacity: 1;
}

.sign-in-btn:active {
  transform: translateY(-1px);
}

.sign-in-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ========================================
   7. ALERTS
   ======================================== */
.sign-in .alert {
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: slideInDown 0.5s ease-out;
}

.sign-in .alert::before {
  font-family: "Font Awesome 6 Free";
  font-size: 1.25rem;
}

.sign-in .alert-success {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(20, 184, 166, 0.1)
  );
  color: var(--color-teal-600);
  border-left: 4px solid var(--color-teal-600);
}

.sign-in .alert-success::before {
  content: "\f058"; /* FontAwesome icon check-circle */
  color: var(--color-teal-600);
}

.sign-in .alert-danger {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(220, 38, 38, 0.1)
  );
  color: #b91c1c;
  border-left: 4px solid #dc2626;
}

.sign-in .alert-danger::before {
  content: "\f06a"; /* FontAwesome icon exclamation-circle */
  color: #dc2626;
}

/* ========================================
   8. ADDITIONAL TEXT STYLES
   ======================================== */
.sign-in .small {
  color: var(--color-gray-600);
  font-size: 0.95rem;
}

.sign-in .fw-bold {
  font-weight: 600;
}

.sign-in .text-center {
  margin-top: 1.5rem;
}

.sign-in p {
  margin-bottom: 0;
}

/* ========================================
   9. VALIDATION STYLES
   ======================================== */
.sign-in .form-control.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.sign-in .form-control.is-valid {
  border-color: var(--color-teal-600);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2314b8a6' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.sign-in .text-danger {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  color: #dc3545;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ========================================
   10. LOADING STATE
   ======================================== */
.sign-in-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.sign-in-btn.loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  border: 2px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

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

/* ========================================
   11. RESPONSIVE STYLES
   ======================================== */
@media (max-width: 767.98px) {
  .sign-in {
    padding: 3rem 0 !important;
  }

  .sign-in form {
    padding: 2rem 1.5rem;
  }

  .sign-in .d-flex.justify-content-between {
    flex-direction: column;
    gap: 1rem;
  }

  .sign-in .form-check {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .sign-in form {
    padding: 1.5rem 1.25rem;
    margin: 0 1rem;
  }

  .sign-in-btn {
    font-size: 1rem;
  }
}

/* ========================================
   12. ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ========================================
   13. FOCUS VISIBLE (ACCESSIBILITY)
   ======================================== */
.sign-in .form-control:focus-visible,
.sign-in .sign-in-btn:focus-visible,
.sign-in .form-check-input:focus-visible {
  outline: 2px solid var(--color-teal-600);
  outline-offset: 2px;
}

/* ========================================
   14. PASSWORD VISIBILITY TOGGLE (Optional Enhancement)
   ======================================== */
.password-toggle-wrapper {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-gray-500);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease;
}

.password-toggle-btn:hover {
  color: var(--color-teal-600);
}

/* ========================================
   15. SOCIAL LOGIN BUTTONS (Optional)
   ======================================== */
.social-login-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-200);
}

.social-login-title {
  text-align: center;
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  position: relative;
}

.social-login-title::before,
.social-login-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--color-gray-200);
}

.social-login-title::before {
  left: 0;
}

.social-login-title::after {
  right: 0;
}

.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-login-btn {
  padding: 0.875rem 1.5rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 0.75rem;
  background: white;
  color: var(--color-gray-700);
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-login-btn:hover {
  border-color: var(--color-teal-500);
  background: var(--color-gray-50);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.social-login-btn img,
.social-login-btn i {
  width: 1.25rem;
  height: 1.25rem;
}

/* ========================================
   16. FORM HEADER (Optional Enhancement)
   ======================================== */
.sign-in-header {
  text-align: center;
  margin-bottom: 2rem;
}

.sign-in-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.sign-in-subtitle {
  color: var(--color-gray-600);
  font-size: 1rem;
}

/* ========================================
   17. PRINT STYLES
   ======================================== */
@media print {
  .sign-in::before,
  .sign-in::after {
    display: none;
  }

  .sign-in form {
    box-shadow: none;
    border: 1px solid var(--color-gray-400);
  }
}

/* ========================================
   FORGOT PASSWORD PAGE STYLES
   ======================================== */

/* ========================================
   1. FORGOT PASSWORD SECTION
   ======================================== */
.forgot-password {
  background: linear-gradient(to bottom, var(--color-gray-50), white);
  min-height: calc(100vh - 300px);
  padding: 4rem 0 !important;
  position: relative;
  overflow: hidden;
}

.forgot-password::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.05),
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.forgot-password::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.05),
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.forgot-password .container {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.forgot-pass-section {
  animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   2. FORM CONTAINER
   ======================================== */
.forgot-password .bg-form {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 1.5rem !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
}

.forgot-password .bg-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 1.5rem 1.5rem 0 0;
}

/* ========================================
   3. LOCK ICON
   ======================================== */
.forgot-password h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.forgot-password .fa-lock {
  color: var(--color-teal-600);
  font-size: 4rem !important;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border-radius: 50%;
  position: relative;
  animation: pulseIcon 2s ease-in-out infinite;
}

.forgot-password .fa-lock::before {
  position: relative;
  z-index: 1;
}

.forgot-password .fa-lock::after {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.05),
    rgba(16, 185, 129, 0.05)
  );
  border-radius: 50%;
  z-index: -1;
}

@keyframes pulseIcon {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(20, 184, 166, 0);
  }
}

/* ========================================
   4. HEADING & TEXT
   ======================================== */
.forgot-password .name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.forgot-password .name p {
  font-size: 1rem;
  color: var(--color-gray-600);
  font-weight: 400;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

/* ========================================
   5. FORM ELEMENTS
   ======================================== */
.forgot-password .form-group {
  margin-bottom: 1.5rem;
}

.forgot-password .input-group {
  position: relative;
}

.forgot-password .form-control {
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--color-gray-50);
  width: 100%;
}

.forgot-password .form-control:focus {
  border-color: var(--color-teal-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
  background: white;
  outline: none;
}

.forgot-password .form-control::placeholder {
  color: var(--color-gray-400);
}

/* ========================================
   6. SUBMIT BUTTON
   ======================================== */
.forgot-password .forgot-btn {
  padding: 1rem 2rem !important;
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  border: none !important;
  border-radius: 0.75rem;
  color: white !important;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100% !important;
}

.forgot-password .forgot-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-600)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.forgot-password .forgot-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
  color: white !important;
}

.forgot-password .forgot-btn:hover::before {
  opacity: 1;
}

.forgot-password .forgot-btn:active {
  transform: translateY(-1px);
}

/* Loading state */
.forgot-password .forgot-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.forgot-password .forgot-btn.loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  border: 2px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

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

/* ========================================
   7. ALERTS
   ======================================== */
.forgot-password .alert {
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border: none;
  animation: slideInDown 0.5s ease-out;
}

.forgot-password .alert-success {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(20, 184, 166, 0.1)
  );
  color: var(--color-teal-600);
  border-left: 4px solid var(--color-teal-600);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.forgot-password .alert-success::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c"; /* fa-check */
  color: var(--color-teal-600);
  font-size: 1.25rem;
}

.forgot-password .alert-danger {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(220, 38, 38, 0.1)
  );
  color: #b91c1c;
  border-left: 4px solid #dc2626;
}

.forgot-password .alert-danger ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style: none;
}

.forgot-password .alert-danger li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.25rem;
}

.forgot-password .alert-danger li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f06a"; /* fa-exclamation-circle */
  position: absolute;
  left: 0;
  color: #dc2626;
}

.forgot-password .alert-danger li:last-child {
  margin-bottom: 0;
}

/* ========================================
   8. ADDITIONAL LINKS (Optional)
   ======================================== */
.forgot-password .back-to-login {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray-200);
}

.forgot-password .back-to-login a {
  color: var(--color-teal-600);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.forgot-password .back-to-login a:hover {
  color: var(--color-teal-600);
  gap: 0.75rem;
}

.forgot-password .back-to-login a i {
  transition: transform 0.3s ease;
}

.forgot-password .back-to-login a:hover i {
  transform: translateX(-5px);
}

/* ========================================
   9. VALIDATION STATES
   ======================================== */
.forgot-password .form-control.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.forgot-password .form-control.is-valid {
  border-color: var(--color-teal-600);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2314b8a6' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* ========================================
   10. INFO BOX (Optional Enhancement)
   ======================================== */
.forgot-password .info-box {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(37, 99, 235, 0.05)
  );
  border-left: 4px solid #3b82f6;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-gray-700);
}

.forgot-password .info-box i {
  color: #3b82f6;
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.forgot-password .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* ========================================
   11. RESPONSIVE STYLES
   ======================================== */
@media (max-width: 767.98px) {
  .forgot-password {
    padding: 3rem 0 !important;
  }

  .forgot-password .container {
    width: 100% !important;
    max-width: 100%;
    padding: 0 1rem;
  }

  .forgot-password .bg-form {
    padding: 2rem 1.5rem;
  }

  .forgot-password .fa-lock {
    font-size: 3rem !important;
    width: 80px;
    height: 80px;
    line-height: 80px;
  }

  .forgot-password .name {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .forgot-password .bg-form {
    padding: 1.5rem 1.25rem;
  }

  .forgot-password .name {
    font-size: 1.375rem;
  }

  .forgot-password .forgot-btn {
    font-size: 1rem;
  }
}

/* ========================================
   12. ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ========================================
   13. ACCESSIBILITY
   ======================================== */
.forgot-password .form-control:focus-visible,
.forgot-password .forgot-btn:focus-visible {
  outline: 2px solid var(--color-teal-600);
  outline-offset: 2px;
}

/* Screen reader only */
.forgot-password .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   14. PRINT STYLES
   ======================================== */
@media print {
  .forgot-password::before,
  .forgot-password::after {
    display: none;
  }

  .forgot-password .bg-form {
    box-shadow: none;
    border: 1px solid var(--color-gray-300);
  }

  .forgot-password .forgot-btn {
    display: none;
  }
}

/* ========================================
   15. SUCCESS STATE (After Email Sent)
   ======================================== */
.forgot-password .success-message {
  text-align: center;
  padding: 2rem;
}

.forgot-password .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease-out;
}

.forgot-password .success-icon i {
  color: white;
  font-size: 2.5rem;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.forgot-password .success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
}

.forgot-password .success-text {
  color: var(--color-gray-600);
  margin-bottom: 2rem;
}

/* ========================================
   16. EMAIL ICON (Optional Enhancement)
   ======================================== */
.forgot-password .input-icon {
  position: relative;
}

.forgot-password .input-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-400);
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.forgot-password .input-icon .form-control {
  padding-left: 3rem;
}

.forgot-password .input-icon .form-control:focus ~ i {
  color: var(--color-teal-600);
}

/* ========================================
   FAQ PAGE STYLES - SVASTHA ONLINE
   Only new styles (existing breadcrumb, contact-hero, section-badge already declared)
   ======================================== */

/* ========================================
   1. FAQ SPECIFIC HERO STYLES
   ======================================== */
/* Extend contact-hero-section for FAQ page with accent styling */
.contact-hero-section .title-accent {
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

/* ========================================
   2. FAQ SECTION MAIN
   ======================================== */
.faq-section {
  padding: 2rem 0 3rem;
  background: linear-gradient(to bottom, white, var(--color-gray-50));
  position: relative;
}

/* ========================================
   3. FAQ ACCORDION STYLES
   ======================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

/* Stagger animation for items */
.faq-accordion-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-accordion-item:nth-child(2) {
  animation-delay: 0.15s;
}
.faq-accordion-item:nth-child(3) {
  animation-delay: 0.2s;
}
.faq-accordion-item:nth-child(4) {
  animation-delay: 0.25s;
}
.faq-accordion-item:nth-child(5) {
  animation-delay: 0.3s;
}
.faq-accordion-item:nth-child(n + 6) {
  animation-delay: 0.35s;
}

.faq-accordion-item:hover {
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.15);
  transform: translateY(-3px);
}

.faq-accordion-header {
  margin-bottom: 0;
}

.faq-accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 2rem;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
  color: var(--color-gray-900);
  font-size: 1.125rem;
}

.faq-accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.05),
    rgba(16, 185, 129, 0.05)
  );
  color: var(--color-teal-600);
}

.faq-accordion-button:hover {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.08),
    rgba(16, 185, 129, 0.08)
  );
}

.faq-accordion-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-accordion-button:not(.collapsed)::before {
  opacity: 1;
}

.faq-accordion-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.faq-question-text {
  flex: 1;
  padding-right: 1rem;
  line-height: 1.5;
}

/* FAQ Icon Styles */
.faq-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-accordion-button:hover .faq-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.faq-icon svg {
  color: white;
  transition: all 0.3s ease;
}

.faq-icon-plus {
  position: absolute;
  opacity: 1;
  transform: rotate(0deg);
}

.faq-icon-minus {
  position: absolute;
  opacity: 0;
  transform: rotate(90deg);
}

.faq-accordion-button:not(.collapsed) .faq-icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-accordion-button:not(.collapsed) .faq-icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}

/* Accordion Body */
.faq-accordion-body {
  padding: 1.5rem 2rem 2rem 2rem;
  color: var(--color-gray-700);
  font-size: 1rem;
  line-height: 1.7;
  background: white;
  border-top: 1px solid var(--color-gray-100);
}

.faq-accordion-body p {
  margin-bottom: 0;
}

/* Collapse Animation */
.accordion-collapse {
  transition: height 0.35s ease;
}

/* ========================================
   4. FAQ CONTACT CTA
   ======================================== */
.faq-contact-cta {
  margin-top: 3rem;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.05),
    rgba(16, 185, 129, 0.05)
  );
  border-radius: 1.5rem;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.faq-contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  padding: 2px;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
}

.faq-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq-cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
}

.faq-cta-text {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(
    to right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
  color: white;
}

.faq-cta-button span {
  position: relative;
  z-index: 1;
}

/* ========================================
   5. FADEUP ANIMATION (if not already exists)
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   6. RESPONSIVE STYLES
   ======================================== */

/* Large Tablets and Below */
@media (max-width: 991.98px) {
  .faq-accordion-button {
    font-size: 1.0625rem;
    padding: 1.25rem 1.5rem;
  }

  .faq-accordion-body {
    padding: 1.25rem 1.5rem 1.75rem 1.5rem;
  }

  .faq-contact-cta {
    padding: 2.5rem 2rem;
  }
}

/* Tablets and Below */
@media (max-width: 767.98px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-accordion-button {
    font-size: 1rem;
    padding: 1.125rem 1.25rem;
  }

  .faq-question-text {
    padding-right: 0.75rem;
  }

  .faq-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }

  .faq-accordion-body {
    padding: 1rem 1.25rem 1.5rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq-contact-cta {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }

  .faq-cta-title {
    font-size: 1.5rem;
  }

  .faq-cta-text {
    font-size: 1rem;
  }

  .faq-cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/* Mobile Devices */
@media (max-width: 575.98px) {
  .faq-section {
    padding: 2.5rem 0;
  }

  .faq-accordion {
    gap: 0.75rem;
  }

  .faq-accordion-item {
    border-radius: 0.75rem;
  }

  .faq-accordion-button {
    padding: 1rem;
    font-size: 0.9375rem;
    gap: 0.75rem;
  }

  .faq-icon {
    width: 2rem;
    height: 2rem;
  }

  .faq-icon svg {
    width: 16px;
    height: 16px;
  }

  .faq-accordion-body {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .faq-contact-cta {
    padding: 1.75rem 1.25rem;
    border-radius: 1rem;
  }

  .faq-cta-title {
    font-size: 1.25rem;
  }

  .faq-cta-text {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .faq-cta-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    width: 100%;
    justify-content: center;
  }
}

/* Extra Small Devices */
@media (max-width: 374.98px) {
  .faq-accordion-button {
    padding: 0.875rem;
    font-size: 0.875rem;
  }

  .faq-cta-title {
    font-size: 1.125rem;
  }
}

/* ========================================
   7. ACCESSIBILITY
   ======================================== */
.faq-accordion-button:focus-visible {
  outline: 3px solid var(--color-teal-500);
  outline-offset: 2px;
}

.faq-cta-button:focus-visible {
  outline: 3px solid var(--color-teal-500);
  outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .faq-accordion-item,
  .faq-icon svg,
  .faq-cta-button::after {
    animation: none !important;
  }

  .faq-accordion-item *,
  .faq-accordion-button,
  .faq-icon,
  .faq-cta-button {
    transition: none !important;
  }
}

/* ========================================
   8. PRINT STYLES
   ======================================== */
@media print {
  .faq-contact-cta {
    display: none;
  }

  .faq-accordion-item {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--color-gray-300);
  }

  .faq-accordion-button {
    background: white !important;
  }

  .accordion-collapse {
    display: block !important;
    height: auto !important;
  }
}

/* ========================================
   PRODUCT DETAIL PAGE STYLES - SVASTHA ONLINE
   Complements homepage design system
   ======================================== */

/* ========================================
   1. PRODUCT DETAIL PAGE CONTAINER
   ======================================== */
.product-detail-page {
  background: linear-gradient(to bottom, white, var(--color-gray-50));
  min-height: calc(100vh - 114px);
}

/* ========================================
   2. PRODUCT IMAGE SECTION
   ======================================== */
.product-image-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  /* height: 100%; */
}

.product-image-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.product-image-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-image-card:hover::before {
  transform: scaleX(1);
}

.product-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--color-gray-50);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-image-card:hover .product-image {
  transform: scale(1.05);
}

/* ========================================
   3. PRODUCT INFO SECTION
   ======================================== */
.product-info-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.product-info-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.05),
    transparent 70%
  );
  pointer-events: none;
}

.product-category {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  color: var(--color-teal-600);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

/* ========================================
   4. PRODUCT PRICE DISPLAY
   ======================================== */
.product-price-section {
  padding: 1.5rem 0;
  margin: 1.5rem 0;
  border-top: 2px solid var(--color-gray-100);
  border-bottom: 2px solid var(--color-gray-100);
  position: relative;
  z-index: 1;
}

.product-price-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.product-price-currency {
  font-size: 1.75rem;
  /* opacity: 0.8; */
}

.product-price-label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.product-price-old {
  font-size: 1.5rem;
  color: var(--color-gray-400);
  text-decoration: line-through;
  font-weight: 500;
}

.product-price-discount {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(
    135deg,
    var(--color-red-500),
    var(--color-orange-500)
  );
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ========================================
   5. PRODUCT DESCRIPTION
   ======================================== */
.product-description {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.product-description p {
  margin-bottom: 1rem;
}

.product-description p:last-child {
  margin-bottom: 0;
}

.product-description ul,
.product-description ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.product-description li {
  margin-bottom: 0.5rem;
  color: var(--color-gray-700);
}

.product-description strong {
  color: var(--color-gray-900);
  font-weight: 600;
}

/* ========================================
   6. QUANTITY INPUT & ADD TO CART
   ======================================== */
.quantity-input {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: white;
}

.quantity-input .btn {
  border: none;
  background: var(--color-gray-50);
  color: var(--color-gray-700);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
}

.quantity-input .btn:hover {
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: white;
}

.quantity-input .form-control {
  border: none;
  border-left: 1px solid var(--color-gray-200);
  border-right: 1px solid var(--color-gray-200);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-gray-900);
  padding: 0.75rem 1rem;
}

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

/* Add to Cart Button */
.btn-effect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.btn-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-600)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-effect:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
  color: white;
}

.btn-effect:hover::before {
  opacity: 1;
}

.btn-effect:active {
  transform: translateY(-1px);
}

/* Cart Icon Animation */
.btn-effect i {
  transition: transform 0.3s ease;
}

.btn-effect:hover i {
  transform: scale(1.1);
  animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
  0%,
  100% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Loading State for Add to Cart */
.btn-effect.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-effect.loading::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  top: 50%;
  left: 50%;
  margin-left: -0.625rem;
  margin-top: -0.625rem;
  border: 3px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

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

/* ========================================
   7. PRODUCT FEATURES/HIGHLIGHTS (Optional)
   ======================================== */
.product-features {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-gray-50);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.product-feature-item:hover {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.05),
    rgba(16, 185, 129, 0.05)
  );
  transform: translateX(5px);
}

.product-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.125rem;
}

.product-feature-text {
  color: var(--color-gray-700);
  font-weight: 500;
  margin: 0;
}

/* ========================================
   8. PRODUCT META INFO (Stock, SKU, etc.)
   ======================================== */
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-gray-200);
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.product-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-meta-label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.product-meta-value {
  font-size: 1rem;
  color: var(--color-gray-900);
  font-weight: 600;
}

.product-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.product-stock-badge.in-stock {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(20, 184, 166, 0.1)
  );
  color: var(--color-emerald-600);
}

.product-stock-badge.out-of-stock {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-red-600);
}

.product-stock-badge i {
  font-size: 0.75rem;
}

/* ========================================
   9. RESPONSIVE STYLES
   ======================================== */

/* Tablets and Below */
@media (max-width: 991.98px) {
  .product-title {
    font-size: 2rem;
  }

  .product-price {
    font-size: 2rem;
  }

  .product-info-card {
    padding: 2rem;
    margin-top: 2rem;
  }

  .btn-effect {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }
}

/* Mobile Devices */
@media (max-width: 767.98px) {
  .product-detail-page .container {
    padding: 1rem;
  }

  .product-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .product-image-card,
  .product-info-card {
    padding: 1.5rem;
  }

  .product-price {
    font-size: 1.75rem;
  }

  .product-price-old {
    font-size: 1.25rem;
  }

  .product-description {
    font-size: 1rem;
  }

  .btn-effect {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .product-price-section {
    padding: 1rem 0;
    margin: 1rem 0;
  }

  .product-features {
    margin-top: 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .product-title {
    font-size: 1.5rem;
  }

  .product-image-card,
  .product-info-card {
    border-radius: 1rem;
    padding: 1.25rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .product-category {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }

  .product-meta {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========================================
   10. ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   11. ACCESSIBILITY
   ======================================== */
.btn-effect:focus-visible,
.quantity-input .btn:focus-visible {
  outline: 3px solid var(--color-teal-500);
  outline-offset: 3px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .product-image-card,
  .product-image,
  .btn-effect,
  .product-feature-item {
    transition: none !important;
    animation: none !important;
  }
}

/* ========================================
   12. PRINT STYLES
   ======================================== */
@media print {
  .product-detail-page {
    background: white;
  }

  .product-image-card,
  .product-info-card {
    box-shadow: none;
    border: 1px solid var(--color-gray-300);
  }

  .btn-effect,
  .quantity-input {
    display: none;
  }
}

/* ========================================
   CART PAGE STYLES
   ======================================== */

/* Cart Section */
.cart-section {
  background: linear-gradient(to bottom, var(--color-gray-50), white);
  min-height: 70vh;
}

/* Cart Table - Desktop */
.cart-table-wrapper {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease;
}

.cart-table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.cart-table thead {
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 0.75rem;
}

.cart-table thead th {
  padding: 1.25rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.cart-table thead th:first-child {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.cart-table thead th:last-child {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.cart-table tbody tr {
  transition: all 0.3s ease;
}

.cart-table tbody tr:hover {
  background: rgba(20, 184, 166, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cart-table tbody td {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--color-gray-100);
  vertical-align: middle;
}

.cart-table tbody tr:last-child td {
  border-bottom: none;
}

/* Cart Product Image */
.cart-product-image {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cart-product-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

/* Cart Product Details */
.cart-product-name {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-gray-900);
}

.cart-product-price,
.cart-product-total {
  margin: 0;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-teal-600);
}

/* Cart Quantity Control */
.cart-quantity-control {
  display: inline-flex;
  align-items: center;
  background: var(--color-gray-50);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cart-qty-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  color: var(--color-gray-700);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-btn:hover:not(:disabled) {
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: white;
}

.cart-qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cart-qty-input {
  width: 3rem;
  height: 2.5rem;
  border: none;
  border-left: 1px solid var(--color-gray-200);
  border-right: 1px solid var(--color-gray-200);
  background: white;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-gray-900);
}

.cart-qty-input:focus {
  outline: none;
}

/* Cart Remove Button */
.cart-remove-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--color-gray-200);
  background: white;
  border-radius: 50%;
  color: var(--color-red-500);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cart-remove-btn:hover {
  background: var(--color-red-500);
  border-color: var(--color-red-500);
  color: white;
  transform: rotate(90deg) scale(1.1);
}

/* Mobile Cart Wrapper - Hidden on Desktop */
.cart-mobile-wrapper {
  display: none;
}

/* Cart Summary */
.cart-summary-wrapper {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 2rem;
  align-items: start;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.cart-summary-info {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cart-summary-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-summary-info h3 i {
  color: var(--color-teal-500);
}

.cart-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--color-gray-50);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.cart-info-item:hover {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.05),
    rgba(16, 185, 129, 0.05)
  );
  transform: translateX(5px);
}

.cart-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1rem;
}

.cart-info-text {
  flex: 1;
}

.cart-info-text h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin: 0 0 0.25rem 0;
}

.cart-info-text p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin: 0;
  line-height: 1.5;
}

.cart-summary-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  position: sticky;
  top: 130px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.cart-summary-row:last-of-type {
  border-bottom: 2px solid var(--color-gray-200);
  margin-bottom: 1.5rem;
}

.cart-summary-total {
  padding: 1.5rem 0;
}

.cart-summary-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-700);
}

.cart-summary-total .cart-summary-label {
  font-size: 1.5rem;
  color: var(--color-gray-900);
}

.cart-summary-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-teal-600);
}

.cart-summary-total .cart-summary-value {
  font-size: 2rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cart Checkout Button */
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.125rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cart-checkout-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-600)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.cart-checkout-btn:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
}

.cart-checkout-btn:hover::before {
  opacity: 1;
}

.cart-checkout-btn i {
  transition: transform 0.3s ease;
}

.cart-checkout-btn:hover i {
  transform: translateX(5px);
}

/* Continue Shopping Link */
.cart-continue-shopping {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  color: var(--color-gray-600);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cart-continue-shopping:hover {
  color: var(--color-teal-600);
  gap: 0.75rem;
}

.cart-continue-shopping i {
  transition: transform 0.3s ease;
}

.cart-continue-shopping:hover i {
  transform: translateX(-5px);
}

/* Empty Cart State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  text-align: center;
  animation: fadeInUp 0.6s ease;
}

.cart-empty-icon {
  width: 8rem;
  height: 8rem;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.cart-empty-icon i {
  font-size: 4rem;
  color: var(--color-teal-500);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.cart-empty-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

.cart-empty-text {
  font-size: 1.25rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
}

.cart-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
}

.cart-empty-btn:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
}

.cart-empty-btn i {
  transition: transform 0.3s ease;
}

.cart-empty-btn:hover i {
  transform: translateX(5px);
}

/* ========================================
   RESPONSIVE STYLES - TABLETS
   ======================================== */
@media (max-width: 1199.98px) {
  .cart-summary-wrapper {
    grid-template-columns: 1fr;
  }

  .cart-summary-info {
    order: 2;
  }

  .cart-summary-card {
    order: 1;
    position: static;
  }
}

@media (max-width: 991.98px) {
  .cart-summary-card {
    margin-top: 0;
  }

  .cart-product-image {
    width: 80px;
    height: 80px;
  }

  .cart-table thead th {
    font-size: 0.875rem;
    padding: 1rem 0.75rem;
  }

  .cart-table tbody td {
    padding: 1.25rem 0.75rem;
  }
}

/* ========================================
   RESPONSIVE STYLES - MOBILE
   ======================================== */
@media (max-width: 767.98px) {
  body {
    padding-top: 80px;
  }

  .cart-section {
    padding: 2rem 0;
  }

  /* Hide desktop table on mobile */
  .cart-table-wrapper {
    display: none;
  }

  /* Show mobile cart cards */
  .cart-mobile-wrapper {
    display: block;
    margin-bottom: 2rem;
  }

  .cart-mobile-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .cart-mobile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .cart-mobile-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-gray-100);
  }

  .cart-mobile-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

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

  .cart-mobile-info {
    flex: 1;
  }

  .cart-mobile-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin: 0 0 0.5rem 0;
  }

  .cart-mobile-price {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-600);
    margin: 0;
  }

  .cart-mobile-remove {
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--color-gray-200);
    background: white;
    border-radius: 50%;
    color: var(--color-red-500);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
  }

  .cart-mobile-remove:hover {
    background: var(--color-red-500);
    border-color: var(--color-red-500);
    color: white;
    transform: rotate(90deg);
  }

  .cart-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-mobile-quantity,
  .cart-mobile-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-mobile-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .cart-mobile-total-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-teal-600);
  }

  .cart-summary-card {
    padding: 1.5rem;
  }

  .cart-summary-row {
    padding: 0.75rem 0;
  }

  .cart-summary-label {
    font-size: 1rem;
  }

  .cart-summary-value {
    font-size: 1.125rem;
  }

  .cart-summary-total .cart-summary-label {
    font-size: 1.25rem;
  }

  .cart-summary-total .cart-summary-value {
    font-size: 1.75rem;
  }

  .cart-checkout-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .cart-empty-icon {
    width: 6rem;
    height: 6rem;
  }

  .cart-empty-icon i {
    font-size: 3rem;
  }

  .cart-empty-title {
    font-size: 2rem;
  }

  .cart-empty-text {
    font-size: 1.125rem;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .cart-section {
    padding: 1.5rem 0;
  }

  .cart-mobile-card {
    padding: 1.25rem;
  }

  .cart-mobile-image {
    width: 70px;
    height: 70px;
  }

  .cart-mobile-name {
    font-size: 0.9375rem;
  }

  .cart-summary-card {
    padding: 1.25rem;
  }

  .cart-checkout-btn {
    font-size: 0.9375rem;
    padding: 0.875rem 1.25rem;
  }

  .cart-empty-icon {
    width: 5rem;
    height: 5rem;
  }

  .cart-empty-icon i {
    font-size: 2.5rem;
  }

  .cart-empty-title {
    font-size: 1.75rem;
  }

  .cart-empty-text {
    font-size: 1rem;
  }
}

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

/* ========================================
   ACCESSIBILITY
   ======================================== */
.cart-qty-btn:focus-visible,
.cart-remove-btn:focus-visible,
.cart-checkout-btn:focus-visible {
  outline: 3px solid var(--color-teal-500);
  outline-offset: 3px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .cart-table tbody tr,
  .cart-mobile-card,
  .cart-checkout-btn,
  .cart-empty-icon {
    transition: none !important;
    animation: none !important;
  }
}

/* ========================================
   PRODUCT CATEGORY PAGE STYLES - SVASTHA ONLINE
   Complements homepage design system
   ======================================== */

/* ========================================
   1. CATEGORIES GRID SECTION
   ======================================== */
.categories-grid-section {
  padding: 4rem 0;
  background: white;
  position: relative;
}

.categories-grid-section:nth-child(even) {
  background: linear-gradient(
    135deg,
    rgba(249, 250, 251, 1) 0%,
    rgba(243, 244, 246, 0.5) 50%,
    rgba(255, 255, 255, 1) 100%
  );
}

.categories-grid-section:nth-child(odd):not(:first-child) {
  background: linear-gradient(
    135deg,
    rgba(240, 253, 250, 0.3) 0%,
    rgba(209, 250, 229, 0.2) 50%,
    rgba(255, 255, 255, 1) 100%
  );
}

.categories-grid-section:last-of-type {
  padding-bottom: 6rem;
}

/* ========================================
   2. MAIN CATEGORY HEADER
   ======================================== */
.main-category {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease-out;
}

.main-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.main-category:hover {
  box-shadow: 0 12px 35px rgba(20, 184, 166, 0.15);
  transform: translateX(5px);
}

.main-category:hover::before {
  transform: scaleY(1);
}

/* Main Category Image */
.main-category-image-wrapper {
  position: relative;
  width: 280px;
  min-width: 280px;
  height: 280px;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.05),
    rgba(16, 185, 129, 0.05)
  );
  flex-shrink: 0;
}

.main-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.main-category:hover .main-category-image {
  transform: scale(1.1);
}

.main-category-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1) 0%,
    rgba(16, 185, 129, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.main-category:hover .main-category-image-overlay {
  opacity: 1;
}

/* Main Category Content */
.main-category-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.main-category-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.main-category-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 2px;
}

.main-category-text {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin: 0;
}

.main-category-text p {
  margin-bottom: 0.75rem;
}

.main-category-text p:last-child {
  margin-bottom: 0;
}

/* View Products Button */
.main-category-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.main-category-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-600)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-category-btn span {
  position: relative;
  z-index: 1;
}

.main-category-btn i {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.main-category:hover .main-category-btn {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.4);
}

.main-category-btn:hover::before {
  opacity: 1;
}

.main-category-btn:hover i {
  transform: translateX(3px);
}

/* ========================================
   3. CATEGORY CARDS CONTAINER
   ======================================== */
.category-cards-container {
  position: relative;
}

/* ========================================
   4. CATEGORY CARD STYLING
   ======================================== */
.category-card-item {
  animation: fadeInUp 0.6s ease-out backwards;
  transition: all 0.3s ease;
}

/* Stagger animation */
.category-card-item:nth-child(1) {
  animation-delay: 0.1s;
}
.category-card-item:nth-child(2) {
  animation-delay: 0.15s;
}
.category-card-item:nth-child(3) {
  animation-delay: 0.2s;
}
.category-card-item:nth-child(4) {
  animation-delay: 0.25s;
}
.category-card-item:nth-child(5) {
  animation-delay: 0.3s;
}
.category-card-item:nth-child(6) {
  animation-delay: 0.35s;
}
.category-card-item:nth-child(7) {
  animation-delay: 0.4s;
}
.category-card-item:nth-child(8) {
  animation-delay: 0.45s;
}

.p-category-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  cursor: pointer;
}

.p-category-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
  min-height: 200px;
}

.p-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  z-index: 10;
}

.p-category-card:hover::before {
  transform: scaleY(1);
}

.p-category-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(20, 184, 166, 0.18);
}

/* ========================================
   5. CATEGORY IMAGE
   ======================================== */
.category-image-wrapper {
  position: relative;
  width: 180px;
  min-width: 180px;
  height: 100%;
  overflow: hidden;
  background: var(--color-gray-50);
  flex-shrink: 0;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.p-category-card:hover .category-image {
  transform: scale(1.15);
}

.category-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1) 0%,
    rgba(16, 185, 129, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.p-category-card:hover .category-image-overlay {
  opacity: 1;
}

/* ========================================
   6. CATEGORY CONTENT
   ======================================== */
.category-content {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.p-category-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.p-category-card:hover .p-category-title {
  color: var(--color-teal-600);
}

.category-description {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-description p {
  margin-bottom: 0;
}

/* ========================================
   7. VIEW DETAILS BUTTON
   ======================================== */
.category-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.category-view-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-600)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-view-btn span {
  position: relative;
  z-index: 1;
}

.category-view-btn i {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.p-category-card:hover .category-view-btn {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.p-category-card:hover .category-view-btn::before {
  opacity: 1;
}

.p-category-card:hover .category-view-btn i {
  transform: translateX(3px);
}

/* ========================================
   8. HIDDEN CARDS (MOBILE VIEW MORE)
   ======================================== */
.hidden-card {
  display: none;
}

/* Show cards when expanded */
.hidden-card.show-card {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

/* ========================================
   9. VIEW MORE BUTTON
   ======================================== */
.view-more-container {
  text-align: center;
  margin-top: 2.5rem;
  display: none; /* Hidden by default, shown on mobile */
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.view-more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500),
    var(--color-teal-500)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.35);
}

.view-more-btn:hover::before {
  opacity: 1;
}

.view-more-text {
  position: relative;
  z-index: 1;
}

.view-more-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.view-more-btn.expanded .view-more-icon {
  transform: rotate(180deg);
}

.view-more-btn:active {
  transform: translateY(-1px);
}

/* ========================================
   10. BACK TO TOP BUTTON
   ======================================== */
.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.back-to-top-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(
    135deg,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.5);
}

.back-to-top-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.back-to-top-btn i {
  transition: transform 0.3s ease;
  font-size: 1.125rem;
}

.back-to-top-btn:hover i {
  transform: translateY(-3px);
  animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ========================================
   11. RESPONSIVE STYLES
   ======================================== */

/* Large Tablets and Below */
@media (max-width: 991.98px) {
  .view-more-container {
    display: block;
  }

  .hidden-card {
    display: none;
  }

  .main-category {
    gap: 2rem;
    padding: 2rem;
  }

  .main-category-image-wrapper {
    width: 220px;
    min-width: 220px;
    height: 220px;
  }

  .main-category-title {
    font-size: 2rem;
  }

  .main-category-text {
    font-size: 1rem;
  }

  .main-category-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
  }

  .category-image-wrapper {
    width: 160px;
    min-width: 160px;
  }

  .category-content {
    padding: 1.5rem 1.25rem;
  }

  .p-category-title {
    font-size: 1.25rem;
  }

  .category-description {
    font-size: 0.875rem;
    -webkit-line-clamp: 2;
  }
}

/* Large Tablets */
@media (max-width: 991.98px) {
  .categories-grid-section {
    padding: 3rem 0;
  }

  .main-category {
    margin-bottom: 2.5rem;
  }

  .main-category-title {
    font-size: 2rem;
  }

  .main-category-text {
    font-size: 1rem;
  }
}

/* Tablets */
@media (max-width: 767.98px) {
  .categories-grid-section {
    padding: 2.5rem 0;
  }

  .main-category {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .main-category::before {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
    right: 0;
    bottom: auto;
    transform: scaleX(0);
    transform-origin: left;
  }

  .main-category:hover::before {
    transform: scaleX(1);
  }

  .main-category:hover {
    transform: translateY(-5px);
  }

  .main-category-image-wrapper {
    width: 200px;
    min-width: 200px;
    height: 200px;
  }

  .main-category-content {
    text-align: center;
    align-items: center;
  }

  .main-category-title {
    font-size: 1.75rem;
  }

  .main-category-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
  }

  .main-category-text {
    font-size: 1rem;
  }

  .main-category-btn {
    align-self: center;
  }

  .category-image-wrapper {
    width: 140px;
    min-width: 140px;
  }

  .category-content {
    padding: 1.25rem 1rem;
  }

  .p-category-title {
    font-size: 1.125rem;
  }

  .category-description {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    -webkit-line-clamp: 2;
  }

  .category-view-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .back-to-top-btn {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.125rem;
    bottom: 1.5rem;
    right: 1.5rem;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.5);
  }

  .back-to-top-btn i {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .categories-grid-section {
    padding: 2rem 0;
  }

  .categories-grid-section:last-of-type {
    padding-bottom: 4rem;
  }

  .main-category {
    padding: 1.5rem 1.25rem;
    margin-bottom: 1.75rem;
    gap: 1.25rem;
  }

  .main-category-image-wrapper {
    width: 180px;
    min-width: 180px;
    height: 180px;
  }

  .main-category-title {
    font-size: 1.5rem;
  }

  .main-category-text {
    font-size: 0.9375rem;
  }

  .main-category-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    justify-content: center;
  }

  .p-category-card {
    border-radius: 1rem;
    flex-direction: column;
    min-height: auto;
  }

  .p-category-card::before {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
    right: 0;
    bottom: auto;
    transform: scaleX(0);
    transform-origin: left;
  }

  .p-category-card:hover::before {
    transform: scaleX(1);
  }

  .p-category-card:hover {
    transform: translateY(-5px);
  }

  .category-image-wrapper {
    width: 100%;
    min-width: 100%;
    height: 200px;
  }

  .category-content {
    padding: 1.25rem 1rem;
  }

  .p-category-title {
    font-size: 1.125rem;
  }

  .category-description {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    -webkit-line-clamp: 3;
  }

  .category-view-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .view-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .back-to-top-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
    bottom: 1.25rem;
    right: 1.25rem;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.6);
  }

  .back-to-top-btn i {
    font-size: 0.9375rem;
  }

  .back-to-top-btn::before {
    inset: -3px;
  }
}

/* Extra Small Mobile */
@media (max-width: 374.98px) {
  .main-category-title {
    font-size: 1.375rem;
  }

  .main-category-image-wrapper {
    width: 160px;
    min-width: 160px;
    height: 160px;
  }

  .p-category-title {
    font-size: 1rem;
  }

  .view-more-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Desktop - Show all cards */
@media (min-width: 992px) {
  .hidden-card {
    display: block !important;
  }

  .view-more-container {
    display: none !important;
  }
}

/* ========================================
   12. EMPTY STATE (NO CATEGORIES)
   ======================================== */
.categories-empty-state {
  text-align: center;
  padding: 5rem 2rem;
}

.categories-empty-icon {
  font-size: 4rem;
  color: var(--color-gray-300);
  margin-bottom: 1.5rem;
}

.categories-empty-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
}

.categories-empty-text {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   13. LOADING STATE (OPTIONAL)
   ======================================== */
.category-card-skeleton {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(
    90deg,
    var(--color-gray-100) 0%,
    var(--color-gray-200) 50%,
    var(--color-gray-100) 100%
  );
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s ease-in-out infinite;
}

.skeleton-content {
  padding: 1.75rem 1.5rem;
}

.skeleton-title {
  height: 1.5rem;
  background: linear-gradient(
    90deg,
    var(--color-gray-100) 0%,
    var(--color-gray-200) 50%,
    var(--color-gray-100) 100%
  );
  background-size: 200% 100%;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  animation: skeletonLoading 1.5s ease-in-out infinite;
}

.skeleton-description {
  height: 1rem;
  background: linear-gradient(
    90deg,
    var(--color-gray-100) 0%,
    var(--color-gray-200) 50%,
    var(--color-gray-100) 100%
  );
  background-size: 200% 100%;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  animation: skeletonLoading 1.5s ease-in-out infinite;
}

@keyframes skeletonLoading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ========================================
   14. ACCESSIBILITY
   ======================================== */
.p-category-card-link:focus-visible {
  outline: 3px solid var(--color-teal-500);
  outline-offset: 3px;
  border-radius: 1.25rem;
}

.view-more-btn:focus-visible,
.back-to-top-btn:focus-visible {
  outline: 3px solid var(--color-teal-500);
  outline-offset: 3px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .category-card-item,
  .main-category,
  .p-category-card,
  .category-image,
  .category-action-btn,
  .view-more-btn,
  .back-to-top-btn {
    animation: none !important;
    transition: none !important;
  }
}

/* ========================================
   15. PRINT STYLES
   ======================================== */
@media print {
  .view-more-container,
  .back-to-top-btn {
    display: none;
  }

  .categories-grid-section {
    background: white !important;
    padding: 2rem 0;
  }

  .hidden-card {
    display: block !important;
  }

  .p-category-card {
    box-shadow: none;
    border: 1px solid var(--color-gray-300);
    page-break-inside: avoid;
  }

  .category-action-btn {
    display: none;
  }
}

/* ========================================
   16. HOVER EFFECTS ENHANCEMENT
   ======================================== */
@media (hover: hover) {
  .p-category-card {
    cursor: pointer;
  }
}

/* Touch devices - no hover effects */
@media (hover: none) {
  .p-category-card:hover {
    transform: none;
  }

  .p-category-card:active {
    transform: scale(0.98);
  }
}

/* ============================================
   SVASTHA ONLINE - CHECKOUT PAGE STYLES
   ============================================ */

/* Note: This file uses the same CSS variables from main style.css
   No need to redeclare :root variables */

/* ============================================
   CHECKOUT HERO SECTION
   ============================================ */
.contact-hero-section {
  padding: 4rem 0 3rem;
  background: linear-gradient(
    135deg,
    var(--color-gray-50) 0%,
    var(--color-white) 100%
  );
  position: relative;
  overflow: hidden;
}

.contact-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(20, 184, 166, 0.05));
  border-radius: 0 0 0 100%;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    to right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: var(--color-white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-accent {
  background: linear-gradient(
    to right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CHECKOUT CONTAINER & LAYOUT
   ============================================ */
.checkout-container {
  padding: 3rem 0 5rem;
  background: linear-gradient(
    to bottom,
    var(--color-white),
    var(--color-gray-50)
  );
}

.checkout-form-wrapper {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out;
}

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

/* ============================================
   SECTION HEADINGS
   ============================================ */
.checkout-form-wrapper h3,
.checkout-form-wrapper h4 {
  color: var(--color-gray-900);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-gray-100);
}

.checkout-form-wrapper h3 {
  font-size: 1.75rem;
}

.checkout-form-wrapper h4 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

/* ============================================
   FORM LABELS & INPUTS
   ============================================ */
.form-label {
  color: var(--color-gray-900);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
}

.form-label sup {
  color: var(--color-red-500);
  margin-left: 2px;
}

.form-control,
.form-select {
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--color-gray-900);
  background-color: var(--color-white);
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-teal-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
  outline: none;
  background-color: var(--color-white);
}

.form-control:hover,
.form-select:hover {
  border-color: var(--color-gray-300);
}

.form-control::placeholder {
  color: var(--color-gray-400);
}

.form-control[readonly] {
  background-color: var(--color-gray-50);
  cursor: not-allowed;
}

/* Textarea */
.form-control[name="order_notes"] {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* ============================================
   SELECT DROPDOWN STYLING
   ============================================ */
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234b5563' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 3rem;
}

.form-select:disabled {
  background-color: var(--color-gray-100);
  cursor: not-allowed;
  opacity: 0.7;
}

/* ============================================
   CHECKBOX & RADIO BUTTONS
   ============================================ */
.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--color-gray-300);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-check-input:checked {
  background-color: var(--color-teal-500);
  border-color: var(--color-teal-500);
}

.form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
  outline: none;
}

.form-check-label {
  color: var(--color-gray-700);
  font-weight: 500;
  cursor: pointer;
  margin-left: 0.5rem;
}

/* Radio buttons for shipping */
.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input.bg-primary {
  background-color: transparent !important;
}

.form-check-input.bg-primary:checked {
  background-color: var(--color-teal-500) !important;
}

/* ============================================
   SHIPPING ADDRESS TOGGLE
   ============================================ */
#shippingAddressSection {
  background: var(--color-gray-50);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 1.5rem;
  border: 2px dashed var(--color-gray-200);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    padding: 0 2rem;
  }
  to {
    opacity: 1;
    max-height: 2000px;
    padding: 2rem;
  }
}

/* ============================================
   ORDER SUMMARY CARD
   ============================================ */
.order-summary-card {
  background: linear-gradient(135deg, #62a794 0%, #295046 100%) !important;
  border-radius: 20px !important;
  padding: 2.5rem !important;
  box-shadow: 0 20px 60px rgba(80, 143, 126, 0.3);
  position: sticky;
  top: 130px;
}

/* Checkout Table */
.checkout-table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: separate;
  border-spacing: 0;
}

.checkout-table thead {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.checkout-table thead th {
  color: var(--color-white);
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.checkout-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.checkout-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.checkout-table tbody td {
  padding: 1.25rem 1rem;
  color: var(--color-white);
  font-size: 0.95rem;
  vertical-align: middle;
}

.checkout-table tbody td img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.checkout-table .text-right {
  text-align: right;
  font-weight: 600;
  font-size: 1.05rem;
}

.checkout-table .section-title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
}

.checkout-table .total-row {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.checkout-table .total-row td {
  padding: 1.5rem 1rem;
  font-size: 1.25rem;
  color: var(--color-white);
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   MOBILE CART CARDS
   ============================================ */
.desktop-hide-checkout-table {
  display: none;
}

.cart-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cart-details {
  flex: 1;
  color: var(--color-white);
}

.cart-details strong {
  font-weight: 600;
  color: var(--color-white);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 600;
}

/* ============================================
   SHIPPING OPTIONS
   ============================================ */
.shipping-option-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.shipping-option-wrapper:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.shipping-option:checked + label {
  color: var(--color-white);
  font-weight: 600;
}

/* ============================================
   PAYMENT METHODS
   ============================================ */
.payment-method-section {
  margin-top: 2rem;
}

.payment-method-section h4 {
  color: var(--color-white) !important;
  border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}

.payment-method-option {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.payment-method-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* .payment-method-option .form-check-input:checked {
  background-color: var(--color-white);
  border-color: var(--color-white);
} */

.scanner-img {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.scanner-img img {
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* Credit Card Form Fields */
.scanner-img .form-control {
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  margin-bottom: 1rem;
}

/* ============================================
   PLACE ORDER BUTTON
   ============================================ */
.place-order-btn {
  padding: 1.125rem 3rem;
  background: linear-gradient(
    to right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border: none !important;
  border-radius: 50px;
  color: var(--color-white) !important;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
}

.place-order-btn:hover {
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.5);
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(
    to right,
    var(--color-teal-600),
    var(--color-emerald-500)
  );
  color: var(--color-white) !important;
}

.place-order-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 5px 20px rgba(20, 184, 166, 0.4);
}

.place-order-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.3);
}

/* ============================================
   ALERT MESSAGES
   ============================================ */
.alert {
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  border: none;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.alert-success {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: var(--color-gray-900);
  border-left: 4px solid var(--color-emerald-500);
}

.alert-danger {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: var(--color-gray-900);
  border-left: 4px solid var(--color-red-500);
}

.alert ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

/* ============================================
   HORIZONTAL DIVIDER
   ============================================ */
.checkout-form-wrapper hr {
  border: none;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-gray-200),
    transparent
  );
  margin: 2.5rem 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Desktop - Hide mobile cart */
@media (min-width: 768px) {
  .desktop-hide-checkout-table {
    display: none !important;
  }

  .checkout-table {
    display: table !important;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }

  .checkout-form-wrapper {
    padding: 2rem;
  }

  .order-summary-card {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .contact-hero-section {
    padding: 2.5rem 0 2rem;
  }

  .contact-hero-title {
    font-size: 2rem;
  }

  .contact-hero-subtitle {
    font-size: 1rem;
  }

  .checkout-container {
    padding: 2rem 0 3rem;
  }

  .checkout-form-wrapper {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .checkout-form-wrapper h3 {
    font-size: 1.5rem;
  }

  .checkout-form-wrapper h4 {
    font-size: 1.25rem;
  }

  .form-control,
  .form-select {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .order-summary-card {
    padding: 1.75rem !important;
    border-radius: 16px !important;
  }

  /* Show mobile cart, hide desktop table */
  .checkout-table {
    display: none !important;
  }

  .desktop-hide-checkout-table {
    display: block !important;
  }

  .cart-card {
    flex-direction: row;
    padding: 1.25rem;
  }

  .cart-img {
    width: 70px;
    height: 70px;
  }

  .place-order-btn {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  #shippingAddressSection {
    padding: 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .section-badge {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }

  .contact-hero-title {
    font-size: 1.75rem;
  }

  .checkout-form-wrapper {
    padding: 1.25rem;
  }

  .order-summary-card {
    padding: 1.5rem !important;
  }

  .form-label {
    font-size: 0.875rem;
  }

  .cart-card {
    flex-direction: column;
    text-align: center;
  }

  .cart-img {
    margin: 0 auto;
  }

  .place-order-btn {
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
  }
}

/* ============================================
   LOADING STATE
   ============================================ */
.place-order-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.place-order-btn.loading {
  position: relative;
  color: transparent !important;
}

.place-order-btn.loading::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  margin-left: -12px;
  margin-top: -12px;
  border: 3px solid var(--color-white);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.8s linear infinite;
}

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

/* ============================================
   FORM VALIDATION STATES
   ============================================ */
/* .form-control:invalid:not(:placeholder-shown) {
  border-color: var(--color-red-500);
}

.form-control:valid:not(:placeholder-shown) {
  border-color: var(--color-emerald-500);
}

.form-control:invalid:not(:placeholder-shown):focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-control:valid:not(:placeholder-shown):focus {
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
} */

/* ============================================
   ACCESSIBILITY
   ============================================ */
.form-control:focus-visible,
.form-select:focus-visible,
.form-check-input:focus-visible,
.place-order-btn:focus-visible {
  outline: 3px solid var(--color-teal-500);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .checkout-form-wrapper,
  .form-control,
  .form-select,
  .place-order-btn,
  .shipping-option-wrapper,
  .payment-method-option {
    animation: none;
    transition: none;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-white {
  color: var(--color-white) !important;
}

.text-dark {
  color: var(--color-gray-900) !important;
}

.text-danger {
  color: var(--color-red-500) !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */
html {
  scroll-behavior: smooth;
}

/* ============================================
   ADDITIONAL POLISH
   ============================================ */

/* Add subtle animation to form on focus */
.form-control:focus,
.form-select:focus {
  animation: inputPulse 0.3s ease-out;
}

@keyframes inputPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}

/* Hover effect on labels */
/* .form-label:hover {
  color: var(--color-teal-600);
  transition: color 0.2s ease;
} */

/* Payment method selection highlight */
.payment-method-option:has(.form-check-input:checked) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Shipping option selection highlight */
.shipping-option-wrapper:has(.shipping-option:checked) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   404 ERROR PAGE STYLES
   ======================================== */

/* Main Section */
.error-404-section {
  min-height: calc(100vh - 114px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
.error-bg-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.error-bg-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.15),
    transparent 70%
  );
  top: -100px;
  right: 10%;
  animation: float-1 20s ease-in-out infinite;
}

.error-bg-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.12),
    transparent 70%
  );
  bottom: -150px;
  left: -100px;
  animation: float-2 25s ease-in-out infinite;
}

.error-bg-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent 70%);
  top: 40%;
  right: 5%;
  animation: float-3 15s ease-in-out infinite;
}

@keyframes float-1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(30px, -30px);
  }
  50% {
    transform: translate(0, -60px);
  }
  75% {
    transform: translate(-30px, -30px);
  }
}

@keyframes float-2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-40px, 40px);
  }
  50% {
    transform: translate(-80px, 0);
  }
  75% {
    transform: translate(-40px, -40px);
  }
}

@keyframes float-3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

/* Inner Container */
.error-404-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Card */
.error-404-card {
  background: var(--color-white);
  border-radius: 1.5rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--color-teal-600);
  position: relative;
  overflow: visible;
  animation: fadeInUp 0.8s ease-out;
}

/* Icon Wrapper with Animation */
.error-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.error-icon-bg {
  position: absolute;
  inset: 0;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  animation: pulse-bg 2s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}

.error-icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-teal-600);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
  z-index: 2;
  animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.error-icon i {
  font-size: 3.5rem;
  color: var(--color-white);
}

/* 404 Code - Single Line */
.error-code {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--color-teal-600);
  letter-spacing: 0.5rem;
  text-shadow: 0 2px 4px rgba(20, 184, 166, 0.1);
  animation: fadeInScale 0.8s ease-out 0.2s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Title */
.error-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Description Text */
.error-text {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Suggestions Box - Improved */
.error-suggestions {
  background: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1.75rem 2rem;
  margin: 0 auto 2.5rem;
  max-width: 550px;
  border: 1px solid #e9ecef;
  text-align: left;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.suggestions-title {
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 1rem;
  font-size: 1rem;
  text-align: center;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suggestions-list li {
  color: var(--color-gray-700);
  padding: 0.625rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid #e9ecef;
}

.suggestions-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.suggestions-list li:first-child {
  padding-top: 0;
}

/* Action Buttons */
.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.btn-404-primary,
.btn-404-secondary {
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  min-width: 180px;
}

.btn-404-primary {
  background: var(--color-teal-600);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.25);
}

.btn-404-primary:hover {
  background: var(--color-teal-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 184, 166, 0.35);
  color: var(--color-white);
}

.btn-404-secondary {
  background: var(--color-white);
  color: var(--color-teal-600);
  border-color: var(--color-teal-600);
}

.btn-404-secondary:hover {
  background: var(--color-teal-600);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.25);
}

/* Help Section */
.error-help {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray-200);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.error-help p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  margin: 0;
}

.help-link {
  color: var(--color-teal-600);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.help-link:hover {
  color: var(--color-teal-700);
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .error-404-section {
    padding: 3rem 0;
  }

  .error-404-card {
    padding: 3rem 2rem;
  }

  .error-code {
    font-size: 6rem;
  }

  .error-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .error-404-section {
    padding: 2rem 0;
  }

  .error-404-card {
    padding: 2.5rem 1.5rem;
  }

  .error-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .error-icon i {
    font-size: 2.75rem;
  }

  .error-code {
    font-size: 5rem;
    letter-spacing: 0.3rem;
  }

  .error-title {
    font-size: 1.5rem;
  }

  .error-text {
    font-size: 1rem;
  }

  .error-suggestions {
    padding: 1.5rem 1.25rem;
  }

  .error-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-404-primary,
  .btn-404-secondary {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .error-404-card {
    padding: 2rem 1.25rem;
  }

  .error-icon-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
  }

  .error-icon i {
    font-size: 2.25rem;
  }

  .error-code {
    font-size: 4rem;
    letter-spacing: 0.25rem;
  }

  .error-title {
    font-size: 1.375rem;
  }

  .error-suggestions {
    padding: 1.25rem 1rem;
  }

  .suggestions-list li {
    font-size: 0.875rem;
  }
}

/* Animation for entire card */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print Styles */
@media print {
  .error-404-section {
    background: var(--color-white);
    min-height: auto;
  }

  .error-bg-decoration {
    display: none;
  }

  .error-404-card {
    box-shadow: none;
    border: 1px solid var(--color-gray-300);
  }

  .error-actions {
    display: none;
  }
}

/* ============================================
   SVASTHA ONLINE - ORDER SUCCESS PAGE STYLES
   ============================================ */

/* Note: This file uses CSS variables from main style.css
   No duplication of base styles */

/* ============================================
   SUCCESS SECTION
   ============================================ */
.order-success-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(
    135deg,
    var(--color-gray-50) 0%,
    var(--color-white) 50%,
    var(--color-gray-50) 100%
  );
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.order-success-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.order-success-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

/* ============================================
   SUCCESS CARD
   ============================================ */
.success-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  animation: successSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid var(--color-gray-100);
  max-width: 800px;
  margin: 0 auto;
}

@keyframes successSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    to right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border-radius: 24px 24px 0 0;
}

/* ============================================
   SUCCESS ICON / CHECKMARK
   ============================================ */
.success-icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  position: relative;
  animation: successIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes successIconPop {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500) 0%,
    var(--color-teal-500) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  position: relative;
}

.success-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500) 0%,
    var(--color-teal-500) 100%
  );
  opacity: 0.3;
  animation: successPulse 2s ease-out infinite;
}

@keyframes successPulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.success-icon i {
  color: var(--color-white);
  font-size: 3.5rem;
  animation: checkmarkDraw 0.5s ease-out 0.5s both;
}

@keyframes checkmarkDraw {
  from {
    opacity: 0;
    transform: scale(0) rotate(-45deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* ============================================
   SUCCESS HEADING & TEXT
   ============================================ */
.success-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.success-title .highlight {
  background: linear-gradient(
    to right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

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

/* ============================================
   ORDER DETAILS BOX
   ============================================ */
.order-details-box {
  background: linear-gradient(
    135deg,
    var(--color-gray-50) 0%,
    var(--color-white) 100%
  );
  border: 2px solid var(--color-gray-100);
  border-radius: 16px;
  padding: 2rem;
  margin: 2.5rem 0;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.order-details-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-emerald-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.order-details-box h3 i {
  color: var(--color-emerald-500);
  font-size: 1.75rem;
}

/* ============================================
   ORDER INFO LIST
   ============================================ */
.order-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--color-white);
  border-radius: 12px;
  border: 2px solid var(--color-gray-100);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.order-info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.order-info-item:hover {
  border-color: var(--color-emerald-500);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
  transform: translateX(5px);
}

.order-info-item:hover::before {
  transform: scaleY(1);
}

.order-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--color-emerald-500) 0%,
    var(--color-teal-500) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.order-info-icon i {
  color: var(--color-white);
  font-size: 1.25rem;
}

.order-info-content {
  flex: 1;
}

.order-info-label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.order-info-value {
  font-size: 1.125rem;
  color: var(--color-gray-900);
  font-weight: 600;
  line-height: 1.4;
}

.order-info-value a {
  color: var(--color-emerald-500);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.order-info-value a:hover {
  color: var(--color-emerald-600);
  transform: translateX(3px);
}

.order-info-value a i {
  font-size: 1rem;
}

/* ============================================
   ACTION BUTTONS
   ============================================ */
.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.7s both;
}

.btn-primary-success {
  padding: 1rem 2.5rem;
  background: linear-gradient(
    to right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  border: none;
  border-radius: 50px;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary-success:hover {
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(
    to right,
    var(--color-teal-600),
    var(--color-emerald-600)
  );
  color: var(--color-white);
}

.btn-secondary-success {
  padding: 1rem 2.5rem;
  background: var(--color-white);
  border: 2px solid var(--color-gray-300);
  border-radius: 50px;
  color: var(--color-gray-700);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-secondary-success:hover {
  background: var(--color-gray-50);
  border-color: var(--color-emerald-500);
  color: var(--color-emerald-500);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ============================================
   EMAIL CONFIRMATION BADGE
   ============================================ */
.email-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 50px;
  margin: 0 auto;
  color: var(--color-blue-800);
  font-size: 0.95rem;
  font-weight: 500;
  animation: fadeInUp 0.6s ease-out 0.8s both;
  border: 2px solid var(--color-blue-500);
}

.email-badge i {
  color: var(--color-blue-500);
  font-size: 1.25rem;
}

/* ============================================
   CONFETTI ANIMATION (OPTIONAL)
   ============================================ */
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-emerald-500);
  animation: confettiFall 3s linear infinite;
  opacity: 0;
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(-100vh) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 991.98px) {
  .order-success-section {
    padding: 3rem 0 4rem;
  }

  .success-card {
    padding: 2.5rem;
  }

  .success-title {
    font-size: 2rem;
  }

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .success-icon i {
    font-size: 3rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .order-success-section {
    padding: 2rem 0 3rem;
  }

  .success-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .success-title {
    font-size: 1.75rem;
  }

  .success-subtitle {
    font-size: 1rem;
  }

  .success-icon-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
  }

  .success-icon i {
    font-size: 2.5rem;
  }

  .order-details-box {
    padding: 1.5rem;
  }

  .order-details-box h3 {
    font-size: 1.25rem;
  }

  .order-info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .order-info-icon {
    margin: 0 auto;
  }

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

  .btn-primary-success,
  .btn-secondary-success {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .success-card {
    padding: 1.5rem 1rem;
  }

  .success-title {
    font-size: 1.5rem;
  }

  .success-subtitle {
    font-size: 0.95rem;
  }

  .success-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .success-icon i {
    font-size: 2rem;
  }

  .order-details-box {
    padding: 1.25rem;
  }

  .order-info-item {
    padding: 1rem;
  }

  .order-info-icon {
    width: 40px;
    height: 40px;
  }

  .order-info-icon i {
    font-size: 1rem;
  }

  .order-info-label {
    font-size: 0.75rem;
  }

  .order-info-value {
    font-size: 1rem;
  }

  .email-badge {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .breadcrumbs,
  .success-actions,
  .email-badge {
    display: none !important;
  }

  .order-success-section {
    background: var(--color-white);
    padding: 0;
  }

  .success-card {
    box-shadow: none;
    border: 1px solid var(--color-gray-300);
  }

  .success-icon {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.btn-primary-success:focus-visible,
.btn-secondary-success:focus-visible,
.order-info-value a:focus-visible {
  outline: 3px solid var(--color-emerald-500);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .success-card,
  .success-icon-wrapper,
  .success-title,
  .success-subtitle,
  .order-details-box,
  .order-info-item,
  .success-actions,
  .email-badge,
  .success-icon::before,
  .confetti {
    animation: none;
    transition: none;
  }

  .order-success-section::before,
  .order-success-section::after {
    animation: none;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* ============================================
   ADDITIONAL POLISH
   ============================================ */

/* Shine effect on success icon */
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.success-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shine 3s ease-in-out 1s infinite;
}

/* Hover effect for order info items */
.order-info-item {
  cursor: default;
}

.order-info-item:last-child {
  margin-bottom: 0;
}

/* Success message animation */
@keyframes successGlow {
  0%,
  100% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
  }
}

.success-card {
  animation:
    successSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    successGlow 3s ease-in-out 1s infinite;
}

/* ============================================
   SVASTHA ONLINE - VIEW ORDER PAGE STYLES
   ============================================ */

/* Note: This file uses CSS variables from main style.css
   No duplication of base styles */

/* ============================================
   VIEW ORDER SECTION
   ============================================ */
.view-order-section {
  padding: 3rem 0 5rem;
  background: linear-gradient(
    to bottom,
    var(--color-gray-50),
    var(--color-white)
  );
  min-height: 70vh;
}

/* ============================================
   ORDER DETAILS CARD
   ============================================ */
.view-order-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease-out;
  border: 2px solid var(--color-gray-100);
}

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

/* ============================================
   ORDER HEADER
   ============================================ */
.order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--color-gray-100);
  flex-wrap: wrap;
  gap: 1rem;
}

.order-header-info {
  flex: 1;
}

.order-header-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.order-id-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    to right,
    var(--color-teal-500),
    var(--color-emerald-500)
  );
  color: var(--color-white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.order-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.order-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray-700);
  font-size: 0.95rem;
}

.order-meta-item i {
  color: var(--color-teal-500);
  font-size: 1.125rem;
}

.order-meta-item strong {
  color: var(--color-gray-900);
  font-weight: 600;
}

.order-status-badge {
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-status-badge.pending {
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-orange-500);
  border: 2px solid var(--color-orange-500);
}

.order-status-badge.processing {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-blue-500);
  border: 2px solid var(--color-blue-500);
}

.order-status-badge.completed {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-emerald-500);
  border: 2px solid var(--color-emerald-500);
}

.order-status-badge.cancelled {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-red-500);
  border: 2px solid var(--color-red-500);
}

.back-link {
  padding: 0.75rem 2rem;
  background: var(--color-white);
  border: 2px solid var(--color-gray-300);
  border-radius: 12px;
  color: var(--color-gray-700);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.back-link:hover {
  background: var(--color-gray-50);
  border-color: var(--color-teal-500);
  color: var(--color-teal-500);
  transform: translateX(-3px);
}

.back-link i {
  transition: transform 0.3s ease;
}

.back-link:hover i {
  transform: translateX(-3px);
}

/* ============================================
   ORDER DESCRIPTION
   ============================================ */
.order-description {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1) 0%,
    rgba(16, 185, 129, 0.1) 100%
  );
  border-left: 4px solid var(--color-teal-600);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  color: var(--color-gray-700);
  line-height: 1.7;
}

.order-description strong {
  color: var(--color-gray-900);
  font-weight: 600;
}

.order-description a {
  color: var(--color-teal-500);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.order-description a:hover {
  color: var(--color-teal-600);
  text-decoration: underline;
}

/* ============================================
   ORDER ITEMS TABLE
   ============================================ */
.order-table-wrapper {
  margin: 2.5rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.parameter-product {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-white);
}

.parameter-product thead {
  background: linear-gradient(
    135deg,
    var(--color-teal-500) 0%,
    var(--color-emerald-500) 100%
  );
}

.parameter-product thead th {
  color: var(--color-white);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.parameter-product thead th:first-child {
  border-radius: 0;
}

.parameter-product tbody tr {
  border-bottom: 1px solid var(--color-gray-100);
  transition: all 0.2s ease;
}

.parameter-product
  tbody
  tr:hover:not(.sub-total):not(.shipping-total):not(.final-total) {
  background-color: var(--color-gray-50);
  /* transform: scale(1.01); */
}

.parameter-product tbody td {
  padding: 1.25rem 1.5rem;
  color: var(--color-gray-700);
  font-size: 0.95rem;
}

.parameter-product tbody td:first-child {
  font-weight: 600;
  color: var(--color-gray-900);
}

/* Product name column */
.parameter-product tbody td:nth-child(2) {
  font-weight: 500;
  color: var(--color-gray-900);
}

/* Summary rows */
.parameter-product tbody tr.sub-total,
.parameter-product tbody tr.shipping-total {
  background: var(--color-gray-50);
  font-weight: 600;
}

.parameter-product tbody tr.sub-total td,
.parameter-product tbody tr.shipping-total td {
  color: var(--color-gray-800);
  border-top: 2px solid var(--color-gray-200);
}

.parameter-product tbody tr.final-total {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1) 0%,
    rgba(16, 185, 129, 0.1) 100%
  );
  font-weight: 700;
  font-size: 1.125rem;
}

.parameter-product tbody tr.final-total td {
  color: var(--color-gray-900);
  padding: 1.5rem;
  border-top: 3px solid var(--color-emerald-500);
}

.parameter-product tbody .text-lg-end {
  text-align: right;
}

/* ============================================
   ADDRESS CARDS
   ============================================ */
.address-section {
  margin-top: 3rem;
}

.order-address {
  background: linear-gradient(
    135deg,
    var(--color-gray-50) 0%,
    var(--color-white) 100%
  );
  border: 2px solid var(--color-gray-100);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.order-address:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-teal-500);
}

.order-address .dashboard-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-emerald-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.order-address .dashboard-title i {
  color: var(--color-emerald-500);
  font-size: 1.75rem;
}

.order-address p {
  color: var(--color-gray-700);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.order-address p:first-of-type {
  font-weight: 600;
  color: var(--color-gray-900);
  font-size: 1.05rem;
}

.order-address .text-muted {
  color: var(--color-gray-400);
  font-style: italic;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-emerald-500);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-heading i {
  color: var(--color-emerald-500);
  font-size: 2rem;
}

/* ============================================
   MOBILE PRODUCT CARDS (HIDDEN ON DESKTOP)
   ============================================ */
.mobile-product-list {
  display: none;
}

.mobile-product-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-100);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-product-card .product-name {
  font-weight: 600;
  color: var(--color-gray-900);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.mobile-product-card .product-detail {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.mobile-product-card .product-detail:last-child {
  border-bottom: none;
}

.mobile-product-card .product-detail .label {
  color: var(--color-gray-600);
  font-size: 0.875rem;
}

.mobile-product-card .product-detail .value {
  color: var(--color-gray-900);
  font-weight: 600;
}

.mobile-summary-card {
  background: linear-gradient(
    135deg,
    var(--color-gray-50) 0%,
    var(--color-white) 100%
  );
  border: 2px solid var(--color-gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.mobile-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.mobile-summary-row:last-child {
  border-bottom: none;
  border-top: 3px solid var(--color-emerald-500);
  padding-top: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-gray-900);
}

.mobile-summary-row .label {
  color: var(--color-gray-700);
}

.mobile-summary-row .value {
  font-weight: 600;
  color: var(--color-gray-900);
}

/* ============================================
   ORDER STATUS HISTORY TABLE
   ============================================ */
.order-history-section {
  margin-top: 3rem;
}

.order-history-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-emerald-500);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.order-history-heading i {
  color: var(--color-emerald-500);
  font-size: 2rem;
}

.history-table-wrapper {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--color-gray-100);
}

.order-history-table {
  width: 100%;
  border-collapse: collapse;
}

.order-history-table thead {
  background: linear-gradient(
    135deg,
    var(--color-teal-500) 0%,
    var(--color-emerald-500) 100%
  );
}

.order-history-table thead th {
  color: var(--color-gray-900);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--color-gray-200);
}

.order-history-table tbody tr {
  border-bottom: 1px solid var(--color-gray-100);
  transition: all 0.2s ease;
}

.order-history-table tbody tr:last-child {
  border-bottom: none;
}

.order-history-table tbody tr:hover {
  background-color: var(--color-gray-50);
}

.order-history-table tbody td {
  padding: 1.25rem 1.5rem;
  color: var(--color-gray-700);
  font-size: 0.95rem;
  vertical-align: top;
}

.order-history-table tbody td:first-child {
  font-weight: 600;
  color: var(--color-gray-900);
  white-space: nowrap;
}

/* Status badges in history */
.history-status-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: capitalize;
  white-space: nowrap;
}

.history-status-badge.order_created {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-blue-500);
  border: 1px solid var(--color-blue-500);
}

.history-status-badge.payment_failed {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-red-500);
  border: 1px solid var(--color-red-500);
}

.history-status-badge.payment_completed,
.history-status-badge.payment_success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-emerald-500);
  border: 1px solid var(--color-emerald-500);
}

.history-status-badge.processing {
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-orange-500);
  border: 1px solid var(--color-orange-500);
}

.history-status-badge.shipped {
  background: rgba(168, 85, 247, 0.1);
  color: var(--color-purple-500);
  border: 1px solid var(--color-purple-500);
}

.history-status-badge.delivered,
.history-status-badge.completed {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-emerald-500);
  border: 1px solid var(--color-emerald-500);
}

.history-status-badge.cancelled {
  background: rgba(107, 114, 128, 0.1);
  color: var(--color-gray-600);
  border: 1px solid var(--color-gray-400);
}

/* Mobile view for history table */
.history-mobile-list {
  display: none;
}

.history-mobile-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-100);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.history-mobile-card .history-date {
  font-weight: 600;
  color: var(--color-gray-900);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.history-mobile-card .history-date i {
  color: var(--color-emerald-500);
}

.history-mobile-card .history-status {
  margin-bottom: 0.75rem;
}

.history-mobile-card .history-status-label {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 0.25rem;
}

.history-mobile-card .history-remarks {
  color: var(--color-gray-700);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 3px solid var(--color-emerald-500);
  margin-top: 0.75rem;
}

.history-mobile-card .history-remarks-label {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 991.98px) {
  .view-order-section {
    padding: 2rem 0 4rem;
  }

  .view-order-card {
    padding: 2.5rem 2rem;
  }

  .order-header h2 {
    font-size: 1.75rem;
  }

  .order-id-badge {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
  }

  .parameter-product thead th,
  .parameter-product tbody td {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .view-order-section {
    padding: 2rem 0 3rem;
  }

  .view-order-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .order-header {
    flex-direction: column;
    align-items: stretch;
  }

  .order-header h2 {
    font-size: 1.5rem;
  }

  .order-id-badge {
    font-size: 0.95rem;
    text-align: center;
  }

  .order-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .back-link {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
  }

  /* Hide desktop table, show mobile cards */
  .order-table-wrapper {
    display: none;
  }

  .mobile-product-list {
    display: block;
  }

  .order-description {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .order-address {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }

  .order-address .dashboard-title {
    font-size: 1.25rem;
  }

  .order-address p {
    font-size: 0.875rem;
  }

  /* Order history mobile view */
  .history-table-wrapper {
    display: none;
  }

  .history-mobile-list {
    display: block;
  }

  .order-history-heading {
    font-size: 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .view-order-card {
    padding: 1.5rem 1rem;
  }

  .order-header h2 {
    font-size: 1.35rem;
  }

  .order-id-badge {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .mobile-product-card {
    padding: 1rem;
  }

  .mobile-product-card .product-name {
    font-size: 1rem;
  }

  .order-address {
    padding: 1.25rem;
  }
}

/* ============================================
   TABLE RESPONSIVE WRAPPER
   ============================================ */
@media (min-width: 768px) {
  .order-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .parameter-product {
    min-width: 700px;
  }
}

/* ============================================
   ORDER STATUS HISTORY SECTION
   ============================================ */
.order-history-section {
  margin-top: 2rem;
  /* padding-top: 1rem; */
  /* border-top: 2px solid var(--color-gray-100); */
}

.order-history-table-wrapper {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--color-gray-100);
  scrollbar-width: thin;
  scrollbar-color: var(--color-teal-500) var(--color-gray-100);
  overflow: auto;
}

.order-history-table {
  width: 100%;
  border-collapse: collapse;
}

.order-history-table thead {
  background: linear-gradient(
    135deg,
    var(--color-teal-500) 0%,
    var(--color-emerald-500) 100%
  );
}

.order-history-table thead th {
  color: var(--color-white);
  font-weight: 600;
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--color-gray-200);
}

.order-history-table tbody tr {
  border-bottom: 1px solid var(--color-gray-100);
  transition: all 0.2s ease;
}

.order-history-table tbody tr:last-child {
  border-bottom: none;
}

.order-history-table tbody tr:hover {
  background-color: var(--color-gray-50);
}

.order-history-table tbody td {
  padding: 1.25rem 1.5rem;
  color: var(--color-gray-700);
  font-size: 0.95rem;
  vertical-align: top;
}

.order-history-table tbody td:first-child {
  font-weight: 500;
  color: var(--color-gray-900);
  white-space: nowrap;
}

.order-history-table tbody td:nth-child(3) {
  line-height: 1.6;
}

/* Status badges in history */
.history-status-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: capitalize;
  white-space: nowrap;
}

.history-status-badge.order_created {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-blue-500);
  border: 1px solid var(--color-blue-500);
}

.history-status-badge.payment_failed {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-red-500);
  border: 1px solid var(--color-red-500);
}

.history-status-badge.payment_completed {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-emerald-500);
  border: 1px solid var(--color-emerald-500);
}

.history-status-badge.processing {
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-orange-500);
  border: 1px solid var(--color-orange-500);
}

.history-status-badge.shipped {
  background: rgba(168, 85, 247, 0.1);
  color: var(--color-purple-500);
  border: 1px solid var(--color-purple-500);
}

.history-status-badge.delivered {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-emerald-500);
  border: 1px solid var(--color-emerald-500);
}

.history-status-badge.cancelled {
  background: rgba(107, 114, 128, 0.1);
  color: var(--color-gray-600);
  border: 1px solid var(--color-gray-400);
}

/* Mobile view for history */
.order-history-mobile {
  display: none;
}

.history-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-100);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.history-card:hover {
  border-color: var(--color-teal-500);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.history-card .history-date {
  font-weight: 600;
  color: var(--color-gray-900);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.history-card .history-date i {
  color: var(--color-emerald-500);
}

.history-card .history-status {
  margin-bottom: 0.75rem;
}

.history-card .history-remarks {
  color: var(--color-gray-700);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 1.75rem;
  border-left: 3px solid var(--color-gray-200);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .breadcrumbs,
  .back-link {
    display: none !important;
  }

  .view-order-section {
    background: var(--color-white);
    padding: 0;
  }

  .view-order-card {
    box-shadow: none;
    border: 1px solid var(--color-gray-300);
  }

  .order-address,
  .parameter-product,
  .order-history-table {
    page-break-inside: avoid;
  }

  .parameter-product thead,
  .order-history-table thead {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.back-link:focus-visible,
.order-description a:focus-visible {
  outline: 3px solid var(--color-teal-500);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .view-order-card,
  .order-address,
  .back-link,
  .parameter-product tbody tr {
    animation: none;
    transition: none;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center !important;
}

.text-lg-end {
  text-align: right !important;
}

.text-muted {
  color: var(--color-gray-400) !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

/* ============================================
   ADDITIONAL POLISH
   ============================================ */

/* Smooth scroll for table overflow */
.order-table-wrapper {
  scrollbar-width: thin;
  scrollbar-color: var(--color-teal-500) var(--color-gray-100);
}

.order-table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.order-table-wrapper::-webkit-scrollbar-track {
  background: var(--color-gray-100);
  border-radius: 4px;
}

.order-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-teal-500);
  border-radius: 4px;
}

.order-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--color-teal-600);
}

/* Product row highlight */
.parameter-product
  tbody
  tr:not(.sub-total):not(.shipping-total):not(.final-total) {
  cursor: default;
}

/* Empty state */
.empty-order {
  text-align: center;
  padding: 3rem;
  color: var(--color-gray-500);
}

.empty-order i {
  font-size: 4rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}
