/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 10px;            /* important for mobile edges */
    box-sizing: border-box;  
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


.secticnt {
    margin-bottom: 20px;
    line-height: 140%; 
    text-align: right;
}

/* Heading */
h1 {
    font-size: 20px;
    color: black;
}

/* Features List */
ul {
    list-style: circle; 
    padding: 0;
    padding-left: 5px; /* edge → bullet */
    text-align: left;
    margin-left: 20px;
}

li {
    margin: 8px 0;
    padding: 5px;
    border-radius: 5px;
    clear: left;
    /* padding-left: 2px; */
}

/* Features List */
ul#features4 {
    list-style: circle; 
    padding: 0;
    padding-left: 25px;
    text-align: left;
    margin-left: 20px;
}

ul#features4 li {
    margin: 8px 0;
    padding: 5px;
    border-radius: 5px;
    /* padding-left: 2px; */
}





/* Image Gallery */
.images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.images img {
    width: 100%;    
    height: auto;
    max-width: 1200px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.images img:hover {
    transform: scale(1.1);
}

/* Video */
iframe {
    width: 100%;
    max-width: 1200px;
    height: calc(1200px*315/500);
    margin-top: 20px;
    border-radius: 5px;
}

/* Description */
p#description {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 20px;
    text-indent: 2em;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    iframe {
        height: 250px;
    }
}

.image-container {
    display: flex;
    justify-content: center;
    /* margin-top: 5px; */
    margin-bottom: 30px;
}

#product-image {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}



.desctription_text{
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 20px;
    text-indent: 2em;
    clear: left;
}

.feature-badge {
  margin-left: 8px;
  padding: 2px 6px;
  font-size: 12px;
  background: #ff9800;
  color: white;
  border-radius: 4px;
  font-weight: bold;
}

.feature-picture{
  display:block;
  margin-top:6px;
  width: 100%;
  max-width:520px;
  border-radius:8px;
}

.badge-new { background: #28a745; }
.badge-pro { background: #007bff; }

button {
    margin: 10px;
    padding: 10px 15px;
    background: white;
    color: gray;
    border: 1px solid;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    /*background: #0056b3;*/
    color: black;
    border: 1px solid;
}


#more-details {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
}