/* Container */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Header */
.product-header {
    text-align: center;
    padding: 40px 20px 20px 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.product-header h1 {
    color: #070529;
    font-size: 2.5rem;
}

.product-header p {
    font-size: 1.2rem;
    color: #555;
}

/* Product Content */
.product-content {
    margin-bottom: 60px;
    overflow: hidden; /* Clear floats */
}

.product-content > div:first-child {
    float: left;
    width: 50%;
    padding-right: 40px;
}

.product-content > div:last-child {
    overflow: hidden; /* Create block formatting context */
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.product-details h2 {
    color: #070529;
    margin-bottom: 15px;
}

.product-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.specifications {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.specifications h3 {
    color: #070529;
    font-size: 18px;
    margin-bottom: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
    color: #555;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: bold;
}

/* Features / Applications */
.features h3 {
    color: #070529;
    font-size: 18px;
    margin-bottom: 10px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features ul li {
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: bold;
}

/* Glass Categories */
.glass-category {
    background: linear-gradient(135deg, #ffffff, #f8faff);
    border: 1px solid #dee3ec;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 22px rgba(5, 35, 80, 0.06);
}

.glass-category h2 {
    color: #053672;
    font-size: 26px;
    margin-bottom: 16px;
    border-left: 4px solid #38bdf8;
    padding-left: 12px;
}

.glass-category h3,
.glass-category h4 {
    color: #1f3f70;
    margin-top: 20px;
    margin-bottom: 8px;
}

.glass-category p {
    color: #42566b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.glass-category ul {
    list-style: none;
    padding: 0;
    column-count: 2;
    column-gap: 30px;
    margin-bottom: 18px;
}

.glass-category li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #475775;
}

.glass-category li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-size: 20px;
    line-height: 1;
}

/* Related Products */
.related-products h2 {
    color: #070529;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-card-content {
    padding: 15px;
}

.product-card-content h3 {
    color: #070529;
    font-size: 16px;
    margin-bottom: 8px;
}

.product-card-content p {
    color: #555;
    font-size: 14px;
}

/* Navigation */
.navigation {
    text-align: center;
    margin: 40px 0;
}

.nav-button {
    display: inline-block;
    margin: 5px 10px;
    padding: 10px 18px;
    background-color: #38bdf8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-button:hover {
    background-color: #0ea5e9;
}

/* Footer */
footer {
    background: #070529;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #38bdf8;
    text-decoration: none;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #38bdf8;
    color: black;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background: #0ea5e9;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #070529;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    color: #555;
    font-size: 14px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-header h1 {
        font-size: 1.8rem;
    }

    .product-header p {
        font-size: 1rem;
    }
}