@font-face {
  font-family: 'FiraSans';
  src: url('../assets/fonts/FiraSans-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'FiraSans';
  src: url('../assets/fonts/FiraSans-Bold.ttf') format('truetype');
  font-weight: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'FiraSans', sans-serif;
  background: #0f172a;
  color: #fff;
}
a{
  text-decoration: none;
}
/* Header Styles - FIXED */
.header {
   max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  padding: 16px 32px;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(37, 99, 235, 0.2);
  z-index: 1000;
}

.logo {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.logo_text {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.logo_subtitle {
  font-size: 11px;
  font-weight: 400;
  color: #3b82f6;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header_list {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav_link {
  font-weight: 500;
  font-size: 15px;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav_link:hover {
  color: #3b82f6;
}

.nav_link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.nav_link:hover::after {
  width: 100%;
}

.header_call {
  background-color: #ef4444;
  color: white;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.header_call:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger span {
    width: 26px;
    height: 3px;
    background: white;
    display: block;
    transition: 0.3s;
}
.top-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #111;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.3s;
    z-index: 9999;
}

.top-message.show {
    opacity: 1;
    transform: translateY(0);
}
/* Main */
main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 120px 32px 60px;
}

/* Product Hero */
.product_hero {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.product_hero_left {
  flex: 1;
}

.back_link {
  color: #3b82f6;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 30px;
}

.back_link:hover {
  color: #ef4444;
}

.product_hero_left h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.product_subtitle {
  font-size: 18px;
  color: #3b82f6;
  margin-bottom: 24px;
}

.product_description {
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 32px;
}

.product_badge {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.product_badge span {
  background: #1e293b;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
      display: flex;
    align-items: center;
}

.product_hero_right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.product_hero_right img {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

/* Params */
.product_params {
  margin-bottom: 80px;
}

.product_params h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.params_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.params_grid > div {
  background: #1e293b;
  padding: 24px;
  border-left: 3px solid #ef4444;
}

.param_label {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.param_value {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

/* Benefits */
.product_benefits {
  margin-bottom: 80px;
}

.product_benefits h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
}

.benefits_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefits_grid div {
  background: #1e293b;
  padding: 20px;
  font-size: 15px;
  text-align: center;
  border: 1px solid #334155;
}

.benefits_grid div:hover {
  border-color: #ef4444;
}

/* Usage */
.product_usage {
  margin-bottom: 80px;
}

.product_usage h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
}

.usage_list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.usage_list li {
  padding: 12px 0 12px 24px;
  border-left: 2px solid #3b82f6;
  color: #cbd5e1;
  font-size: 15px;
}

/* Supply */
.product_supply {
  margin-bottom: 80px;
}

.product_supply h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
}

.supply_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.supply_grid ul {
  list-style: none;
}

.supply_grid li {
  padding: 10px 0;
  border-bottom: 1px solid #334155;
  color: #cbd5e1;
  font-size: 15px;
}

/* Options */
.product_options {
  margin-bottom: 80px;
}

.product_options h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
}

.options_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.options_list li {
  padding: 12px 0 12px 24px;
  border-left: 2px solid #ef4444;
  color: #cbd5e1;
  font-size: 15px;
}

/* Order */
.product_order {
  background: #1e293b;
  padding: 48px;
  text-align: center;
  margin-bottom: 60px;
}

.product_order h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}

.product_order p {
  color: #94a3b8;
  margin-bottom: 32px;
}

.order_form {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.order_form input {
  background: #0f172a;
  border: 1px solid #334155;
  padding: 14px 20px;
  width: 250px;
  color: #fff;
  font-size: 14px;
}

.order_form button {
  background: #ef4444;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.order_form button:hover {
  background: #dc2626;
}

.footer {
    background: #0f172a;
    width: 100%;
    padding: 60px 20px 30px;
    border-top: 1px solid #1e293b;
}

.footer_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer_col {
    flex: 1;
    min-width: 160px;
}

.footer_logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.footer_desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.footer_col h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer_col ul {
    list-style: none;
}

.footer_col li {
    margin-bottom: 10px;
}

.footer_col a, .footer_col li {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer_col a:hover {
    color: #ef4444;
}

.footer_bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_bottom p {
    color: #64748b;
    font-size: 13px;
}

.bitopiya {
    color: #ef4444;
    text-decoration: none;
}

.bitopiya:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer_inner {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer_bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer {
        padding: 40px 20px 20px;
    }
}
@media (max-width: 900px) {
  main {
    padding: 100px 20px 40px;
  }
  
  .product_hero {
    flex-direction: column;
  }
  
  .params_grid {
    grid-template-columns: 1fr;
  }
  
  .benefits_grid {
    grid-template-columns: 1fr;
  }
  
  .usage_list {
    grid-template-columns: 1fr;
  }
  
  .supply_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product_hero_left h1 {
    font-size: 36px;
  }
}
@media (max-width: 880px) {
.nav_link{
  font-size: 14px;
}
.header_list {
        gap: 15px;
    }
    .product_hero_right img{
      max-height: 260px;
    }
}
@media (max-width: 768px) {
.burger {
        display: flex;
        margin-left: 15px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #0f172a;
        display: flex;
        flex-direction: column;
        padding: 100px 30px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }
.header_call {
    margin-left: auto;
    padding: 8px 10px;
}
    .nav.active {
        right: 0;
    }

    .header_list {
        flex-direction: column;
        gap: 20px;
    }

    .nav_link {
        font-size: 18px;
    }
    .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);
    }
}
@media (max-width: 490px) {
.product_badge span{
  font-size: 12px;
}
}
@media (max-width: 468px) {
.header_call{
  font-size: 14px;
}
.logo_text{
  font-size: 18px;
}
.logo_subtitle{
  font-size: 8px;
}
.header_call {
        padding: 7px 8px;
    }
    .callText{
      font-size: 12px;
    }
}