body{
font-family:Arial;
margin:0;
background:#f4f4f4;
}

header{
background:black;
color:white;
padding:20px;
text-align:center;
}

.container{
max-width:1100px;
margin:auto;
padding:20px;
}

.products{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1000px;
margin:auto;
}

.card{
background:white;
padding:18px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
text-align:center;
transition:0.2s;
}

.card:hover{
transform:translateY(-5px);
}

.card img{
width:100%;
max-height:160px;
object-fit:contain;
margin-bottom:10px;
}

.price{
font-size:20px;
color:#27ae60;
margin:10px 0;
}

button{
background:black;
color:white;
border:none;
padding:10px 15px;
border-radius:5px;
cursor:pointer;
}

button:hover{
background:#333;
}

footer{
text-align:center;
padding:20px;
margin-top:30px;
background:#111;
color:white;
}

.card{
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
text-align:center;
transition:0.2s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.logo-preview{
position:relative;
width:100%;
}

.logo-preview img{
width:100%;
border-radius:10px;
}

.watermark{
position:absolute;
top:0;
left:0;
width:100%;
opacity:0.25;
pointer-events:none;
}

.card h3{
font-size:16px;
margin:8px 0;
}

.card p{
font-size:13px;
color:#666;
}

.price{
font-size:16px;
margin:6px 0;
}

@media (max-width:768px){

.products{
grid-template-columns:repeat(2,1fr);
}

}

.card{
cursor:pointer;
}

.card h3{
font-size:15px;
margin:10px 0 5px;
}

.price{
font-size:16px;
color:#27ae60;
font-weight:bold;
}

.card{
position:relative;
}

.sold-label{
position:absolute;
top:10px;
left:10px;
width:70px;
}

.sold-out{
margin-top:20px;
font-size:20px;
font-weight:bold;
color:red;
}

.main-header{
border-bottom:1px solid #eee;
background:white;
}

.header-container{
max-width:1100px;
margin:auto;
padding:18px 20px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo h1{
margin:0;
font-size:22px;
letter-spacing:1px;
}

.logo span{
font-size:11px;
color:#888;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#333;
font-size:14px;
}

nav a:hover{
color:black;
}

.logo img{
height:60px;
}

.desc-box{
margin-top:10px;
}

.desc-box{
margin-top:10px;
}

.desc-text{
max-height:150px;
overflow:hidden;
white-space:pre-line;
line-height:1.6;
color:#555;
position:relative;
transition:max-height 0.3s ease;
}

.desc-text.open{
max-height:1000px;
}

.desc-btn{
margin-top:6px;
background:none;
border:none;
color:#0077ff;
cursor:pointer;
font-size:14px;
}

.desc-btn:hover{
text-decoration:underline;
}

.desc-text::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:50px;
background:linear-gradient(to bottom, rgba(255,255,255,0), #f4f4f4);
}



.files-section{
margin-top:-20px;
}

.files-section h4{
margin-bottom:10px;
font-size:14px;
color:#666;
}

.files-grid{
display:flex;
gap:20px;
}

.file-item{
display:flex;
flex-direction:column;
align-items:center;
font-size:12px;
color:#444;
}

.file-item img{
width:32px;
margin-bottom:4px;
}

@media (max-width:768px){

.logo img{
height:40px;
}

.header-container{
padding:12px 15px;
}

}