*{margin:0;padding:0;box-sizing:border-box;font-family:Arial, sans-serif;}

body{background:#000000;color:#fff;}


/* HEADER */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 140px;
  padding-left: 140px;
  background:rgba(0, 0, 0, 0.76);
  backdrop-filter:blur(10px);
  z-index:1000;
  
}

.header {
  border-bottom: 1px solid;
  position: fixed;
}

/* світлова лінія */
.header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
}


.logo {
  display: flex;          /* Ставить картинку і текст в один рядок */
  align-items: center;    /* Центрує їх по вертикалі один відносно одного */
  gap: 2px;              /* Робить відступ між картинкою та текстом */
}

.logo-img {
    width: 96px;
    height: 42px;
}

.logo-text{
  font-weight:bold;
  margin-top: 6px;
  font-size:17px;
  line-height: 1.2;
   /* Підключаємо шрифт Poppins */
  font-family: 'Poppins', sans-serif;
  /* 900 — це і є варіант Black */
  font-weight: 900;
}

.logo-text span{
    color: #ff2c2c;
}

.nav{
  display:flex;
  gap:35px;
}

.nav a{
  color:#fff;
  text-decoration:none;
  font-size:17.5px;
  transition: 0.3s;
}

.nav a:hover{
  color:#ff0000;
  text-decoration:none;
  font-size:17.5px;
}

.phone{
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.phone:hover{
  color: #ff0000;
  text-decoration: none;
}

.btn{
  border:1px solid #fff;
  text-decoration:none;
  color:#fff;
  
  transition:0.3s;
}

.btn:hover{
  background:#ff2c2c;
  border-color:#ff2c2c;
}

.order {
    text-decoration: none;
    display: flex;          /* Ставить картинку і текст в один рядок */
  align-items: center;    /* Центрує їх по вертикалі один відносно одного */
  gap: 40px;  
}


/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding-top: 120px;
  background: #0a0a0a;
  border-bottom: 1px solid #111;
  padding-left: 30px;
}

.breadcrumb .container {
  max-width: 1200px;
  margin: auto;
  font-size: 20px;
  font-weight: 600;
  color: #888;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #ff1e1e;
}

.breadcrumb span {
  margin: 0 8px;
}

.breadcrumb .active {
  color: #ff1e1e;
}

/* ===== HEADER ===== */
.catalog-header {
  padding: 80px 3% 40px;
  text-align: center;
}

.catalog-head h1 {
  font-size: 48px;
  font-weight: 800;
  text-align: center;

}

.catalog-head p {
  color: #aaa;
  margin-top: 10px;
  text-align: center;
}

/* ===== GRID ===== */
/* ===== ПЕРЕТВОРЮЄМО ТАБЛИЦЮ В КАРТОЧКИ ===== */

.beton-table {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  padding-left: 40px;
  padding-right: 40px;

  border: none !important;
  background: transparent !important;
}

/* CARD */
.beton-table .row {
  display: flex !important;
  flex-direction: column;

  background: #111;
  border-radius: 18px;
  border: 1px solid #1c1c1c;
  overflow: hidden;

  padding: 16px;
  gap: 10px;

  transition: 0.3s ease;
  min-width: 0;
}

/* hover */
.beton-table .row:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: #ff1e1e;
}

