@import url('https://fonts.googleapis.com/css2?family=Birthstone&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



.bbb {
    border: solid red 2px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 1rem;
}

.title {
    color: #333;
    text-align: center;
}

.category-title {
    font-family: "Birthstone", cursive;
    color: #0F9D58;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #0F9D58;
    padding-bottom: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.viewer-container {
    position: relative;
    height: 300px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    margin-top: 0;
    color: #333;
}

.product-info p {
    color: #666;
    margin: 5px 0;
}

.model-viewer {
    width: 100%;
    height: 100%;
    --poster-color: transparent;
}

.loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
}

/*.view-ar-button {*/
/*    border: none;*/
/*    padding: 8px 12px;*/
/*    cursor: pointer;*/
/*    font-weight: bold;*/
/*    margin-top: 10px;*/
/*    transition: background-color 0.3s;*/
/*}*/

/*.view-ar-button:hover {*/
/*    background-color: #3367d6;*/
/*}*/

.ar-button {
    display: none;
}

.ar-button.supported {
    display: inline-block;
}

.message {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .viewer-container {
        height: 250px;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0de37e;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

.no-products {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #666;
}

.border-theme {
    border-bottom: #0F9D58 solid 2px;
}




.bbb {
    border: solid 2px red;
}

/*======slider menu======*/
