/* Flether Axo - Premium Italian Business Suit & Cashmere Overcoat Store */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --camel: #D97706;
  --camel-hover: #B45309;
  --camel-light: #FFFBEB;
  --camel-accent: #F59E0B;
  --espresso: #3F1F0E;
  --espresso-dark: #241006;
  --espresso-light: #592D17;
  --ivory: #FAF8F5;
  --ivory-card: #FFFFFF;
  --anthracite: #0F172A;
  --anthracite-light: #1E293B;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --border-dark: #334155;
  --gold-accent: #D4AF37;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--anthracite);
}

/* Typography Utilities */
.text-camel { color: var(--camel); }
.text-espresso { color: var(--espresso); }
.text-gold { color: var(--gold-accent); }

/* Layout Structure */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-bg-dark {
  background-color: var(--anthracite);
  color: var(--ivory);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3 {
  color: var(--ivory);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .subtitle {
  font-family: var(--font-body);
  color: var(--camel);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--camel);
  margin: 12px auto 0;
}

/* Announcement Top Bar */
.top-bar {
  background-color: var(--espresso-dark);
  color: var(--ivory);
  font-size: 0.825rem;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}

.top-bar span {
  color: var(--camel);
  font-weight: 600;
}

/* Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: 0.1em;
}

.brand-logo .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--camel);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--anthracite);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--camel);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--camel);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta .btn-cta-nav {
  padding: 10px 20px;
  font-size: 0.85rem;
  background: var(--espresso);
  color: var(--ivory);
  border: 1px solid var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 2px;
}

.header-cta .btn-cta-nav:hover {
  background: var(--camel);
  border-color: var(--camel);
  color: #fff;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--anthracite);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

.btn-camel {
  background-color: var(--camel);
  color: #FFFFFF;
}

.btn-camel:hover {
  background-color: var(--camel-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.3);
}

.btn-espresso {
  background-color: var(--espresso);
  color: var(--ivory);
}

.btn-espresso:hover {
  background-color: var(--espresso-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(63, 31, 14, 0.3);
}

.btn-outline-ivory {
  background-color: transparent;
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn-outline-ivory:hover {
  background-color: var(--ivory);
  color: var(--anthracite);
}

.btn-outline-dark {
  background-color: transparent;
  border-color: var(--anthracite);
  color: var(--anthracite);
}

.btn-outline-dark:hover {
  background-color: var(--anthracite);
  color: var(--ivory);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(63, 31, 14, 0.82) 100%),
              url('https://images.unsplash.com/photo-1594938298603-c8148c4dae35?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--ivory);
  padding: 100px 0;
}

.hero-content {
  max-width: 750px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid var(--camel);
  color: var(--camel);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-radius: 2px;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(250, 248, 245, 0.85);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--ivory-card);
  padding: 40px 30px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--camel);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--camel-light);
  color: var(--camel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--ivory-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--camel);
}

.product-image {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #f1f1f1;
}

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

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--espresso);
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  text-transform: uppercase;
  border-radius: 2px;
}

.product-badge.badge-camel {
  background: var(--camel);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--camel);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--anthracite);
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--espresso);
}

/* Category Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--anthracite);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

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

/* Tailoring Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  position: relative;
  padding: 30px 20px;
  background: var(--anthracite-light);
  border-left: 3px solid var(--camel);
  border-radius: 2px;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--camel);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.75);
}

/* Testimonials / Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--ivory-card);
  padding: 30px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--gold-accent);
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.review-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--espresso);
}

.review-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Floating Label Forms (Contact Page) */
.form-card {
  background: var(--ivory-card);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.floating-group {
  position: relative;
  margin-bottom: 28px;
}

.floating-input,
.floating-select,
.floating-textarea {
  width: 100%;
  padding: 16px 14px 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  background: var(--ivory);
  color: var(--anthracite);
  outline: none;
  transition: var(--transition);
}

.floating-textarea {
  min-height: 120px;
  resize: vertical;
}

.floating-label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
}

.floating-input:focus,
.floating-select:focus,
.floating-textarea:focus,
.floating-input:not(:placeholder-shown),
.floating-textarea:not(:placeholder-shown),
.floating-select.has-value {
  border-color: var(--camel);
  background: #fff;
}

.floating-input:focus ~ .floating-label,
.floating-select:focus ~ .floating-label,
.floating-textarea:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label,
.floating-textarea:not(:placeholder-shown) ~ .floating-label,
.floating-select.has-value ~ .floating-label {
  top: 4px;
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--camel);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-checkbox-group input {
  margin-top: 4px;
  accent-color: var(--camel);
}

/* Custom Milan Fashion Map Component */
.milan-map-box {
  background: var(--anthracite);
  color: var(--ivory);
  border-radius: 4px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.map-svg-wrapper {
  width: 100%;
  height: 320px;
  margin: 20px 0;
  background: #0B1120;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

/* Legal Pages Styling */
.legal-wrapper {
  background: var(--ivory-card);
  border: 1px solid var(--border-color);
  padding: 50px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 60px;
}

.legal-header {
  border-bottom: 2px solid var(--camel);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.legal-header h1 {
  font-size: 2.5rem;
  color: var(--espresso);
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  color: var(--anthracite);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 20px 0 10px;
  color: var(--espresso);
}

.legal-content p {
  margin-bottom: 16px;
  color: #334155;
  font-size: 0.975rem;
  line-height: 1.7;
}

.legal-content ul, .legal-content ol {
  margin: 0 0 20px 24px;
  color: #334155;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-callout {
  background: var(--camel-light);
  border-left: 4px solid var(--camel);
  padding: 20px;
  margin: 24px 0;
  border-radius: 2px;
}

.legal-consent-box {
  background: var(--anthracite);
  color: var(--ivory);
  padding: 24px;
  border-radius: 4px;
  margin: 30px 0;
  border: 1px solid var(--camel);
}

/* GDPR Consent Banner */
.gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--anthracite);
  color: var(--ivory);
  padding: 20px 24px;
  z-index: 1000;
  border-top: 2px solid var(--camel);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gdpr-banner.visible {
  transform: translateY(0);
}

.gdpr-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gdpr-text {
  font-size: 0.875rem;
  color: rgba(250, 248, 245, 0.9);
  max-width: 750px;
}

.gdpr-text a {
  color: var(--camel);
  text-decoration: underline;
}

.gdpr-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gdpr-btn {
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.gdpr-btn-accept {
  background: var(--camel);
  color: #fff;
  border: none;
}

.gdpr-btn-accept:hover {
  background: var(--camel-hover);
}

.gdpr-btn-reject {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--border-dark);
}

.gdpr-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.site-footer {
  background-color: var(--espresso-dark);
  color: var(--ivory);
  padding: 70px 0 30px;
  border-top: 3px solid var(--camel);
}

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

.footer-col h4 {
  color: var(--camel);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

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

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

.footer-links a {
  color: rgba(250, 248, 245, 0.75);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.825rem;
  color: rgba(250, 248, 245, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Utilities */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .mobile-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }
  .nav-menu.active {
    transform: translateY(0);
    box-shadow: var(--shadow-lg);
  }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .section { padding: 50px 0; }
  .legal-wrapper { padding: 24px; }
}
