@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fafaf9;
  color: #2c2c2c;
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}
body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #dc2626;
}

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 0 1rem;
  }
}

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

.text-gradient {
  background: linear-gradient(135deg, #dc2626, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #dc2626;
  border-radius: 50%;
  opacity: 0.4;
  animation: float-particle 6s ease-in-out infinite;
}
.particle:nth-child(2n) {
  animation-delay: -2s;
  background: #ea580c;
}
.particle:nth-child(3n) {
  animation-delay: -4s;
  animation-duration: 8s;
}
.particle:nth-child(4n) {
  width: 2px;
  height: 2px;
  animation-delay: -1s;
}
.particle:nth-child(5n) {
  animation-delay: -3s;
  animation-duration: 10s;
}

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.8;
  }
}
@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.1));
  }
  100% {
    filter: drop-shadow(0 0 40px 0 20px 40px rgba(220, 38, 38, 0.2));
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(250, 250, 249, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 0 2rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e5e7eb;
  height: 80px;
}
.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.navbar .logo a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 1rem 0;
}
.navbar .nav-menu {
  display: flex;
  gap: 4rem;
  align-items: center;
  height: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .navbar .nav-menu {
    display: none;
  }
}
.navbar .nav-menu li {
  display: flex;
  align-items: center;
  height: 100%;
}
.navbar .nav-link {
  color: #2c2c2c;
  font-weight: 500;
  position: relative;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  height: 100%;
}
.navbar .nav-link:hover {
  color: #dc2626;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.navbar .nav-link:hover::after {
  width: 80%;
}

#menuToggle {
  display: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 1010;
  position: relative;
}
@media (max-width: 767px) {
  #menuToggle {
    display: block;
  }
}

#hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #2c2c2c;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}
#hamburger span:nth-child(1) {
  width: 100%;
}
#hamburger span:nth-child(2) {
  width: 80%;
  align-self: center;
}
#hamburger span:nth-child(3) {
  width: 60%;
  align-self: flex-end;
}
#hamburger.active span {
  background: #dc2626;
}
#hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
  width: 100%;
}
#hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
  width: 100%;
}
#hamburger:hover:not(.active) span {
  background: #dc2626;
}
#hamburger:hover:not(.active) span:nth-child(1) {
  width: 100%;
  transform: translateX(2px);
}
#hamburger:hover:not(.active) span:nth-child(2) {
  width: 90%;
  transform: translateX(1px);
}
#hamburger:hover:not(.active) span:nth-child(3) {
  width: 80%;
  transform: translateX(3px);
}

#menuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 44, 44, 0.6);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1005;
}
#menuOverlay.active {
  opacity: 1;
  visibility: visible;
}

#sideMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: rgba(250, 250, 249, 0.98);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1008;
  padding: 100px 3rem 3rem;
  box-shadow: -10px 0 30px rgba(44, 44, 44, 0.1);
  border-left: 1px solid #e5e7eb;
}
#sideMenu.active {
  transform: translateX(0);
}
#sideMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sideMenu li {
  margin-bottom: 2rem;
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.4s ease;
}
#sideMenu li:nth-child(1) {
  transition-delay: 0.1s;
}
#sideMenu li:nth-child(2) {
  transition-delay: 0.2s;
}
#sideMenu li:nth-child(3) {
  transition-delay: 0.3s;
}
#sideMenu li:nth-child(4) {
  transition-delay: 0.4s;
}
#sideMenu.active li {
  transform: translateX(0);
  opacity: 1;
}
#sideMenu a {
  display: block;
  color: #2c2c2c;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
#sideMenu a:hover {
  color: #dc2626;
  transform: translateX(10px);
  border-bottom-color: rgba(220, 38, 38, 0.2);
}
#sideMenu a::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  transition: width 0.3s ease;
  border-radius: 1px;
}
#sideMenu a:hover::before {
  width: 15px;
}
#sideMenu:not(.active) li {
  transform: translateX(50px);
  opacity: 0;
  transition-delay: 0s;
}

