﻿/* Logo styles */

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    transition: 0.3s;
    background: #fff;
}

    .product-card:hover {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

.product-title {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
    color: #333;
}

.product-price ins {
    font-weight: bold;
    color: #d0021b;
    text-decoration: none;
}

.product-price del {
    color: #777;
    margin-left: 6px;
    font-size: 0.9rem;
}

/* Jewelry Loader Styles */
.jewelry-loader {
    position: relative;
    width: 64px;
    height: 64px;
}

    .jewelry-loader .ring {
        width: 64px;
        height: 64px;
        border: 6px solid #d4af37;
        border-top: 6px solid #fffbe6;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    .jewelry-loader .gem {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 18px;
        height: 18px;
        background: radial-gradient(circle at 60% 40%, #e5c7ff 60%, #a67ee5 100%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 8px #a67ee5;
        border: 2px solid #fff;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Category tag styles for mobile */
.category-tag {
    font-size: 0.95rem;
    border-color: #d4af37;
    color: #333;
    transition: background 0.2s, color 0.2s;
}

    .category-tag:hover,
    .category-tag.active {
        background: #d4af37;
        color: #fff;
        border-color: #d4af37;
    }
.no-products {
    margin: 3rem 0;
    padding: 2rem;
    /*background: #fafafa;*/
    border-radius: 12px;
    /*border: 1px solid #eee;*/
    /*box-shadow: 0 3px 8px rgba(0,0,0,0.05);*/
}

.no-products-inner {
    max-width: 500px;
    margin: auto;
}

.no-products-img {
    max-width: 120px;
    opacity: 0.8;
}

.no-products-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
}

.no-products-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.btn-outline-custom {
    border: 1px solid #b88a44;
    color: #b88a44;
    font-weight: 500;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease-in-out;
}

    .btn-outline-custom:hover {
        background: #b88a44;
        color: #fff;
    }

.list-group-item.active {
    background-color: #e4d1b2;
    font-weight: 600;
    border: 0px;
    padding-left: 5px !important;
}

    .list-group-item.active a {
        color: #790000;
    }
.list-group-item:hover {
    background-color: #ffeac9;
    font-weight: 600;
    border: 0px;
    padding-left: 5px !important;
    transition: 0.2s;
}
.category-aside {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
