/* custom-styles.css */
body {
    padding-top: 50px; /* Ajuste si la navbar es fija, navbar-static-top no lo requiere por defecto */
    font-family: 'Tahoma', Geneva, sans-serif; /* Aplicar la fuente deseada globalmente */
    background-color: #fff;
}

.main-content {
    padding-top: 20px;
    padding-bottom: 20px;
}

.product-feature {
    margin-bottom: 30px;
}

.product-image {
    margin-bottom: 15px;
}

.product-details h1 {
    font-size: 28px; /* Ajustar tamaño del H1 */
    color: #ff3300; /* Color del H1 original */
    margin-top: 0;
    margin-bottom: 15px;
}

.product-details .lead {
    font-size: 18px;
    margin-bottom: 15px;
}

.price-offer {
    margin-bottom: 20px;
}

.price-offer .original-price {
    text-decoration: line-through;
    color: #777;
    margin-right: 10px;
}

.price-offer .current-price {
    font-size: 24px;
    font-weight: bold;
    color: #28a745; /* Un verde para la oferta */
}

.service-options p {
    font-size: 16px;
    margin-bottom: 10px;
}
.service-options .phone-link {
    font-weight: bold;
    color: #337ab7;
}
.service-options .phone-link:hover {
    text-decoration: underline;
}

.package-deal {
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 15px;
}
.package-deal .glyphicon-star {
    color: #f0ad4e; /* Amarillo para la estrella */
}

.related-products-services, .additional-info {
    margin-top: 40px;
    margin-bottom: 40px;
}

.section-title {
    margin-bottom: 30px;
    font-weight: bold;
}

.product-thumbnail, .info-thumbnail {
    margin-bottom: 15px;
    max-width: 250px; /* Ajusta según necesidad */
    height: auto; /* Mantiene la proporción */
}
.info-thumbnail { /* Para que las imagenes de requisitos, proyector y gps tengan un tamaño similar */
     width: 150px;
     height: 150px;
     object-fit: contain; /* contain o cover según prefieras */
}


.product-description, .info-description {
    font-size: 15px;
    color: #555;
    min-height: 60px; /* Para alinear mejor los paneles visualmente */
}

.panel-info .panel-title {
    font-size: 18px;
}

.requirements-list li {
    margin-bottom: 8px;
}
.requirements-list .glyphicon {
    margin-right: 8px;
    color: #5cb85c;
}

.ad-placeholder-top, .ad-placeholder-middle, .ad-placeholder-bottom {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9; /* Un fondo suave para el placeholder del anuncio */
    border: 1px dashed #ddd;
}
.ad-placeholder-top img, .ad-placeholder-middle img, .ad-placeholder-bottom img {
    max-width: 100%;
}

.footer-main {
    background-color: #f8f8f8;
    padding-top: 30px;
    padding-bottom: 10px;
    margin-top: 40px;
    border-top: 1px solid #e7e7e7;
}
.footer-bottom {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}
.footer-copyright p, .footer-links p {
    margin-bottom: 0;
    color: #777;
    font-size:14px;
}
.footer-links a {
    color: #777;
    margin-left: 5px;
}
.footer-links a:hover {
    color: #333;
    text-decoration: underline;
}
.footer-links .pull-right {
    margin-left: 15px;
}

/* Clases de utilidad */
.text-success { color: #5cb85c; }
.bg-info { background-color: #d9edf7; color: #31708f; }
.text-center { text-align: center; }
.center-block { display: block; margin-left: auto; margin-right: auto; }