.btn, .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn.btn-primary, .cta-button {
  background: linear-gradient(135deg, #dc2626, #ea580c);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}
.btn.btn-primary:hover, .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
  color: #ffffff;
}
.btn.btn-outline-primary, .btn-outline-primary.cta-button {
  background: transparent;
  border-color: #e5e7eb;
  color: #2c2c2c;
}
.btn.btn-outline-primary:hover, .btn-outline-primary.cta-button:hover {
  background: linear-gradient(135deg, #dc2626, #ea580c);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}
.btn.btn-lg, .cta-button {
  padding: 1.5rem 3rem;
  border-radius: 50px;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.filters .btn, .filters .cta-button {
  padding: 1rem 1.5rem;
}

.product-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #dc2626;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}
@media (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 8rem;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.product-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.product-item:nth-child(even) {
  direction: rtl;
}
.product-item:nth-child(even) > * {
  direction: ltr;
}
@media (max-width: 767px) {
  .product-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .product-item:nth-child(even) {
    direction: ltr;
  }
}

.product-visual {
  height: 500px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
}
.product-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(220, 38, 38, 0.3);
  border-color: #dc2626;
}
.product-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  z-index: 1;
}
@media (max-width: 767px) {
  .product-visual {
    height: 300px;
  }
}

.product-hero-icon {
  font-size: 8rem;
  color: #dc2626;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.1));
  animation: float 4s ease-in-out infinite alternate;
}
@media (max-width: 767px) {
  .product-hero-icon {
    font-size: 5rem;
  }
}

.product-content {
  padding: 2rem 0;
}

.product-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2c2c2c, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .product-title {
    font-size: 2rem;
  }
}

.product-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 2rem;
}

.product-features-list {
  margin-bottom: 2rem;
}
.product-features-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.product-features-list li::before {
  content: "→";
  color: #dc2626;
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.product-price {
  font-size: 1rem;
  color: #9ca3af;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.bottomLegend {
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #ffffff;
  padding: 2rem;
}
.bottomLegend .price {
  font-weight: 700;
  font-size: 1.2rem;
}

.section-title, .page-categorie .display-5 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2c2c2c, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero.hero-with-image .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero.hero-with-image .hero-image .hero-bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero.hero-with-image .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 38, 38, 0.85) 0%, rgba(38, 38, 38, 0.7) 30%, rgba(220, 38, 38, 0.3) 60%, transparent 100%);
  z-index: 1;
}
.hero.hero-with-image .hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .hero.hero-with-image .hero-content {
    text-align: center;
    margin: 0 auto;
  }
}
.hero:not(.hero-with-image) {
  background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
}
.hero:not(.hero-with-image)::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e5e5" stroke-width="0.5" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}
.hero:not(.hero-with-image) .hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content {
  padding: 0 2rem;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, white 20%, #dc2626 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.1));
}

.hero-subtitle {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 500px;
}
.hero-with-image .hero-subtitle {
  color: white;
  font-weight: 400;
}

.hero-tagline {
  font-size: 0.8rem;
  color: white;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
.hero-with-image .hero-tagline {
  color: white;
  font-weight: 500;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hero-with-image .hero-features {
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .hero-with-image .hero-features {
    justify-content: center;
  }
}
.hero-features:not(.hero-with-image) {
  justify-content: center;
}
@media (max-width: 767px) {
  .hero-features {
    gap: 1.5rem;
    justify-content: center;
  }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: white;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  border: 1px solid rgba(220, 38, 38, 0.1);
}
.hero-feature .feature-icon {
  font-size: 1rem;
}
.hero-with-image .hero-feature {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.collections {
  padding: 8rem 2rem;
}
@media (max-width: 767px) {
  .collections {
    padding: 4rem 1rem;
  }
}

.about {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding: 4rem 1rem;
  }
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 767px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4b5563;
}
.about-text h3 {
  color: #2c2c2c;
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #2c2c2c, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-specs {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  border: 1px solid #e5e7eb;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 500;
  color: #4b5563;
}

.spec-value {
  font-weight: 600;
  color: #dc2626;
}

.about-visual {
  height: 400px;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-conic-gradient(from 0deg, transparent 0deg, rgba(255, 255, 255, 0.1) 1deg, transparent 2deg);
  animation: rotate 20s linear infinite;
}

.products-premium .product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 8rem;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.products-premium .product-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.products-premium .product-item:nth-child(even) {
  direction: rtl;
}
.products-premium .product-item:nth-child(even) > * {
  direction: ltr;
}
@media (max-width: 767px) {
  .products-premium .product-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .products-premium .product-item:nth-child(even) {
    direction: ltr;
  }
}
.products-premium .product-visual {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
}
.products-premium .product-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(220, 38, 38, 0.3);
  border-color: #dc2626;
}
@media (max-width: 767px) {
  .products-premium .product-visual {
    height: 300px;
  }
}
.products-premium .product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.footer {
  background: #2c2c2c;
  padding: 4rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}
.footer .footer-logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}
.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.footer .footer-links a {
  color: #9ca3af;
  transition: color 0.3s ease;
}
.footer .footer-links a:hover {
  color: #dc2626;
}
.footer .footer-bottom {
  color: #6b7280;
  font-size: 0.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(107, 114, 128, 0.3);
}

