.mystic-product-card {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mystic-card-inner {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mystic-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 162, 255, 0.3);
}

.mystic-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 16 / 9;
}

.mystic-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.mystic-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.mystic-thumb:hover img {
    transform: scale(1.05);
}

.mystic-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mystic-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.mystic-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mystic-title a:hover {
    color: #00A2FF;
}

.mystic-description {
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.5;
    margin: 0;
}

.mystic-description p {
    margin: 0;
}

.mystic-rating-sales {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    flex-wrap: wrap;
}

.mystic-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
    font-weight: 600;
}

.mystic-rating .star {
    color: #ffd700;
    font-size: 16px;
}

.mystic-sales {
    color: #a0a0a0;
}

.mystic-price-inline {
    margin-left: auto;
    font-size: 20px;
    font-weight: 700;
    color: #00A2FF;
}

.mystic-price-inline .woocommerce-Price-amount {
    color: #00A2FF;
}

.mystic-price-inline del {
    color: #666;
    font-size: 16px;
    margin-right: 8px;
}

.mystic-price-inline ins {
    text-decoration: none;
}

.mystic-price {
    font-size: 20px;
    font-weight: 700;
    color: #00A2FF;
    margin-top: auto;
    display: none;
}

.mystic-price .woocommerce-Price-amount {
    color: #00A2FF;
}

.mystic-price del {
    color: #666;
    font-size: 16px;
    margin-right: 8px;
}

.mystic-price ins {
    text-decoration: none;
}

.mystic-cart {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.mystic-cart .button {
    flex: 1;
}

.mystic-wishlist-button {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mystic-wishlist-button:hover {
    background: #00A2FF;
    border-color: #00A2FF;
}

.mystic-wishlist-button svg {
    width: 20px;
    height: 20px;
}

/* Hide default WooCommerce elements */
.mystic-product-card .onsale {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .mystic-product-card {
        width: 100% !important;
        max-width: 100%;
    }
    
    .mystic-info {
        padding: 15px;
    }
    
    .mystic-title {
        font-size: 15px;
    }
    
    .mystic-price {
        font-size: 18px;
    }
    
    .mystic-cart {
        gap: 8px;
    }
    
    .mystic-wishlist-button {
        width: 44px;
        height: 44px;
    }
}

/* Force single column on mobile for shop archive */
@media (max-width: 768px) {
    .woocommerce ul.products,
    ul.products {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .woocommerce ul.products li.product,
    ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }
}