.section-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 20px;
padding-bottom: 8px;
border-bottom: 1px solid #e5e5e5;
}
.description {
font-size: 1rem;
line-height: 1.7;
margin-bottom: 20px;
}
.description strong {
font-weight: 600;
}
.specifications {
display: grid;
gap: 0;
}
.specifications-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.dimensions-table {
max-width: 400px;
}
.spec-item {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 12px 0;
border-bottom: 1px solid #f0f0f0;
}
.spec-item:last-child {
border-bottom: none;
}
.spec-label {
font-weight: 500;
color: #555;
}
.spec-value {
text-align: right;
color: #333;
}
.warranty-text {
font-size: 0.95rem;
line-height: 1.6;
}
/* Video Section Styles */
.video-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-top: 20px;
}
.video-thumbnail {
position: relative;
cursor: pointer;
border-radius: 8px;
overflow: hidden;
background: #000;
aspect-ratio: 16/9;
}
.video-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: opacity 0.3s ease;
}
.video-thumbnail:hover img {
opacity: 0.8;
}
.video-play-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50px;
height: 50px;
background: rgba(0, 0, 0, 0.7);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
}
.video-thumbnail:hover .video-play-button {
background: rgba(0, 0, 0, 0.9);
}
.video-play-button::after {
content: ”;
width: 0;
height: 0;
border-left: 15px solid white;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
margin-left: 3px;
}
.video-title {
text-align: center;
margin-top: 10px;
font-size: 0.9rem;
color: #555;
line-height: 1.3;
}
/* Modal Styles */
.video-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
z-index: 1000;
align-items: center;
justify-content: center;
padding: 20px;
}
.video-modal-content {
position: relative;
width: 90%;
max-width: 800px;
aspect-ratio: 16/9;
background: #000;
border-radius: 8px;
overflow: hidden;
}
.video-modal iframe {
width: 100%;
height: 100%;
border: none;
}
.video-close {
position: absolute;
top: -40px;
right: 0;
background: white;
border: none;
border-radius: 20px;
padding: 8px 15px;
cursor: pointer;
font-size: 14px;
color: #333;
}
/* Mobile Styles */
@media (max-width: 768px) {
body {
padding: 15px;
}
.section-title {
font-size: 1.3rem;
}
.specifications-split {
grid-template-columns: 1fr;
gap: 30px;
}
.spec-item {
grid-template-columns: 1fr;
gap: 4px;
padding: 10px 0;
}
.spec-value {
text-align: left;
font-weight: 500;
}
.description {
font-size: 0.95rem;
}
.dimensions-table {
max-width: none;
}
.video-grid {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.video-modal-content {
width: 95%;
}
}
@media (max-width: 480px) {
body {
padding: 10px;
}
.section-title {
font-size: 1.2rem;
}
.video-grid {
grid-template-columns: 1fr;
gap: 15px;
}
}
Description
Specifications
Dimensions
Videos










Reviews
There are no reviews yet.