@media (max-width: 767px) {
  .navbar {
    padding: 0 1.5rem;
    height: 70px;
  }
  .navbar .logo {
    font-size: 1.3rem;
  }
  .navbar .nav-container {
    height: 100%;
  }
  body {
    padding-top: 70px;
  }
  #menuToggle {
    display: block !important;
  }
  #sideMenu {
    width: 280px;
    padding: 80px 2rem 3rem;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-features {
    gap: 1rem;
  }
  .hero-features .hero-feature {
    font-size: 0.7rem;
  }
  .section-title, .page-categorie .display-5 {
    font-size: 2rem;
  }
  .product-title {
    font-size: 2rem;
  }
  .product-description {
    font-size: 1rem;
  }
  .about-visual {
    height: 250px;
    font-size: 4rem;
  }
  .collections,
  .about {
    padding: 4rem 1rem;
  }
  .btn, .cta-button {
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
  }
  .cta-button {
    padding: 1.5rem 2rem;
  }
  .filters {
    gap: 0.5rem;
  }
  .filters .btn, .filters .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}
body {
  padding-top: 80px;
}
@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }
}

@media (min-width: 768px) {
  .hero-features {
    justify-content: space-around;
  }
  .products-premium .product-item:nth-child(even) {
    direction: rtl;
  }
  .products-premium .product-item:nth-child(even) > * {
    direction: ltr;
  }
}
@media (min-width: 992px) {
  .container-fluid {
    padding: 0 3rem;
  }
  .hero-content {
    max-width: 1000px;
  }
  .products-premium .product-visual {
    height: 450px;
  }
}
@media (min-width: 1200px) {
  .hero-content {
    max-width: 1100px;
  }
  .products-premium .product-visual {
    height: 500px;
  }
  .about-content {
    max-width: 1300px;
  }
}
@media (min-width: 1400px) {
  .container-fluid {
    max-width: 1400px;
    padding: 0 4rem;
  }
  .hero-title {
    font-size: 7rem;
  }
  .section-title, .page-categorie .display-5 {
    font-size: 4rem;
  }
  .product-title {
    font-size: 3.5rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .product-visual:hover {
    transform: none;
    box-shadow: none;
  }
  .grid-item .position-relative:hover {
    transform: none;
    box-shadow: none;
  }
  .nav-link:hover {
    transform: none;
  }
  .btn:hover, .cta-button:hover {
    transform: none;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-bg-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 2rem 0;
  }
  .hero-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .hero-tagline {
    margin-bottom: 1rem;
  }
  .hero-features {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .products-premium .product-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .products-premium .product-item:nth-child(even) {
    direction: ltr;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media print {
  .navbar,
  .filters,
  .cta-button,
  .particles {
    display: none;
  }
  .hero {
    min-height: auto;
    page-break-inside: avoid;
  }
  .product-item {
    page-break-inside: avoid;
    margin-bottom: 2rem;
  }
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  h1, h2, h3 {
    page-break-after: avoid;
  }
}
.catalogue-section {
  padding: 4rem 0;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .catalogue-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

.catalogue-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.catalogue-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.catalogue-item.fade-in-item {
  animation: fadeInUp 0.6s ease forwards;
}

.catalogue-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 44, 44, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
}
.catalogue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 44, 44, 0.15);
  border-color: rgba(220, 38, 38, 0.2);
}

.catalogue-image-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f9fafb;
}

.catalogue-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.6s ease;
  opacity: 0;
}
.catalogue-image.loaded {
  opacity: 1;
}
.catalogue-card:hover .catalogue-image {
  transform: scale(1.05);
}

