:root {
    /*--sony-red: #cc0000*/;
    --dark-bg: #1a1a1a;
}

/* Add to CSS */
.loading-pulse {
    animation: pulse 1.5s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 0.3; }
    100% { opacity: 0.6; }
}


/* Product Styling */
.product-title {
    font-size: 2rem;
    font-weight: 700;
    /*margin-bottom: 1rem;*/
    line-height: 1.2;
}

.price-card {
    background: #f8f9fa;
    border-radius: 8px;
    /*padding: 1rem;*/
    margin: 1rem 0;
    border-left: 4px solid var(--sony-red);
}

.price {
    font-size: 2rem;
    color: black!important; /* Set color to black */
    font-weight: 700;
    letter-spacing: -1px;
}
.price_re {
    color: red!important; /* Set the price text to red */
    font-weight: bold; /* Make the price bold */
}

.spec-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s;
}

.spec-card:hover {
    transform: translateY(-3px);
}

.spec-icon {
    color: var(--sony-red);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Contact Icons */
.contact-icons {
    display: flex;
    gap: 15px;
    margin: 1.5rem 0;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
    text-decoration: none;
	margin: 0 35px; /* Adds spacing on both sides */
}

.icon-circle.phone {
    background: var(--sony-red);
}

.icon-circle.whatsapp {
    background: #25D366;
}
/* Hide phone & WhatsApp icons by default */
.contact-icons .icon-circle {
    display: none !important
		; 
}

/* Show only on screens smaller than 768px (Mobile) */
@media (max-width: 767px) {
    .contact-icons .icon-circle {
        display: inline-flex !important
			; /* Show icons on mobile */
    }
}
.icon-circle:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Social Share */
.social-share {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-share a {
    text-decoration: none;
    color: white;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-share a.facebook { background: #3b5998; }
.social-share a.twitter { background: #1DA1F2; }
.social-share a.linkedin { background: #0077b5; }
.social-share a.whatsapp { background: #25D366; }

.social-share a:hover {
    opacity: 0.8;
	/* Ensure price & badges wrap properly on mobile */
.price-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
}

/* Fix wrapping for small screens */
.price-card .d-flex {
    flex-wrap: wrap;
    justify-content: start;
}

/* Ensure spacing & proper alignment */
.price-card span {
    white-space: nowrap; /* Prevent text breaking in weird ways */
    text-align: center;
    padding: 5px 10px;
}
	
/* Add a line under the section */
.with-line {
    border-bottom: 2px solid #000;  /* Line color and thickness */
    padding-bottom: 15px;  /* Space between the content and the line */
    margin-bottom: 20px;  /* Space between the line and the next section */
}

/* Second TV Details Styling */
#second-tv-details .price-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}
	 .price-card{
		    width: 700px!important;
	}
#second-tv-details .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

#second-tv-details .badge {
    font-size: 0.85rem;
    padding: 0.5em 0.75em;
}

#second-tv-details .text-muted {
    color: #6c757d !important;
    font-size: 0.9rem;
}
