/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* Root Variables */
:root {
  /* Colors */
  --navy: #1a3a52;
  --navy-light: #2d5a7b;
  --navy-dark: #0f1f2e;
  --orange: #ff7a00;
  --orange-light: #ff9933;
  --orange-dark: #e67300;
  --steel: #808080;
  --steel-light: #b3b3b3;
  --steel-dark: #4d4d4d;
  --white: #ffffff;
  --light-gray: #f5f5f7;
  --gray: #e8e8e8;
  --dark-gray: #1a1a1a;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Border Radius */
  --radius: 12px;
}

/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--light-gray);
  color: var(--dark-gray);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--orange);
}

/* Container */
.container-main {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-main {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-main {
    padding: 0 2rem;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--navy);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

header.transparent {
  background-color: transparent;
}

header .container-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--navy);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  margin: 0;
  font-size: 1.25rem;
}

.logo-text small {
  color: var(--steel-light);
  font-size: 0.625rem;
  margin-top: -0.25rem;
}

/* Navigation */
nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  nav {
    display: flex;
  }
}

.nav-link {
  font-weight: 500;
  color: var(--orange);
  transition: color 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu-toggle span {
  width: 1.5rem;
  height: 0.25rem;
  background-color: var(--navy);
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 2rem 1rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 40;
}

@media (max-width: 767px) {
  .nav-mobile {
    display: none;
  }

  .nav-mobile.open {
    display: flex;
  }
}

.nav-mobile a {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.nav-mobile a:hover {
  background-color: var(--light-gray);
}

/* CTA Section in Header */
.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel-dark);
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  min-height: 90vh;
  padding-top: 5rem;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 90vh;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-image: linear-gradient(135deg, rgba(26, 58, 82, 0.95) 0%, rgba(45, 90, 123, 0.8) 100%);
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(45, 90, 123, 0.75) 100%);
  z-index: 1;
}

.slider-slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.slider-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .slider-content h1 {
    font-size: 2.25rem;
  }
}

.slider-content p {
  font-size: 1.125rem;
  color: rgba(179, 179, 179, 1);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.slider-btn {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: var(--orange);
  transform: scale(1.2);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(26, 58, 82, 0.95) 0%, rgba(45, 90, 123, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(255, 122, 0, 0.2);
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.125rem;
  color: rgba(179, 179, 179, 1);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  background-color: rgba(255, 122, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--orange);
  color: var(--white);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--steel);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Products Section */
.products {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-header p {
  color: var(--steel);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto;
}

/* Product Filters */
.filters-wrapper {
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: inherit;
}

.filter-input:focus {
  outline: none;
  ring: 2px;
  ring-color: var(--orange);
  border-color: var(--orange);
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: inherit;
  background-color: var(--white);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
    gap: 2rem;
    justify-content: center; 
}


.product-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.product-image {
  width: 100%;
  height: 12rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--steel);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
}

.spec-item {
  font-size: 0.8rem;
  color: var(--steel);
}

.spec-label {
  color: var(--navy);
  font-weight: 600;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

.product-price .currency {
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 58, 82, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 28rem;
  padding: 1.5rem;
  animation: scaleIn 0.3s ease;
}

@media (min-width: 768px) {
  .modal-content {
    padding: 2rem;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--steel);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--navy);
}

.modal h3 {
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-size: 1.5rem;
}

.modal p {
  color: var(--steel);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

/* Form */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--orange);
  ring: 2px;
  ring-color: var(--orange);
}

.form-textarea {
  resize: vertical;
  min-height: 7.5rem;
}

/* Footer */
footer {
  background-color: var(--navy);
  color: var(--white);
}

.footer-main {
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section p {
  color: rgba(179, 179, 179, 1);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(179, 179, 179, 1);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  color: var(--white);
  font-size: 1rem;
}

.social-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  display: block;
}

.social-icon:hover {
  background-color: var(--orange);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  color: rgba(179, 179, 179, 1);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom a {
  color: rgba(179, 179, 179, 1);
}

.footer-bottom a:hover {
  color: var(--orange);
}

/* Page sections */
.page-header {
  min-height: 30vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 5rem;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.page-header p {
  font-size: 1.125rem;
  color: rgba(179, 179, 179, 1);
  text-align: center;
}

.page-content {
  padding: 4rem 0;
}

/* Contact Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info {
  order: 2;
}

.contact-form-wrapper {
  order: 1;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-form {
  max-width: 40rem;
  margin: 2rem auto;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group.full {
  grid-column: 1 / -1;
}

/* About Page */
.about-section {
  padding: 4rem 0;
}

.about-section.alt {
  background-color: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

.about-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  font-size: 1.5rem;
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Active State */
.active {
  font-weight: 600;
  color: var(--orange);
}

/* Alert Messages */
.alert {
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  border: 1px solid;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

/* Validation */
.validation-summary {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: #f8d7da;
  color: #721c24;
  border-radius: var(--radius);
  border: 1px solid #f5c6cb;
}

.text-danger {
  color: #dc3545;
  font-size: 0.875rem;
  display: block;
  margin-top: 0.25rem;
}

/* Contact Page Styles */
.contact-info {
  margin-bottom: 2rem;
  order: 2;
}

.contact-info-title {
  margin-bottom: 2rem;
  color: var(--navy);
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-label {
  color: var(--orange);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.contact-form-wrapper {
  margin-bottom: 2rem;
}

.contact-form-title {
  margin-bottom: 2rem;
  color: var(--navy);
}

.btn-full {
  width: 100%;
}

/* About Page Styles */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list-item {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  color: var(--orange);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Products Page Styles */
.products-view-all {
  text-align: center;
  margin-top: 3rem;
}

.no-products {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--white);
  border-radius: var(--radius);
  color: var(--steel);
}

.no-products p {
  margin: 0;
  font-size: 1.125rem;
}

/* Filter Input Improvements */
.filter-input-search {
  flex: 1;
  min-width: 200px;
}

.filter-input:focus,
.filter-select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

/* Form Input Improvements */
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

/* Footer Logo Styles */
.logo-footer {
  color: var(--white) !important;
}

.logo-footer-title {
  font-size: 1.25rem;
  margin: 0;
}

.footer-description {
  margin-top: 1rem;
  color: rgba(179, 179, 179, 1);
}

.footer-social-links {
  margin-top: 1rem;
}

/* Page Header Responsive */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .contact-info-title,
  .contact-form-title {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Logo Image Styles */
.logo-image {
  height: 3rem;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.logo-footer .logo-image {
  height: 2.5rem;
  max-width: 120px;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-detail-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.product-detail-info h2 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.detail-description {
    margin-bottom: 1.5rem;
    color: var(--steel);
}

.detail-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .detail-specs li {
        margin-bottom: 0.5rem;
    }

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    .product-card-link:hover {
        text-decoration: none;
        color: inherit;
    }

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* grid daxilində bərabər olsun */
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.pagination-link {
    padding: 10px 14px;
    border: 1px solid var(--gray);
    border-radius: 10px;
    background: #fff;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.pagination-link:hover {
    border-color: var(--navy-light);
    box-shadow: var(--shadow-md);
}

.pagination-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pagination-info {
    color: var(--steel-dark);
    font-weight: 600;
}

/* Order Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-card {
    background: #fff;
    width: min(420px, 100%);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.modal-card h3 {
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--steel);
    margin-bottom: 16px;
}

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

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}
.about-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .about-image {
    max-width: 100%;
  }
}