<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * F-Trend Components CSS
 * Reusable component styles
 */

/* Buttons */
.btn-gradient {
  background: var(--primary-gradient);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-medium);
  color: white;
}

/* Cards */
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.floating-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px var(--shadow-light);
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--text-accent);
}

/* Navigation Components */
.navbar-brand-text {
  font-size: 2rem;
  font-weight: 900;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  position: relative;
}

.navbar-tagline {
  position: absolute;
  top: 1.2rem;
  left: 0;
  font-size: 0.5rem;
  letter-spacing: 3px;
  color: var(--text-accent);
  font-weight: 600;
  text-transform: uppercase;
}

/* Hero Components */
.hero-highlight {
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-number {
  background: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer Components */
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-2px);
}

/* Form Components */
.form-floating-label {
  position: relative;
}

.form-floating-label label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  pointer-events: none;
  color: var(--text-secondary);
}

.form-floating-label.has-value label,
.form-floating-label input:focus + label {
  top: 0;
  font-size: 0.8rem;
  color: var(--text-accent);
  background: white;
  padding: 0 0.25rem;
}

/* Loading States */
.btn-loading {
  position: relative;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Badge Components */
.badge-premium {
  background: var(--gold-gradient);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Alert Components */
.alert-fashion {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--text-accent);
  color: var(--text-primary);
}

/* Progress Components */
.progress-fashion {
  background: var(--border-color);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fashion .progress-bar {
  background: var(--primary-gradient);
  transition: width 0.6s ease;
}

/* Sidebar Components */
.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-widget .widget-title {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Testimonial Components */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--text-accent);
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
}

/* Service Card Components */
.service-premium-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-gradient);
  color: white;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Back to Top Button */
.back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px var(--shadow-light);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Newsletter Component */
.newsletter-form {
  position: relative;
}

.newsletter-form input {
  padding-right: 120px;
}

.newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  border-radius: calc(var(--bs-border-radius) - 2px);
}

/* Search Component */
.search-wrapper.search-focused {
  transform: scale(1.05);
}

.search-wrapper input {
  transition: all 0.3s ease;
}

.search-wrapper input:focus {
  box-shadow: 0 4px 15px var(--shadow-light);
  border-color: var(--text-accent);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}

.mobile-menu-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
}

/* Scroll Indicator */
.scroll-indicator {
  z-index: 10;
}

.scroll-down-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.scroll-mouse {
  width: 20px;
  height: 30px;
  border: 2px solid var(--text-secondary);
  border-radius: 15px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 2px;
  height: 6px;
  background: var(--text-secondary);
  border-radius: 1px;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}</pre></body></html>