
        body {
            font-family: Arial, sans-serif;
            color: #333;
            margin: 0;
            padding: 0;
        }
        .header-space {
            height: 60px; /* Adjust to match header height */
        }
        .product-detail {
            padding: 40px 0;
        }
        .product-detail .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .product-detail img {
            max-width: 100%;
        }
        .product-detail h1 {
            font-size: 2.5rem;
            color: #333;
        }
        .product-detail .card-body {
            padding: 20px;
        }
        .product-detail .card-body p {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
            margin: 10px 0;
        }
        .product-detail .price {
            font-size: 1.5rem;
            color: #d9534f;
            margin: 10px 0;
        }
        .product-detail .btn {
            background-color: #5bc0de;
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
        }
        .product-detail .btn:hover {
            background-color: #31b0d5;
        }
        .product-detail .social-links {
            margin-top: 20px;
            display: flex;
            gap: 15px;
            align-items: center;
            text-align: center;
        }
        .product-detail .social-links a {
            text-decoration: none;
            font-size: 2rem;
            color: #555;
            transition: color 0.3s ease;
        }
        .product-detail .social-links a:hover {
            color: #000;
        }
        .product-detail .social-links .facebook-link {
            color: #3b5998;
        }
        .product-detail .social-links .facebook-link:hover {
            color: #2d4373;
        }
        .product-detail .social-links .instagram-link {
            color: #C13584;
        }
        .product-detail .social-links .instagram-link:hover {
            color: #A8336A;
        }
        .product-detail .social-links .whatsapp-link {
            color: #25D366;
        }
        .product-detail .social-links .whatsapp-link:hover {
            color: #128C7E;
        }
        .related-products {
            padding: 40px 0;
            background-color: #f9f9f9;
        }
        .related-products h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #333;
        }
        .related-products .card {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .related-products .card img {
            max-width: 100%;
        }
        .related-products .card-body {
            padding: 15px;
        }
        .related-products .card-body h5 {
            font-size: 1.2rem;
            margin: 10px 0;
        }
        .related-products .price {
            font-size: 1.2rem;
            color: #d9534f;
        }
        .related-products .btn {
            background-color: #5bc0de;
            color: #fff;
            padding: 8px 16px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
        }
        .related-products .btn:hover {
            background-color: #31b0d5;
        }
        @media (max-width: 768px) {
            .product-detail .row {
                flex-direction: column;
            }
            .product-detail .col-lg-6 {
                width: 100%;
            }
        }
        @media (max-width: 576px) {
    .product-detail .col-lg-6 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .product-detail .col-lg-6 img {
        max-width: 90%;
        margin-bottom: 20px;
    }
    .product-detail .card-body {
        padding: 0;
    }
}

