body{
margin:0;
background:#050505;
color:white;
font-family:Inter,sans-serif;
}

.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}

.logo{
font-size:110px;
font-weight:900;
}

.logo span{
display:block;
font-size:24px;
letter-spacing:10px;
}

h1{
font-size:42px;
}

form{
display:flex;
gap:10px;
}

input{
padding:20px;
width:400px;
border-radius:12px;
border:none;
font-size:20px;
}

button{
border:none;
cursor:pointer;
padding:20px 30px;
border-radius:12px;
font-size:20px;
}

.blogger-login-link-main{
position:absolute;
right:40px;
top:30px;
color:white;
text-decoration:none;
}

.product{
display:grid;
grid-template-columns:1fr 450px;
gap:40px;
padding:50px;
}

.gallery img{
width:100%;
border-radius:16px;
}

.price{
font-size:48px;
font-weight:700;
margin:30px 0;
}

.buy{
width:100%;
background:white;
color:black;
}

.videos{
display:flex;
gap:20px;
overflow:auto;
}

video{
width:240px;
border-radius:12px;
}

.seller-page{
max-width:700px;
margin:100px auto;
}
.product-header {
  height: 76px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
}

.blogger-login-link {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 18px;
}

.product-page {
  padding: 40px;
}

.product-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 18px;
}

.main-photo {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: 24px;
  background: #151515;
}

.thumbs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.thumbs img {
  width: 100%;
  height: 228px;
  object-fit: cover;
  border-radius: 20px;
  background: #151515;
}

.product-info {
  padding-top: 50px;
}

.creator {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin-bottom: 30px;
}

.product-info h1 {
  font-size: 24px;
  line-height: 1;
  margin: 0 0 20px;
}

.article {
  color: rgba(255,255,255,.45);
  font-size: 18px;
  margin-bottom: 40px;
}

.price {
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 44px;
}

.size-title {
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}

.sizes {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}

.sizes button {
  width: 86px;
  height: 72px;
  border-radius: 16px;
  background: #f2f2f2;
  color: #000;
  font-size: 22px;
}

.sizes .active {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}

.buy {
  width: 100%;
  height: 78px;
  border-radius: 18px;
  background: #fff;
  color: #000;
  font-size: 24px;
}

.life {
  max-width: 1280px;
  margin: 70px auto 0;
}

.life h2 {
  font-size: 36px;
  margin: 0 0 8px;
}

.life p {
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}

.video-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.video-card {
  min-width: 240px;
}

.video-card video {
  width: 240px;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  background: #222;
}

.video-card span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.75);
}

@media (max-width: 900px) {
  .product-page {
    padding: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .main-photo {
    height: auto;
  }

  .thumbs {
    flex-direction: row;
    overflow-x: auto;
  }

  .thumbs img {
    min-width: 130px;
    height: 160px;
  }

  .product-info {
    padding-top: 0;
  }

  .product-info h1 {
    font-size: 24px;
  }

  .price {
    font-size: 42px;
  }
}
.brand{
  display:flex;
  align-items:center;
}

.logo{
  height:92px;
  width:auto;
  display:block;
}

.cabinet-name{
    font-size:24px;
    font-weight:600;
    margin-bottom:24px;
}