

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.p-detail-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-header {
    display: flex;
    gap: 20px;
}

.product-image-container {
    flex: 1;
    text-align: center;
}

.product-image-container img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-image-container img:hover {
    transform: scale(2);
    z-index: 200;
    position: relative;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.1);
}

.product-info {
    flex: 1;
}

.product-info h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.product-info .price {
    color: #e91e63;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-info .details {
    margin: 15px 0;
    color: #666;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.quantity input {
    width: 50px;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.btn:hover {
    background-color: #333;
}
.tabs {
    margin-top: 20px;
    border-top: 1px solid #ddd;
}

.tabs ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ddd;
}

.tabs ul li {
    padding: 10px 20px;
    cursor: pointer;
    color: #666;
    border-right: 1px solid #ddd;
}

.tabs ul li.active {
    background-color: #f4f4f4;
    font-weight: bold;
    color: #333;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.download-btn:hover {
    background-color: #0056b3;
}
.product-description a {
    color: #0066cc;
    text-decoration: none !important;
	font-weight: 600;
}

.product-description a:hover,
.product-description a:visited,
.product-description a:active {
    color: #0066cc;
    text-decoration: none !important;
	font-weight: 600;
}