.catalogue-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 3;
}
.catalogue-status.sold {
  background: rgba(239, 68, 68, 0.9);
  color: #ffffff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.catalogue-status.reserved {
  background: rgba(245, 158, 11, 0.9);
  color: #ffffff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.catalogue-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(44, 44, 44, 0.3) 30%, rgba(44, 44, 44, 0.8) 70%, rgba(44, 44, 44, 0.95) 100%);
  color: #ffffff;
  padding: 3rem 2rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease ease;
}
.catalogue-card:hover .catalogue-overlay {
  transform: translateY(0);
}

.catalogue-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.catalogue-price .price-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}
.catalogue-price .status-sold {
  color: #ef4444;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.catalogue-price .status-reserved {
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.catalogue-actions {
  flex-shrink: 0;
}

.catalogue-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
.catalogue-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateX(2px);
}
.catalogue-btn .btn-text {
  font-size: 0.8rem;
}
.catalogue-btn .btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.catalogue-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.catalogue-details {
  padding: 2rem;
}

.catalogue-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.catalogue-category {
  font-size: 0.8rem;
  color: #dc2626;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.catalogue-description {
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.catalogue-item.isotope-hidden {
  opacity: 0;
  transform: scale(0.8);
}

.catalogue-item.isotope-item {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 767px) {
  .catalogue-overlay {
    position: static;
    transform: none;
    background: #ffffff;
    color: #4b5563;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
  }
  .catalogue-overlay .catalogue-info {
    align-items: center;
  }
  .catalogue-overlay .catalogue-btn {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    border: none;
    color: #ffffff;
  }
  .catalogue-overlay .catalogue-btn:hover {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: #ffffff;
    transform: none;
  }
  .catalogue-overlay .catalogue-price .price-amount {
    color: #2c2c2c;
    font-size: 1.2rem;
  }
  .catalogue-details {
    padding-top: 0;
  }
}
.catalogue-btn:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .catalogue-item,
  .catalogue-card,
  .catalogue-image,
  .catalogue-overlay {
    transition: none;
    animation: none;
  }
  .catalogue-card:hover {
    transform: none;
  }
}
.site-footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #e5e7eb;
  padding: 8rem 0 2rem;
  margin-top: 8rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  border-radius: 1px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 992px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
  }
}

.footer-brand .footer-logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.footer-brand .footer-tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: #9ca3af;
  font-weight: 300;
  margin: 0;
  max-width: 300px;
}
@media (max-width: 767px) {
  .footer-brand .footer-tagline {
    max-width: none;
  }
}

.footer-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}
.footer-section-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  border-radius: 1px;
}
@media (max-width: 767px) {
  .footer-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-nav .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav .footer-links li {
  margin-bottom: 1rem;
}
.footer-nav .footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}
.footer-nav .footer-link:hover {
  color: #ffffff;
  padding-left: 1rem;
}
.footer-nav .footer-link::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #dc2626;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer-nav .footer-link:hover::before {
  opacity: 1;
}

.footer-newsletter .newsletter-text {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.footer-newsletter .newsletter-btn-popup {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  border: none;
  border-radius: 25px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  justify-content: center;
}
.footer-newsletter .newsletter-btn-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}
.footer-newsletter .newsletter-btn-popup .btn-icon {
  font-size: 1rem;
  filter: grayscale(0);
}
@media (max-width: 767px) {
  .footer-newsletter .newsletter-btn-popup {
    padding: 2rem;
    justify-content: center;
  }
}
.footer-newsletter .newsletter-privacy {
  font-size: 0.7rem;
  color: #6b7280;
  margin: 1rem 0 0;
  line-height: 1.4;
}

.newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-popup.active {
  opacity: 1;
  visibility: visible;
}
.newsletter-popup.active .popup-content {
  transform: scale(1);
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 44, 44, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.popup-content {
  position: relative;
  transform: scale(0.95);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  background: linear-gradient(135deg, #fafaf9 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(44, 44, 44, 0.3);
  overflow-y: auto;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 50%;
  color: #dc2626;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-close:hover {
  background: #dc2626;
  color: #ffffff;
  transform: rotate(90deg);
}

.popup-header {
  padding: 4rem 3rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}
.popup-header .popup-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.popup-header .popup-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2c2c2c, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.popup-header .popup-subtitle {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.popup-form-container {
  padding: 3rem;
}
.popup-form-container .loading-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 4rem 0;
}
.popup-form-container .loading-form .loader {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(220, 38, 38, 0.2);
  border-top: 3px solid #dc2626;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.popup-form-container .loading-form p {
  color: #4b5563;
  font-size: 0.8rem;
  margin: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.popup-footer {
  padding: 2rem 3rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(220, 38, 38, 0.1);
}
.popup-footer .popup-privacy {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

body.popup-open {
  overflow: hidden;
}
@media (min-width: 768px) {
  body.popup-open {
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .popup-content {
    width: 95%;
    max-height: 95vh;
    border-radius: 15px;
  }
  .popup-header {
    padding: 3rem 1.5rem 2rem;
  }
  .popup-header .popup-title {
    font-size: 1.3rem;
  }
  .popup-header .popup-subtitle {
    font-size: 0.8rem;
  }
  .popup-form-container {
    padding: 2rem 1.5rem;
  }
  .popup-footer {
    padding: 2rem 1.5rem 3rem;
  }
}
.footer-contact-section {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.contact-item .footer-email,
.contact-item .social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #9ca3af;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 1rem 1.5rem;
  border-radius: 15px;
}
.contact-item .footer-email:hover,
.contact-item .social-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
.contact-item .footer-email .contact-icon,
.contact-item .social-link .contact-icon {
  font-size: 1.2rem;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}
.contact-item .footer-email:hover .contact-icon,
.contact-item .social-link:hover .contact-icon {
  filter: grayscale(0);
}
.contact-item .footer-email .contact-text,
.contact-item .social-link .contact-text {
  font-size: 0.8rem;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(220, 38, 38, 0.3) 20%, rgba(220, 38, 38, 0.6) 50%, rgba(220, 38, 38, 0.3) 80%, transparent 100%);
  margin: 4rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.copyright {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 300;
}

.footer-badges {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .footer-badges {
    justify-content: center;
  }
}

.badge {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #dc2626;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 4rem 0 2rem;
    text-align: center;
  }
  .footer-brand .footer-tagline {
    margin-bottom: 2rem;
  }
}
.site-footer a:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .footer-link,
  .footer-email,
  .social-link {
    will-change: transform;
  }
}
.timeline-main-title {
  text-align: center;
  margin-bottom: 6rem;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline {
  position: relative;
  margin: 6rem auto;
  padding: 3rem 0;
  width: 90%;
  max-width: 1200px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 8rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.timeline-item.timeline-animate {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item.left {
  flex-direction: row-reverse;
}
.timeline-item.right {
  flex-direction: row;
}
.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: 50%;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  border: 3px solid #ffffff;
  border-radius: 50px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
  z-index: 10;
  transition: all 0.3s ease;
}
.timeline-item:hover::before {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 30px 60px rgba(220, 38, 38, 0.3);
}
.timeline-item:nth-child(1) {
  transition-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  transition-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  transition-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  transition-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  transition-delay: 0.5s;
}
.timeline-item:nth-child(6) {
  transition-delay: 0.6s;
}
.timeline-item:nth-child(7) {
  transition-delay: 0.7s;
}
.timeline-item:nth-child(8) {
  transition-delay: 0.8s;
}
.timeline-item:nth-child(9) {
  transition-delay: 0.9s;
}
.timeline-item:nth-child(10) {
  transition-delay: 1s;
}

.timeline-content {
  width: 45%;
  padding: 2rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
  position: relative;
}
.timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  border-radius: 20px 20px 0 0;
}
.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}
.timeline-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.timeline-content h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #6b7280;
  font-style: italic;
}
.timeline-content p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.8rem;
}

.timeline-img {
  width: 45%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline-img img {
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
  transition: all 0.4s ease;
  border: 2px solid #e5e7eb;
}
.timeline-img img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
  border-color: #dc2626;
}

.timeline-item.left .timeline-content::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ffffff;
  filter: drop-shadow(-2px 0 5px rgba(220, 38, 38, 0.1));
}

