fajiQprx
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f9fafb;
margin: 0;
padding: 20px;
color: #1f2937;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-top: 0;
margin-bottom: 10px;
color: #111827;
}
.price {
font-size: 1.8rem;
font-weight: 700;
color: #0b7a3a;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #e5e7eb;
flex: 1 1 200px;
object-fit: cover;
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin: 30px 0;
}
@media (max-width: 700px) {
.grid-2 {
grid-template-columns: 1fr;
}
}
table.specs {
width: 100%;
border-collapse: collapse;
background: #f3f4f6;
border-radius: 12px;
overflow: hidden;
}
table.specs td {
padding: 12px 16px;
border-bottom: 1px solid #d1d5db;
}
table.specs tr:last-child td {
border-bottom: none;
}
table.specs td:first-child {
font-weight: 600;
width: 40%;
color: #374151;
}
.description {
line-height: 1.7;
font-size: 1.05rem;
color: #2d3748;
}
.why-buy {
background: #f0fdf4;
padding: 20px 25px;
border-radius: 16px;
margin: 25px 0;
border-left: 5px solid #16a34a;
}
.why-buy ul {
margin: 10px 0 0;
padding-left: 20px;
}
.why-buy li {
margin-bottom: 8px;
font-weight: 500;
}
.faq {
margin-top: 30px;
}
.faq-item {