        :root {
  --primary-color: #bb9653;
  --primary-dark: #644200;
  --primary-light: #efb245;
  --white: #ffffff;
 --tone-50: #fdf8f1;       /* Very light gold-tan */
  --tone-100: #faecd6;      /* Lightest tan */
  --tone-200: #f3d8ab;      /* Light gold */
  --tone-300: #e8c27e;      /* Mellow gold */
  --tone-600: #b2874a;      /* Warm brown-gold */
  --tone-800: #7e5a24;      /* Deep golden-brown */
  --tone-900: #4a320f;      /* Darkest brown */

  /* Primary-based shadows */
  --shadow: 0 10px 25px rgba(187, 150, 83, 0.15);
  --shadow-hover: 0 20px 40px rgba(187, 150, 83, 0.25);
  --shadow-lg: 0 25px 50px rgba(187, 150, 83, 0.3);
}
/* Breadcrumb */
.breadcrumb-container {
  background-color: var(--tone-50);
  padding: 16px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--tone-200);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tone-800);
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.breadcrumb-link:hover {
  color: var(--primary-dark);
}
.breadcrumb-separator {
  color: var(--tone-300);
}
.breadcrumb-current {
  font-weight: 600;
  color: var(--tone-800);
}
      /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, var(--tone-900), var(--tone-800))!important;
            color: white;
            padding: 40px 0 40px;
        }

        .footer-section h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #d9a649, #fba100);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-section ul li a:hover {
            color: var(--primary-light);
            transform: translateX(5px);
        }

        .footer-section ul li a i {
            margin-right: 10px;
            width: 20px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .footer-brand .logo-icon {
            width: 60px;
            height: 60px;
            font-size: 24px;
            margin-right: 15px;
        }

        .footer-brand .logo-text {
            font-size: 36px;
            color: white;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            color: #cbd5e1;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(187, 150, 83, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-light);
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .social-link:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow);
        }

        .footer-bottom {
            border-top: 1px solid rgba(99, 102, 241, 0.2);
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            color: #cbd5e1;
            margin: 0;
            font-size: 14px;
        }

        .footer-bottom .heart {
            color: #ef4444;
            animation: heartbeat 1.5s ease-in-out infinite;
        }

        @keyframes heartbeat {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
            }

            .footer-section {
                margin-bottom: 30px;
            }

            .social-links {
                justify-content: center;
            }
        }