#logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Amazon Ember', Arial, sans-serif;
}

.softadastra {
    font-size: 2.2em;
    font-weight: bold;
    color: #000;
    position: relative;
}

.softadastra .soft {
    color: #ff9900;
}

.softadastra .adastra {
    color: #000;
}

.softadastra .dotcom {
    color: #ff9900;
    font-weight: 700;
    font-size: 0.9em;
}

.smile {
    position: relative;
    display: inline-block;
    padding-bottom: 1px;
}

.smile::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    border-bottom: 2px solid #ff9900;
    border-radius: 50%;
    transform: scaleX(0.8);
}

@media (max-width: 991px) {
    #logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        font-family: 'Amazon Ember', Arial, sans-serif;
        margin-left: 0px;
    }

    .navbar a {
        padding: 12px 0px;
    }

    .softadastra {
        margin-right: 25px;
    }
}

.center-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #202124;
    text-align: center;
}

.center-container {
    flex-direction: column;
    margin-top: 4vh;
}

.no-articles-message {
    margin-top: 40px;
    color: #666;
}

.no-articles-message .icon {
    font-size: 2em;
    color: #888;
}

.tutorial-container {
    margin-top: 40px;
    color: #555;
}

#search-input {
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 10px;
}

#search-input:hover {
    border-color: #ff9900;
}

#search-input:focus {
    border-color: #ff9900;
    outline: none;
}

.image-skeleton {
    background-color: #eee;
    width: 100%;
    height: 230px;
    animation: pulse 1.2s infinite ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
}

@keyframes pulse {
    0% {
        background-color: #eee;
    }

    50% {
        background-color: #ddd;
    }

    100% {
        background-color: #eee;
    }
}

#tutorial {
    max-width: 100ch;
    margin: 20px auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
}

#tutorial h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

#tutorial p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

@media (max-width: 768px) {
    #tutorial {
        max-width: 90%;
        padding: 15px;
    }

    #tutorial h3 {
        font-size: 18px;
    }

    #tutorial p {
        font-size: 14px;
    }
}

.loading-spinner {
    text-align: center;
    font-size: 24px;
    color: #333;
    padding: 20px;
}

#search-results {
    transition: opacity 0.2s ease;
    opacity: 1;
    margin-bottom: 100px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
    text-align: left;
    letter-spacing: 1px;

}

.card-title {
    text-transform: none;
}

.price-with-shipping {
    display: flex;
    align-items: center;
    color: #ff9900;
    text-decoration: none;
    font-weight: 375;
    margin-top: 5px;
    margin-bottom: 5px;
    gap: 8px;
}

.price-with-shipping:hover {
    text-decoration: underline;
}

.price-text {
    font-size: 1rem;
}

.shipping-info {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #777;
    gap: 3px;
}

.shipping-info i {
    font-size: 0.9rem;
    color: #ff9900;
}

@media (max-width: 991px) {
    .content .box .text-product {
        height: auto;
        max-height: 184px;
        padding-left: 10px;
        margin-bottom: 10px;
    }
}

.barre a.active {
    color: #fff !important;
    border-radius: 6px;
}

#search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%; 
    max-height: 300px;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    #search-suggestions {
        width: calc(100% - 30px); 
        margin-left: 15px;         
        margin-right: 15px;     
    }
}

.suggestion-item {
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #202124;
    transition: background-color 0.3s ease;
    text-align: left;
}

.suggestion-item:hover {
    background-color: #f1f3f4;
}

.suggestion-item a {
    text-decoration: none;
    color: inherit;
}

.suggestion-item a:hover {
    text-decoration: underline;
}
.product-img {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}