/* METAL DETECTION SOLUTIONS - Enhanced Beautiful Design */

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
}



/* Enhanced Hero Section */
.metal-hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px; /* Negative margin to account for fixed header */
  padding-top: 60px; /* Padding to push content below header */
  z-index: 1;
  background: #000 !important;
  background-color: #000 !important;
}

.metal-hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metal-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1);
  max-width: 100vw;
  max-height: 100vh;
}

.metal-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.metal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 107, 53, 0.1) 100%); */
  z-index: -1;
} 

.metal-hero-content {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}

.metal-hero-title {
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: visible;
  text-align: center;
  width: 100%;
}

/* Mobile title adjustments */
@media (max-width: 768px) {
  .metal-hero-title {
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
  }
}

.metal-hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.metal-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 2.5vw, 18px) clamp(30px, 5vw, 40px);
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  color: white;
  text-decoration: none;
  border-radius: clamp(20px, 4vw, 30px);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  transition: all 0.3s ease;
  border: none;
  min-width: clamp(160px, 25vw, 200px);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.metal-hero-cta:hover {
  background: linear-gradient(135deg, #ff9500, #ffb347);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  color: white;
  text-decoration: none;
}

/* Innovation Section */
.metal-innovation-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.metal-innovation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.metal-innovation-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.metal-innovation-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.metal-innovation-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.metal-section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.metal-section-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: white;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.metal-innovation-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.metal-innovation-description span {
  color: white;
  font-weight: 600;
}

.metal-innovation-image {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.metal-innovation-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.metal-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.metal-image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.metal-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.metal-image-container:hover img {
  transform: scale(1.02);
}

.metal-fullscreen-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.metal-image-container:hover .metal-fullscreen-icon {
  opacity: 1;
}

.metal-click-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.metal-image-container:hover .metal-click-hint {
  opacity: 1;
}

/* Modern Carousel Controls */
.metal-carousel-control {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.metal-image-carousel:hover .metal-carousel-control {
  opacity: 1;
}

.metal-carousel-control:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 107, 53, 0.7));
  border-color: rgba(255, 107, 53, 0.8);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.metal-carousel-control .carousel-control-prev-icon,
.metal-carousel-control .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.metal-carousel-control:hover .carousel-control-prev-icon,
.metal-carousel-control:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

/* Position controls centered vertically in the carousel container */
.metal-image-carousel .carousel-control-prev {
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.metal-image-carousel .carousel-control-next {
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

/* Carousel Indicators */
.metal-image-carousel .carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
}

.metal-image-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  margin: 0 6px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.metal-image-carousel .carousel-indicators button.active {
  background: #ff6b35;
  border-color: #ff6b35;
  opacity: 1;
  transform: scale(1.2);
}

.metal-image-carousel .carousel-indicators button:hover {
  border-color: rgba(255, 107, 53, 0.8);
  opacity: 1;
}

/* Performance Section */
.metal-performance-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.metal-performance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.metal-performance-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.metal-performance-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.metal-performance-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.metal-section-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.metal-performance-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.metal-feature-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #ff6b35;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.metal-feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(10px);
}

.metal-feature-item h4 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.metal-feature-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.metal-performance-video {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.metal-performance-video.animate {
  opacity: 1;
  transform: translateX(0);
}

.metal-video-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.metal-video-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.metal-video-container video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.metal-video-container:hover video {
  transform: scale(1.02);
}

/* Specifications Section */
.metal-specs-section {
  padding: 120px 0 0 0;
  background: black;
  position: relative;
}

.metal-specs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  pointer-events: none;
}

.metal-specs-container {
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.metal-specs-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.metal-specs-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 4rem;
  color: white;
}

.metal-specs-table {
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.metal-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
}

.metal-spec-row:last-child {
  border-bottom: none;
}

.metal-spec-row:hover {
  background: rgba(255, 107, 53, 0.05);
}

.metal-spec-label {
  font-size: clamp(0.8rem, 3.5vw, 1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.metal-spec-value {
  font-size: clamp(0.8rem, 3.5vw, 1rem);
  font-weight: 600;
  color: white;
  text-align: right;
}

/* Call to Action Section */
.metal-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.metal-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.metal-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.metal-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.metal-cta-description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.metal-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.metal-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ff6b35;
  min-width: 180px;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #ff6b35;
}

.metal-cta-secondary:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

/* Explore More Section */
.metal-explore-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.metal-explore-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.metal-explore-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #000 0%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.metal-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.metal-explore-card {
  background: black;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
}

.metal-explore-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.metal-explore-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.metal-explore-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.metal-explore-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.metal-explore-card:hover .metal-explore-image img {
  transform: scale(1.1);
}

.metal-explore-content {
  padding: 2rem;
}

.metal-explore-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.metal-explore-description {
  font-size: 1rem;
  line-height: 1.6;
  color: white;
  margin-bottom: 1.5rem;
}

.metal-explore-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.metal-explore-link:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

/* Animations */
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRow {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fullscreen Styles */
.metal-image-container:fullscreen,
.metal-video-container:fullscreen {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metal-image-container:fullscreen img,
.metal-video-container:fullscreen video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .metal-innovation-content,
  .metal-performance-container {
    gap: 60px;
  }

  .metal-specs-container {
    max-width: 1200px;
  }

  .metal-explore-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

/* Large screens */
@media (min-width: 1200px) {

  .metal-hero-media img {
    object-fit: contain;
    padding: 20px;
  }

  .metal-hero-cta {
    font-size: 1.2rem;
    padding: 20px 45px;
    min-width: 220px;
    border-radius: 35px;
  }
}

/* Extra large screens (4K displays, etc.) */
@media (min-width: 1920px) {
  .metal-hero-media img {
    max-width: 1800px;
    max-height: 1000px;
  }

  .metal-hero-cta {
    font-size: 1.3rem;
    padding: 22px 50px;
    min-width: 240px;
    border-radius: 40px;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 768px) {
 

  .metal-innovation-content,
  .metal-performance-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .metal-specs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .metal-explore-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .metal-hero {
    margin-top: -80px;
    padding-top: 80px;
    min-height: 100vh;
    height: 100vh;
    background: #000 !important;
    background-color: #000 !important;
  }


  .metal-hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1rem;
    white-space: normal;
    line-height: 1.1;
  }

  .metal-hero-cta {
    font-size: 1rem;
    padding: 16px 35px;
    min-width: 180px;
    border-radius: 25px;
    letter-spacing: 0.01em;
  }

  .metal-hero-media {
    padding: 10px;
    height: 100vh;
  }

  .metal-hero-media img {
    object-fit: contain;
    padding: 15px;
    max-width: 95vw;
    max-height: 85vh;
  }

  .metal-hero-media video {
    object-position: center center;
  }

  .metal-innovation-section,
  .metal-performance-section,
  .metal-specs-section,
  .metal-cta-section,
  .metal-explore-section {
    padding: 80px 0 0 0;
  }

  /* Mobile Carousel Adjustments */
  .metal-carousel-control {
    width: 45px;
    height: 45px;
    border-radius: 10px;
  }

  .metal-carousel-control .carousel-control-prev-icon,
  .metal-carousel-control .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }

  .metal-image-carousel .carousel-control-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .metal-image-carousel .carousel-control-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .metal-image-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

@media (max-width: 480px) {
  

  .metal-hero {
    margin-top: -80px;
    padding-top: 80px;
    min-height: 100vh;
    height: 100vh;
    background: #000 !important;
    background-color: #000 !important;
  }

  .metal-hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
    margin-bottom: 1rem;
    white-space: normal;
    line-height: 1.1;
  }

  .metal-hero-media {
    padding: 5px;
    height: 100vh;
  }

  .metal-hero-media img {
    padding: 10px;
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
  }

  .metal-hero-cta {
    font-size: 0.9rem;
    padding: 14px 28px;
    min-width: 150px;
    border-radius: 20px;
    letter-spacing: 0;
  }

  .metal-innovation-content,
  .metal-performance-container {
    padding: 0 15px;
  }

  .metal-specs-container,
  .metal-cta-content,
  .metal-explore-container {
    padding: 0 5px;
  }

  .metal-spec-category {
    padding: 1.5rem;
  }

  .metal-explore-content {
    padding: 1.5rem;
  }

  /* Extra Small Mobile Carousel Adjustments */
  .metal-carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .metal-carousel-control .carousel-control-prev-icon,
  .metal-carousel-control .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }

  .metal-image-carousel .carousel-control-prev {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .metal-image-carousel .carousel-control-next {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .metal-image-carousel .carousel-indicators {
    bottom: 15px;
  }

  .metal-image-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}

/* Extra small screens (320px and below) */
@media (max-width: 320px) {
  .metal-hero {
    margin-top: -80px;
    padding-top: 80px;
    min-height: 100vh;
    height: 100vh;
  }


  .metal-hero-title {
    font-size: clamp(1.8rem, 12vw, 3rem);
    margin-bottom: 0.8rem;
    white-space: normal;
    line-height: 1.1;
  }

  .metal-hero-media {
    height: 100vh;
    padding: 3px;
  }

  .metal-hero-media img {
    max-width: 88vw;
    max-height: 75vh;
    padding: 8px;
  }

  .metal-hero-cta {
    font-size: 0.85rem;
    padding: 12px 24px;
    min-width: 130px;
    border-radius: 18px;
    letter-spacing: -0.01em;
  }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .metal-hero-cta {
    /* Slightly increase font weight for better readability on high DPI screens */
    font-weight: 650;
  }
}

/* Landscape orientation on mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
  .metal-hero {
    height: 100vh;
  }

  .metal-hero-media {
    padding: 5px;
  }

  .metal-hero-media img {
    object-fit: contain;
    padding: 5px;
    max-width: 98vw;
    max-height: 98vh;
  }


  .metal-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
  }

  .metal-hero-cta {
    font-size: 0.95rem;
    padding: 12px 30px;
    min-width: 160px;
    border-radius: 22px;
  }
}

/* Loading States */
body:not(.loaded) .metal-hero-content {
  opacity: 0;
  transform: translateX(-50%) translateY(50px);
}

body.loaded .metal-hero-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: all 1s ease-out;
}
@media(min-width:768px){
  .metal-spec-row{
    justify-content: left;
  }
  .metal-spec-label{
    min-width: 50%;
  }
}