/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlight {
  color: #e56f15;
}

/* Header Styles */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.menu-items {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
}

.menu-item {
  position: relative;
}

.menu-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 25px 20px;
  display: block;
  transition: all 0.3s ease;
  font-size: 14px;
}

.menu-link:hover,
.menu-link.active {
  color: #e31e24;
}

/* Language Selector */
.menu-item.language-selector .menu-link {
  background: #e31e24;
  color: white;
  border-radius: 4px;
  margin-left: 10px;
  padding: 8px 15px;
  height: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-item.language-selector .menu-link:hover {
  background: #c41a1f;
  color: white;
}

.flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
  z-index: 999;
}

.dropdown:hover .dropdown-menu,
.language-selector:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: #f8f8f8;
  color: #e31e24;
  border-left-color: #e31e24;
}

.lang-options a {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Breadcrumb */
.breadcrumb {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb-nav a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #e56f15;
}

.breadcrumb-nav span {
  color: #999;
}

.breadcrumb-nav .current {
  color: #4f4f4e;
  font-weight: 500;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, #4f4f4e 0%, #3a3a3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("img/celikev-hero-bg.jpg") center/cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(79, 79, 78, 0.8),
    rgba(229, 111, 21, 0.6)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 20px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: #4f4f4e;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Steel Features Section */
.steel-features {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  border-bottom-color: #e56f15;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e56f15, #d65d0d);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 32px;
  color: white;
}

.feature-card h3 {
  font-size: 22px;
  color: #4f4f4e;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Filter Controls */
.filter-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.filter-group label {
  font-weight: 600;
  color: #4f4f4e;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.filter-group label i {
  color: #e56f15;
}

.filter-buttons {
  display: flex;
  gap: 10px;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #e0e0e0;
  background: white;
  color: #666;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #e56f15;
  color: #e56f15;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #e56f15;
  color: white;
  border-color: #e56f15;
}

.sort-select {
  padding: 10px 35px 10px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  background: white;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M3 4.5L6 7.5L9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.sort-select:hover,
.sort-select:focus {
  border-color: #e56f15;
  outline: none;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f8f9fa;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e56f15;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 25px;
}

.product-name {
  font-size: 22px;
  color: #4f4f4e;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.spec-item i {
  color: #e56f15;
  font-size: 16px;
}

.btn-detail {
  width: 100%;
  padding: 12px 20px;
  background: #e56f15;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-detail:hover {
  background: #d65d0d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 111, 21, 0.3);
}

/* Product Modal */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10000;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #e56f15;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.modal-close:hover {
  background: #d65d0d;
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.modal-image {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  background: #f8f9fa;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.modal-info h2 {
  font-size: 32px;
  color: #4f4f4e;
  font-weight: 600;
  margin-bottom: 10px;
}

.modal-info > p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

.modal-specs h3,
.modal-features h3 {
  font-size: 20px;
  color: #4f4f4e;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-specs h3::before {
  content: "⚙️";
  font-size: 18px;
}

.modal-features h3::before {
  content: "✓";
  font-size: 18px;
  color: #e56f15;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #e56f15;
  font-size: 14px;
}

.spec-label {
  font-weight: 600;
  color: #4f4f4e;
}

.spec-value {
  color: #e56f15;
  font-weight: 500;
}

.modal-features ul {
  list-style: none;
  padding: 0;
}

.modal-features li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.modal-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e56f15;
  font-weight: bold;
  font-size: 16px;
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #4f4f4e 0%, #3a3a3a 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: #e56f15;
  color: white;
}

.btn-primary:hover {
  background: #d65d0d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(229, 111, 21, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #4f4f4e;
  transform: translateY(-2px);
}

/* Quick CTA */
.quick-cta {
  background-color: #3a3a3a;
  padding: 60px 0;
}

.quick-cta .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cta-box {
  background-color: #4f4f4e;
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms ease-in-out;
  border: 2px solid transparent;
}

.cta-box:hover,
.cta-box:focus-visible {
  background-color: #e56f15;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.cta-box:focus-visible {
  outline: 3px solid #e56f15;
  outline-offset: 4px;
}

.cta-icon {
  margin-bottom: 20px;
}

.cta-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
  color: #ffffff;
}

.cta-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.cta-box p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

/* Footer Styles */
.site-footer {
  background-color: #1f1f1f;
  color: #a0a0a0;
  padding: 80px 0 0;
  font-size: 15px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-col ul a:hover,
.footer-col ul a:focus-visible {
  color: #e56f15;
  outline: none;
}

.footer-social {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #3a3a3a;
}

.footer-social a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin: 0 12px;
  color: #a0a0a0;
}

.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, #e56f15, #d65d0d);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: white;
  transform: scale(1.1);
  outline: none;
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 13px;
}

.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  margin-left: 20px;
  transition: color 200ms ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #e56f15;
  outline: none;
}

/* Animation Styles */
@media (prefers-reduced-motion: reduce) {
  .anim,
  .anim-item {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.anim {
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}

.anim-item {
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
  opacity: 0;
}

.anim:not(.is-inview) {
  opacity: 0;
}

.anim[data-anim="fade-up"]:not(.is-inview),
.anim[data-anim="fade-up"] .anim-item {
  opacity: 0;
  transform: translateY(60px);
}

.anim[data-anim="fade-in"]:not(.is-inview) {
  opacity: 0;
  transform: none;
}

.anim.is-inview,
.anim.is-inview .anim-item {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-cta .container {
    grid-template-columns: 1fr;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .filter-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .filter-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .filter-btn {
    flex: 1;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal-links a {
    margin: 0 10px;
  }

  .modal-body {
    padding: 30px 20px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-info h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .steel-features,
  .products-section,
  .cta-section {
    padding: 60px 0;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 24px;
  }

  .product-image {
    height: 200px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
}

/* Mobile Menu Styles */
.nav-menu.active {
  display: flex;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.nav-menu.active .menu-items {
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.nav-menu.active .menu-item {
  width: 100%;
  border-bottom: 1px solid #eee;
}

.nav-menu.active .menu-link {
  padding: 15px 20px;
}

.nav-menu.active .dropdown-menu {
  position: static;
  box-shadow: none;
  background: #f8f8f8;
  opacity: 1;
  visibility: visible;
  transform: none;
  border-radius: 0;
  margin-top: 0;
}

.nav-menu.active .dropdown-menu a {
  padding-left: 40px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
}

/* ============== DİL SEÇİCİ STİLLERİ ============== */
.language-selector {
  position: relative;
}

.current-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e31e24;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 80px;
  justify-content: space-between;
}

.current-lang:hover {
  background: #c41a1f;
}

.flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.current-lang svg {
  transition: transform 0.3s ease;
}

.language-selector.active .current-lang svg {
  transform: rotate(180deg);
}

.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 8px 0;
  min-width: 180px;
  z-index: 1000;
  border: 1px solid #eee;
}

.language-selector:hover .lang-options,
.language-selector.active .lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.lang-option:hover {
  background: #f8f8f8;
  color: #e31e24;
  border-left-color: #e31e24;
}
