*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:black;
font-family:Arial, Helvetica, sans-serif;
}

.container{
min-height:100vh;
}

/* NAVBAR */

.nav{
height:64px;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 25px;
background:black;
}

.logo{
height:36px;
}

.nav-icons{
display:flex;
gap:16px;
}

.nav-icons img{
width:24px;
height:24px;
cursor:pointer;
}


/* PRODUCT HERO */

.product-hero{
height:calc(100vh - 64px);
position:relative;
overflow:hidden;
background:#e8e8e8;
}


/* VIDEO BACKGROUND */

.product-hero video{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
z-index:0;
}


/* CENTER CONTENT */

.hero-content{
position:relative;
z-index:2;

height:100%;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

gap:70px;
text-align:center;
padding:20px;
}


/* TEXT */

.hero-text{
font-size:13px;
font-weight:600;
color:#111;
max-width:520px;
}


/* BUTTON */

.cart-btn{
background:#1f1f1f;
color:white;
border:none;

padding:12px 50px;

cursor:pointer;

font-size:12px;
font-weight:600;
}

.cart-btn:hover{
background:#333;
}
