.memoriez-product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.memoriez-product-card {
    width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.memoriez-product-card:hover {
    transform: translateY(-5px);
}

.memoriez-product-card .main-image img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
}

.memoriez-product-card h2 {
    font-size: 1.1rem;
    margin: 12px 0 6px;
}

.memoriez-product-card .price {
    font-weight: bold;
    color: #444;
}

.memoriez-product-card .attribute-circles {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 12px 0 16px;
}

.memoriez-product-card .attribute-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.attribute-circle.silver {
    background: silver;
    border: 2px solid #ccc;
}

.attribute-circle.yellow-gold {
    background: linear-gradient(45deg, #FFD700, #FFC300);
    border: 2px solid #ccc;
}

.attribute-circle.rose-gold {
    background: linear-gradient(45deg, #b76e79, #e6c3c9);
    border: 2px solid #ccc;
}

/* Keep existing hover styles */
.attribute-circle:hover {
    transform: scale(1.2);
}

.memoriez-single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.memoriez-single-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image-large-wrapper {
    width: 100%;
    max-width: 500px;
}

.main-image-large {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail-image:hover {
    transform: scale(1.05);
}

.memoriez-single-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.memoriez-single-attributes.attribute-circles {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.attribute-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
}

/* Colors */
.attribute-circle.silver {
    background: silver;
}

.attribute-circle.yellow-gold {
    background: linear-gradient(45deg, #FFD700, #FFC300);
}

.attribute-circle.rose-gold {
    background: linear-gradient(45deg, #b76e79, #e6c3c9);
}



@media (max-width: 768px) {
    .memoriez-product-grid {
        flex-direction: column;
        align-items: center;
    }

    .memoriez-product-card {
        width: 90%;
        max-width: 320px;
    }

    .memoriez-product-card h2 {
        font-size: 1rem;
    }

    .memoriez-product-card .attribute-circles {
        gap: 8px;
    }

    .memoriez-product-card .attribute-circle {
        width: 20px;
        height: 20px;
    }
}
