body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #333;
    color: #fff;
    padding: 0px 0;
}

header h1 {
    text-align: center;
}

nav {
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links, .footer-social, .footer-contact {
    margin: 10px;
}

.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.heavytext {
    color: black; /* Text color for light navbar */
        font-family: "Avenir Next", sans-serif;
        font-weight: 700;
        }

    .active-support-page h3 {
        color: #FF8311; /* Orange color for active page */
        border-bottom: 2px solid #FF8311; /* Underline for active page */
        padding-bottom: 5px;
    }

.btn-primary, .btn-warning, .btn {
    background-color: #FF8311 !important;
    border-color: #FF8311 !important;
    color: #fff !important;
}

.btn-primary:hover, .btn-warning:hover, .btn:hover {
    background-color: #e67300 !important;
    border-color: #e67300 !important;
    color: #fff !important;
}

.product-box {
    width: 100%; /* Flexible width to fit container */
    height: 360px; /* Fixed height for the product box */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative; /* Needed for absolute positioning of wishlist */
}

.product-box .card-img-top {
    height: 200px; /* Fixed height for the image */
    width: 100%; /* Ensure image takes full width of its container */
    object-fit: contain;
    padding: 10px;
}

.product-box .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.product-box .card-title {
    margin-top: auto; /* Pushes the title to the bottom if content above it shrinks */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 3em; /* Approximate height for 2 lines of text (adjust as needed) */
}

.product-box .card-body .d-flex {
    margin-top: auto; /* Pushes the button group to the bottom */
}

/* New button styles */
.btn-orange {
    background-color: #FF8311 !important;
    border-color: #FF8311 !important;
    color: #fff !important;
}

.btn-orange:hover {
    background-color: #e67300 !important;
    border-color: #e67300 !important;
}

.btn-outline-orange {
    background-color: transparent !important;
    border-color: #FF8311 !important;
    color: #FF8311 !important;
}

.btn-outline-orange:hover {
    background-color: #FF8311 !important;
    color: #fff !important;
}

.featured-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: transparent; /* Transparent background for outline */
    border: 1px solid #555; /* Dark gray outline */
    color: #555; /* Dark gray text */
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7em; /* Smaller font size */
    font-weight: bold;
    z-index: 5;
}

.card {
    background-color: rgba(255, 255, 255, 0.3) !important; /* 30% transparent white */
    border-radius: 0 !important; /* Sharp edges */
    border: 1px solid rgba(0, 0, 0, 0.125) !important; /* Maintain a subtle border */
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: black;
    border: none;
    margin-right: 2px;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    color: #FF8311;
    border: none;
}

.tab-content {
    border: none;
    background-color: transparent !important;
}

#specifications .tab-body,
#specifications table,
#specifications tbody {
    background-color: transparent !important;
}

.btn-add-to-quote {
    background: linear-gradient(45deg, #ff8c00, #ff6b35);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255,140,0,0.2);
}

.highlighted-pill,
.pill-link {
    background-color: transparent !important;
    color: #343a40 !important;
    border-radius: 20px !important; /* Pill shape */
    padding: 0.15rem 0.5rem !important; /* Reduced padding */
    white-space: nowrap !important; /* Prevent text from wrapping within the pill */
    font-size: 0.8em !important; /* Smaller font size */
    border: 1px solid #343a40 !important;
}

.pill-link:hover {
    background-color: #343a40 !important;
    border-color: #343a40 !important;
    color: white !important;
}

/* The .btn-custom rules are left as they were */
.btn-custom {
    background-color: #FF8311 !important;
    color: white !important;
    /* Standard Bootstrap button sizing */
    border-radius: 0.25rem !important;
    padding: 0.375rem 0.75rem !important;
    white-space: nowrap !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    border: 1px solid #FF8311 !important;
}

.btn-custom:hover {
    background-color: #e67300 !important;
    border-color: #e67300 !important;
    color: white !important;
}

.view-more-link {
    color: #FF8311 !important;
    text-decoration: none !important;
}