/* картинка */
.img-box {
  width: 100% !important;
  height: 180px !important;
  border-radius: 12px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.row:hover .img-box img {
  transform: scale(1.1);
}

/* M100 */
.mark {
  font-size: 22px;
  font-weight: 900;
  margin-top: 6px;
}

/* текст */
.row > div:nth-child(3) {
  color: #aaa;
  font-size: 14px;
}

.row > div:nth-child(4) {
  color: #ccc;
  font-size: 14px;
}

/* ціна */
.price {
  margin-top: auto;
  font-size: 18px;
  font-weight: 900;
  color: #ff2a2a;
}

/* кнопка */
.btn {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

/* PREMIUM */
.row.premium {
  border: 1px solid #ff1e1e;
  box-shadow: 0 0 20px rgba(255,0,0,0.2);
}

/* ===== TABLET ===== */
@media (max-width: 550px) {

  .beton-table {
    grid-template-columns: 1fr !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    max-width: 100% !important;
  }

  .beton-table .row {
    width: 100% !important;
  }

}
/* ===== CONTACT ===== */
.contact-lux {
  padding: 100px 6%;
  background: linear-gradient(180deg, #0b0b0b, #000);
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-text h2 {
    padding-top: 40px;
  font-size: 44px;
}

.contact-text{
    margin-bottom: 10px;
}

.contact-text p {
    padding-top: 70px;
  color: #cfcfcf;
}

.contact-form {
  background: #111;
  padding: 40px;
  border-radius: 22px;
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #0b0b0b;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 14px;
  color: #fff;
}

.contact-form button {
  background: linear-gradient(135deg, #d01504, #f34242);
  border: none;
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
}

/* BUTTON */
.btn {
  padding: 10px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.781);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.35s;
  backdrop-filter: blur(8px);
}

.btn:hover {
  border-color: #ff1e1e;
  color: #ffffff;
  transform: translateY(-2px);
}

/* PREMIUM */
.row.premium {
  background: linear-gradient(90deg, #1a0000, #0f0f0f);
  border-left: 4px solid #ff1e1e;
}

/* HOVER */
.row:not(.header):hover {
  background: #141414;
}



/* ===== FOOTER ===== */
.footer-lux {
  background: radial-gradient(circle at top, #111, #000);
  padding: 100px 6% 40px;
  border-top: 1px solid rgb(255, 255, 255);
}

/* grid */
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

/* brand */
.footer-brand h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer-brand p {
  color: #888;
  line-height: 1.7;
  font-size: 15px;
  max-width: 400px;
}

/* titles */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

/* underline accent */
.footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ff1e1e;
  margin-top: 8px;
}

/* list */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  color: #777;
  margin-bottom: 12px;
  font-size: 15px;
  transition: 0.25s;
}

/* hover ефект */
.footer-col li:hover {
  color: #fff;
  transform: translateX(4px);
}

/* bottom */
.footer-bottom {
  text-align: center;
  margin-top: 70px;
  font-size: 13px;
  color: #555;
  letter-spacing: 0.5px;
}

/* адаптив */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* BURGER */
.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  z-index:2000;
  margin-right: 10px;
}

.burger span{
  width:28px;
  height:3px;
  background:#fff;
  transition:0.3s;
}

/* ===== MOBILE ===== */
@media (max-width: 1404px){

  .header{
    display:flex;
    flex-direction:row;   /* 🔥 ВАЖЛИВО */
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
  }

  .left{
    display:flex;
    align-items:center;
  }

  /* 🔥 БУРГЕР ЗАВЖДИ СПРАВА ВГОРІ */
  .burger{
    display:flex;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    z-index:9999;
  }

  .burger span{
    width:28px;
    height:3px;
    background:#fff;
  }

  /* 🔥 ПРИХОВУЄМО order з хедера (вона буде в меню) */
  .order{
    display:none;
  }

  /* 🔥 FULL SCREEN MENU */
  .nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,0.97);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:25px;

    transform:translateX(100%);
    transition:0.4s ease;
    z-index:999;
  }

  .nav.active{
    transform:translateX(0);
  }

  .nav a{
    font-size:22px;
  }

  .nav a:hover{
    font-size:22px;
  }
}

/* ===== BURGER ANIMATION ===== */
.burger.active span:nth-child(1){
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2){
  opacity: 0;
}

.burger.active span:nth-child(3){
  transform: rotate(-45deg) translate(6px, -6px);
}

.burger span{
  transition: 0.3s ease;
}