.timeline-item.right .timeline-content::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  filter: drop-shadow(2px 0 5px rgba(220, 38, 38, 0.1));
}

@media (max-width: 767px) {
  .timeline-main-title {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .timeline {
    margin: 2rem auto;
    padding: 1.5rem 0;
  }
  .timeline::before {
    left: 25px;
    width: 2px;
  }
  .timeline-item {
    flex-direction: column !important;
    margin-bottom: 6rem;
    padding-left: 60px;
    text-align: left;
  }
  .timeline-item::before {
    left: 25px !important;
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
  .timeline-item:hover::before {
    transform: translateX(0) scale(1.1);
  }
  .timeline-content,
  .timeline-img {
    width: 100%;
    margin-bottom: 1rem;
  }
  .timeline-content {
    padding: 1.5rem;
    margin-left: 0;
  }
  .timeline-content::after {
    display: none;
  }
  .timeline-content h2 {
    font-size: 1.3rem;
  }
  .timeline-content h3 {
    font-size: 0.8rem;
  }
  .timeline-content p {
    font-size: 0.8rem;
  }
  .timeline-img img {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .timeline-item {
    padding-left: 50px;
    margin-bottom: 2rem;
  }
  .timeline-item::before {
    width: 35px;
    height: 35px;
    font-size: 0.7rem;
    left: 20px !important;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-content {
    padding: 1rem;
  }
  .timeline-content h2 {
    font-size: 1.2rem;
  }
  .timeline-img img {
    height: 180px;
  }
}
.grid .grid-item {
  transition: all 0.4s ease;
}
.grid .grid-item .position-relative {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.grid .grid-item .position-relative:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}
.grid .grid-item .position-relative img {
  transition: transform 0.4s ease;
}
.grid .grid-item .position-relative:hover img {
  transform: scale(1.05);
}

.bottomLegend {
  bottom: 0;
  background: linear-gradient(transparent, rgba(44, 44, 44, 0.9));
  color: #ffffff;
  padding: 2rem;
  border-radius: 0 0 20px 20px;
}
.bottomLegend .price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
}
.bottomLegend .price:contains("Vendu") {
  color: #ef4444;
}
.bottomLegend .price:contains("Réservé") {
  color: #f59e0b;
}
.bottomLegend .btn-arrow-wrapper {
  background: linear-gradient(135deg, #dc2626, #ea580c);
  border: none;
  color: #ffffff;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.bottomLegend .btn-arrow-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
  color: #ffffff;
}
.bottomLegend .btn-arrow-wrapper .arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.bottomLegend .btn-arrow-wrapper:hover .arrow {
  transform: translateX(3px);
}

.page-categorie .display-5 {
  margin-bottom: 3rem;
}
.page-categorie .filters {
  margin-bottom: 4rem;
}
.page-categorie .filters .btn, .page-categorie .filters .cta-button {
  margin: 0 0.5rem;
}

.slick .slick-dots {
  bottom: 2rem;
}
.slick .slick-dots li button:before {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.slick .slick-dots li.slick-active button:before {
  color: #dc2626;
}
.slick .slick-prev:before,
.slick .slick-next:before {
  color: #dc2626;
  font-size: 24px;
}

#menuToggle {
  z-index: 1001;
}
#menuToggle #hamburger span {
  background: #2c2c2c;
  transition: all 0.3s ease;
}
#menuToggle #hamburger.active span {
  background: #dc2626;
}

#sideMenu {
  background: rgba(250, 250, 249, 0.98);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-left: 1px solid #e5e7eb;
}
#sideMenu a {
  color: #2c2c2c;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
#sideMenu a:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

#menuOverlay {
  background: rgba(44, 44, 44, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

[data-barba=container] {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.text-primary-red {
  color: #dc2626 !important;
}

.bg-primary-red {
  background: #dc2626 !important;
}

.bg-gradient {
  background: linear-gradient(135deg, #dc2626, #ea580c) !important;
}

.border-primary-red {
  border-color: #dc2626 !important;
}

html {
  scroll-behavior: smooth;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

/*# sourceMappingURL=app.css.map*/