@font-face {
    font-family: 'Avenir-Next-Medium';
    src: url('../fonts/avenir-next-medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir-Next-Regular';
    src: url('../fonts/avenir-next-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'RobotoCondensed-Black';
    src: url('../fonts/RobotoCondensed-Black.ttf') format('truetype');
}

:root {
    --card-width: 90%;
}

.container {
    width: 85%;
    margin: 5rem auto;
    /*padding: 20px 0;*/
}

.navx-navbar {
    z-index: 0 !important;
}

.navx-nav-links {
    z-index: 1000;
}

.roboto-condensed-nav {
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.trustech-logo{
    position: relative;
    padding: 2rem 0 0 2rem;
    z-index: 2;
}

.brand-logo {
    position: relative;
    margin-left: 9%;
}

.brand-logo img {
    max-width: 300px;
    height: auto;
}

.product-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.25rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    justify-content: center;
}

.product-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    width: var(--card-width);
    margin: 0 auto;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.card-content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-grow: 1;
}

.product-content {
    flex: 1;
    min-width: 50%;
}

.product-image {
    width: 50%;
    /* max-height: 180px; */
    object-fit: contain;
    /*align-self: flex-end;*/
}

.favorite-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: #838383;
    width: 3rem;
    height: 3rem;
    z-index: 2;
}

.popup-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    font-family: 'Avenir-Next-Medium';
    margin: 1rem;
}

.popup-close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
}

.cta-form input {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.6rem;
    border-radius: 0.4rem;
    border: 1px solid #ccc;
}

.cta-form button {
    background-color: #006694;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    width: 100%;
}

.popup-success {
    font-size: 1.1rem;
    text-align: center;
    color: #006694;
    font-weight: bold;
    padding: 1.5rem 1rem;
}

.favorite-icon.active {
    color: #0073e6;
}

.product-card a {
    color: black;
    text-decoration: none;
    transition: 0.3s ease;
    /*padding: 3rem 0;*/
}

.details-link:hover {
    transition: all;
}

.details-link svg {
    width: 20px;
    height: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-family: 'Avenir-Next-Medium';
}

.product-features li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    line-height: 1.4;
}

.bullet-icon {
    color: #0073e6;
    margin-right: 1.2rem;
    font-size: 1.2rem;
}

.top-left-logo {
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: 1000; */
     width: 50%; 
    /* height: auto; */
    mix-blend-mode: multiply;
}

.bifurcation-text{
    font-size: 0.8rem;
    font-weight: 700;
    color: #006694;
    font-family: 'Avenir-Next-Medium';
}

.independent-coming-soon {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.coming-soon-standalone {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    box-shadow: none;
    border: 1px dashed #ccc;
}

.coming-soon-icon-standalone {
    font-size: 48px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.coming-soon-title-standalone {
    color: #333;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.25rem;
    font-weight: 500;
}

.coming-soon-text-standalone {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    font-family: 'Avenir-Next-Medium';
}

.big-scr{
    display: block !important;
}

.sm-scr{
    display: none !important;
}

.extron-more-products{
    margin: 30px 0;
    text-align: center;
    padding: 0.1rem 0;
    font-size: 1rem;
    width: 100%;
    font-family: 'Avenir-Next-Medium';
    bottom: 0;
    position: relative;
}

@media (max-width: 768px) {
    .navx-navbar {
         z-index: 1000 !important; 
    }
    
    .back-arrow {
        z-index: 999 !important;
        left: 2rem !important;
    }

    .container {
        margin: 5rem auto;
    }
    .product-title{
        margin: 2rem auto;    
    }
    
    .product-card {
        padding: 0 2rem 1rem;
        width: 80%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-content-wrapper {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        max-height: 200px;
    }

    .details-link {
        bottom: 15px;
        left: 15px;
    }

    .top-left-logo {
        width: 100%;
        top: 0.5rem;
    }
    .coming-soon-standalone {
        padding: 30px;
    }
    
    .coming-soon-title-standalone {
        font-size: 20px;
    }
    
    .coming-soon-text-standalone {
        font-size: 14px;
    }
    
    .big-scr{
        display: none !important;
    }
    
    .sm-scr{
        display: block !important;
    }
    
    .brand-logo {
        top: 0rem;
        margin-left: 25%;
    }
}
        
@media (max-width: 480px) {
    .coming-soon-standalone {
        padding: 20px;
        border-radius: 8px;
    }
    
    .coming-soon-icon-standalone {
        font-size: 36px;
        margin-bottom: 15px;
    }
}