/* ==========================================================
   EUROING — PRODUCTS PAGE STYLES (FINAL VERSION)
   Matches site layout, navbar, and footer
   ========================================================== */

/* --- GLOBAL LAYOUT --- */
body.products-page {
  font-family: "Roboto", sans-serif;
  color: #222;
  background: #f4f4f4; /* grey side background */
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.products-page main {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  padding-bottom: 60px;
}

/* Keep content below navbar */
.products-page main,
.products-page section:first-of-type {
  margin-top: 120px;
}

/* --- NAVBAR (match global) --- */
.products-page .navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  padding: 18px 0;
}

.products-page .navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.products-page .nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}

.products-page .nav-menu a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.products-page .nav-menu a:hover {
  color: #1997ab;
}

/* --- HERO SECTION --- */
.products-page .products-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 20px;
}

.products-page .products-content {
  flex: 1 1 450px;
  padding: 40px;
}

.products-page .products-image {
  flex: 1 1 450px;
  text-align: center;
}

.products-page .products-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 10px;
  object-fit: cover;
}

.products-page .section-label {
  color: #777;
  font-size: 16px;
  margin-bottom: 10px;
}

.products-page .products-title {
  font-family: "Play", sans-serif;
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #222;
}

.products-page .products-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* --- CONCRETE SECTION --- */
.products-page .product-concrete {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 1000px;
  margin: 80px auto;
  padding: 10px;
}

.products-page .concrete-images {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.products-page .top-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.products-page .bottom-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.products-page .bottom-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.products-page .concrete-content {
  flex: 1 1 50%;
}

.products-page .concrete-content h1,
.products-page .concrete-content h2 {
  font-family: "Play", sans-serif;
  color: #222;
}

.products-page .concrete-content h1 {
  font-size: 46px;
  margin-bottom: 20px;
}

.products-page .concrete-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.products-page .concrete-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

.products-page .concrete-content ul {
  list-style: none;
  padding-left: 0;
}

.products-page .concrete-content ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  padding-left: 10px;
  position: relative;
}

.products-page .concrete-content ul li::before {
  content: "•";
  color: #333;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* --- DYER & DRITARE --- */
.products-page .product-dyer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  max-width: 1000px;
  margin: 80px auto;
  padding: 10px;
}

.products-page .dyer-content {
  flex: 1 1 50%;
}

.products-page .dyer-content h1 {
  font-family: "Play", sans-serif;
  font-size: 90px;
  color: #222;
  margin-bottom: 20px;
}

.products-page .dyer-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

.products-page .dyer-images {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.products-page .dyer-images .top-image img,
.products-page .dyer-images .bottom-images img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.products-page .dyer-images .top-image img {
  height: 260px;
}

.products-page .dyer-images .bottom-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.products-page .dyer-images .bottom-images img {
  height: 180px;
}

/* --- CHARACTERISTICS --- */
.products-page .characteristics-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
  margin: 80px 0;
  text-align: center;
}

.products-page .characteristics-title {
  font-family: "Play", sans-serif;
  font-size: 90px;
  color: #333;
  line-height: 1.2;
  margin-bottom: 60px;
}

.products-page .characteristics-title span {
  display: block;
  color: #1997ab;
  font-weight: 800;
}

.products-page .characteristics-features ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.products-page .characteristics-features ul li {
  font-size: 18px;
  color: #333;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 20px 50px;
  position: relative;
  line-height: 1.5;
}

.products-page .characteristics-features ul li::before {
  content: "✓";
  color: #1997ab;
  position: absolute;
  left: 20px;
  font-weight: bold;
  font-size: 24px;
}

/* --- BUILDING SECTION --- */
.products-page .building-section {
  background: linear-gradient(135deg, #6bbbc7 0%, #11798c 100%);
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.products-page .building-title {
  font-family: "Play", sans-serif;
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 40px;
  font-weight: 700;
}

.products-page .building-title span {
  display: block;
  font-weight: 700;
  opacity: 0.9;
}

.products-page .building-text {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* --- FOOTER ALIGNMENT FIX --- */
.products-page footer {
  background: transparent; /* keep grey sides visible */
  margin-top: 60px;
}

.products-page .footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .products-page .products-hero,
  .products-page .product-concrete,
  .products-page .product-dyer {
    flex-direction: column;
  }

  .products-page .dyer-content h1,
  .products-page .characteristics-title,
  .products-page .building-title {
    font-size: 42px;
  }

  .products-page .products-title {
    font-size: 50px;
  }

  .products-page .products-content {
    padding: 40px 20px;
  }
}
